33#include "llvm/ADT/APInt.h"
34#include "llvm/ADT/DenseMap.h"
35#include "llvm/ADT/PointerIntPair.h"
36#include "llvm/ADT/SmallString.h"
37#include "llvm/ADT/SmallVector.h"
38#include "llvm/ADT/StringExtras.h"
39#include "llvm/Support/ErrorHandling.h"
40#include "llvm/Support/raw_ostream.h"
51 if (Context.typesAreCompatible(Context.getWideCharType(),
T))
53 if (Context.getLangOpts().CPlusPlus || Context.getLangOpts().C11) {
54 return Context.typesAreCompatible(Context.Char16Ty,
T) ||
55 Context.typesAreCompatible(Context.Char32Ty,
T);
94 auto IsCharOrUnsignedChar = [](
const QualType &
T) {
95 const BuiltinType *BT = dyn_cast<BuiltinType>(
T.getTypePtr());
106 (Context.getLangOpts().Char8 &&
116 Context.getLangOpts().Char8)
130 if (Context.typesAreCompatible(Context.Char16Ty, ElemTy))
138 if (Context.typesAreCompatible(Context.Char32Ty, ElemTy))
146 if (Context.typesAreCompatible(Context.getWideCharType(), ElemTy))
154 assert(
false &&
"Unevaluated string literal in initialization");
158 llvm_unreachable(
"missed a StringLiteral kind?");
205 if (
const auto *VD = dyn_cast_if_present<VarDecl>(D); VD && VD->isConstexpr())
216 bool CheckC23ConstexprInit =
false) {
218 auto *ConstantArrayTy =
220 uint64_t StrLength = ConstantArrayTy->getZExtSize();
222 if (CheckC23ConstexprInit)
229 llvm::APInt ConstVal(32, StrLength);
254 if (StrLength > ArrayLen)
256 diag::err_initializer_string_for_char_array_too_long)
260 if (StrLength - 1 > ArrayLen)
262 diag::ext_initializer_string_for_char_array_too_long)
264 else if (StrLength - 1 == ArrayLen) {
267 const auto *SL = dyn_cast<StringLiteral>(Str->
IgnoreParens());
268 bool IsSLSafe = SL && SL->getLength() > 0 &&
269 SL->getCodeUnit(SL->getLength() - 1) == 0;
276 auto FindCorrectEntity =
288 if (
const ValueDecl *D = FindCorrectEntity(&Entity);
289 !D || !D->
hasAttr<NonStringAttr>())
293 warn_initializer_string_for_char_array_too_long_no_nonstring)
298 diag::warn_initializer_string_for_char_array_too_long_for_cpp)
311 for (
const FieldDecl *Field : R->fields()) {
312 if (Field->hasAttr<ExplicitInitAttr>())
313 S.
Diag(Field->getLocation(), diag::note_entity_declared_at) << Field;
354class InitListChecker {
356 bool hadError =
false;
358 bool TreatUnavailableAsInvalid;
359 bool InOverloadResolution;
360 InitListExpr *FullyStructuredList =
nullptr;
361 NoInitExpr *DummyExpr =
nullptr;
362 SmallVectorImpl<QualType> *AggrDeductionCandidateParamTypes =
nullptr;
363 EmbedExpr *CurEmbed =
nullptr;
364 unsigned CurEmbedIndex = 0;
366 NoInitExpr *getDummyInit() {
372 void CheckImplicitInitList(
const InitializedEntity &Entity,
373 InitListExpr *ParentIList, QualType
T,
374 unsigned &Index, InitListExpr *StructuredList,
375 unsigned &StructuredIndex);
376 void CheckExplicitInitList(
const InitializedEntity &Entity,
377 InitListExpr *IList, QualType &
T,
378 InitListExpr *StructuredList,
379 bool TopLevelObject =
false);
380 void CheckListElementTypes(
const InitializedEntity &Entity,
381 InitListExpr *IList, QualType &DeclType,
382 bool SubobjectIsDesignatorContext,
384 InitListExpr *StructuredList,
385 unsigned &StructuredIndex,
386 bool TopLevelObject =
false);
387 void CheckSubElementType(
const InitializedEntity &Entity,
388 InitListExpr *IList, QualType ElemType,
390 InitListExpr *StructuredList,
391 unsigned &StructuredIndex,
392 bool DirectlyDesignated =
false);
393 void CheckComplexType(
const InitializedEntity &Entity,
394 InitListExpr *IList, QualType DeclType,
396 InitListExpr *StructuredList,
397 unsigned &StructuredIndex);
398 void CheckScalarType(
const InitializedEntity &Entity,
399 InitListExpr *IList, QualType DeclType,
401 InitListExpr *StructuredList,
402 unsigned &StructuredIndex);
403 void CheckReferenceType(
const InitializedEntity &Entity,
404 InitListExpr *IList, QualType DeclType,
406 InitListExpr *StructuredList,
407 unsigned &StructuredIndex);
408 void CheckMatrixType(
const InitializedEntity &Entity, InitListExpr *IList,
409 QualType DeclType,
unsigned &Index,
410 InitListExpr *StructuredList,
unsigned &StructuredIndex);
411 void CheckVectorType(
const InitializedEntity &Entity,
412 InitListExpr *IList, QualType DeclType,
unsigned &Index,
413 InitListExpr *StructuredList,
414 unsigned &StructuredIndex);
415 void CheckStructUnionTypes(
const InitializedEntity &Entity,
416 InitListExpr *IList, QualType DeclType,
419 bool SubobjectIsDesignatorContext,
unsigned &Index,
420 InitListExpr *StructuredList,
421 unsigned &StructuredIndex,
422 bool TopLevelObject =
false);
423 void CheckArrayType(
const InitializedEntity &Entity,
424 InitListExpr *IList, QualType &DeclType,
425 llvm::APSInt elementIndex,
426 bool SubobjectIsDesignatorContext,
unsigned &Index,
427 InitListExpr *StructuredList,
428 unsigned &StructuredIndex);
429 bool CheckDesignatedInitializer(
const InitializedEntity &Entity,
430 InitListExpr *IList, DesignatedInitExpr *DIE,
432 QualType &CurrentObjectType,
434 llvm::APSInt *NextElementIndex,
436 InitListExpr *StructuredList,
437 unsigned &StructuredIndex,
438 bool FinishSubobjectInit,
439 bool TopLevelObject);
440 InitListExpr *getStructuredSubobjectInit(InitListExpr *IList,
unsigned Index,
441 QualType CurrentObjectType,
442 InitListExpr *StructuredList,
443 unsigned StructuredIndex,
444 SourceRange InitRange,
445 bool IsFullyOverwritten =
false);
446 void UpdateStructuredListElement(InitListExpr *StructuredList,
447 unsigned &StructuredIndex,
449 InitListExpr *createInitListExpr(QualType CurrentObjectType,
450 SourceRange InitRange,
451 unsigned ExpectedNumInits,
bool IsExplicit);
452 int numArrayElements(QualType DeclType);
453 int numStructUnionElements(QualType DeclType);
455 ExprResult PerformEmptyInit(SourceLocation Loc,
456 const InitializedEntity &Entity);
459 void diagnoseInitOverride(Expr *OldInit, SourceRange NewInitRange,
460 bool UnionOverride =
false,
461 bool FullyOverwritten =
true) {
466 ? (UnionOverride ? diag::ext_initializer_union_overrides
467 : diag::ext_initializer_overrides)
468 : diag::warn_initializer_overrides;
470 if (InOverloadResolution && SemaRef.
getLangOpts().CPlusPlus) {
491 DiagID = diag::err_initializer_overrides_destructed;
511 << NewInitRange << FullyOverwritten << OldInit->
getType();
537 void FillInEmptyInitForBase(
unsigned Init,
const CXXBaseSpecifier &Base,
538 const InitializedEntity &ParentEntity,
539 InitListExpr *ILE,
bool &RequiresSecondPass,
540 bool FillWithNoInit);
541 void FillInEmptyInitForField(
unsigned Init, FieldDecl *Field,
542 const InitializedEntity &ParentEntity,
543 InitListExpr *ILE,
bool &RequiresSecondPass,
544 bool FillWithNoInit =
false);
545 void FillInEmptyInitializations(
const InitializedEntity &Entity,
546 InitListExpr *ILE,
bool &RequiresSecondPass,
547 InitListExpr *OuterILE,
unsigned OuterIndex,
548 bool FillWithNoInit =
false);
549 bool CheckFlexibleArrayInit(
const InitializedEntity &Entity,
550 Expr *InitExpr, FieldDecl *Field,
551 bool TopLevelObject);
552 void CheckEmptyInitializable(
const InitializedEntity &Entity,
555 Expr *HandleEmbed(EmbedExpr *Embed,
const InitializedEntity &Entity) {
571 assert(AType &&
"expected array type when initializing array");
573 if (
const auto *CAType = dyn_cast<ConstantArrayType>(AType))
574 ElsCount = std::min(CAType->getSize().getZExtValue() - ArrIndex,
575 ElsCount - CurEmbedIndex);
585 CurEmbedIndex, ElsCount);
586 CurEmbedIndex += ElsCount;
596 Sema &S,
const InitializedEntity &Entity, InitListExpr *IL, QualType &
T,
597 bool VerifyOnly,
bool TreatUnavailableAsInvalid,
598 bool InOverloadResolution =
false,
599 SmallVectorImpl<QualType> *AggrDeductionCandidateParamTypes =
nullptr);
600 InitListChecker(Sema &S,
const InitializedEntity &Entity, InitListExpr *IL,
602 SmallVectorImpl<QualType> &AggrDeductionCandidateParamTypes)
603 : InitListChecker(S, Entity, IL,
T,
true,
606 &AggrDeductionCandidateParamTypes) {}
608 bool HadError() {
return hadError; }
612 InitListExpr *getFullyStructuredList()
const {
return FullyStructuredList; }
630 bool EmptyInitList = SemaRef.
getLangOpts().CPlusPlus11 &&
643 InitExpr = VerifyOnly ? &DummyInitList
661 if (!InitSeq && EmptyInitList &&
662 InitSeq.getFailureKind() ==
667 InitSeq.getFailedCandidateSet()
668 .BestViableFunction(SemaRef,
Kind.getLocation(), Best);
670 assert(O ==
OR_Success &&
"Inconsistent overload resolution");
677 bool IsInStd =
false;
678 for (
NamespaceDecl *ND = dyn_cast<NamespaceDecl>(
R->getDeclContext());
679 ND && !IsInStd; ND = dyn_cast<NamespaceDecl>(ND->getParent())) {
685 llvm::StringSwitch<bool>(
R->getName())
686 .Cases({
"basic_string",
"deque",
"forward_list"},
true)
687 .Cases({
"list",
"map",
"multimap",
"multiset"},
true)
688 .Cases({
"priority_queue",
"queue",
"set",
"stack"},
true)
689 .Cases({
"unordered_map",
"unordered_set",
"vector"},
true)
691 InitSeq.InitializeFrom(
695 TreatUnavailableAsInvalid);
700 diag::warn_invalid_initializer_from_system_header);
703 diag::note_used_in_initialization_here);
705 SemaRef.
Diag(Loc, diag::note_used_in_initialization_here);
712 InitSeq.Diagnose(SemaRef, Entity, Kind, SubInit);
715 diag::note_in_omitted_aggregate_initializer)
718 bool IsTrailingArrayNewMember =
721 SemaRef.
Diag(Loc, diag::note_in_omitted_aggregate_initializer)
722 << (IsTrailingArrayNewMember ? 2 : 0)
731 : InitSeq.Perform(SemaRef, Entity,
Kind, SubInit);
739 if (FullyStructuredList)
741 PerformEmptyInit(Loc, Entity);
744void InitListChecker::FillInEmptyInitForBase(
747 bool &RequiresSecondPass,
bool FillWithNoInit) {
749 SemaRef.
Context, &Base,
false, &ParentEntity);
754 : PerformEmptyInit(ILE->
getEndLoc(), BaseEntity);
761 assert(
Init < ILE->getNumInits() &&
"should have been expanded");
766 FillInEmptyInitializations(BaseEntity, InnerILE, RequiresSecondPass,
767 ILE,
Init, FillWithNoInit);
769 dyn_cast<DesignatedInitUpdateExpr>(ILE->
getInit(
Init))) {
770 FillInEmptyInitializations(BaseEntity, InnerDIUE->getUpdater(),
771 RequiresSecondPass, ILE,
Init,
776void InitListChecker::FillInEmptyInitForField(
unsigned Init,
FieldDecl *Field,
779 bool &RequiresSecondPass,
780 bool FillWithNoInit) {
788 if (!RType->getDecl()->isUnion())
789 assert((
Init < NumInits || VerifyOnly) &&
790 "This ILE should have been expanded");
792 if (FillWithNoInit) {
793 assert(!VerifyOnly &&
"should not fill with no-init in verify-only mode");
802 if (!VerifyOnly &&
Field->hasAttr<ExplicitInitAttr>() &&
804 SemaRef.
Diag(ILE->
getExprLoc(), diag::warn_field_requires_explicit_init)
806 SemaRef.
Diag(
Field->getLocation(), diag::note_entity_declared_at)
814 if (
Field->hasInClassInitializer()) {
831 RequiresSecondPass =
true;
836 if (
Field->getType()->isReferenceType()) {
842 SemaRef.
Diag(Loc, diag::err_init_reference_member_uninitialized)
846 SemaRef.
Diag(
Field->getLocation(), diag::note_uninit_reference_member);
852 ExprResult MemberInit = PerformEmptyInit(Loc, MemberEntity);
858 if (hadError || VerifyOnly) {
860 }
else if (
Init < NumInits) {
868 RequiresSecondPass =
true;
872 FillInEmptyInitializations(MemberEntity, InnerILE,
873 RequiresSecondPass, ILE,
Init, FillWithNoInit);
875 dyn_cast<DesignatedInitUpdateExpr>(ILE->
getInit(
Init))) {
876 FillInEmptyInitializations(MemberEntity, InnerDIUE->getUpdater(),
877 RequiresSecondPass, ILE,
Init,
888 bool &RequiresSecondPass,
891 bool FillWithNoInit) {
893 "Should not have void type");
897 if (FillWithNoInit && VerifyOnly)
907 struct UpdateOuterILEWithUpdatedInit {
910 ~UpdateOuterILEWithUpdatedInit() {
914 } UpdateOuterRAII = {OuterILE, OuterIndex};
924 RequiresSecondPass, FillWithNoInit);
928 "We should have computed initialized fields already");
932 unsigned NumElems = numStructUnionElements(ILE->
getType());
933 if (!RDecl->isUnion() && RDecl->hasFlexibleArrayMember())
940 if (
auto *CXXRD = dyn_cast<CXXRecordDecl>(RDecl)) {
941 for (
auto &Base : CXXRD->bases()) {
945 FillInEmptyInitForBase(
Init, Base, Entity, ILE, RequiresSecondPass,
951 for (
auto *Field : RDecl->fields()) {
952 if (
Field->isUnnamedBitField())
958 FillInEmptyInitForField(
Init, Field, Entity, ILE, RequiresSecondPass,
966 if (RDecl->isUnion())
980 ElementType = AType->getElementType();
981 if (
const auto *CAType = dyn_cast<ConstantArrayType>(AType))
982 NumElements = CAType->getZExtSize();
990 ElementType = VType->getElementType();
991 NumElements = VType->getNumElements();
997 bool SkipEmptyInitChecks =
false;
1016 if (SkipEmptyInitChecks)
1019 Expr *Filler =
nullptr;
1025 PerformEmptyInit(ILE->
getEndLoc(), ElementEntity);
1036 }
else if (VerifyOnly) {
1037 SkipEmptyInitChecks =
true;
1038 }
else if (
Init < NumInits) {
1059 RequiresSecondPass =
true;
1063 = dyn_cast_or_null<InitListExpr>(InitExpr)) {
1064 FillInEmptyInitializations(ElementEntity, InnerILE, RequiresSecondPass,
1065 ILE,
Init, FillWithNoInit);
1067 dyn_cast_or_null<DesignatedInitUpdateExpr>(InitExpr)) {
1068 FillInEmptyInitializations(ElementEntity, InnerDIUE->getUpdater(),
1069 RequiresSecondPass, ILE,
Init,
1077 if (isa_and_nonnull<DesignatedInitExpr>(
Init))
1082InitListChecker::InitListChecker(
1084 bool VerifyOnly,
bool TreatUnavailableAsInvalid,
bool InOverloadResolution,
1086 : SemaRef(S), VerifyOnly(VerifyOnly),
1087 TreatUnavailableAsInvalid(TreatUnavailableAsInvalid),
1088 InOverloadResolution(InOverloadResolution),
1089 AggrDeductionCandidateParamTypes(AggrDeductionCandidateParamTypes) {
1091 FullyStructuredList = createInitListExpr(
1100 CheckExplicitInitList(Entity, IL,
T, FullyStructuredList,
1103 if (!hadError && !AggrDeductionCandidateParamTypes && FullyStructuredList) {
1104 bool RequiresSecondPass =
false;
1105 FillInEmptyInitializations(Entity, FullyStructuredList, RequiresSecondPass,
1107 if (RequiresSecondPass && !hadError)
1108 FillInEmptyInitializations(Entity, FullyStructuredList,
1109 RequiresSecondPass,
nullptr, 0);
1111 if (hadError && FullyStructuredList)
1115int InitListChecker::numArrayElements(
QualType DeclType) {
1117 int maxElements = 0x7FFFFFFF;
1118 if (
const ConstantArrayType *CAT =
1120 maxElements =
static_cast<int>(CAT->getZExtSize());
1125int InitListChecker::numStructUnionElements(QualType DeclType) {
1127 int InitializableMembers = 0;
1128 if (
auto *CXXRD = dyn_cast<CXXRecordDecl>(structDecl))
1129 InitializableMembers += CXXRD->getNumBases();
1130 for (
const auto *Field : structDecl->fields())
1131 if (!
Field->isUnnamedBitField())
1132 ++InitializableMembers;
1134 if (structDecl->isUnion())
1135 return std::min(InitializableMembers, 1);
1136 return InitializableMembers - structDecl->hasFlexibleArrayMember();
1163 if (
CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(ParentRD)) {
1164 if (CXXRD->getNumBases()) {
1169 assert(FieldIt != ParentRD->field_end() &&
1170 "no fields but have initializer for member?");
1171 return ++FieldIt == ParentRD->field_end();
1183void InitListChecker::CheckImplicitInitList(
const InitializedEntity &Entity,
1184 InitListExpr *ParentIList,
1185 QualType
T,
unsigned &Index,
1186 InitListExpr *StructuredList,
1187 unsigned &StructuredIndex) {
1188 int maxElements = 0;
1191 maxElements = numArrayElements(
T);
1193 maxElements = numStructUnionElements(
T);
1195 maxElements =
T->
castAs<VectorType>()->getNumElements();
1197 llvm_unreachable(
"CheckImplicitInitList(): Illegal type");
1199 if (maxElements == 0) {
1202 diag::err_implicit_empty_initializer);
1209 InitListExpr *StructuredSubobjectInitList = getStructuredSubobjectInit(
1210 ParentIList, Index,
T, StructuredList, StructuredIndex,
1213 unsigned StructuredSubobjectInitIndex = 0;
1216 unsigned StartIndex = Index;
1217 CheckListElementTypes(Entity, ParentIList,
T,
1219 StructuredSubobjectInitList,
1220 StructuredSubobjectInitIndex);
1222 if (StructuredSubobjectInitList) {
1223 StructuredSubobjectInitList->
setType(
T);
1225 unsigned EndIndex = (Index == StartIndex? StartIndex : Index - 1);
1228 if (EndIndex < ParentIList->getNumInits() &&
1229 ParentIList->
getInit(EndIndex)) {
1230 SourceLocation EndLoc
1240 diag::warn_missing_braces)
1246 StructuredSubobjectInitList->
getEndLoc()),
1252 if (!VerifyOnly && CXXRD && CXXRD->hasUserDeclaredConstructor()) {
1254 diag::warn_cxx20_compat_aggregate_init_with_ctors)
1270 unsigned DiagID = 0;
1283 DiagID = diag::warn_braces_around_init;
1290 DiagID = diag::warn_braces_around_init;
1316 llvm_unreachable(
"unexpected braced scalar init");
1332void InitListChecker::CheckExplicitInitList(
const InitializedEntity &Entity,
1333 InitListExpr *IList, QualType &
T,
1334 InitListExpr *StructuredList,
1335 bool TopLevelObject) {
1336 unsigned Index = 0, StructuredIndex = 0;
1337 CheckListElementTypes(Entity, IList,
T,
true,
1338 Index, StructuredList, StructuredIndex, TopLevelObject);
1339 if (StructuredList) {
1340 QualType ExprTy =
T;
1345 StructuredList->
setType(ExprTy);
1355 SourceLocation ExtraInitLoc =
1357 SourceRange ExtraInitRange =
1359 bool ExtraInitsIsError = SemaRef.
getLangOpts().CPlusPlus ||
1361 hadError = ExtraInitsIsError;
1364 }
else if (StructuredIndex == 1 && StructuredList->
getNumInits() != 0 &&
1370 ? diag::err_excess_initializers_in_char_array_initializer
1371 : diag::ext_excess_initializers_in_char_array_initializer;
1372 SemaRef.
Diag(ExtraInitLoc, DK) << ExtraInitRange;
1374 unsigned DK = ExtraInitsIsError
1375 ? diag::err_excess_initializers_for_sizeless_type
1376 : diag::ext_excess_initializers_for_sizeless_type;
1377 SemaRef.
Diag(ExtraInitLoc, DK) <<
T << ExtraInitRange;
1386 unsigned DK = ExtraInitsIsError ? diag::err_excess_initializers
1387 : diag::ext_excess_initializers;
1388 SemaRef.
Diag(ExtraInitLoc, DK) << initKind << ExtraInitRange;
1400 if (CXXRD && CXXRD->hasUserDeclaredConstructor()) {
1403 bool HasEquivCtor =
false;
1406 HasEquivCtor = CD && !CD->isDeleted();
1409 if (!HasEquivCtor) {
1411 diag::warn_cxx20_compat_aggregate_init_with_ctors)
1418void InitListChecker::CheckListElementTypes(
const InitializedEntity &Entity,
1419 InitListExpr *IList,
1421 bool SubobjectIsDesignatorContext,
1423 InitListExpr *StructuredList,
1424 unsigned &StructuredIndex,
1425 bool TopLevelObject) {
1429 CheckComplexType(Entity, IList, DeclType, Index,
1430 StructuredList, StructuredIndex);
1432 CheckScalarType(Entity, IList, DeclType, Index,
1433 StructuredList, StructuredIndex);
1435 CheckVectorType(Entity, IList, DeclType, Index,
1436 StructuredList, StructuredIndex);
1438 CheckMatrixType(Entity, IList, DeclType, Index, StructuredList,
1446 "non-aggregate records should be handed in CheckSubElementType");
1447 if (
auto *CXXRD = dyn_cast<CXXRecordDecl>(RD))
1448 Bases = CXXRD->bases();
1452 CheckStructUnionTypes(Entity, IList, DeclType, Bases, RD->field_begin(),
1453 SubobjectIsDesignatorContext, Index, StructuredList,
1454 StructuredIndex, TopLevelObject);
1459 CheckArrayType(Entity, IList, DeclType,
Zero,
1460 SubobjectIsDesignatorContext, Index,
1461 StructuredList, StructuredIndex);
1466 SemaRef.
Diag(IList->
getBeginLoc(), diag::err_illegal_initializer_type)
1470 CheckReferenceType(Entity, IList, DeclType, Index,
1471 StructuredList, StructuredIndex);
1474 SemaRef.
Diag(IList->
getBeginLoc(), diag::err_init_objc_class) << DeclType;
1479 CheckScalarType(Entity, IList, DeclType, Index, StructuredList,
1486 assert(AggrDeductionCandidateParamTypes);
1487 AggrDeductionCandidateParamTypes->push_back(DeclType);
1490 SemaRef.
Diag(IList->
getBeginLoc(), diag::err_illegal_initializer_type)
1496void InitListChecker::CheckSubElementType(
const InitializedEntity &Entity,
1497 InitListExpr *IList,
1500 InitListExpr *StructuredList,
1501 unsigned &StructuredIndex,
1502 bool DirectlyDesignated) {
1506 return CheckReferenceType(Entity, IList, ElemType, Index,
1507 StructuredList, StructuredIndex);
1509 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(
expr)) {
1510 if (SubInitList->getNumInits() == 1 &&
1515 expr = SubInitList->getInit(0);
1522 "found implicit initialization for the wrong type");
1523 UpdateStructuredListElement(StructuredList, StructuredIndex,
expr);
1534 InitializationKind
Kind =
1545 if (TmpEntity.getType()->isDependentType()) {
1550 assert(AggrDeductionCandidateParamTypes);
1565 !isa_and_present<ConstantArrayType>(
1568 AggrDeductionCandidateParamTypes->push_back(ElemType);
1572 InitializationSequence
Seq(SemaRef, TmpEntity, Kind,
expr,
1581 if (
auto *Embed = dyn_cast<EmbedExpr>(
expr)) {
1582 expr = HandleEmbed(Embed, Entity);
1589 UpdateStructuredListElement(StructuredList, StructuredIndex,
1593 }
else if (StructuredList) {
1594 UpdateStructuredListElement(StructuredList, StructuredIndex,
1599 if (AggrDeductionCandidateParamTypes)
1600 AggrDeductionCandidateParamTypes->push_back(ElemType);
1608 return CheckScalarType(Entity, IList, ElemType, Index,
1609 StructuredList, StructuredIndex);
1623 UpdateStructuredListElement(StructuredList, StructuredIndex,
expr);
1646 AssignConvertType::Incompatible) {
1654 UpdateStructuredListElement(StructuredList, StructuredIndex,
1655 ExprRes.
getAs<Expr>());
1672 CheckImplicitInitList(Entity, IList, ElemType, Index, StructuredList,
1677 if (DirectlyDesignated && SemaRef.
getLangOpts().CPlusPlus && !hadError) {
1678 if (InOverloadResolution)
1682 diag::ext_designated_init_brace_elision)
1683 <<
expr->getSourceRange()
1698 assert(
Copy.isInvalid() &&
1699 "expected non-aggregate initialization to fail");
1707void InitListChecker::CheckComplexType(
const InitializedEntity &Entity,
1708 InitListExpr *IList, QualType DeclType,
1710 InitListExpr *StructuredList,
1711 unsigned &StructuredIndex) {
1712 assert(Index == 0 &&
"Index in explicit init list must be zero");
1722 return CheckScalarType(Entity, IList, DeclType, Index, StructuredList,
1727 if (!SemaRef.
getLangOpts().CPlusPlus && !VerifyOnly)
1732 QualType elementType = DeclType->
castAs<ComplexType>()->getElementType();
1733 InitializedEntity ElementEntity =
1736 for (
unsigned i = 0; i < 2; ++i) {
1738 CheckSubElementType(ElementEntity, IList, elementType, Index,
1739 StructuredList, StructuredIndex);
1743void InitListChecker::CheckScalarType(
const InitializedEntity &Entity,
1744 InitListExpr *IList, QualType DeclType,
1746 InitListExpr *StructuredList,
1747 unsigned &StructuredIndex) {
1754 ? diag::warn_cxx98_compat_empty_sizeless_initializer
1755 : diag::err_empty_sizeless_initializer)
1760 ? diag::warn_cxx98_compat_empty_scalar_initializer
1761 : diag::err_empty_scalar_initializer)
1773 if (InitListExpr *SubIList = dyn_cast<InitListExpr>(
expr)) {
1777 SemaRef.
Diag(SubIList->getBeginLoc(), diag::ext_many_braces_around_init)
1780 CheckScalarType(Entity, SubIList, DeclType, Index, StructuredList,
1786 diag::err_designator_for_scalar_or_sizeless_init)
1788 <<
expr->getSourceRange();
1793 }
else if (
auto *Embed = dyn_cast<EmbedExpr>(
expr)) {
1794 expr = HandleEmbed(Embed, Entity);
1809 Expr *ResultExpr =
nullptr;
1814 ResultExpr =
Result.getAs<Expr>();
1816 if (ResultExpr !=
expr && !VerifyOnly && !CurEmbed) {
1819 IList->
setInit(Index, ResultExpr);
1823 UpdateStructuredListElement(StructuredList, StructuredIndex, ResultExpr);
1826 if (AggrDeductionCandidateParamTypes)
1827 AggrDeductionCandidateParamTypes->push_back(DeclType);
1830void InitListChecker::CheckReferenceType(
const InitializedEntity &Entity,
1831 InitListExpr *IList, QualType DeclType,
1833 InitListExpr *StructuredList,
1834 unsigned &StructuredIndex) {
1842 diag::err_init_reference_member_uninitialized)
1878 if (!VerifyOnly &&
expr)
1881 UpdateStructuredListElement(StructuredList, StructuredIndex,
expr);
1883 if (AggrDeductionCandidateParamTypes)
1884 AggrDeductionCandidateParamTypes->push_back(DeclType);
1887void InitListChecker::CheckMatrixType(
const InitializedEntity &Entity,
1888 InitListExpr *IList, QualType DeclType,
1890 InitListExpr *StructuredList,
1891 unsigned &StructuredIndex) {
1895 const ConstantMatrixType *MT = DeclType->
castAs<ConstantMatrixType>();
1902 "Inits must equal Matrix element count");
1907 InitializedEntity Element =
1910 while (Index < IList->getNumInits()) {
1915 CheckSubElementType(Element, IList, ElemTy, Index, StructuredList,
1920void InitListChecker::CheckVectorType(
const InitializedEntity &Entity,
1921 InitListExpr *IList, QualType DeclType,
1923 InitListExpr *StructuredList,
1924 unsigned &StructuredIndex) {
1925 const VectorType *VT = DeclType->
castAs<VectorType>();
1927 unsigned numEltsInit = 0;
1932 CheckEmptyInitializable(
1955 Expr *ResultExpr =
nullptr;
1959 ResultExpr =
Result.getAs<Expr>();
1961 if (ResultExpr !=
Init && !VerifyOnly) {
1964 IList->
setInit(Index, ResultExpr);
1967 UpdateStructuredListElement(StructuredList, StructuredIndex, ResultExpr);
1969 if (AggrDeductionCandidateParamTypes)
1970 AggrDeductionCandidateParamTypes->push_back(elementType);
1974 InitializedEntity ElementEntity =
1977 for (
unsigned i = 0; i < maxElements; ++i, ++numEltsInit) {
1980 CheckEmptyInitializable(ElementEntity, IList->
getEndLoc());
1985 CheckSubElementType(ElementEntity, IList, elementType, Index,
1986 StructuredList, StructuredIndex);
1994 if (isBigEndian && (
T->getVectorKind() == VectorKind::Neon ||
1995 T->getVectorKind() == VectorKind::NeonPoly)) {
2007 diag::warn_neon_vector_initializer_non_portable);
2009 const char *typeCode;
2021 llvm_unreachable(
"Invalid element type!");
2025 ? diag::note_neon_vector_initializer_non_portable_q
2026 : diag::note_neon_vector_initializer_non_portable)
2027 << typeCode << typeSize;
2033 InitializedEntity ElementEntity =
2037 for (
unsigned i = 0; i < maxElements; ++i) {
2046 CheckSubElementType(ElementEntity, IList, elementType, Index,
2047 StructuredList, StructuredIndex);
2051 const VectorType *IVT = IType->
castAs<VectorType>();
2059 CheckSubElementType(ElementEntity, IList, VecType, Index,
2060 StructuredList, StructuredIndex);
2061 numEltsInit += numIElts;
2066 if (numEltsInit != maxElements) {
2069 diag::err_vector_incorrect_num_elements)
2070 << (numEltsInit < maxElements) << maxElements << numEltsInit
2088 auto *CXXRD = ElementType->getAsCXXRecordDecl();
2094 if (!CXXRD || !CXXRD->hasDefinition())
2102 SemaRef.
PDiag(diag::err_access_dtor_temp)
2122 ExprList.size() == 1
2123 ? dyn_cast_if_present<EmbedExpr>(ExprList[0]->IgnoreParens())
2136void InitListChecker::CheckArrayType(
const InitializedEntity &Entity,
2137 InitListExpr *IList, QualType &DeclType,
2138 llvm::APSInt elementIndex,
2139 bool SubobjectIsDesignatorContext,
2141 InitListExpr *StructuredList,
2142 unsigned &StructuredIndex) {
2160 if (Index < IList->getNumInits()) {
2173 if (StructuredList) {
2174 UpdateStructuredListElement(StructuredList, StructuredIndex,
2179 if (AggrDeductionCandidateParamTypes)
2180 AggrDeductionCandidateParamTypes->push_back(DeclType);
2184 if (
const VariableArrayType *VAT = dyn_cast<VariableArrayType>(
arrayType)) {
2201 SemaRef.
Diag(VAT->getSizeExpr()->getBeginLoc(),
2202 diag::err_variable_object_no_init)
2203 << VAT->getSizeExpr()->getSourceRange();
2212 llvm::APSInt maxElements(elementIndex.getBitWidth(),
2213 elementIndex.isUnsigned());
2214 bool maxElementsKnown =
false;
2215 if (
const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(
arrayType)) {
2216 maxElements = CAT->getSize();
2217 elementIndex = elementIndex.extOrTrunc(maxElements.getBitWidth());
2218 elementIndex.setIsUnsigned(maxElements.isUnsigned());
2219 maxElementsKnown =
true;
2222 QualType elementType =
arrayType->getElementType();
2223 while (Index < IList->getNumInits()) {
2225 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(
Init)) {
2229 if (!SubobjectIsDesignatorContext)
2234 if (CheckDesignatedInitializer(Entity, IList, DIE, 0,
2235 DeclType,
nullptr, &elementIndex, Index,
2236 StructuredList, StructuredIndex,
true,
2242 if (elementIndex.getBitWidth() > maxElements.getBitWidth())
2243 maxElements = maxElements.extend(elementIndex.getBitWidth());
2244 else if (elementIndex.getBitWidth() < maxElements.getBitWidth())
2245 elementIndex = elementIndex.extend(maxElements.getBitWidth());
2246 elementIndex.setIsUnsigned(maxElements.isUnsigned());
2250 if (!maxElementsKnown && elementIndex > maxElements)
2251 maxElements = elementIndex;
2258 if (maxElementsKnown && elementIndex == maxElements)
2262 SemaRef.
Context, StructuredIndex, Entity);
2265 unsigned EmbedElementIndexBeforeInit = CurEmbedIndex;
2267 CheckSubElementType(ElementEntity, IList, elementType, Index,
2268 StructuredList, StructuredIndex);
2273 elementIndex + CurEmbedIndex - EmbedElementIndexBeforeInit - 1;
2277 EmbedElementIndexBeforeInit - 1;
2283 if (!maxElementsKnown && elementIndex > maxElements)
2284 maxElements = elementIndex;
2289 llvm::APSInt
Zero(maxElements.getBitWidth(), maxElements.isUnsigned());
2293 SemaRef.
Diag(IList->
getBeginLoc(), diag::ext_typecheck_zero_array_size);
2297 elementType, maxElements,
nullptr, ArraySizeModifier::Normal, 0);
2304 if ((maxElementsKnown && elementIndex < maxElements) ||
2306 CheckEmptyInitializable(
2312bool InitListChecker::CheckFlexibleArrayInit(
const InitializedEntity &Entity,
2315 bool TopLevelObject) {
2317 unsigned FlexArrayDiag;
2321 FlexArrayDiag = diag::ext_flexible_array_init;
2322 }
else if (!TopLevelObject) {
2324 FlexArrayDiag = diag::err_flexible_array_init;
2327 FlexArrayDiag = diag::err_flexible_array_init;
2330 FlexArrayDiag = diag::err_flexible_array_init;
2333 FlexArrayDiag = diag::ext_flexible_array_init;
2339 SemaRef.
Diag(
Field->getLocation(), diag::note_flexible_array_member)
2343 return FlexArrayDiag != diag::ext_flexible_array_init;
2347 return StructuredList && StructuredList->
getNumInits() == 1U;
2350void InitListChecker::CheckStructUnionTypes(
2351 const InitializedEntity &Entity, InitListExpr *IList, QualType DeclType,
2353 bool SubobjectIsDesignatorContext,
unsigned &Index,
2354 InitListExpr *StructuredList,
unsigned &StructuredIndex,
2355 bool TopLevelObject) {
2369 for (FieldDecl *FD : RD->
fields()) {
2380 if (!StructuredList)
2383 Field != FieldEnd; ++Field) {
2384 if (
Field->hasInClassInitializer() ||
2385 (
Field->isAnonymousStructOrUnion() &&
2387 ->castAsCXXRecordDecl()
2388 ->hasInClassInitializer())) {
2394 llvm_unreachable(
"Couldn't find in-class initializer");
2400 Field != FieldEnd; ++Field) {
2401 if (!
Field->isUnnamedBitField()) {
2402 CheckEmptyInitializable(
2413 bool InitializedSomething =
false;
2416 for (
auto I = Bases.begin(), E = Bases.end(); I != E; ++I) {
2422 if (isa_and_nonnull<DesignatedInitExpr>(
Init))
2439 if (AggrDeductionCandidateParamTypes &&
Base.isPackExpansion()) {
2440 AggrDeductionCandidateParamTypes->push_back(
2445 if (Index < IList->getNumInits())
2455 SemaRef.
Context, &Base,
false, &Entity);
2457 CheckSubElementType(BaseEntity, IList,
Base.getType(), Index,
2458 StructuredList, StructuredIndex);
2459 InitializedSomething =
true;
2461 CheckEmptyInitializable(BaseEntity, InitLoc);
2476 size_t NumRecordDecls = llvm::count_if(RD->
decls(), [&](
const Decl *D) {
2477 return isa<FieldDecl>(D) || isa<RecordDecl>(D);
2479 bool HasDesignatedInit =
false;
2481 llvm::SmallPtrSet<FieldDecl *, 4> InitializedFields;
2483 while (Index < IList->getNumInits()) {
2485 SourceLocation InitLoc =
Init->getBeginLoc();
2487 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(
Init)) {
2491 if (!SubobjectIsDesignatorContext)
2494 HasDesignatedInit =
true;
2498 bool DesignatedInitFailed = CheckDesignatedInitializer(
2499 Entity, IList, DIE, 0, DeclType, &Field,
nullptr, Index,
2500 StructuredList, StructuredIndex,
true, TopLevelObject);
2501 if (DesignatedInitFailed)
2505 DesignatedInitExpr::Designator *D = DIE->getDesignator(0);
2508 InitializedFields.insert(F);
2509 if (!DesignatedInitFailed) {
2518 InitializedSomething =
true;
2535 if (NumRecordDecls == 1)
2537 if (
const auto *IL = dyn_cast<IntegerLiteral>(I))
2538 return IL->getValue().isZero();
2546 SemaRef.
Diag(InitLoc, diag::err_non_designated_init_used);
2551 if (Field == FieldEnd) {
2557 if (InitializedSomething && RD->
isUnion())
2561 if (
Field->getType()->isIncompleteArrayType())
2564 if (
Field->isUnnamedBitField()) {
2573 InvalidUse = !SemaRef.
CanUseDecl(*Field, TreatUnavailableAsInvalid);
2592 InitializedEntity MemberEntity =
2594 CheckSubElementType(MemberEntity, IList,
Field->getType(), Index,
2595 StructuredList, StructuredIndex);
2596 InitializedSomething =
true;
2597 InitializedFields.insert(*Field);
2609 bool IsCDesignatedInitializer =
2610 HasDesignatedInit && !SemaRef.
getLangOpts().CPlusPlus;
2611 if (!VerifyOnly && InitializedSomething && !RD->
isUnion() &&
2613 !IsCDesignatedInitializer) {
2620 if (HasDesignatedInit && InitializedFields.count(*it))
2623 if (!it->isUnnamedBitField() && !it->hasInClassInitializer() &&
2624 !it->getType()->isIncompleteArrayType()) {
2625 auto Diag = HasDesignatedInit
2626 ? diag::warn_missing_designated_field_initializers
2627 : diag::warn_missing_field_initializers;
2636 if (!StructuredList && Field != FieldEnd && !RD->
isUnion() &&
2637 !
Field->getType()->isIncompleteArrayType()) {
2638 for (;
Field != FieldEnd && !hadError; ++
Field) {
2639 if (!
Field->isUnnamedBitField() && !
Field->hasInClassInitializer())
2640 CheckEmptyInitializable(
2661 if (Field == FieldEnd || !
Field->getType()->isIncompleteArrayType() ||
2665 if (CheckFlexibleArrayInit(Entity, IList->
getInit(Index), *Field,
2672 InitializedEntity MemberEntity =
2676 AggrDeductionCandidateParamTypes)
2677 CheckSubElementType(MemberEntity, IList,
Field->getType(), Index,
2678 StructuredList, StructuredIndex);
2680 CheckImplicitInitList(MemberEntity, IList,
Field->getType(), Index,
2681 StructuredList, StructuredIndex);
2702 PE = IndirectField->
chain_end(); PI != PE; ++PI) {
2718 &Replacements[0] + Replacements.size());
2725 for (
unsigned I = 0; I < NumIndexExprs; ++I)
2737class FieldInitializerValidatorCCC final :
public CorrectionCandidateCallback {
2739 explicit FieldInitializerValidatorCCC(
const RecordDecl *RD)
2742 bool ValidateCandidate(
const TypoCorrection &candidate)
override {
2747 std::unique_ptr<CorrectionCandidateCallback> clone()
override {
2748 return std::make_unique<FieldInitializerValidatorCCC>(*
this);
2752 const RecordDecl *
Record;
2795InitListChecker::CheckDesignatedInitializer(
const InitializedEntity &Entity,
2796 InitListExpr *IList,
2797 DesignatedInitExpr *DIE,
2799 QualType &CurrentObjectType,
2801 llvm::APSInt *NextElementIndex,
2803 InitListExpr *StructuredList,
2804 unsigned &StructuredIndex,
2805 bool FinishSubobjectInit,
2806 bool TopLevelObject) {
2807 if (DesigIdx == DIE->
size()) {
2815 "designator result in direct non-list initialization?");
2818 InitializationSequence
Seq(SemaRef, Entity, Kind,
Init,
2820 if (StructuredList) {
2824 UpdateStructuredListElement(StructuredList, StructuredIndex,
2828 if (AggrDeductionCandidateParamTypes)
2829 AggrDeductionCandidateParamTypes->push_back(CurrentObjectType);
2834 bool prevHadError = hadError;
2839 unsigned OldIndex = Index;
2841 dyn_cast_if_present<DesignatedInitExpr>(IList->
getInit(OldIndex));
2844 IList->
setInit(OldIndex, OldDIE->getInit());
2846 CheckSubElementType(Entity, IList, CurrentObjectType, Index, StructuredList,
2847 StructuredIndex,
true);
2851 if (IList->
getInit(OldIndex) != OldDIE->getInit())
2852 OldDIE->setInit(IList->
getInit(OldIndex));
2853 IList->
setInit(OldIndex, OldDIE);
2855 return hadError && !prevHadError;
2858 DesignatedInitExpr::Designator *D = DIE->
getDesignator(DesigIdx);
2859 bool IsFirstDesignator = (DesigIdx == 0);
2860 if (IsFirstDesignator ? FullyStructuredList : StructuredList) {
2863 if (IsFirstDesignator)
2864 StructuredList = FullyStructuredList;
2866 Expr *ExistingInit = StructuredIndex < StructuredList->getNumInits() ?
2867 StructuredList->getInit(StructuredIndex) :
nullptr;
2868 if (!ExistingInit && StructuredList->hasArrayFiller())
2869 ExistingInit = StructuredList->getArrayFiller();
2872 StructuredList = getStructuredSubobjectInit(
2873 IList, Index, CurrentObjectType, StructuredList, StructuredIndex,
2875 else if (InitListExpr *
Result = dyn_cast<InitListExpr>(ExistingInit))
2889 diagnoseInitOverride(ExistingInit,
2895 if (DesignatedInitUpdateExpr *E =
2896 dyn_cast<DesignatedInitUpdateExpr>(ExistingInit))
2897 StructuredList = E->getUpdater();
2899 DesignatedInitUpdateExpr *DIUE =
new (SemaRef.
Context)
2902 StructuredList->updateInit(SemaRef.
Context, StructuredIndex, DIUE);
2911 StructuredList =
nullptr;
2933 SemaRef.
Diag(Loc, diag::err_field_designator_non_aggr)
2934 << SemaRef.
getLangOpts().CPlusPlus << CurrentObjectType;
2943 if (
auto *FD = dyn_cast_if_present<FieldDecl>(VD)) {
2945 }
else if (
auto *IFD = dyn_cast_if_present<IndirectFieldDecl>(VD)) {
2966 if (DeclContextLookupResult Lookup = RD->
lookup(FieldName);
2970 SemaRef.
Diag(Lookup.front()->getLocation(),
2971 diag::note_field_designator_found);
2978 FieldInitializerValidatorCCC CCC(RD);
2979 if (TypoCorrection Corrected = SemaRef.
CorrectTypo(
2982 CorrectTypoKind::ErrorRecovery, RD)) {
2985 SemaRef.
PDiag(diag::err_field_designator_unknown_suggest)
2986 << FieldName << CurrentObjectType);
2987 KnownField = Corrected.getCorrectionDeclAs<FieldDecl>();
2998 SemaRef.
Diag(Loc, diag::err_field_designator_unknown)
3006 unsigned NumBases = 0;
3007 if (
auto *CXXRD = dyn_cast<CXXRecordDecl>(RD))
3008 NumBases = CXXRD->getNumBases();
3010 unsigned FieldIndex = NumBases;
3012 for (
auto *FI : RD->
fields()) {
3013 if (FI->isUnnamedBitField())
3029 if (StructuredList) {
3030 FieldDecl *CurrentField = StructuredList->getInitializedFieldInUnion();
3032 assert(StructuredList->getNumInits() == 1
3033 &&
"A union should never have more than one initializer!");
3035 Expr *ExistingInit = StructuredList->getInit(0);
3038 diagnoseInitOverride(
3046 StructuredList->resizeInits(SemaRef.
Context, 0);
3047 StructuredList->setInitializedFieldInUnion(
nullptr);
3050 StructuredList->setInitializedFieldInUnion(*Field);
3057 InvalidUse = !SemaRef.
CanUseDecl(*Field, TreatUnavailableAsInvalid);
3080 if (IsFirstDesignator && !VerifyOnly && SemaRef.
getLangOpts().CPlusPlus &&
3083 (*NextField)->getFieldIndex() >
Field->getFieldIndex() + 1)) {
3085 FieldDecl *PrevField =
nullptr;
3087 if (FI->isUnnamedBitField())
3095 const auto GenerateDesignatedInitReorderingFixit =
3096 [&](SemaBase::SemaDiagnosticBuilder &
Diag) {
3097 struct ReorderInfo {
3099 const Expr *InitExpr{};
3102 llvm::SmallDenseMap<IdentifierInfo *, int> MemberNameInx{};
3103 llvm::SmallVector<ReorderInfo, 16> ReorderedInitExprs{};
3105 const auto *CxxRecord =
3108 for (
const FieldDecl *Field : CxxRecord->fields())
3109 MemberNameInx[
Field->getIdentifier()] =
Field->getFieldIndex();
3111 for (
const Expr *
Init : IList->
inits()) {
3112 if (
const auto *DI =
3113 dyn_cast_if_present<DesignatedInitExpr>(
Init)) {
3115 if (DI->size() != 1)
3118 const IdentifierInfo *
const FieldName =
3119 DI->getDesignator(0)->getFieldName();
3122 if (MemberNameInx.contains(FieldName))
3123 ReorderedInitExprs.emplace_back(
3124 ReorderInfo{MemberNameInx.at(FieldName),
Init});
3128 llvm::sort(ReorderedInitExprs,
3129 [](
const ReorderInfo &A,
const ReorderInfo &B) {
3130 return A.Pos < B.Pos;
3133 llvm::SmallString<128> FixedInitList{};
3135 const LangOptions &LangOpts = SemaRef.
getLangOpts();
3139 const ArrayRef<clang::Expr *> IListInits =
3140 IList->
inits().drop_front(CxxRecord->getNumBases());
3142 for (
const auto &[OrigExpr, Repl] :
3143 llvm::zip(IListInits, ReorderedInitExprs)) {
3145 Repl.InitExpr->getSourceRange());
3146 const StringRef InitText =
3157 diag::ext_designated_init_reordered)
3160 unsigned OldIndex = StructuredIndex - 1;
3161 if (StructuredList && OldIndex <= StructuredList->getNumInits()) {
3162 if (Expr *PrevInit = StructuredList->getInit(OldIndex)) {
3163 auto Diag = SemaRef.
Diag(PrevInit->getBeginLoc(),
3164 diag::note_previous_field_init)
3166 GenerateDesignatedInitReorderingFixit(
Diag);
3179 if (StructuredList && FieldIndex >= StructuredList->getNumInits())
3180 StructuredList->resizeInits(SemaRef.
Context, FieldIndex + 1);
3183 if (
Field->getType()->isIncompleteArrayType()) {
3185 if ((DesigIdx + 1) != DIE->
size()) {
3189 DesignatedInitExpr::Designator *NextD
3192 diag::err_designator_into_flexible_array_member)
3194 SemaRef.
Diag(
Field->getLocation(), diag::note_flexible_array_member)
3205 diag::err_flexible_array_init_needs_braces)
3207 SemaRef.
Diag(
Field->getLocation(), diag::note_flexible_array_member)
3214 if (!
Invalid && CheckFlexibleArrayInit(Entity, DIE->
getInit(), *Field,
3224 bool prevHadError = hadError;
3225 unsigned newStructuredIndex = FieldIndex;
3226 unsigned OldIndex = Index;
3229 InitializedEntity MemberEntity =
3231 CheckSubElementType(MemberEntity, IList,
Field->getType(), Index,
3232 StructuredList, newStructuredIndex);
3234 IList->
setInit(OldIndex, DIE);
3235 if (hadError && !prevHadError) {
3240 StructuredIndex = FieldIndex;
3245 QualType FieldType =
Field->getType();
3246 unsigned newStructuredIndex = FieldIndex;
3248 InitializedEntity MemberEntity =
3250 if (CheckDesignatedInitializer(MemberEntity, IList, DIE, DesigIdx + 1,
3251 FieldType,
nullptr,
nullptr, Index,
3252 StructuredList, newStructuredIndex,
3253 FinishSubobjectInit,
false))
3264 if (IsFirstDesignator) {
3271 StructuredIndex = FieldIndex;
3275 if (!FinishSubobjectInit)
3283 bool prevHadError = hadError;
3288 CheckStructUnionTypes(Entity, IList, CurrentObjectType, NoBases, Field,
3289 false, Index, StructuredList, FieldIndex);
3290 return hadError && !prevHadError;
3312 << CurrentObjectType;
3317 Expr *IndexExpr =
nullptr;
3318 llvm::APSInt DesignatedStartIndex, DesignatedEndIndex;
3322 DesignatedEndIndex = DesignatedStartIndex;
3326 DesignatedStartIndex =
3328 DesignatedEndIndex =
3337 if (DesignatedStartIndex.getZExtValue()!=DesignatedEndIndex.getZExtValue()&&
3344 DesignatedStartIndex
3345 = DesignatedStartIndex.extOrTrunc(MaxElements.getBitWidth());
3346 DesignatedStartIndex.setIsUnsigned(MaxElements.isUnsigned());
3348 = DesignatedEndIndex.extOrTrunc(MaxElements.getBitWidth());
3349 DesignatedEndIndex.setIsUnsigned(MaxElements.isUnsigned());
3350 if (DesignatedEndIndex >= MaxElements) {
3353 diag::err_array_designator_too_large)
3360 unsigned DesignatedIndexBitWidth =
3362 DesignatedStartIndex =
3363 DesignatedStartIndex.extOrTrunc(DesignatedIndexBitWidth);
3364 DesignatedEndIndex =
3365 DesignatedEndIndex.extOrTrunc(DesignatedIndexBitWidth);
3366 DesignatedStartIndex.setIsUnsigned(
true);
3367 DesignatedEndIndex.setIsUnsigned(
true);
3370 bool IsStringLiteralInitUpdate =
3371 StructuredList && StructuredList->isStringLiteralInit();
3372 if (IsStringLiteralInitUpdate && VerifyOnly) {
3375 StructuredList =
nullptr;
3376 }
else if (IsStringLiteralInitUpdate) {
3379 ASTContext &Context = SemaRef.
Context;
3380 Expr *SubExpr = StructuredList->getInit(0)->IgnoreParenImpCasts();
3386 QualType PromotedCharTy = CharTy;
3389 unsigned PromotedCharTyWidth = Context.
getTypeSize(PromotedCharTy);
3391 if (StringLiteral *SL = dyn_cast<StringLiteral>(SubExpr)) {
3394 if (
const auto *CAT = dyn_cast<ConstantArrayType>(AT);
3395 CAT && CAT->getSize().ult(StrLen))
3396 StrLen = CAT->getZExtSize();
3397 StructuredList->resizeInits(Context, StrLen);
3401 for (
unsigned i = 0, e = StrLen; i != e; ++i) {
3402 llvm::APInt CodeUnit(PromotedCharTyWidth, SL->getCodeUnit(i));
3403 Expr *
Init =
new (Context) IntegerLiteral(
3404 Context, CodeUnit, PromotedCharTy, SubExpr->
getExprLoc());
3405 if (CharTy != PromotedCharTy)
3408 FPOptionsOverride());
3409 StructuredList->updateInit(Context, i,
Init);
3418 if (
const auto *CAT = dyn_cast<ConstantArrayType>(AT);
3419 CAT && CAT->getSize().ult(StrLen))
3420 StrLen = CAT->getZExtSize();
3421 StructuredList->resizeInits(Context, StrLen);
3425 for (
unsigned i = 0, e = StrLen; i != e; ++i) {
3426 llvm::APInt CodeUnit(PromotedCharTyWidth, Str[i]);
3427 Expr *
Init =
new (Context) IntegerLiteral(
3428 Context, CodeUnit, PromotedCharTy, SubExpr->
getExprLoc());
3429 if (CharTy != PromotedCharTy)
3432 FPOptionsOverride());
3433 StructuredList->updateInit(Context, i,
Init);
3440 if (StructuredList &&
3441 DesignatedEndIndex.getZExtValue() >= StructuredList->getNumInits())
3442 StructuredList->resizeInits(SemaRef.
Context,
3443 DesignatedEndIndex.getZExtValue() + 1);
3449 unsigned ElementIndex = DesignatedStartIndex.getZExtValue();
3450 unsigned OldIndex = Index;
3452 InitializedEntity ElementEntity =
3455 while (DesignatedStartIndex <= DesignatedEndIndex) {
3461 if (CheckDesignatedInitializer(
3462 ElementEntity, IList, DIE, DesigIdx + 1, ElementType,
nullptr,
3463 nullptr, Index, StructuredList, ElementIndex,
3464 FinishSubobjectInit && (DesignatedStartIndex == DesignatedEndIndex),
3469 ++DesignatedStartIndex;
3470 ElementIndex = DesignatedStartIndex.getZExtValue();
3475 if (IsFirstDesignator) {
3476 if (NextElementIndex)
3477 *NextElementIndex = std::move(DesignatedStartIndex);
3478 StructuredIndex = ElementIndex;
3482 if (!FinishSubobjectInit)
3486 bool prevHadError = hadError;
3487 CheckArrayType(Entity, IList, CurrentObjectType, DesignatedStartIndex,
3489 StructuredList, ElementIndex);
3490 return hadError && !prevHadError;
3496InitListChecker::getStructuredSubobjectInit(InitListExpr *IList,
unsigned Index,
3497 QualType CurrentObjectType,
3498 InitListExpr *StructuredList,
3499 unsigned StructuredIndex,
3500 SourceRange InitRange,
3501 bool IsFullyOverwritten) {
3502 if (!StructuredList)
3505 Expr *ExistingInit =
nullptr;
3506 if (StructuredIndex < StructuredList->getNumInits())
3507 ExistingInit = StructuredList->
getInit(StructuredIndex);
3509 if (InitListExpr *
Result = dyn_cast_or_null<InitListExpr>(ExistingInit))
3518 if (!IsFullyOverwritten)
3541 diagnoseInitOverride(ExistingInit, InitRange);
3544 unsigned ExpectedNumInits = 0;
3545 if (Index < IList->getNumInits()) {
3546 if (
auto *
Init = dyn_cast_or_null<InitListExpr>(IList->
getInit(Index)))
3547 ExpectedNumInits =
Init->getNumInits();
3552 InitListExpr *
Result = createInitListExpr(
3553 CurrentObjectType, InitRange, ExpectedNumInits,
false);
3561InitListExpr *InitListChecker::createInitListExpr(QualType CurrentObjectType,
3562 SourceRange InitRange,
3563 unsigned ExpectedNumInits,
3567 {}, InitRange.
getEnd(), IsExplicit);
3569 QualType ResultType = CurrentObjectType;
3572 Result->setType(ResultType);
3575 unsigned NumElements = 0;
3577 if (
const ArrayType *AType
3579 if (
const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType)) {
3580 NumElements = CAType->getZExtSize();
3583 if (NumElements > ExpectedNumInits)
3586 }
else if (
const VectorType *VType = CurrentObjectType->
getAs<VectorType>()) {
3587 NumElements = VType->getNumElements();
3589 NumElements = numStructUnionElements(CurrentObjectType);
3601void InitListChecker::UpdateStructuredListElement(InitListExpr *StructuredList,
3602 unsigned &StructuredIndex,
3605 if (!StructuredList)
3609 StructuredIndex,
expr)) {
3615 diagnoseInitOverride(PrevInit,
expr->getSourceRange());
3624 InitListChecker Check(*
this, Entity, From,
Type,
true,
3627 return !Check.HadError();
3648 return S.
Diag(Loc, diag::err_array_designator_negative)
3651 Value.setIsUnsigned(
true);
3670 Designators.push_back(ASTDesignator::CreateFieldDesignator(
3674 llvm::APSInt IndexValue;
3680 Designators.push_back(ASTDesignator::CreateArrayDesignator(
3682 InitExpressions.push_back(Index);
3687 llvm::APSInt StartValue;
3688 llvm::APSInt EndValue;
3693 if (!StartDependent)
3699 if (!StartIndex || !EndIndex)
3703 if (StartDependent || EndDependent) {
3705 }
else if (StartValue.getBitWidth() > EndValue.getBitWidth())
3706 EndValue = EndValue.extend(StartValue.getBitWidth());
3707 else if (StartValue.getBitWidth() < EndValue.getBitWidth())
3708 StartValue = StartValue.extend(EndValue.getBitWidth());
3710 if (!StartDependent && !EndDependent && EndValue < StartValue) {
3716 Designators.push_back(ASTDesignator::CreateArrayRangeDesignator(
3719 InitExpressions.push_back(StartIndex);
3720 InitExpressions.push_back(EndIndex);
3730 EqualOrColonLoc, GNUSyntax,
3738InitializedEntity::InitializedEntity(
ASTContext &Context,
unsigned Index,
3740 : Parent(&Parent), Index(Index)
3743 Kind = EK_ArrayElement;
3744 Type = AT->getElementType();
3746 Kind = EK_VectorElement;
3747 Type = VT->getElementType();
3749 Kind = EK_MatrixElement;
3750 Type = MT->getElementType();
3752 const ComplexType *CT = Parent.getType()->getAs<ComplexType>();
3753 assert(CT &&
"Unexpected type");
3754 Kind = EK_ComplexElement;
3755 Type = CT->getElementType();
3762 bool IsInheritedVirtualBase,
3763 const InitializedEntity *Parent) {
3764 InitializedEntity
Result;
3767 Result.Base = {
Base, IsInheritedVirtualBase};
3785 return Variable.VariableOrMember->getDeclName();
3808 llvm_unreachable(
"Invalid EntityKind!");
3843 llvm_unreachable(
"Invalid EntityKind!");
3879unsigned InitializedEntity::dumpImpl(raw_ostream &OS)
const {
3882 for (
unsigned I = 0; I != Depth; ++I)
3899 case EK_New: OS <<
"New";
break;
3903 case EK_Base: OS <<
"Base";
break;
3908 OS <<
"MatrixElement " <<
Index;
3913 OS <<
"Block (lambda)";
3916 OS <<
"LambdaCapture ";
3923 D->printQualifiedName(OS);
3932 dumpImpl(llvm::errs());
3988 for (
const Step &S : llvm::reverse(Steps)) {
4049 llvm_unreachable(
"Invalid EntityKind!");
4057InitializationSequence
4060 bool HadMultipleCandidates) {
4085 bool BindingTemporary) {
4110 bool HadMultipleCandidates) {
4155 bool TopLevelOfInitList) {
4173 bool HadMultipleCandidates,
bool FromInitList,
bool AsInitList) {
4224 Steps.insert(Steps.begin(), S);
4285 "Can only unwrap trivial init lists.");
4289 Steps.insert(Steps.begin(), S);
4295 "Can only rewrap trivial init lists.");
4299 Steps.insert(Steps.begin(), S);
4317 this->Failure = Failure;
4318 this->FailedOverloadResult =
Result;
4339 if (!
Init.empty()) {
4359 "consuming an object of unretainable type?");
4379 bool TreatUnavailableAsInvalid) {
4397 Expr *OVEAsExpr = OVE;
4400 TreatUnavailableAsInvalid);
4406 const InitializedEntity &Entity,
4407 const InitializationKind &Kind,
4408 InitListExpr *InitList,
4410 bool TreatUnavailableAsInvalid);
4421 bool TreatUnavailableAsInvalid) {
4442 TreatUnavailableAsInvalid);
4469 bool CopyInitializing,
bool AllowExplicit,
bool OnlyListConstructors,
4470 bool IsListInit,
bool RequireActualConstructor,
4471 bool SecondStepOfCopyInit =
false) {
4477 if (!Info.Constructor || Info.Constructor->isInvalidDecl())
4494 bool SuppressUserConversions =
4495 SecondStepOfCopyInit ||
4499 if (Info.ConstructorTmpl)
4501 Info.ConstructorTmpl, Info.FoundDecl,
4502 nullptr, Args, CandidateSet, SuppressUserConversions,
4503 false, AllowExplicit);
4512 bool AllowExplicitConv = AllowExplicit && !CopyInitializing &&
4516 CandidateSet, SuppressUserConversions,
4517 false, AllowExplicit,
4533 if (S.
getLangOpts().CPlusPlus17 && Args.size() == 1 &&
4534 !RequireActualConstructor && !SecondStepOfCopyInit) {
4536 auto *SourceRD =
Initializer->getType()->getAsCXXRecordDecl();
4538 const auto &Conversions = SourceRD->getVisibleConversionFunctions();
4539 for (
auto I = Conversions.begin(), E = Conversions.end(); I != E; ++I) {
4553 ConvTemplate, I.getPair(), ActingDC,
Initializer, DestType,
4554 CandidateSet, AllowExplicit, AllowExplicit,
4558 DestType, CandidateSet, AllowExplicit,
4585 bool IsListInit =
false,
4586 bool IsInitListCopy =
false) {
4587 assert(((!IsListInit && !IsInitListCopy) ||
4589 "IsListInit/IsInitListCopy must come with a single initializer list "
4602 bool RequireActualConstructor =
4608 bool CopyElisionPossible =
false;
4609 auto ElideConstructor = [&] {
4625 if (S.
getLangOpts().CPlusPlus17 && !RequireActualConstructor &&
4626 UnwrappedArgs.size() == 1 && UnwrappedArgs[0]->isPRValue() &&
4648 assert(!IsInitListCopy &&
4649 "IsInitListCopy only possible with aggregate types");
4650 CopyElisionPossible =
true;
4664 bool AllowExplicit = Kind.AllowExplicit() || IsListInit;
4674 bool AsInitializerList =
false;
4686 AsInitializerList =
true;
4692 S, Kind.getLocation(), Args, CandidateSet, DestType, Ctors, Best,
4693 CopyInitialization, AllowExplicit,
4694 true, IsListInit, RequireActualConstructor);
4711 Args[0]->getType().getNonReferenceType(),
4713 RequireActualConstructor =
true;
4721 AsInitializerList =
false;
4723 S, Kind.getLocation(), UnwrappedArgs, CandidateSet, DestType, Ctors,
4724 Best, CopyInitialization, AllowExplicit,
4725 false, IsListInit, RequireActualConstructor);
4737 bool HadMultipleCandidates = (CandidateSet.
size() > 1);
4741 if (
auto *CD = dyn_cast<CXXConversionDecl>(Best->Function)) {
4743 QualType ConvType = CD->getConversionType();
4745 "should not have selected this conversion function");
4747 HadMultipleCandidates);
4761 DestRecordDecl->isAggregate() &&
4762 DestRecordDecl->hasUninitializedExplicitInitFields() &&
4764 S.
Diag(Kind.getLocation(), diag::warn_field_requires_explicit_init)
4765 << 1 << DestRecordDecl;
4790 if (IsListInit && !Kind.AllowExplicit() && CtorDecl->
isExplicit()) {
4810 Best->FoundDecl, CtorDecl, DestArrayType, HadMultipleCandidates,
4811 IsListInit | IsInitListCopy, AsInitializerList);
4815 Sema &S,
const InitializedEntity &Entity,
const InitializationKind &Kind,
4831 bool IsAggrListInit) {
4849 Sequence,
false, IsAggrListInit);
4877 bool HadMultipleCandidates =
false;
4880 UnqualifiedTargetType,
4882 &HadMultipleCandidates)) {
4884 HadMultipleCandidates);
4885 SourceType = Fn->getType();
4896 const InitializedEntity &Entity,
4897 const InitializationKind &Kind,
4899 QualType cv1T1, QualType T1,
4901 QualType cv2T2, QualType T2,
4904 bool TopLevelOfInitList);
4907 const InitializedEntity &Entity,
4908 const InitializationKind &Kind,
4910 InitListExpr *InitList =
nullptr);
4918 bool TreatUnavailableAsInvalid) {
4958 T1Quals, cv2T2, T2, T2Quals, Sequence,
4966 if (!Sequence.
steps().empty())
4989 TreatUnavailableAsInvalid);
5024 bool TreatUnavailableAsInvalid) {
5041 TreatUnavailableAsInvalid);
5079 !IsDesignatedInit) {
5090 Expr *InitListAsExpr = InitList;
5092 S, Entity, SubKind, InitListAsExpr, DestType, Sequence,
5113 "Deduced to other type?");
5115 "List-initialize structured bindings but not "
5116 "direct-list-initialization?");
5121 Entity, SubInit[0], DestType, Sequence,
5122 TreatUnavailableAsInvalid);
5138 TreatUnavailableAsInvalid);
5171 TreatUnavailableAsInvalid))
5175 Expr *InitListAsExpr = InitList;
5177 DestType, Sequence,
true);
5243 if (
Init->getType()->isRecordType() ||
5254 TreatUnavailableAsInvalid);
5261 InitListChecker CheckInitList(S, Entity, InitList,
5262 DestType,
true, TreatUnavailableAsInvalid);
5263 if (CheckInitList.HadError()) {
5285 "Must have incompatible references when binding via conversion");
5296 bool AllowExplicitCtors =
false;
5297 bool AllowExplicitConvs = Kind.allowExplicitConversionFunctionsInRefBinding();
5302 if (T1RecordDecl->isInvalidDecl())
5308 if (!Info.Constructor)
5311 if (!Info.Constructor->isInvalidDecl() &&
5312 Info.Constructor->isConvertingConstructor(
true)) {
5313 if (Info.ConstructorTmpl)
5315 Info.ConstructorTmpl, Info.FoundDecl,
5318 false, AllowExplicitCtors);
5321 Info.Constructor, Info.FoundDecl,
Initializer, CandidateSet,
5323 false, AllowExplicitCtors);
5330 if (T2RecordDecl->isInvalidDecl())
5334 const auto &Conversions = T2RecordDecl->getVisibleConversionFunctions();
5335 for (
auto I = Conversions.begin(), E = Conversions.end(); I != E; ++I) {
5354 if ((AllowRValues ||
5358 ConvTemplate, I.getPair(), ActingDC,
Initializer, DestType,
5360 false, AllowExplicitConvs);
5363 Conv, I.getPair(), ActingDC,
Initializer, DestType, CandidateSet,
5364 false, AllowExplicitConvs);
5385 cv3T3 = Function->getReturnType();
5397 bool HadMultipleCandidates = (CandidateSet.
size() > 1);
5399 HadMultipleCandidates);
5410 "should not have conversion after constructor");
5414 ICS.
Standard = Best->FinalConversion;
5435 if (RefConv & Sema::ReferenceConversions::DerivedToBase)
5437 else if (RefConv & Sema::ReferenceConversions::ObjC)
5439 else if (RefConv & Sema::ReferenceConversions::Function)
5441 else if (RefConv & Sema::ReferenceConversions::Qualification) {
5450 const InitializedEntity &Entity,
5458 bool TopLevelOfInitList) {
5476 T1Quals, cv2T2, T2, T2Quals, Sequence,
5477 TopLevelOfInitList);
5501 bool TopLevelOfInitList) {
5525 if (isLValueRef || T1Function) {
5528 (Kind.isCStyleOrFunctionalCast() &&
5532 if (RefConv & (Sema::ReferenceConversions::DerivedToBase |
5533 Sema::ReferenceConversions::ObjC)) {
5536 if (RefConv & (Sema::ReferenceConversions::Qualification))
5540 if (RefConv & Sema::ReferenceConversions::DerivedToBase)
5544 }
else if (RefConv & Sema::ReferenceConversions::Qualification) {
5548 }
else if (RefConv & Sema::ReferenceConversions::Function) {
5568 (isLValueRef || InitCategory.
isRValue())) {
5573 isLValueRef, Sequence);
5608 switch (RefRelationship) {
5611 FK = InitializationSequence::
5612 FK_NonConstLValueReferenceBindingToBitfield;
5614 FK = InitializationSequence::
5615 FK_NonConstLValueReferenceBindingToVectorElement;
5617 FK = InitializationSequence::
5618 FK_NonConstLValueReferenceBindingToMatrixElement;
5620 llvm_unreachable(
"unexpected kind of compatible initializer");
5626 FK = InitializationSequence::
5627 FK_NonConstLValueReferenceBindingToUnrelated;
5644 (Kind.isCStyleOrFunctionalCast() &&
5673 auto T1QualsIgnoreAS = T1Quals;
5674 auto T2QualsIgnoreAS = T2Quals;
5676 T1QualsIgnoreAS.removeAddressSpace();
5677 T2QualsIgnoreAS.removeAddressSpace();
5689 if (T1QualsIgnoreAS != T2QualsIgnoreAS)
5699 cv1T4 = cv1T4WithAS;
5704 if (RefConv & Sema::ReferenceConversions::DerivedToBase)
5706 else if (RefConv & Sema::ReferenceConversions::ObjC)
5708 else if (RefConv & Sema::ReferenceConversions::Qualification) {
5725 isLValueRef, Sequence);
5765 Sema::AllowedExplicit::None,
5767 Kind.isCStyleOrFunctionalCast(),
5786 TopLevelOfInitList);
5795 ((T1CVRQuals | T2CVRQuals) != T1CVRQuals ||
5840 assert((!InitList || InitList->
getNumInits() == 0) &&
5841 "Shouldn't use value-init for non-empty init lists");
5847 assert(!
T->isVoidType() &&
"Cannot value-init void");
5852 if (
auto *ClassDecl =
T->getAsCXXRecordDecl()) {
5853 bool NeedZeroInitialization =
true;
5868 NeedZeroInitialization =
false;
5876 if (NeedZeroInitialization)
5890 ClassDecl->hasUninitializedReferenceMember()) {
5898 Expr *InitListAsExpr = InitList;
5900 bool InitListSyntax = InitList;
5905 S, Entity, Kind, Args,
T, Entity.
getType(), Sequence, InitListSyntax);
5954 unsigned EntityIndexToProcess = 0;
5957 Expr *ArrayFiller =
nullptr;
5958 FieldDecl *InitializedFieldInUnion =
nullptr;
5962 Expr *Arg,
Expr **InitExpr =
nullptr) {
5964 S, SubEntity, SubKind,
5980 ER = IS.
Perform(S, SubEntity, SubKind,
5987 *InitExpr = ER.
get();
5989 InitExprs.push_back(ER.
get());
5996 uint64_t ArrayLength;
6004 ArrayLength = CAT->getZExtSize();
6005 ResultType = Entity.
getType();
6012 const Expr *SE = VAT->getSizeExpr();
6018 ArrayLength = Args.size();
6020 EntityIndexToProcess = ArrayLength;
6024 for (
Expr *E : Args) {
6029 if (!HandleInitializedEntity(SubEntity, SubKind, E))
6037 Kind.getLocation(), Kind.getLocation(), Kind.getLocation(),
true);
6038 if (!HandleInitializedEntity(SubEntity, SubKind,
nullptr, &ArrayFiller))
6042 if (ResultType.
isNull()) {
6062 if (EntityIndexToProcess < Args.size()) {
6068 Expr *E = Args[EntityIndexToProcess];
6071 if (!HandleInitializedEntity(SubEntity, SubKind, E))
6079 Kind.getLocation(), Kind.getLocation(), Kind.getLocation(),
6081 if (!HandleInitializedEntity(SubEntity, SubKind,
nullptr))
6084 EntityIndexToProcess++;
6097 if (EntityIndexToProcess < Args.size()) {
6099 Expr *E = Args[EntityIndexToProcess];
6117 if (!HandleInitializedEntity(SubEntity, SubKind, E))
6125 InitializedFieldInUnion = FD;
6126 EntityIndexToProcess = 1;
6132 if (!VerifyOnly && FD->
hasAttr<ExplicitInitAttr>() &&
6134 S.
Diag(Kind.getLocation(), diag::warn_field_requires_explicit_init)
6145 Kind.getParenOrBraceRange().getEnd(), FD, SubEntity);
6148 InitExprs.push_back(DIE.
get());
6158 S.
Diag(SR.
getEnd(), diag::err_init_reference_member_uninitialized)
6165 Kind.getLocation(), Kind.getLocation(), Kind.getLocation(),
true);
6166 if (!HandleInitializedEntity(SubEntity, SubKind,
nullptr))
6170 EntityIndexToProcess++;
6172 ResultType = Entity.
getType();
6177 if (EntityIndexToProcess < Args.size()) {
6181 int InitKind =
T->isArrayType() ? 0 :
T->isUnionType() ? 4 : 5;
6182 SourceRange ExcessInitSR(Args[EntityIndexToProcess]->getBeginLoc(),
6183 Args.back()->getEndLoc());
6184 S.
Diag(Kind.getLocation(), diag::err_excess_initializers)
6185 << InitKind << ExcessInitSR;
6199 CPLIE->setArrayFiller(ArrayFiller);
6200 if (InitializedFieldInUnion)
6201 CPLIE->setInitializedFieldInUnion(InitializedFieldInUnion);
6203 S.
Diag(Kind.getLocation(),
6204 diag::warn_cxx17_compat_aggregate_init_paren_list)
6205 << Kind.getLocation() << SR << ResultType;
6217 bool TopLevelOfInitList) {
6218 assert(!DestType->
isReferenceType() &&
"References are handled elsewhere");
6221 "Must have a class type to perform a user-defined conversion");
6231 bool AllowExplicit = Kind.AllowExplicit();
6241 if (!Info.Constructor)
6244 if (!Info.Constructor->isInvalidDecl() &&
6245 Info.Constructor->isConvertingConstructor(
true)) {
6246 if (Info.ConstructorTmpl)
6248 Info.ConstructorTmpl, Info.FoundDecl,
6251 false, AllowExplicit);
6256 false, AllowExplicit);
6272 const auto &Conversions =
6274 for (
auto I = Conversions.begin(), E = Conversions.end(); I != E; ++I) {
6289 ConvTemplate, I.getPair(), ActingDC,
Initializer, DestType,
6290 CandidateSet, AllowExplicit, AllowExplicit);
6293 DestType, CandidateSet, AllowExplicit,
6319 bool HadMultipleCandidates = (CandidateSet.
size() > 1);
6327 HadMultipleCandidates);
6354 QualType ConvType = Function->getCallResultType();
6356 HadMultipleCandidates);
6376 Function->getReturnType()->isReferenceType() ||
6386 assert(Best->HasFinalConversion);
6387 if (Best->FinalConversion.First || Best->FinalConversion.Second ||
6388 Best->FinalConversion.Third) {
6391 ICS.
Standard = Best->FinalConversion;
6401 bool isAddressOf,
bool &isWeakAccess) {
6407 if (op->getOpcode() == UO_AddrOf)
6412 }
else if (
CastExpr *ce = dyn_cast<CastExpr>(e)) {
6413 switch (ce->getCastKind()) {
6416 case CK_LValueBitCast:
6420 case CK_ArrayToPointerDecay:
6423 case CK_NullToPointer:
6435 isWeakAccess =
true;
6469 bool isWeakAccess =
false;
6473 if (S.
getLangOpts().ObjCAutoRefCount && isWeakAccess)
6493 if (!Context.hasSameType(Dest->
getElementType(), Source->getElementType()))
6505 bool ArrayDecay =
false;
6510 ArgPointee = ArgArrayType->getElementType();
6522 bool ShouldCopy =
true;
6562 std::optional<llvm::APSInt>
Value =
Init->getIntegerConstantExpr(Ctx);
6593 "cl_intel_device_side_avc_motion_estimation", S.
getLangOpts()) &&
6595 if (DestType->isOCLIntelSubgroupAVCMcePayloadType() ||
6596 DestType->isOCLIntelSubgroupAVCMceResultType())
6610 MultiExprArg Args,
bool TopLevelOfInitList,
bool TreatUnavailableAsInvalid)
6614 TreatUnavailableAsInvalid);
6620 auto *DRE = dyn_cast<DeclRefExpr>(E);
6691 bool TopLevelOfInitList,
6692 bool TreatUnavailableAsInvalid) {
6699 for (
unsigned I = 0, E = Args.size(); I != E; ++I)
6700 if (Args[I]->
getType()->isNonOverloadPlaceholderType()) {
6707 Args[I] = result.
get();
6729 if (Args.size() == 1) {
6747 TreatUnavailableAsInvalid);
6756 if (Rec->hasUninitializedExplicitInitFields()) {
6768 if (Var && !
Initializer && !Rec->isUnion() && !Rec->isInvalidDecl()) {
6770 unsigned DiagID = diag::warn_default_init_const_field_unsafe;
6773 DiagID = diag::warn_default_init_const_field;
6776 diag::warn_cxx_compat_hack_fake_diagnostic_do_not_emit,
6780 S.
Diag(FD->
getLocation(), diag::note_default_init_const_member) << FD;
6793 if (Args.size() != 1)
6803 TopLevelOfInitList);
6828 const ArrayType *DestAT = Context.getAsArrayType(DestType);
6866 TreatUnavailableAsInvalid);
6878 TreatUnavailableAsInvalid);
6904 *
this, TreatUnavailableAsInvalid);
6906 }
else if (S.
getLangOpts().CPlusPlus20 && !TopLevelOfInitList &&
6922 bool allowObjCWritebackConversion = S.
getLangOpts().ObjCAutoRefCount &&
6931 assert(
Initializer &&
"Initializer must be non-null");
6933 if (allowObjCWritebackConversion &&
6961 (Context.hasSameUnqualifiedType(SourceType, DestType) ||
6963 SourceType, DestType))))) {
6973 assert(
Initializer &&
"Initializer must be non-null");
6975 TopLevelOfInitList);
6980 assert(Args.size() >= 1 &&
"Zero-argument case handled above");
6985 auto ShouldTryListInitialization = [&]() ->
bool {
6995 if (!DestIsVec && !DestIsMat)
7000 if (Args.size() == 1) {
7001 assert(!SourceType.
isNull() &&
7002 "Source QualType should not be null when arg size is exactly 1");
7006 if (DestIsMat && !SourceIsVec)
7008 if (DestIsVec && !SourceIsMat)
7014 return SourceType.
isNull() ||
7015 !Context.hasSameUnqualifiedType(SourceType, DestType);
7017 if (ShouldTryListInitialization()) {
7020 Args.back()->getEndLoc(),
false);
7024 TreatUnavailableAsInvalid);
7029 if (Args.size() > 1) {
7044 assert(
Initializer &&
"Initializer must be non-null");
7047 bool NeedAtomicConversion =
false;
7049 if (Context.hasSameUnqualifiedType(SourceType,
Atomic->getValueType()) ||
7051 Atomic->getValueType())) {
7052 DestType =
Atomic->getValueType();
7053 NeedAtomicConversion =
true;
7058 TopLevelOfInitList);
7060 if (!
Failed() && NeedAtomicConversion)
7087 Sema::AllowedExplicit::None,
7089 Kind.isCStyleOrFunctionalCast(),
7090 allowObjCWritebackConversion);
7098 bool ShouldCopy =
true;
7114 }
else if (ICS.
isBad()) {
7120 else if (
Initializer->getType()->isFunctionType() &&
7133 for (
auto &S : Steps)
7141 bool Diagnose =
false) {
7193 llvm_unreachable(
"Invalid EntityKind!");
7228 llvm_unreachable(
"missed an InitializedEntity kind?");
7263 llvm_unreachable(
"missed an InitializedEntity kind?");
7303 llvm_unreachable(
"missed an InitializedEntity kind?");
7330 bool IsExtraneousCopy) {
7335 auto *Class =
T->getAsCXXRecordDecl();
7353 S, Loc, CurInitExpr, CandidateSet,
T, Ctors, Best,
7365 ? diag::ext_rvalue_to_reference_temp_copy_no_viable
7366 : diag::err_temp_copy_no_viable)
7384 S.
Diag(Loc, diag::err_temp_copy_deleted)
7391 bool HadMultipleCandidates = CandidateSet.
size() > 1;
7400 if (IsExtraneousCopy) {
7411 for (
unsigned I = 1, N =
Constructor->getNumParams(); I != N; ++I) {
7414 diag::err_call_incomplete_argument))
7455 Best->Function->getParamDecl(0)->getType().getNonReferenceType(),
7460 Loc,
T, Best->FoundDecl,
Constructor, Elidable, ConstructorArgs,
7461 HadMultipleCandidates,
7477 Expr *CurInitExpr) {
7495 S, Loc, CurInitExpr, CandidateSet, CurInitExpr->
getType(), Ctors, Best,
7508 Best->FoundDecl, Entity,
Diag);
7529void InitializationSequence::PrintInitLocationNote(
Sema &S,
7544 diag::note_method_return_type_change)
7562 switch (Kind.getKind()) {
7568 return NumArgs != 1;
7580 bool &ConstructorInitRequiresZeroInit,
7581 bool IsListInitialization,
7582 bool IsStdInitListInitialization,
7585 unsigned NumArgs = Args.size();
7592 SourceLocation Loc = (Kind.isCopyInit() && Kind.getEqualLoc().isValid())
7593 ? Kind.getEqualLoc()
7594 : Kind.getLocation();
7600 assert(
Constructor->getParent() &&
"No parent class for constructor.");
7617 bool AllowExplicitConv =
7618 Kind.AllowExplicit() && !Kind.isCopyInit() && Args.size() == 1 &&
7623 if (NumArgs == 1 && !Kind.isExplicitCast())
7625 Entity.
getType(), Args.front()->getType(), Kind.getLocation());
7630 ConstructorArgs, AllowExplicitConv,
7631 IsListInitialization))
7645 if (I >= ConstructorArgs.size() && FD->
hasAttr<ExplicitInitAttr>() &&
7647 S.
Diag(Loc, diag::warn_field_requires_explicit_init)
7662 : Kind.getParenOrBraceRange();
7665 if (
auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(
7675 ConstructorArgs, ParenOrBraceRange, HadMultipleCandidates,
7676 IsListInitialization, IsStdInitListInitialization,
7677 ConstructorInitRequiresZeroInit),
7693 if (IsListInitialization)
7694 ParenOrBraceRange =
SourceRange(LBraceLoc, RBraceLoc);
7696 ParenOrBraceRange = Kind.getParenOrBraceRange();
7705 HadMultipleCandidates,
7706 IsListInitialization,
7707 IsStdInitListInitialization,
7708 ConstructorInitRequiresZeroInit,
7716 HadMultipleCandidates,
7717 IsListInitialization,
7718 IsStdInitListInitialization,
7719 ConstructorInitRequiresZeroInit,
7750 const Expr *PostInit);
7757 bool IsReturnStmt) {
7768 unsigned DiagID = 0;
7798 if (VD->
hasAttr<BlocksAttr>())
7812 DiagID = diag::warn_redundant_move_on_return;
7814 DiagID = diag::warn_pessimizing_move_on_return;
7816 DiagID = diag::warn_pessimizing_move_on_initialization;
7858 if (UO->getOpcode() == UO_Deref &&
7859 UO->getSubExpr()->IgnoreParenCasts()->
7862 S.
PDiag(diag::warn_binding_null_to_reference)
7863 << UO->getSubExpr()->getSourceRange());
7869 bool BoundToLvalueReference) {
7879 Cleanup.setExprNeedsCleanups(
false);
7915 if (!PointeeTy.isNull() &&
7916 PointeeTy.getAddressSpace() != ExprPointeeTy.getAddressSpace())
7917 CK = CK_AddressSpaceConversion;
7919 CK = CK_AddressSpaceConversion;
7934 if (!ZeroInitializationFixit.empty()) {
7936 const auto *VD = dyn_cast_or_null<VarDecl>(D);
7942 if (!DestType->
isRecordType() && VD && VD->isConstexpr()) {
7944 S.
Diag(Kind.getLocation(), diag::err_constexpr_var_requires_const_init)
7947 ZeroInitializationFixit);
7949 unsigned DiagID = diag::err_default_init_const;
7951 DiagID = diag::ext_default_init_const;
7953 S.
Diag(Kind.getLocation(), DiagID)
7956 ZeroInitializationFixit);
7978 ArrayT->getElementType(),
7979 nullptr, ArrayT->getSizeModifier(),
7980 ArrayT->getIndexTypeCVRQualifiers());
7984 !Kind.isExplicitCast()) {
7986 SourceRange ParenRange = Kind.getParenOrBraceRange();
7991 Kind.isExplicitCast() ||
8007 S.
Diag(
Init->getBeginLoc(), diag::warn_cxx98_compat_reference_list_init)
8008 <<
Init->getSourceRange();
8011 if (S.
getLangOpts().MicrosoftExt && Args.size() == 1 &&
8017 S.
Diag(
Init->getBeginLoc(), diag::ext_init_from_predefined) <<
Init;
8028 S.
Diag(Args[0]->getBeginLoc(), diag::err_opencl_atomic_init)
8047 bool IsHLSLVectorOrMatrixInit =
8051 (void)IsHLSLVectorOrMatrixInit;
8056 switch (Steps.front().Kind) {
8091 assert(Args.size() == 1 || IsHLSLVectorOrMatrixInit);
8110 isa_and_nonnull<InitListExpr>(CurInit.
get()));
8115 auto checkAbstractType = [&](
QualType T) ->
bool {
8120 diag::err_allocation_of_abstract_type);
8125 bool ConstructorInitRequiresZeroInit =
false;
8158 bool IgnoreBaseAccess = Kind.isCStyleOrFunctionalCast();
8170 CK_DerivedToBase, CurInit.
get(),
8186 if (
auto *DRE = dyn_cast<DeclRefExpr>(CurInit.
get()->
IgnoreParens())) {
8187 if (
auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl())) {
8200 assert(CurInit.
get()->
isPRValue() &&
"not a temporary");
8258 bool CreatedObject =
false;
8275 HadMultipleCandidates,
8287 CastKind = CK_ConstructorConversion;
8288 CreatedObject =
true;
8298 HadMultipleCandidates);
8302 CastKind = CK_UserDefinedConversion;
8306 if (CreatedObject && checkAbstractType(CurInit.
get()->
getType()))
8323 if (
auto *
Record =
T->castAsCXXRecordDecl()) {
8326 S.
PDiag(diag::err_access_dtor_temp) <<
T);
8350 "function reference should be lvalue");
8356 assert(CurInit.
get()->
isPRValue() &&
"cannot convert glvalue to atomic");
8364 if (
const auto *FromPtrType =
8367 if (FromPtrType->getPointeeType()->hasAttr(attr::NoDeref) &&
8368 !ToPtrType->getPointeeType()->hasAttr(attr::NoDeref)) {
8371 if (!Kind.isStaticCast()) {
8373 diag::warn_noderef_to_dereferenceable_pointer)
8392 CurInit = CurInitExprRes;
8413 InitListChecker PerformInitList(S, InitEntity,
8414 InitList, Ty,
false,
8416 if (PerformInitList.HadError())
8424 if ((*ResultType)->isRValueReferenceType())
8426 else if ((*ResultType)->isLValueReferenceType())
8433 PerformInitList.getFullyStructuredList();
8436 : StructuredInitList;
8453 assert(Args.size() == 1 &&
"expected a single argument for list init");
8455 S.
Diag(InitList->
getExprLoc(), diag::warn_cxx98_compat_ctor_list_init)
8461 ConstructorInitRequiresZeroInit,
8500 bool IsStdInitListInit =
8504 ? Kind.getParenOrBraceRange()
8507 S, UseTemporary ? TempEntity : Entity, Kind,
8509 ConstructorInitRequiresZeroInit,
8520 if (NextStep != StepEnd &&
8525 ConstructorInitRequiresZeroInit =
true;
8528 !Kind.isImplicitValueInit()) {
8532 Kind.getRange().getBegin());
8536 Kind.getRange().getEnd());
8571 CurInit = CurInitExprRes;
8586 S.
Diag(Kind.getLocation(), diag::err_c23_constexpr_pointer_not_null);
8601 InitialCurInit.
get(),
8604 PrintInitLocationNote(S, Entity);
8606 }
else if (Complained)
8607 PrintInitLocationNote(S, Entity);
8623 CK_ObjCObjectLValueCast,
8635 BaseExpr, Kind.getLocation(), IndexExpr, Kind.getLocation());
8636 ArrayLoopCommonExprs.push_back(BaseExpr);
8641 assert(!ArrayLoopCommonExprs.empty() &&
8642 "mismatched SK_ArrayLoopIndex and SK_ArrayLoopInit");
8643 Expr *Common = ArrayLoopCommonExprs.pop_back_val();
8652 S.
Diag(Kind.getLocation(), diag::ext_array_init_copy)
8666 IncompleteDest->getElementType(), ConstantSource->getSize(),
8676 S.
Diag(Kind.getLocation(), diag::ext_array_init_parens)
8696 diag::warn_cxx98_compat_initializer_list_init)
8709 [[maybe_unused]]
bool IsStdInitializerList =
8711 assert(IsStdInitializerList &&
8712 "StdInitializerList step to non-std::initializer_list");
8714 assert(
Record->isCompleteDefinition() &&
8715 "std::initializer_list should have already be "
8716 "complete/instantiated by this point");
8718 auto InvalidType = [&] {
8720 diag::err_std_initializer_list_malformed)
8727 return InvalidType();
8730 if (Field ==
Record->field_end())
8731 return InvalidType();
8734 if (!Field->getType()->isPointerType() ||
8736 ElementType.withConst()))
8737 return InvalidType();
8739 if (++Field ==
Record->field_end())
8740 return InvalidType();
8743 if (
const auto *PT = Field->getType()->getAs<
PointerType>()) {
8745 ElementType.withConst()))
8746 return InvalidType();
8748 if (Field->isBitField() ||
8750 return InvalidType();
8753 if (++Field !=
Record->field_end())
8754 return InvalidType();
8781 "Sampler initialization on non-sampler type.");
8787 S.
Diag(Kind.getLocation(), diag::err_sampler_argument_required)
8794 if (!Var->hasGlobalStorage()) {
8809 Var->getInit()))->getSubExpr();
8810 SourceType =
Init->getType();
8822 S.
Diag(Kind.getLocation(), diag::err_sampler_initializer_not_integer)
8830 const uint64_t SamplerValue =
Result.getLimitedValue();
8837 unsigned AddressingMode = (0x0E & SamplerValue) >> 1;
8838 unsigned FilterMode = (0x30 & SamplerValue) >> 4;
8839 if (FilterMode != 1 && FilterMode != 2 &&
8841 "cl_intel_device_side_avc_motion_estimation", S.
getLangOpts()))
8842 S.
Diag(Kind.getLocation(),
8843 diag::warn_sampler_initializer_invalid_bits)
8845 if (AddressingMode > 4)
8846 S.
Diag(Kind.getLocation(),
8847 diag::warn_sampler_initializer_invalid_bits)
8848 <<
"Addressing Mode";
8854 CK_IntToOCLSampler);
8860 "Wrong type for initialization of OpenCL opaque type.");
8863 CK_ZeroToOCLOpaqueType,
8871 if (CurInit.
get() && ResultType)
8900 S.CheckBitFieldInitialization(Kind.getLocation(),
8914 if (
T->isReferenceType()) {
8915 S.
Diag(Loc, diag::err_reference_without_init)
8916 <<
T.getNonReferenceType();
8920 CXXRecordDecl *RD =
T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
8924 for (
const auto *FI : RD->
fields()) {
8925 if (FI->isUnnamedBitField())
8929 S.
Diag(Loc, diag::note_value_initialization_here) << RD;
8934 for (
const auto &BI : RD->
bases()) {
8936 S.
Diag(Loc, diag::note_value_initialization_here) << RD;
8971 if (fromDecl && destDecl && fromDecl->getDeclKind() == Decl::CXXRecord &&
8972 destDecl->getDeclKind() == Decl::CXXRecord &&
8973 !fromDecl->isInvalidDecl() && !destDecl->isInvalidDecl() &&
8974 !fromDecl->hasDefinition() &&
8977 S.
Diag(fromDecl->getLocation(), diag::note_forward_class_conversion)
9005 if (
auto *D = Entity.
getDecl())
9006 Loc = D->getLocation();
9007 S.
Diag(Loc, diag::note_in_reference_temporary_list_initializer) <<
T;
9011 InitListChecker DiagnoseInitList(S, Entity, InitList, DestType,
9014 assert(DiagnoseInitList.HadError() &&
9015 "Inconsistent init list check result.");
9030 if (Args.size() == 1) {
9031 auto *List = dyn_cast<InitListExpr>(Args[0]);
9032 if (List && List->getNumInits() == 1)
9033 OnlyArg = List->getInit(0);
9042 if (
Expr *Resolved =
9062 assert(Diagnosed &&
"couldn't find uninitialized reference to diagnose");
9065 S.
Diag(Kind.getLocation(), diag::err_reference_has_multiple_inits)
9066 <<
SourceRange(Args.front()->getBeginLoc(), Args.back()->getEndLoc());
9069 S.
Diag(Kind.getLocation(), diag::err_list_init_in_parens)
9070 << 1 << Entity.
getType() << Args[0]->getSourceRange();
9074 S.
Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 0;
9077 S.
Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 1;
9080 S.
Diag(Kind.getLocation(), diag::err_array_init_not_init_list) << 2;
9083 S.
Diag(Kind.getLocation(), diag::err_array_init_narrow_string_into_wchar);
9086 S.
Diag(Kind.getLocation(), diag::err_array_init_wide_string_into_char);
9089 S.
Diag(Kind.getLocation(),
9090 diag::err_array_init_incompat_wide_string_into_wchar);
9093 S.
Diag(Kind.getLocation(),
9094 diag::err_array_init_plain_string_into_char8_t);
9095 S.
Diag(Args.front()->getBeginLoc(),
9096 diag::note_array_init_plain_string_into_char8_t)
9100 S.
Diag(Kind.getLocation(), diag::err_array_init_utf8_string_into_char)
9105 S.
Diag(Kind.getLocation(),
9107 ? diag::err_array_init_different_type
9108 : diag::err_array_init_non_constant_array))
9111 << Args[0]->getSourceRange();
9115 S.
Diag(Kind.getLocation(), diag::err_variable_object_no_init)
9116 << Args[0]->getSourceRange();
9137 switch (FailedOverloadResult) {
9140 FailedCandidateSet.NoteCandidates(
9144 ? (S.
PDiag(diag::err_typecheck_ambiguous_condition)
9145 << OnlyArg->
getType() << DestType
9146 << Args[0]->getSourceRange())
9147 : (S.
PDiag(diag::err_ref_init_ambiguous)
9148 << DestType << OnlyArg->
getType()
9149 << Args[0]->getSourceRange())),
9157 diag::err_typecheck_nonviable_condition_incomplete,
9158 OnlyArg->
getType(), Args[0]->getSourceRange()))
9159 S.
Diag(Kind.getLocation(), diag::err_typecheck_nonviable_condition)
9161 << OnlyArg->
getType() << Args[0]->getSourceRange()
9164 FailedCandidateSet.NoteCandidates(S, Args, Cands);
9170 = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best);
9173 S.
Diag(Kind.getLocation(), diag::err_typecheck_deleted_function)
9175 << (Msg !=
nullptr) << (Msg ? Msg->
getString() : StringRef())
9176 << Args[0]->getSourceRange();
9180 llvm_unreachable(
"Inconsistent overload resolution?");
9186 llvm_unreachable(
"Conversion did not fail!");
9192 S.
Diag(Kind.getLocation(),
9193 diag::err_lvalue_reference_bind_to_initlist)
9196 << Args[0]->getSourceRange();
9202 S.
Diag(Kind.getLocation(),
9204 ? diag::err_lvalue_reference_bind_to_temporary
9205 : diag::err_lvalue_reference_bind_to_unrelated)
9209 << Args[0]->getSourceRange();
9214 FieldDecl *BitField = Args[0]->getSourceBitField();
9215 S.
Diag(Kind.getLocation(), diag::err_reference_bind_to_bitfield)
9218 << (BitField !=
nullptr)
9219 << Args[0]->getSourceRange();
9226 S.
Diag(Kind.getLocation(), diag::err_reference_bind_to_vector_element)
9228 << Args[0]->getSourceRange();
9232 S.
Diag(Kind.getLocation(), diag::err_reference_bind_to_matrix_element)
9237 S.
Diag(Kind.getLocation(), diag::err_lvalue_to_rvalue_ref)
9239 << Args[0]->getSourceRange();
9243 S.
Diag(Kind.getLocation(), diag::err_reference_bind_temporary_addrspace)
9244 << DestType << Args[0]->getSourceRange();
9255 S.
Diag(Kind.getLocation(), diag::err_reference_bind_drops_quals)
9256 << NonRefType << SourceType << 1
9257 << Args[0]->getSourceRange();
9259 S.
Diag(Kind.getLocation(), diag::err_reference_bind_drops_quals)
9260 << NonRefType << SourceType << 0
9266 S.
Diag(Kind.getLocation(), diag::err_reference_bind_drops_quals)
9267 << NonRefType << SourceType << 2
9268 << Args[0]->getSourceRange();
9273 S.
Diag(Kind.getLocation(), diag::err_reference_bind_failed)
9278 << Args[0]->getSourceRange();
9286 if (FromType == S.
Context.AMDGPUFeaturePredicateTy &&
9289 diag::err_amdgcn_predicate_type_needs_explicit_bool_cast)
9290 << OnlyArg << DestType;
9298 << Args[0]->getSourceRange();
9300 S.
Diag(Kind.getLocation(), PDiag);
9312 auto *InitList = dyn_cast<InitListExpr>(Args[0]);
9313 if (InitList && InitList->getNumInits() >= 1) {
9314 R =
SourceRange(InitList->getInit(0)->getEndLoc(), InitList->getEndLoc());
9316 assert(Args.size() > 1 &&
"Expected multiple initializers!");
9317 R =
SourceRange(Args.front()->getEndLoc(), Args.back()->getEndLoc());
9321 if (Kind.isCStyleOrFunctionalCast())
9322 S.
Diag(Kind.getLocation(), diag::err_builtin_func_cast_more_than_one_arg)
9325 S.
Diag(Kind.getLocation(), diag::err_excess_initializers)
9331 S.
Diag(Kind.getLocation(), diag::err_list_init_in_parens)
9332 << 0 << Entity.
getType() << Args[0]->getSourceRange();
9336 S.
Diag(Kind.getLocation(), diag::err_reference_bind_init_list)
9341 S.
Diag(Kind.getLocation(), diag::err_init_list_bad_dest_type)
9342 << (DestType->
isRecordType()) << DestType << Args[0]->getSourceRange();
9350 SourceRange(Args.front()->getBeginLoc(), Args.back()->getEndLoc());
9353 assert(Args.size() == 1 &&
9354 "List construction from other than 1 argument.");
9361 switch (FailedOverloadResult) {
9363 FailedCandidateSet.NoteCandidates(
9365 S.
PDiag(diag::err_ovl_ambiguous_init)
9366 << DestType << ArgsRange),
9383 if (
auto Inherited =
Constructor->getInheritedConstructor())
9384 InheritedFrom = Inherited.getShadowDecl()->getNominatedBaseClass();
9386 S.
Diag(Kind.getLocation(), diag::err_missing_default_ctor)
9387 << (InheritedFrom ? 2
9391 << 0 << Entity.
getType() << InheritedFrom;
9395 S.
Diag(BaseDecl->getLocation(), diag::note_previous_decl)
9398 S.
Diag(Kind.getLocation(), diag::err_missing_default_ctor)
9399 << (InheritedFrom ? 2
9403 << 1 << Entity.
getName() << InheritedFrom;
9405 diag::note_member_declared_at);
9408 S.
Diag(
Record->getDecl()->getLocation(), diag::note_previous_decl)
9414 FailedCandidateSet.NoteCandidates(
9417 S.
PDiag(diag::err_ovl_no_viable_function_in_init)
9418 << DestType << ArgsRange),
9425 = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best);
9427 S.
Diag(Kind.getLocation(), diag::err_ovl_deleted_init)
9428 << DestType << ArgsRange;
9429 llvm_unreachable(
"Inconsistent overload resolution?");
9437 S.
Diag(Kind.getLocation(), diag::err_ovl_deleted_special_init)
9439 << DestType << ArgsRange;
9442 S.
Diag(Kind.getLocation(), diag::err_ovl_deleted_init)
9443 << DestType << (Msg !=
nullptr)
9444 << (Msg ? Msg->
getString() : StringRef()) << ArgsRange;
9455 diag::note_default_constructed_field)
9463 llvm_unreachable(
"Conversion did not fail!");
9475 S.
Diag(Kind.getLocation(), diag::err_uninitialized_member_in_ctor)
9483 }
else if (
const auto *VD = dyn_cast_if_present<VarDecl>(Entity.
getDecl());
9484 VD && VD->isConstexpr()) {
9485 S.
Diag(Kind.getLocation(), diag::err_constexpr_var_requires_const_init)
9488 S.
Diag(Kind.getLocation(), diag::err_default_init_const)
9495 diag::err_init_incomplete_type);
9519 S.
Diag(Kind.getLocation(), diag::err_selected_explicit_constructor)
9520 << Args[0]->getSourceRange();
9523 = FailedCandidateSet.BestViableFunction(S, Kind.getLocation(), Best);
9525 assert(Ovl ==
OR_Success &&
"Inconsistent overload resolution");
9528 diag::note_explicit_ctor_deduction_guide_here) <<
false;
9539 S.
Diag(Kind.getLocation(), diag::err_designated_init_for_non_aggregate)
9544 PrintInitLocationNote(S, Entity);
9551 OS <<
"Failed sequence: ";
9554 OS <<
"too many initializers for reference";
9558 OS <<
"parenthesized list init for reference";
9562 OS <<
"array requires initializer list";
9566 OS <<
"address of unaddressable function was taken";
9570 OS <<
"array requires initializer list or string literal";
9574 OS <<
"array requires initializer list or wide string literal";
9578 OS <<
"narrow string into wide char array";
9582 OS <<
"wide string into char array";
9586 OS <<
"incompatible wide string into wide char array";
9590 OS <<
"plain string literal into char8_t array";
9594 OS <<
"u8 string literal into char array";
9598 OS <<
"array type mismatch";
9602 OS <<
"non-constant array initializer";
9606 OS <<
"address of overloaded function failed";
9610 OS <<
"overload resolution for reference initialization failed";
9614 OS <<
"non-const lvalue reference bound to temporary";
9618 OS <<
"non-const lvalue reference bound to bit-field";
9622 OS <<
"non-const lvalue reference bound to vector element";
9626 OS <<
"non-const lvalue reference bound to matrix element";
9630 OS <<
"non-const lvalue reference bound to unrelated type";
9634 OS <<
"rvalue reference bound to an lvalue";
9638 OS <<
"reference initialization drops qualifiers";
9642 OS <<
"reference with mismatching address space bound to temporary";
9646 OS <<
"reference initialization failed";
9650 OS <<
"conversion failed";
9654 OS <<
"conversion from property failed";
9658 OS <<
"too many initializers for scalar";
9662 OS <<
"parenthesized list init for reference";
9666 OS <<
"referencing binding to initializer list";
9670 OS <<
"initializer list for non-aggregate, non-scalar type";
9674 OS <<
"overloading failed for user-defined conversion";
9678 OS <<
"constructor overloading failed";
9682 OS <<
"default initialization of a const variable";
9686 OS <<
"initialization of incomplete type";
9690 OS <<
"list initialization checker failure";
9694 OS <<
"variable length array has an initializer";
9698 OS <<
"initializer expression isn't contextually valid";
9702 OS <<
"list constructor overloading failed";
9706 OS <<
"list copy initialization chose explicit constructor";
9710 OS <<
"parenthesized list initialization failed";
9714 OS <<
"designated initializer for non-aggregate type";
9718 OS <<
"HLSL initialization list flattening failed";
9726 OS <<
"Dependent sequence\n";
9730 OS <<
"Normal sequence: ";
9741 OS <<
"resolve address of overloaded function";
9745 OS <<
"derived-to-base (prvalue)";
9749 OS <<
"derived-to-base (xvalue)";
9753 OS <<
"derived-to-base (lvalue)";
9757 OS <<
"bind reference to lvalue";
9761 OS <<
"bind reference to a temporary";
9765 OS <<
"final copy in class direct-initialization";
9769 OS <<
"extraneous C++03 copy to temporary";
9773 OS <<
"user-defined conversion via " << *S->Function.Function;
9777 OS <<
"qualification conversion (prvalue)";
9781 OS <<
"qualification conversion (xvalue)";
9785 OS <<
"qualification conversion (lvalue)";
9789 OS <<
"function reference conversion";
9793 OS <<
"non-atomic-to-atomic conversion";
9797 OS <<
"implicit conversion sequence (";
9803 OS <<
"implicit conversion sequence with narrowing prohibited (";
9809 OS <<
"list aggregate initialization";
9813 OS <<
"unwrap reference initializer list";
9817 OS <<
"rewrap reference initializer list";
9821 OS <<
"constructor initialization";
9825 OS <<
"list initialization via constructor";
9829 OS <<
"zero initialization";
9833 OS <<
"C assignment";
9837 OS <<
"string initialization";
9841 OS <<
"Objective-C object conversion";
9845 OS <<
"indexing for array initialization loop";
9849 OS <<
"array initialization loop";
9853 OS <<
"array initialization";
9857 OS <<
"array initialization (GNU extension)";
9861 OS <<
"parenthesized array initialization";
9865 OS <<
"pass by indirect copy and restore";
9869 OS <<
"pass by indirect restore";
9873 OS <<
"Objective-C object retension";
9877 OS <<
"std::initializer_list from initializer list";
9881 OS <<
"list initialization from std::initializer_list";
9885 OS <<
"OpenCL sampler_t from integer constant";
9889 OS <<
"OpenCL opaque type from zero";
9893 OS <<
"initialization from a parenthesized list of values";
9897 OS <<
"HLSL buffer conversion";
9901 OS <<
" [" << S->Type <<
']';
9915 const Expr *PostInit) {
9931 auto MakeDiag = [&](
bool IsConstRef,
unsigned DefaultDiagID,
9932 unsigned ConstRefDiagID,
unsigned WarnDiagID) {
9935 if (L.CPlusPlus11 && !L.HLSL &&
9937 DiagID = IsConstRef ? ConstRefDiagID : DefaultDiagID;
9939 DiagID = WarnDiagID;
9959 MakeDiag(
T != EntityType, diag::ext_init_list_type_narrowing,
9960 diag::ext_init_list_type_narrowing_const_reference,
9961 diag::warn_init_list_type_narrowing)
9963 <<
T.getLocalUnqualifiedType();
9970 diag::ext_init_list_constant_narrowing,
9971 diag::ext_init_list_constant_narrowing_const_reference,
9972 diag::warn_init_list_constant_narrowing)
9981 diag::ext_init_list_variable_narrowing,
9982 diag::ext_init_list_variable_narrowing_const_reference,
9983 diag::warn_init_list_variable_narrowing)
9991 llvm::raw_svector_ostream OS(StaticCast);
9992 OS <<
"static_cast<";
9999 OS << *TT->getDecl();
10008 S.
Diag(PostInit->
getBeginLoc(), diag::note_init_list_narrowing_silence)
10019 Init->IgnoreParenImpCasts(), ToType,
false,
10020 Sema::AllowedExplicit::None,
10036 S.
Diag(
Init->getBeginLoc(), diag::err_c23_constexpr_init_not_representable)
10037 <<
Value.getAsString(S.
Context, PreNarrowingType) << ToType;
10042 S.
Diag(
Init->getBeginLoc(), diag::err_c23_constexpr_init_type_mismatch)
10043 << ToType << FromType;
10053 llvm_unreachable(
"unhandled case in switch");
10065 for (
unsigned I = 0, N = SE->
getLength(); I != N; ++I) {
10070 diag::err_c23_constexpr_init_not_representable)
10083 if (
Init.isInvalid())
10087 assert(InitE &&
"No initialization expression");
10092 return !
Seq.Failed();
10099 bool TopLevelOfInitList,
10100 bool AllowExplicit) {
10101 if (
Init.isInvalid())
10105 assert(InitE &&
"No initialization expression?");
10111 Context.AMDGPUFeaturePredicateTy &&
10113 Diag(EqualLoc, diag::err_amdgcn_predicate_type_is_not_constructible)
10123 const bool ShouldTrackCopy =
10125 if (ShouldTrackCopy) {
10127 Seq.SetOverloadFailure(
10133 const auto LastStep =
Seq.step_end() - 1;
10134 assert(LastStep->Kind ==
10138 llvm::find_if(
Seq.getFailedCandidateSet(),
10140 return Candidate.Viable &&
10141 Candidate.Function == Function &&
10142 Candidate.Conversions.size() > 0;
10144 if (Candidate !=
Seq.getFailedCandidateSet().end() &&
10146 Candidate->
Viable =
false;
10150 Function->getParamDecl(0)->getType());
10158 if (ShouldTrackCopy)
10167 auto NotSpecialization = [&] (
const CXXRecordDecl *Candidate) {
10168 auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(Candidate);
10171 return !(NotSpecialization(RD) && RD->
forallBases(NotSpecialization));
10177 auto *DeducedTST = dyn_cast<DeducedTemplateSpecializationType>(
10179 assert(DeducedTST &&
"not a deduced template specialization type");
10190 if (
auto *
AliasTemplate = dyn_cast_or_null<TypeAliasTemplateDecl>(
10192 DiagCompat(Kind.getLocation(), diag_compat::ctad_for_alias_templates);
10195 ->getUnderlyingType()
10196 .getCanonicalType();
10200 if (
const auto *TST =
10201 UnderlyingType->getAs<TemplateSpecializationType>()) {
10202 Template = dyn_cast_or_null<ClassTemplateDecl>(
10203 TST->getTemplateName().getAsTemplateDecl());
10204 }
else if (
const auto *RT = UnderlyingType->getAs<RecordType>()) {
10208 if (
const auto *CTSD =
10209 llvm::dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl()))
10210 Template = CTSD->getSpecializedTemplate();
10215 Diag(Kind.getLocation(),
10216 diag::err_deduced_non_class_or_alias_template_specialization_type)
10226 diag::warn_cxx14_compat_class_template_argument_deduction)
10242 Context.DeclarationNames.getCXXDeductionGuideName(LookupTemplateDecl),
10254 ? dyn_cast<InitListExpr>(
Inits[0])
10270 bool AllowExplicit = !Kind.isCopyInit() ||
ListInit;
10276 bool OnlyListConstructors,
10277 bool AllowAggregateDeductionCandidate) {
10283 if (!AllowExplicit) {
10290 if (GD->getMinRequiredArguments() > 1 ||
10291 (GD->getNumParams() == 0 && !GD->isVariadic()))
10301 if (!AllowAggregateDeductionCandidate &&
10321 for (
auto [I, E] : llvm::enumerate(
Inits)) {
10322 if (
auto *DI = dyn_cast<DesignatedInitExpr>(E))
10323 TmpInits[I] = DI->getInit();
10329 TD, FoundDecl,
nullptr, TmpInits, Candidates,
10331 false, AllowExplicit, ADLCallKind::NotADL,
10332 {}, AllowAggregateDeductionCandidate);
10336 false, AllowExplicit);
10340 bool FoundDeductionGuide =
false;
10342 auto TryToResolveOverload =
10345 bool HasAnyDeductionGuide =
false;
10349 while (Pattern->getInstantiatedFromMemberTemplate()) {
10350 if (Pattern->isMemberSpecialization())
10352 Pattern = Pattern->getInstantiatedFromMemberTemplate();
10361 InitListChecker CheckInitList(*
this, Entity,
ListInit, Ty, ElementTypes);
10362 if (!CheckInitList.HadError()) {
10371 for (
int I = 0, E =
ListInit->getNumInits();
10373 if (ElementTypes[I]->isArrayType()) {
10375 ElementTypes[I] =
Context.getRValueReferenceType(ElementTypes[I]);
10377 ListInit->getInit(I)->IgnoreParenImpCasts()))
10379 Context.getLValueReferenceType(ElementTypes[I].withConst());
10384 LookupTemplateDecl, ElementTypes,
10386 auto *TD = GD->getDescribedFunctionTemplate();
10388 OnlyListConstructors,
10390 HasAnyDeductionGuide =
true;
10395 for (
auto I = Guides.
begin(), E = Guides.
end(); I != E; ++I) {
10396 NamedDecl *D = (*I)->getUnderlyingDecl();
10400 auto *TD = dyn_cast<FunctionTemplateDecl>(D);
10401 auto *GD = dyn_cast_if_present<CXXDeductionGuideDecl>(
10406 if (!GD->isImplicit())
10407 HasAnyDeductionGuide =
true;
10409 addDeductionCandidate(TD, GD, I.getPair(), OnlyListConstructors,
10424 }
else if (
Inits.size()) {
10431 SynthesizeAggrGuide(&TempListInit);
10435 FoundDeductionGuide = FoundDeductionGuide || HasAnyDeductionGuide;
10445 bool TryListConstructors =
true;
10451 auto *FD = dyn_cast<FunctionDecl>(D->getUnderlyingDecl());
10452 if (FD && FD->getMinRequiredArguments() == 0) {
10453 TryListConstructors =
false;
10457 }
else if (
ListInit->getNumInits() == 1) {
10468 TryListConstructors =
false;
10471 if (TryListConstructors)
10472 Result = TryToResolveOverload(
true);
10481 Result = TryToResolveOverload(
false);
10490 Kind.getLocation(),
10491 PDiag(diag::err_deduced_class_template_ctor_ambiguous)
10500 Context.getCanonicalTagType(Primary));
10503 Kind.getLocation(),
10504 PDiag(
Complete ? diag::err_deduced_class_template_ctor_no_viable
10505 : diag::err_deduced_class_template_incomplete)
10515 Diag(Kind.getLocation(), diag::err_deduced_class_template_deleted)
10525 if (Kind.isCopyInit() &&
ListInit &&
10527 bool IsDeductionGuide = !Best->Function->isImplicit();
10528 Diag(Kind.getLocation(), diag::err_deduced_class_template_explicit)
10530 Diag(Best->Function->getLocation(),
10531 diag::note_explicit_ctor_deduction_guide_here)
10532 << IsDeductionGuide;
10550 diag::warn_cxx14_compat_class_template_argument_deduction)
10555 if (!FoundDeductionGuide) {
10557 diag::warn_ctad_maybe_unsupported)
10559 Diag(
Template->getLocation(), diag::note_suppress_ctad_maybe_unsupported);
10562 return DeducedType;
Defines the clang::ASTContext interface.
static bool isUnsigned(SValBuilder &SVB, NonLoc Value)
static bool isRValueRef(QualType ParamType)
Defines the clang::Expr interface and subclasses for C++ expressions.
Result
Implement __builtin_bit_cast and related operations.
static DiagnosticBuilder Diag(DiagnosticsEngine *Diags, const LangOptions &Features, FullSourceLoc TokLoc, const char *TokBegin, const char *TokRangeBegin, const char *TokRangeEnd, unsigned DiagID)
Produce a diagnostic highlighting some portion of a literal.
llvm::MachO::Record Record
Defines the clang::Preprocessor interface.
static std::string toString(const clang::SanitizerSet &Sanitizers)
Produce a string containing comma-separated names of sanitizers in Sanitizers set.
static void CheckForNullPointerDereference(Sema &S, Expr *E)
This file declares semantic analysis for HLSL constructs.
static bool isExprAnUnaddressableFunction(Sema &S, const Expr *E)
Tries to get a FunctionDecl out of E.
static void updateStringLiteralType(Expr *E, QualType Ty)
Update the type of a string literal, including any surrounding parentheses, to match the type of the ...
static void updateGNUCompoundLiteralRValue(Expr *E)
Fix a compound literal initializing an array so it's correctly marked as an rvalue.
static bool initializingConstexprVariable(const InitializedEntity &Entity)
static void warnBracedScalarInit(Sema &S, const InitializedEntity &Entity, SourceRange Braces)
Warn that Entity was of scalar type and was initialized by a single-element braced initializer list.
static bool shouldDestroyEntity(const InitializedEntity &Entity)
Whether the given entity, when initialized with an object created for that initialization,...
static SourceLocation getInitializationLoc(const InitializedEntity &Entity, Expr *Initializer)
Get the location at which initialization diagnostics should appear.
static bool hasAnyDesignatedInits(const InitListExpr *IL)
static bool tryObjCWritebackConversion(Sema &S, InitializationSequence &Sequence, const InitializedEntity &Entity, Expr *Initializer)
static DesignatedInitExpr * CloneDesignatedInitExpr(Sema &SemaRef, DesignatedInitExpr *DIE)
static ExprResult CopyObject(Sema &S, QualType T, const InitializedEntity &Entity, ExprResult CurInit, bool IsExtraneousCopy)
Make a (potentially elidable) temporary copy of the object provided by the given initializer by calli...
static void TryOrBuildParenListInitialization(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, ArrayRef< Expr * > Args, InitializationSequence &Sequence, bool VerifyOnly, ExprResult *Result=nullptr)
static void CheckStringInit(Expr *Str, QualType &DeclT, const ArrayType *AT, Sema &S, const InitializedEntity &Entity, bool CheckC23ConstexprInit=false)
static void CheckMoveOnConstruction(Sema &S, const Expr *InitExpr, bool IsReturnStmt)
Provide warnings when std::move is used on construction.
static void CheckC23ConstexprInitStringLiteral(const StringLiteral *SE, Sema &SemaRef, QualType &TT)
static void CheckCXX98CompatAccessibleCopy(Sema &S, const InitializedEntity &Entity, Expr *CurInitExpr)
Check whether elidable copy construction for binding a reference to a temporary would have succeeded ...
static bool isOrIsDerivedFromSpecializationOf(CXXRecordDecl *RD, ClassTemplateDecl *CTD)
Determine whether RD is, or is derived from, a specialization of CTD.
static bool canInitializeArrayWithEmbedDataString(ArrayRef< Expr * > ExprList, const InitializedEntity &Entity, ASTContext &Context)
static bool TryInitializerListConstruction(Sema &S, InitListExpr *List, QualType DestType, InitializationSequence &Sequence, bool TreatUnavailableAsInvalid)
When initializing from init list via constructor, handle initialization of an object of type std::ini...
static StringInitFailureKind IsStringInit(Expr *Init, const ArrayType *AT, ASTContext &Context)
Check whether the array of type AT can be initialized by the Init expression by means of string initi...
static void TryArrayCopy(Sema &S, const InitializationKind &Kind, const InitializedEntity &Entity, Expr *Initializer, QualType DestType, InitializationSequence &Sequence, bool TreatUnavailableAsInvalid)
Initialize an array from another array.
static bool isInitializedStructuredList(const InitListExpr *StructuredList)
@ SIF_PlainStringIntoUTF8Char
@ SIF_IncompatWideStringIntoWideChar
@ SIF_UTF8StringIntoPlainChar
@ SIF_NarrowStringIntoWideChar
static void TryDefaultInitialization(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, InitializationSequence &Sequence)
Attempt default initialization (C++ [dcl.init]p6).
static bool TryOCLSamplerInitialization(Sema &S, InitializationSequence &Sequence, QualType DestType, Expr *Initializer)
static bool maybeRecoverWithZeroInitialization(Sema &S, InitializationSequence &Sequence, const InitializedEntity &Entity)
Tries to add a zero initializer. Returns true if that worked.
static ExprResult CheckArrayDesignatorExpr(Sema &S, Expr *Index, llvm::APSInt &Value)
Check that the given Index expression is a valid array designator value.
static bool canPerformArrayCopy(const InitializedEntity &Entity)
Determine whether we can perform an elementwise array copy for this kind of entity.
static void TryReferenceInitializationCore(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, Expr *Initializer, QualType cv1T1, QualType T1, Qualifiers T1Quals, QualType cv2T2, QualType T2, Qualifiers T2Quals, InitializationSequence &Sequence, bool TopLevelOfInitList)
Reference initialization without resolving overloaded functions.
static void CheckC23ConstexprInitConversion(Sema &S, QualType FromType, QualType ToType, Expr *Init)
static void ExpandAnonymousFieldDesignator(Sema &SemaRef, DesignatedInitExpr *DIE, unsigned DesigIdx, IndirectFieldDecl *IndirectField)
Expand a field designator that refers to a member of an anonymous struct or union into a series of fi...
static void TryValueInitialization(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, InitializationSequence &Sequence, InitListExpr *InitList=nullptr)
Attempt value initialization (C++ [dcl.init]p7).
static void TryUserDefinedConversion(Sema &S, QualType DestType, const InitializationKind &Kind, Expr *Initializer, InitializationSequence &Sequence, bool TopLevelOfInitList)
Attempt a user-defined conversion between two types (C++ [dcl.init]), which enumerates all conversion...
static OverloadingResult ResolveConstructorOverload(Sema &S, SourceLocation DeclLoc, MultiExprArg Args, OverloadCandidateSet &CandidateSet, QualType DestType, DeclContext::lookup_result Ctors, OverloadCandidateSet::iterator &Best, bool CopyInitializing, bool AllowExplicit, bool OnlyListConstructors, bool IsListInit, bool RequireActualConstructor, bool SecondStepOfCopyInit=false)
static AssignmentAction getAssignmentAction(const InitializedEntity &Entity, bool Diagnose=false)
static void TryListInitialization(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, InitListExpr *InitList, InitializationSequence &Sequence, bool TreatUnavailableAsInvalid)
Attempt list initialization (C++0x [dcl.init.list])
static void TryStringLiteralInitialization(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, Expr *Initializer, InitializationSequence &Sequence)
Attempt character array initialization from a string literal (C++ [dcl.init.string],...
static bool checkDestructorReference(QualType ElementType, SourceLocation Loc, Sema &SemaRef)
Check if the type of a class element has an accessible destructor, and marks it referenced.
static void TryReferenceInitialization(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, Expr *Initializer, InitializationSequence &Sequence, bool TopLevelOfInitList)
Attempt reference initialization (C++0x [dcl.init.ref])
static void DiagnoseNarrowingInInitList(Sema &S, const ImplicitConversionSequence &ICS, QualType PreNarrowingType, QualType EntityType, const Expr *PostInit)
static bool hasCompatibleArrayTypes(ASTContext &Context, const ArrayType *Dest, const ArrayType *Source)
Determine whether we have compatible array types for the purposes of GNU by-copy array initialization...
static bool isExplicitTemporary(const InitializedEntity &Entity, const InitializationKind &Kind, unsigned NumArgs)
Returns true if the parameters describe a constructor initialization of an explicit temporary object,...
static bool isNonReferenceableGLValue(Expr *E)
Determine whether an expression is a non-referenceable glvalue (one to which a reference can never bi...
static bool TryOCLZeroOpaqueTypeInitialization(Sema &S, InitializationSequence &Sequence, QualType DestType, Expr *Initializer)
static bool IsWideCharCompatible(QualType T, ASTContext &Context)
Check whether T is compatible with a wide character type (wchar_t, char16_t or char32_t).
static void diagnoseListInit(Sema &S, const InitializedEntity &Entity, InitListExpr *InitList)
static OverloadingResult TryRefInitWithConversionFunction(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, Expr *Initializer, bool AllowRValues, bool IsLValueRef, InitializationSequence &Sequence)
Try a reference initialization that involves calling a conversion function.
void emitUninitializedExplicitInitFields(Sema &S, const RecordDecl *R)
static void TryConstructorInitialization(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Args, QualType DestType, QualType DestArrayType, InitializationSequence &Sequence, bool IsListInit=false, bool IsInitListCopy=false)
Attempt initialization by constructor (C++ [dcl.init]), which enumerates the constructors of the init...
static void emitBadConversionNotes(Sema &S, const InitializedEntity &entity, Expr *op)
Emit notes associated with an initialization that failed due to a "simple" conversion failure.
static bool isIdiomaticBraceElisionEntity(const InitializedEntity &Entity)
Determine whether Entity is an entity for which it is idiomatic to elide the braces in aggregate init...
static void MaybeProduceObjCObject(Sema &S, InitializationSequence &Sequence, const InitializedEntity &Entity)
static void checkIndirectCopyRestoreSource(Sema &S, Expr *src)
Check whether the given expression is a valid operand for an indirect copy/restore.
static bool shouldBindAsTemporary(const InitializedEntity &Entity)
Whether we should bind a created object as a temporary when initializing the given entity.
static void TryConstructorOrParenListInitialization(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Args, QualType DestType, InitializationSequence &Sequence, bool IsAggrListInit)
Attempt to initialize an object of a class type either by direct-initialization, or by copy-initializ...
static bool IsZeroInitializer(const Expr *Init, ASTContext &Ctx)
static const FieldDecl * getConstField(const RecordDecl *RD)
static bool ResolveOverloadedFunctionForReferenceBinding(Sema &S, Expr *Initializer, QualType &SourceType, QualType &UnqualifiedSourceType, QualType UnqualifiedTargetType, InitializationSequence &Sequence)
InvalidICRKind
The non-zero enum values here are indexes into diagnostic alternatives.
static ExprResult PerformConstructorInitialization(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Args, const InitializationSequence::Step &Step, bool &ConstructorInitRequiresZeroInit, bool IsListInitialization, bool IsStdInitListInitialization, SourceLocation LBraceLoc, SourceLocation RBraceLoc)
static void TryReferenceListInitialization(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, InitListExpr *InitList, InitializationSequence &Sequence, bool TreatUnavailableAsInvalid)
Attempt list initialization of a reference.
static bool hasCopyOrMoveCtorParam(ASTContext &Ctx, const ConstructorInfo &Info)
Determine if the constructor has the signature of a copy or move constructor for the type T of the cl...
static bool DiagnoseUninitializedReference(Sema &S, SourceLocation Loc, QualType T)
Somewhere within T there is an uninitialized reference subobject.
static InvalidICRKind isInvalidICRSource(ASTContext &C, Expr *e, bool isAddressOf, bool &isWeakAccess)
Determines whether this expression is an acceptable ICR source.
This file declares semantic analysis for Objective-C.
Defines the SourceManager interface.
Defines various enumerations that describe declaration and type specifiers.
static QualType getPointeeType(const MemRegion *R)
C Language Family Type Representation.
Defines the clang::TypeLoc interface and its subclasses.
APValue - This class implements a discriminated union of [uninitialized] [APSInt] [APFloat],...
std::string getAsString(const ASTContext &Ctx, QualType Ty) const
bool isNullPointer() const
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
const ConstantArrayType * getAsConstantArrayType(QualType T) const
QualType getRValueReferenceType(QualType T) const
Return the uniqued reference to the type for an rvalue reference to the specified type.
unsigned getIntWidth(QualType T) const
static CanQualType getCanonicalType(QualType T)
Return the canonical (structural) type corresponding to the specified potentially non-canonical type ...
void getObjCEncodingForType(QualType T, std::string &S, const FieldDecl *Field=nullptr, QualType *NotEncodedT=nullptr) const
Emit the Objective-CC type encoding for the given type T into S.
QualType getVectorType(QualType VectorType, unsigned NumElts, VectorKind VecKind) const
Return the unique reference to a vector type of the specified element type and size.
QualType getPointerType(QualType T) const
Return the uniqued reference to the type for a pointer to the specified type.
const IncompleteArrayType * getAsIncompleteArrayType(QualType T) const
QualType getLValueReferenceType(QualType T, bool SpelledAsLValue=true) const
Return the uniqued reference to the type for an lvalue reference to the specified type.
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
CanQualType getLogicalOperationType() const
The result type of logical operations, '<', '>', '!=', etc.
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,...
QualType getQualifiedType(SplitQualType split) const
Un-split a SplitQualType.
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.
QualType getPackExpansionType(QualType Pattern, UnsignedOrNone NumExpansions, bool ExpectPackInType=true) const
Form a pack expansion type with the given pattern.
static bool hasSameType(QualType T1, QualType T2)
Determine whether the given types T1 and T2 are equivalent.
QualType getPromotedIntegerType(QualType PromotableType) const
Return the type that PromotableType will promote to: C99 6.3.1.1p2, assuming that PromotableType is a...
const VariableArrayType * getAsVariableArrayType(QualType T) const
QualType getSizeType() const
Return the unique type for "size_t" (C99 7.17), defined in <stddef.h>.
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
CanQualType getCanonicalTagType(const TagDecl *TD) const
QualType getDependentSizedArrayType(QualType EltTy, Expr *NumElts, ArraySizeModifier ASM, unsigned IndexTypeQuals) const
Return a non-unique reference to the type for a dependently-sized array of the specified element type...
bool isPromotableIntegerType(QualType T) const
More type predicates useful for type checking/promotion.
static bool hasSameUnqualifiedType(QualType T1, QualType T2)
Determine whether the given types are equivalent after cvr-qualifiers have been removed.
QualType getUnqualifiedArrayType(QualType T, Qualifiers &Quals) const
Return this type as a completely-unqualified array type, capturing the qualifiers in Quals.
uint64_t getCharWidth() const
Return the size of the character type, in bits.
Represents the index of the current element of an array being initialized by an ArrayInitLoopExpr.
Represents a loop initializing the elements of an array.
Represents an array type, per C99 6.7.5.2 - Array Declarators.
QualType getElementType() const
This class is used for builtin types like 'int'.
Represents a base class of a C++ class.
bool isVirtual() const
Determines whether the base class is a virtual base class (or not).
QualType getType() const
Retrieves the type of the base class.
Represents a call to a C++ constructor.
Expr * getArg(unsigned Arg)
Return the specified argument.
CXXConstructorDecl * getConstructor() const
Get the constructor that this expression will (ultimately) call.
unsigned getNumArgs() const
Return the number of arguments to the constructor call.
Represents a C++ constructor within a class.
CXXConstructorDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
bool isExplicit() const
Return true if the declaration is already resolved to be explicit.
bool isCopyOrMoveConstructor(unsigned &TypeQuals) const
Determine whether this is a copy or move constructor.
Represents a C++ conversion function within a class.
QualType getConversionType() const
Returns the type that this conversion function is converting to.
Represents a C++ deduction guide declaration.
Represents a C++ destructor within a class.
const CXXRecordDecl * getParent() const
Return the parent of this method declaration, which is the class in which this method is defined.
static CXXParenListInitExpr * Create(ASTContext &C, ArrayRef< Expr * > Args, QualType T, unsigned NumUserSpecifiedExprs, SourceLocation InitLoc, SourceLocation LParenLoc, SourceLocation RParenLoc)
Represents a C++ struct/union/class.
bool hasUninitializedReferenceMember() const
Whether this class or any of its subobjects has any members of reference type which would make value-...
bool allowConstDefaultInit() const
Determine whether declaring a const variable with this type is ok per core issue 253.
CXXBaseSpecifier * base_class_iterator
Iterator that traverses the base classes of a class.
llvm::iterator_range< base_class_const_iterator > base_class_const_range
llvm::iterator_range< conversion_iterator > getVisibleConversionFunctions() const
Get all conversion functions visible in current class, including conversion function templates.
unsigned getNumBases() const
Retrieves the number of base classes of this class.
bool isHLSLBuiltinRecord() const
Returns true if the class is a built-in HLSL record.
const CXXBaseSpecifier * base_class_const_iterator
Iterator that traverses the base classes of a class.
llvm::iterator_range< base_class_iterator > base_class_range
bool forallBases(ForallBasesCallback BaseMatches) const
Determines if the given callback holds for all the direct or indirect base classes of this type.
An expression "T()" which creates an rvalue of a non-class type T.
Implicit construction of a std::initializer_list<T> object from an array temporary within list-initia...
static CXXTemporaryObjectExpr * Create(const ASTContext &Ctx, CXXConstructorDecl *Cons, QualType Ty, TypeSourceInfo *TSI, ArrayRef< Expr * > Args, SourceRange ParenOrBraceRange, bool HadMultipleCandidates, bool ListInitialization, bool StdInitListInitialization, bool ZeroInitialization)
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Expr * getArg(unsigned Arg)
getArg - Return the specified argument.
SourceLocation getBeginLoc() const
bool isCallToStdMove() const
SourceLocation getRParenLoc() const
CastExpr - Base class for type casts, including both implicit casts (ImplicitCastExpr) and explicit c...
static CharSourceRange getTokenRange(SourceRange R)
SourceLocation getBegin() const
Declaration of a class template.
void setExprNeedsCleanups(bool SideEffects)
ConditionalOperator - The ?
Represents the canonical version of C arrays with a specified constant size.
static unsigned getMaxSizeBits(const ASTContext &Context)
Determine the maximum number of active bits that an array's size can require, which limits the maximu...
uint64_t getZExtSize() const
Return the size zero-extended as a uint64_t.
unsigned getNumElementsFlattened() const
Returns the number of elements required to embed the matrix into a vector.
A POD class for pairing a NamedDecl* with an access specifier.
static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS)
NamedDecl * getDecl() const
bool Equals(const DeclContext *DC) const
Determine whether this declaration context is equivalent to the declaration context DC.
DeclContextLookupResult lookup_result
bool InEnclosingNamespaceSetOf(const DeclContext *NS) const
Test if this context is part of the enclosing namespace set of the context NS, as defined in C++0x [n...
lookup_result lookup(DeclarationName Name) const
lookup - Find the declarations (if any) with the given Name in this context.
DeclContext * getRedeclContext()
getRedeclContext - Retrieve the context in which an entity conflicts with other entities of the same ...
decl_range decls() const
decls_begin/decls_end - Iterate over the declarations stored in this context.
A reference to a declared variable, function, enum, etc.
bool refersToEnclosingVariableOrCapture() const
Does this DeclRefExpr refer to an enclosing local or a captured variable?
Decl - This represents one declaration (or definition), e.g.
SourceLocation getEndLoc() const LLVM_READONLY
static bool isFlexibleArrayMemberLike(const ASTContext &Context, const Decl *D, QualType Ty, LangOptions::StrictFlexArraysLevelKind StrictFlexArraysLevel, bool IgnoreTemplateOrMacroSubstitution)
Whether it resembles a flexible array member.
ASTContext & getASTContext() const LLVM_READONLY
bool isImplicit() const
isImplicit - Indicates whether the declaration was implicitly generated by the implementation.
bool isInvalidDecl() const
SourceLocation getLocation() const
void setReferenced(bool R=true)
DeclContext * getDeclContext()
SourceLocation getBeginLoc() const LLVM_READONLY
The name of a declaration.
SourceLocation getBeginLoc() const LLVM_READONLY
Represents a single C99 designator.
bool isFieldDesignator() const
SourceLocation getBeginLoc() const LLVM_READONLY
bool isArrayRangeDesignator() const
void setFieldDecl(FieldDecl *FD)
FieldDecl * getFieldDecl() const
bool isArrayDesignator() const
SourceLocation getFieldLoc() const
const IdentifierInfo * getFieldName() const
SourceLocation getDotLoc() const
SourceLocation getLBracketLoc() const
Represents a C99 designated initializer expression.
bool isDirectInit() const
Whether this designated initializer should result in direct-initialization of the designated subobjec...
Expr * getArrayRangeEnd(const Designator &D) const
Expr * getSubExpr(unsigned Idx) const
bool usesGNUSyntax() const
Determines whether this designated initializer used the deprecated GNU syntax for designated initiali...
Expr * getArrayRangeStart(const Designator &D) const
void ExpandDesignator(const ASTContext &C, unsigned Idx, const Designator *First, const Designator *Last)
Replaces the designator at index Idx with the series of designators in [First, Last).
MutableArrayRef< Designator > designators()
Expr * getArrayIndex(const Designator &D) const
Designator * getDesignator(unsigned Idx)
Expr * getInit() const
Retrieve the initializer value.
unsigned size() const
Returns the number of designators in this initializer.
SourceLocation getBeginLoc() const LLVM_READONLY
SourceLocation getEndLoc() const LLVM_READONLY
SourceLocation getEqualOrColonLoc() const
Retrieve the location of the '=' that precedes the initializer value itself, if present.
unsigned getNumSubExprs() const
Retrieve the total number of subexpressions in this designated initializer expression,...
static DesignatedInitExpr * Create(const ASTContext &C, ArrayRef< Designator > Designators, ArrayRef< Expr * > IndexExprs, SourceLocation EqualOrColonLoc, bool GNUSyntax, Expr *Init)
InitListExpr * getUpdater() const
Designation - Represent a full designation, which is a sequence of designators.
const Designator & getDesignator(unsigned Idx) const
unsigned getNumDesignators() const
Designator - A designator in a C99 designated initializer.
SourceLocation getFieldLoc() const
SourceLocation getDotLoc() const
Expr * getArrayRangeStart() const
bool isArrayDesignator() const
SourceLocation getLBracketLoc() const
bool isArrayRangeDesignator() const
bool isFieldDesignator() const
SourceLocation getRBracketLoc() const
SourceLocation getEllipsisLoc() const
Expr * getArrayRangeEnd() const
const IdentifierInfo * getFieldDecl() const
Expr * getArrayIndex() const
static Designator CreateFieldDesignator(const IdentifierInfo *FieldName, SourceLocation DotLoc, SourceLocation FieldLoc)
Creates a field designator.
bool isIgnored(unsigned DiagID, SourceLocation Loc) const
Determine whether the diagnostic is known to be ignored.
Represents a reference to emded data.
StringLiteral * getDataStringLiteral() const
EmbedDataStorage * getData() const
SourceLocation getLocation() const
size_t getDataElementCount() const
RAII object that enters a new expression evaluation context.
bool isFixed() const
Returns true if this is an Objective-C, C++11, or Microsoft-style enumeration with a fixed underlying...
The return type of classify().
This represents one expression.
Expr * IgnoreParenCasts() LLVM_READONLY
Skip past any parentheses and casts which might surround this expression until reaching a fixed point...
bool isValueDependent() const
Determines whether the value of this expression depends on.
ExprValueKind getValueKind() const
getValueKind - The value kind that this expression produces.
bool refersToVectorElement() const
Returns whether this expression refers to a vector element.
bool isTypeDependent() const
Determines whether the type of this expression depends on.
llvm::APSInt EvaluateKnownConstInt(const ASTContext &Ctx) const
EvaluateKnownConstInt - Call EvaluateAsRValue and return the folded integer.
Expr * IgnoreParenImpCasts() LLVM_READONLY
Skip past any parentheses and implicit casts which might surround this expression until reaching a fi...
Expr * IgnoreImplicit() LLVM_READONLY
Skip past any implicit AST nodes which might surround this expression until reaching a fixed point.
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...
@ NPC_ValueDependentIsNotNull
Specifies that a value-dependent expression should be considered to never be a null pointer constant.
ExprObjectKind getObjectKind() const
getObjectKind - The object kind that this expression produces.
bool EvaluateAsRValue(EvalResult &Result, const ASTContext &Ctx, bool InConstantContext=false) const
EvaluateAsRValue - Return true if this is a constant which we can fold to an rvalue using any crazy t...
bool HasSideEffects(const ASTContext &Ctx, bool IncludePossibleEffects=true) const
HasSideEffects - This routine returns true for all those expressions which have any effect other than...
Expr * IgnoreImpCasts() LLVM_READONLY
Skip past any implicit casts which might surround this expression until reaching a fixed point.
bool isTemporaryObject(ASTContext &Ctx, const CXXRecordDecl *TempTy) const
Determine whether the result of this expression is a temporary object of the given class type.
NullPointerConstantKind isNullPointerConstant(ASTContext &Ctx, NullPointerConstantValueDependence NPC) const
isNullPointerConstant - C99 6.3.2.3p3 - Test if this reduces down to a Null pointer constant.
void setValueKind(ExprValueKind Cat)
setValueKind - Set the value kind produced by this expression.
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
bool refersToMatrixElement() const
Returns whether this expression refers to a matrix element.
bool refersToBitField() const
Returns true if this expression is a gl-value that potentially refers to a bit-field.
Represents difference between two FPOptions values.
Represents a member of a struct/union/class.
bool hasInClassInitializer() const
Determine whether this member has a C++11 default member initializer.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
unsigned getFieldIndex() const
Returns the index of this field within its record, as appropriate for passing to ASTRecordLayout::get...
bool isUnnamedBitField() const
Determines whether this is an unnamed bitfield.
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.
Represents a function declaration or definition.
const ParmVarDecl * getParamDecl(unsigned i) const
unsigned getMinRequiredArguments() const
Returns the minimum number of arguments needed to call this function.
QualType getReturnType() const
bool isDeleted() const
Whether this function has been deleted.
bool isDefaulted() const
Whether this function is defaulted.
unsigned getNumParams() const
Return the number of parameters this function must have based on its FunctionType.
Declaration of a template function.
FunctionDecl * getTemplatedDecl() const
Get the underlying function declaration of the template.
One of these records is kept for each identifier that is lexed.
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...
static ImplicitConversionSequence getNullptrToBool(QualType SourceType, QualType DestType, bool NeedLValToRVal)
Form an "implicit" conversion sequence from nullptr_t to bool, for a direct-initialization of a bool ...
Represents an implicitly-generated value initialization of an object of a given type.
Represents a C array with an unspecified size.
Represents a field injected from an anonymous union/struct into the parent scope.
chain_iterator chain_end() const
chain_iterator chain_begin() const
ArrayRef< NamedDecl * >::const_iterator chain_iterator
Describes an C or C++ initializer list.
bool hasArrayFiller() const
Return true if this is an array initializer and its array "filler" has been set.
void setSyntacticForm(InitListExpr *Init)
void markError()
Mark the semantic form of the InitListExpr as error when the semantic analysis fails.
bool hasDesignatedInit() const
Determine whether this initializer list contains a designated initializer.
bool isTransparent() const
Is this a transparent initializer list (that is, an InitListExpr that is purely syntactic,...
void resizeInits(const ASTContext &Context, unsigned NumInits)
Specify the number of initializers.
FieldDecl * getInitializedFieldInUnion()
If this initializes a union, specifies which field in the union to initialize.
unsigned getNumInits() const
SourceLocation getBeginLoc() const LLVM_READONLY
void setInit(unsigned Init, Expr *expr)
SourceLocation getLBraceLoc() const
Expr * updateInit(const ASTContext &C, unsigned Init, Expr *expr)
Updates the initializer at index Init with the new expression expr, and returns the old expression at...
void setArrayFiller(Expr *filler)
InitListExpr * getSyntacticForm() const
Expr * getArrayFiller()
If this initializer list initializes an array with more elements than there are initializers in the l...
unsigned getNumInitsWithEmbedExpanded() const
getNumInits but if the list has an EmbedExpr inside includes full length of embedded data.
SourceLocation getRBraceLoc() const
InitListExpr * getSemanticForm() const
const Expr * getInit(unsigned Init) const
bool isIdiomaticZeroInitializer(const LangOptions &LangOpts) const
Is this the zero initializer {0} in a language which considers it idiomatic?
SourceLocation getEndLoc() const LLVM_READONLY
void setInitializedFieldInUnion(FieldDecl *FD)
bool isSyntacticForm() const
void setRBraceLoc(SourceLocation Loc)
ArrayRef< Expr * > inits() const
void sawArrayRangeDesignator(bool ARD=true)
Expr ** getInits()
Retrieve the set of initializers.
Describes the kind of initialization being performed, along with location information for tokens rela...
@ IK_DirectList
Direct list-initialization.
@ IK_Value
Value initialization.
@ IK_Direct
Direct initialization.
@ IK_Copy
Copy initialization.
@ IK_Default
Default initialization.
InitKind getKind() const
Determine the initialization kind.
static InitializationKind CreateDirect(SourceLocation InitLoc, SourceLocation LParenLoc, SourceLocation RParenLoc)
Create a direct initialization.
static InitializationKind CreateForInit(SourceLocation Loc, bool DirectInit, Expr *Init)
Create an initialization from an initializer (which, for direct initialization from a parenthesized l...
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.
A single step in the initialization sequence.
StepKind Kind
The kind of conversion or initialization step we are taking.
InitListExpr * WrappingSyntacticList
When Kind = SK_RewrapInitList, the syntactic form of the wrapping list.
ImplicitConversionSequence * ICS
When Kind = SK_ConversionSequence, the implicit conversion sequence.
struct F Function
When Kind == SK_ResolvedOverloadedFunction or Kind == SK_UserConversion, the function that the expres...
Describes the sequence of initializations required to initialize a given object or reference with a s...
step_iterator step_begin() const
void AddListInitializationStep(QualType T)
Add a list-initialization step.
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.
void AddStringInitStep(QualType T)
Add a string init step.
void AddStdInitializerListConstructionStep(QualType T)
Add a step to construct a std::initializer_list object from an initializer list.
void AddConstructorInitializationStep(DeclAccessPair FoundDecl, CXXConstructorDecl *Constructor, QualType T, bool HadMultipleCandidates, bool FromInitList, bool AsInitList)
Add a constructor-initialization step.
@ SK_StdInitializerListConstructorCall
Perform initialization via a constructor taking a single std::initializer_list argument.
@ SK_AtomicConversion
Perform a conversion adding _Atomic to a type.
@ SK_ObjCObjectConversion
An initialization that "converts" an Objective-C object (not a point to an object) to another Objecti...
@ SK_GNUArrayInit
Array initialization (from an array rvalue) as a GNU extension.
@ SK_CastDerivedToBaseLValue
Perform a derived-to-base cast, producing an lvalue.
@ SK_ProduceObjCObject
Produce an Objective-C object pointer.
@ SK_FunctionReferenceConversion
Perform a function reference conversion, see [dcl.init.ref]p4.
@ SK_BindReference
Reference binding to an lvalue.
@ SK_ArrayLoopInit
Array initialization by elementwise copy.
@ SK_ConstructorInitialization
Perform initialization via a constructor.
@ SK_OCLSamplerInit
Initialize an OpenCL sampler from an integer.
@ SK_StringInit
Initialization by string.
@ SK_ZeroInitialization
Zero-initialize the object.
@ SK_CastDerivedToBaseXValue
Perform a derived-to-base cast, producing an xvalue.
@ SK_QualificationConversionXValue
Perform a qualification conversion, producing an xvalue.
@ SK_UserConversion
Perform a user-defined conversion, either via a conversion function or via a constructor.
@ SK_CastDerivedToBasePRValue
Perform a derived-to-base cast, producing an rvalue.
@ SK_BindReferenceToTemporary
Reference binding to a temporary.
@ SK_PassByIndirectRestore
Pass an object by indirect restore.
@ SK_ParenthesizedArrayInit
Array initialization from a parenthesized initializer list.
@ SK_ParenthesizedListInit
Initialize an aggreagate with parenthesized list of values.
@ SK_ArrayInit
Array initialization (from an array rvalue).
@ SK_ExtraneousCopyToTemporary
An optional copy of a temporary object to another temporary object, which is permitted (but not requi...
@ SK_ArrayLoopIndex
Array indexing for initialization by elementwise copy.
@ SK_ConversionSequenceNoNarrowing
Perform an implicit conversion sequence without narrowing.
@ SK_RewrapInitList
Rewrap the single-element initializer list for a reference.
@ SK_CAssignment
C assignment.
@ SK_ConstructorInitializationFromList
Perform initialization via a constructor, taking arguments from a single InitListExpr.
@ SK_PassByIndirectCopyRestore
Pass an object by indirect copy-and-restore.
@ SK_ResolveAddressOfOverloadedFunction
Resolve the address of an overloaded function to a specific function declaration.
@ SK_UnwrapInitList
Unwrap the single-element initializer list for a reference.
@ SK_FinalCopy
Direct-initialization from a reference-related object in the final stage of class copy-initialization...
@ SK_QualificationConversionLValue
Perform a qualification conversion, producing an lvalue.
@ SK_StdInitializerList
Construct a std::initializer_list from an initializer list.
@ SK_QualificationConversionPRValue
Perform a qualification conversion, producing a prvalue.
@ SK_HLSLBufferConversion
@ SK_ConversionSequence
Perform an implicit conversion sequence.
@ SK_ListInitialization
Perform list-initialization without a constructor.
@ SK_OCLZeroOpaqueType
Initialize an opaque OpenCL type (event_t, queue_t, etc.) with zero.
void AddUserConversionStep(FunctionDecl *Function, DeclAccessPair FoundDecl, QualType T, bool HadMultipleCandidates)
Add a new step invoking a conversion function, which is either a constructor or a conversion function...
void AddHLSLBufferConversionStep(QualType T)
void SetZeroInitializationFixit(const std::string &Fixit, SourceLocation L)
Call for initializations are invalid but that would be valid zero initialzations if Fixit was applied...
InitializationSequence(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Args, bool TopLevelOfInitList=false, bool TreatUnavailableAsInvalid=true)
Try to perform initialization of the given entity, creating a record of the steps required to perform...
void AddQualificationConversionStep(QualType Ty, ExprValueKind Category)
Add a new step that performs a qualification conversion to the given type.
void AddFunctionReferenceConversionStep(QualType Ty)
Add a new step that performs a function reference conversion to the given type.
~InitializationSequence()
void AddDerivedToBaseCastStep(QualType BaseType, ExprValueKind Category)
Add a new step in the initialization that performs a derived-to- base cast.
FailureKind getFailureKind() const
Determine why initialization failed.
void InitializeFrom(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Args, bool TopLevelOfInitList, bool TreatUnavailableAsInvalid)
void AddParenthesizedListInitStep(QualType T)
void SetFailed(FailureKind Failure)
Note that this initialization sequence failed.
bool isAmbiguous() const
Determine whether this initialization failed due to an ambiguity.
void AddUnwrapInitListInitStep(InitListExpr *Syntactic)
Only used when initializing structured bindings from an array with direct-list-initialization.
void AddOCLZeroOpaqueTypeStep(QualType T)
Add a step to initialzie an OpenCL opaque type (event_t, queue_t, etc.) from a zero constant.
void AddFinalCopy(QualType T)
Add a new step that makes a copy of the input to an object of the given type, as the final step in cl...
OverloadingResult getFailedOverloadResult() const
Get the overloading result, for when the initialization sequence failed due to a bad overload.
void setSequenceKind(enum SequenceKind SK)
Set the kind of sequence computed.
void AddObjCObjectConversionStep(QualType T)
Add an Objective-C object conversion step, which is always a no-op.
void SetOverloadFailure(FailureKind Failure, OverloadingResult Result)
Note that this initialization sequence failed due to failed overload resolution.
step_iterator step_end() const
void AddParenthesizedArrayInitStep(QualType T)
Add a parenthesized array initialization step.
void AddExtraneousCopyToTemporary(QualType T)
Add a new step that makes an extraneous copy of the input to a temporary of the same class type.
void setIncompleteTypeFailure(QualType IncompleteType)
Note that this initialization sequence failed due to an incomplete type.
void AddOCLSamplerInitStep(QualType T)
Add a step to initialize an OpenCL sampler from an integer constant.
void AddCAssignmentStep(QualType T)
Add a C assignment step.
void AddPassByIndirectCopyRestoreStep(QualType T, bool shouldCopy)
Add a step to pass an object by indirect copy-restore.
void RewrapReferenceInitList(QualType T, InitListExpr *Syntactic)
Add steps to unwrap a initializer list for a reference around a single element and rewrap it at the e...
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.
void AddAtomicConversionStep(QualType Ty)
Add a new step that performs conversion from non-atomic to atomic type.
void dump() const
Dump a representation of this initialization sequence to standard error, for debugging purposes.
void AddConversionSequenceStep(const ImplicitConversionSequence &ICS, QualType T, bool TopLevelOfInitList=false)
Add a new step that applies an implicit conversion sequence.
void AddZeroInitializationStep(QualType T)
Add a zero-initialization step.
void AddProduceObjCObjectStep(QualType T)
Add a step to "produce" an Objective-C object (by retaining it).
enum SequenceKind getKind() const
Determine the kind of initialization sequence computed.
SequenceKind
Describes the kind of initialization sequence computed.
@ NormalSequence
A normal sequence.
@ FailedSequence
A failed initialization sequence.
@ DependentSequence
A dependent initialization, which could not be type-checked due to the presence of dependent types or...
void AddReferenceBindingStep(QualType T, bool BindingTemporary)
Add a new step binding a reference to an object.
FailureKind
Describes why initialization failed.
@ FK_UserConversionOverloadFailed
Overloading for a user-defined conversion failed.
@ FK_NarrowStringIntoWideCharArray
Initializing a wide char array with narrow string literal.
@ FK_ArrayTypeMismatch
Array type mismatch.
@ FK_ParenthesizedListInitForReference
Reference initialized from a parenthesized initializer list.
@ FK_NonConstLValueReferenceBindingToVectorElement
Non-const lvalue reference binding to a vector element.
@ FK_ReferenceInitDropsQualifiers
Reference binding drops qualifiers.
@ FK_InitListBadDestinationType
Initialization of some unused destination type with an initializer list.
@ FK_ConversionFromPropertyFailed
Implicit conversion failed.
@ FK_NonConstLValueReferenceBindingToUnrelated
Non-const lvalue reference binding to an lvalue of unrelated type.
@ FK_ListConstructorOverloadFailed
Overloading for list-initialization by constructor failed.
@ FK_ReferenceInitFailed
Reference binding failed.
@ FK_DesignatedInitForNonAggregate
@ FK_ArrayNeedsInitList
Array must be initialized with an initializer list.
@ FK_PlainStringIntoUTF8Char
Initializing char8_t array with plain string literal.
@ FK_NonConstantArrayInit
Non-constant array initializer.
@ FK_NonConstLValueReferenceBindingToTemporary
Non-const lvalue reference binding to a temporary.
@ FK_ConversionFailed
Implicit conversion failed.
@ FK_ArrayNeedsInitListOrStringLiteral
Array must be initialized with an initializer list or a string literal.
@ FK_ParenthesizedListInitForScalar
Scalar initialized from a parenthesized initializer list.
@ FK_HLSLInitListFlatteningFailed
HLSL initialization list flattening failed.
@ FK_PlaceholderType
Initializer has a placeholder type which cannot be resolved by initialization.
@ FK_IncompatWideStringIntoWideChar
Initializing wide char array with incompatible wide string literal.
@ FK_NonConstLValueReferenceBindingToMatrixElement
Non-const lvalue reference binding to a matrix element.
@ FK_TooManyInitsForReference
Too many initializers provided for a reference.
@ FK_NonConstLValueReferenceBindingToBitfield
Non-const lvalue reference binding to a bit-field.
@ FK_ReferenceAddrspaceMismatchTemporary
Reference with mismatching address space binding to temporary.
@ FK_ListInitializationFailed
List initialization failed at some point.
@ FK_TooManyInitsForScalar
Too many initializers for scalar.
@ FK_AddressOfOverloadFailed
Cannot resolve the address of an overloaded function.
@ FK_VariableLengthArrayHasInitializer
Variable-length array must not have an initializer.
@ FK_ArrayNeedsInitListOrWideStringLiteral
Array must be initialized with an initializer list or a wide string literal.
@ FK_RValueReferenceBindingToLValue
Rvalue reference binding to an lvalue.
@ FK_Incomplete
Initialization of an incomplete type.
@ FK_WideStringIntoCharArray
Initializing char array with wide string literal.
@ FK_ExplicitConstructor
List-copy-initialization chose an explicit constructor.
@ FK_ReferenceInitOverloadFailed
Overloading due to reference initialization failed.
@ FK_ConstructorOverloadFailed
Overloading for initialization by constructor failed.
@ FK_ReferenceBindingToInitList
Reference initialization from an initializer list.
@ FK_DefaultInitOfConst
Default-initialization of a 'const' object.
@ FK_ParenthesizedListInitFailed
Parenthesized list initialization failed at some point.
@ FK_AddressOfUnaddressableFunction
Trying to take the address of a function that doesn't support having its address taken.
@ FK_UTF8StringIntoPlainChar
Initializing char array with UTF-8 string literal.
bool isDirectReferenceBinding() const
Determine whether this initialization is a direct reference binding (C++ [dcl.init....
void AddArrayInitLoopStep(QualType T, QualType EltTy)
Add an array initialization loop step.
void AddAddressOverloadResolutionStep(FunctionDecl *Function, DeclAccessPair Found, bool HadMultipleCandidates)
Add a new step in the initialization that resolves the address of an overloaded function to a specifi...
void AddArrayInitStep(QualType T, bool IsGNUExtension)
Add an array initialization step.
bool isConstructorInitialization() const
Determine whether this initialization is direct call to a constructor.
SmallVectorImpl< Step >::const_iterator step_iterator
OverloadCandidateSet & getFailedCandidateSet()
Retrieve a reference to the candidate set when overload resolution fails.
Describes an entity that is being initialized.
static InitializedEntity InitializeBase(ASTContext &Context, const CXXBaseSpecifier *Base, bool IsInheritedVirtualBase, const InitializedEntity *Parent=nullptr)
Create the initialization entity for a base class subobject.
VD Variable
When Kind == EK_Variable, EK_Member, EK_Binding, or EK_TemplateParameter, the variable,...
static InitializedEntity InitializeMember(FieldDecl *Member, const InitializedEntity *Parent=nullptr)
Create the initialization entity for a member subobject.
EntityKind getKind() const
Determine the kind of initialization.
DeclarationName getName() const
Retrieve the name of the entity being initialized.
QualType getType() const
Retrieve type being initialized.
ValueDecl * getDecl() const
Retrieve the variable, parameter, or field being initialized.
bool isImplicitMemberInitializer() const
Is this the implicit initialization of a member of a class from a defaulted constructor?
const InitializedEntity * getParent() const
Retrieve the parent of the entity being initialized, when the initialization itself is occurring with...
static InitializedEntity InitializeTemporary(QualType Type)
Create the initialization entity for a temporary.
bool isParameterConsumed() const
Determine whether this initialization consumes the parameter.
static InitializedEntity InitializeElement(ASTContext &Context, unsigned Index, const InitializedEntity &Parent)
Create the initialization entity for an array element.
unsigned getElementIndex() const
If this is an array, vector, or complex number element, get the element's index.
void setElementIndex(unsigned Index)
If this is already the initializer for an array or vector element, sets the element index.
SourceLocation getCaptureLoc() const
Determine the location of the capture when initializing field from a captured variable in a lambda.
bool isParamOrTemplateParamKind() const
llvm::PointerIntPair< const CXXBaseSpecifier *, 1 > Base
When Kind == EK_Base, the base specifier that provides the base class.
bool allowsNRVO() const
Determine whether this initialization allows the named return value optimization, which also applies ...
bool isParameterKind() const
void dump() const
Dump a representation of the initialized entity to standard error, for debugging purposes.
EntityKind
Specifies the kind of entity being initialized.
@ EK_Variable
The entity being initialized is a variable.
@ EK_Temporary
The entity being initialized is a temporary object.
@ EK_Binding
The entity being initialized is a structured binding of a decomposition declaration.
@ EK_BlockElement
The entity being initialized is a field of block descriptor for the copied-in c++ object.
@ EK_MatrixElement
The entity being initialized is an element of a matrix.
@ EK_Parameter_CF_Audited
The entity being initialized is a function parameter; function is member of group of audited CF APIs.
@ EK_LambdaToBlockConversionBlockElement
The entity being initialized is a field of block descriptor for the copied-in lambda object that's us...
@ EK_Member
The entity being initialized is a non-static data member subobject.
@ EK_Base
The entity being initialized is a base member subobject.
@ EK_Result
The entity being initialized is the result of a function call.
@ EK_TemplateParameter
The entity being initialized is a non-type template parameter.
@ EK_StmtExprResult
The entity being initialized is the result of a statement expression.
@ EK_ParenAggInitMember
The entity being initialized is a non-static data member subobject of an object initialized via paren...
@ EK_VectorElement
The entity being initialized is an element of a vector.
@ EK_New
The entity being initialized is an object (or array of objects) allocated via new.
@ EK_CompoundLiteralInit
The entity being initialized is the initializer for a compound literal.
@ EK_Parameter
The entity being initialized is a function parameter.
@ EK_Delegating
The initialization is being done by a delegating constructor.
@ EK_ComplexElement
The entity being initialized is the real or imaginary part of a complex number.
@ EK_ArrayElement
The entity being initialized is an element of an array.
@ EK_LambdaCapture
The entity being initialized is the field that captures a variable in a lambda.
@ EK_Exception
The entity being initialized is an exception object that is being thrown.
@ EK_RelatedResult
The entity being implicitly initialized back to the formal result type.
static InitializedEntity InitializeMemberFromParenAggInit(FieldDecl *Member)
Create the initialization entity for a member subobject initialized via parenthesized aggregate init.
SourceLocation getThrowLoc() const
Determine the location of the 'throw' keyword when initializing an exception object.
unsigned Index
When Kind == EK_ArrayElement, EK_VectorElement, EK_MatrixElement, or EK_ComplexElement,...
bool isVariableLengthArrayNew() const
Determine whether this is an array new with an unknown bound.
llvm::PointerIntPair< ParmVarDecl *, 1 > Parameter
When Kind == EK_Parameter, the ParmVarDecl, with the integer indicating whether the parameter is "con...
const CXXBaseSpecifier * getBaseSpecifier() const
Retrieve the base specifier.
SourceLocation getReturnLoc() const
Determine the location of the 'return' keyword when initializing the result of a function call.
TypeSourceInfo * getTypeSourceInfo() const
Retrieve complete type-source information for the object being constructed, if known.
ObjCMethodDecl * getMethodDecl() const
Retrieve the ObjectiveC method being initialized.
An lvalue reference type, per C++11 [dcl.ref].
static StringRef getSourceText(CharSourceRange Range, const SourceManager &SM, const LangOptions &LangOpts, bool *Invalid=nullptr)
Returns a string for the source that the range encompasses.
Represents the results of name lookup.
bool empty() const
Return true if no decls were found.
void suppressDiagnostics()
Suppress the diagnostics that would normally fire because of this lookup.
Represents a prvalue temporary that is written into memory so that a reference can bind to it.
StorageDuration getStorageDuration() const
Retrieve the storage duration for the materialized temporary.
Represents a matrix type, as defined in the Matrix Types clang extensions.
QualType getElementType() const
Returns type of the elements being stored in the matrix.
This represents a decl that may have a name.
NamedDecl * getUnderlyingDecl()
Looks through UsingDecls and ObjCCompatibleAliasDecls for the underlying named decl.
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
Represent a C++ namespace.
Represents a place-holder for an object not to be initialized by anything.
QualType getEncodedType() const
ObjCIndirectCopyRestoreExpr - Represents the passing of a function argument by indirect copy-restore ...
OpaqueValueExpr - An expression referring to an opaque object of a fixed type and value class.
bool isAvailableOption(llvm::StringRef Ext, const LangOptions &LO) const
OverloadCandidateSet - A set of overload candidates, used in C++ overload resolution (C++ 13....
void clear(CandidateSetKind CSK)
Clear out all of the candidates.
void setDestAS(LangAS AS)
llvm::MutableArrayRef< Expr * > getPersistentArgsArray(unsigned N)
Provide storage for any Expr* arg that must be preserved until deferred template candidates are deduc...
@ CSK_InitByConstructor
C++ [over.match.ctor], [over.match.list] Initialization of an object of class type by constructor,...
@ CSK_InitByUserDefinedConversion
C++ [over.match.copy]: Copy-initialization of an object of class type by user-defined conversion.
@ CSK_Normal
Normal lookup.
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.
CandidateSetKind getKind() const
Represents a parameter to a function.
PointerType - C99 6.7.5.1 - Pointer Declarators.
bool NeedsStdLibCxxWorkaroundBefore(std::uint64_t FixedVersion)
A (possibly-)qualified type.
bool isVolatileQualified() const
Determine whether this type is volatile-qualified.
bool hasQualifiers() const
Determine whether this type has any qualifiers.
QualType getNonLValueExprType(const ASTContext &Context) const
Determine the type of a (typically non-lvalue) expression with the specified result type.
QualType getDesugaredType(const ASTContext &Context) const
Return the specified type with any "sugar" removed from the type.
QualType withConst() const
QualType getLocalUnqualifiedType() const
Return this type with all of the instance-specific qualifiers removed, but without removing any quali...
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.
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 isConstQualified() const
Determine whether this type is const-qualified.
bool hasAddressSpace() const
Check if this type has any address space qualifier.
DestructionKind isDestructedType() const
Returns a nonzero value if objects of this type require non-trivial work to clean up after.
The collection of all-type qualifiers we support.
unsigned getCVRQualifiers() const
void addAddressSpace(LangAS space)
@ OCL_Weak
Reading or writing from this object requires a barrier call.
bool hasQualifiers() const
Return true if the set contains any qualifiers.
bool compatiblyIncludes(Qualifiers other, const ASTContext &Ctx) const
Determines if these qualifiers compatibly include another set.
bool hasAddressSpace() const
static bool isAddressSpaceSupersetOf(LangAS A, LangAS B, const ASTContext &Ctx)
Returns true if address space A is equal to or a superset of B.
Qualifiers withoutAddressSpace() const
static Qualifiers fromCVRMask(unsigned CVR)
bool hasObjCLifetime() const
ObjCLifetime getObjCLifetime() const
Qualifiers withoutObjCLifetime() const
LangAS getAddressSpace() const
An rvalue reference type, per C++11 [dcl.ref].
Represents a struct/union/class.
field_iterator field_end() const
field_range fields() const
bool isRandomized() const
RecordDecl * getDefinition() const
Returns the RecordDecl that actually defines this struct/union/class.
bool hasUninitializedExplicitInitFields() const
specific_decl_iterator< FieldDecl > field_iterator
field_iterator field_begin() const
Base for LValueReferenceType and RValueReferenceType.
bool isSpelledAsLValue() const
PartialDiagnostic PDiag(unsigned DiagID=0)
Build a partial diagnostic.
SemaDiagnosticBuilder DiagCompat(SourceLocation Loc, unsigned CompatDiagId)
Emit a compatibility diagnostic.
SemaDiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID)
Emit a diagnostic.
bool transformInitList(const InitializedEntity &Entity, InitListExpr *Init)
bool CheckObjCBridgeRelatedConversions(SourceLocation Loc, QualType DestType, QualType SrcType, Expr *&SrcExpr, bool Diagnose=true)
bool isObjCWritebackConversion(QualType FromType, QualType ToType, QualType &ConvertedType)
Determine whether this is an Objective-C writeback conversion, used for parameter passing when perfor...
bool CheckConversionToObjCLiteral(QualType DstType, Expr *&SrcExpr, bool Diagnose=true)
void EmitRelatedResultTypeNote(const Expr *E)
If the given expression involves a message send to a method with a related result type,...
void EmitRelatedResultTypeNoteForReturn(QualType destType)
Given that we had incompatible pointer types in a return statement, check whether we're in a method w...
Sema - This implements semantic analysis and AST building for C.
@ LookupOrdinaryName
Ordinary name lookup, which finds ordinary names (functions, variables, typedefs, etc....
@ LookupMemberName
Member name lookup, which finds the names of class/struct/union members.
bool DiagRedefinedPlaceholderFieldDecl(SourceLocation Loc, RecordDecl *ClassDecl, const IdentifierInfo *Name)
ImplicitConversionSequence TryImplicitConversion(Expr *From, QualType ToType, bool SuppressUserConversions, AllowedExplicit AllowExplicit, bool InOverloadResolution, bool CStyle, bool AllowObjCWritebackConversion)
bool IsStringInit(Expr *Init, const ArrayType *AT)
bool isImplicitlyDeleted(FunctionDecl *FD)
Determine whether the given function is an implicitly-deleted special member function.
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 ...
ReferenceCompareResult
ReferenceCompareResult - Expresses the result of comparing two types (cv1 T1 and cv2 T2) to determine...
@ Ref_Incompatible
Ref_Incompatible - The two types are incompatible, so direct reference binding is not possible.
@ Ref_Compatible
Ref_Compatible - The two types are reference-compatible.
@ Ref_Related
Ref_Related - The two types are reference-related, which means that their unqualified forms (T1 and T...
void AddTemplateConversionCandidate(FunctionTemplateDecl *FunctionTemplate, DeclAccessPair FoundDecl, CXXRecordDecl *ActingContext, Expr *From, QualType ToType, OverloadCandidateSet &CandidateSet, bool AllowObjCConversionOnExplicit, bool AllowExplicit, bool AllowResultConversion=true)
Adds a conversion function template specialization candidate to the overload set, using template argu...
Preprocessor & getPreprocessor() const
const ExpressionEvaluationContextRecord & currentEvaluationContext() const
ExprResult MaybeBindToTemporary(Expr *E)
MaybeBindToTemporary - If the passed in expression has a record type with a non-trivial destructor,...
ExprResult ActOnDesignatedInitializer(Designation &Desig, SourceLocation EqualOrColonLoc, bool GNUSyntax, ExprResult Init)
FPOptionsOverride CurFPFeatureOverrides()
AssignConvertType CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &RHS, bool Diagnose=true, bool DiagnoseCFAudited=false, bool ConvertRHS=true)
Check assignment constraints for an assignment of RHS to LHSType.
void diagnoseNullableToNonnullConversion(QualType DstType, QualType SrcType, SourceLocation Loc)
Warn if we're implicitly casting from a _Nullable pointer type to a _Nonnull one.
bool DiagnoseUseOfDecl(NamedDecl *D, ArrayRef< SourceLocation > Locs, const ObjCInterfaceDecl *UnknownObjCClass=nullptr, bool ObjCPropertyAccess=false, bool AvoidPartialAvailabilityChecks=false, ObjCInterfaceDecl *ClassReceiver=nullptr, bool SkipTrailingRequiresClause=false)
Determine whether the use of this declaration is valid, and emit any corresponding diagnostics.
bool checkAddressOfFunctionIsAvailable(const FunctionDecl *Function, bool Complain=false, SourceLocation Loc=SourceLocation())
Returns whether the given function's address can be taken or not, optionally emitting a diagnostic if...
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....
ExprResult DefaultFunctionArrayLvalueConversion(Expr *E, bool Diagnose=true)
ASTContext & getASTContext() const
CXXDestructorDecl * LookupDestructor(CXXRecordDecl *Class)
Look for the destructor of the given class.
ExprResult ImpCastExprToType(Expr *E, QualType Type, CastKind CK, ExprValueKind VK=VK_PRValue, const CXXCastPath *BasePath=nullptr, CheckedConversionKind CCK=CheckedConversionKind::Implicit)
ImpCastExprToType - If Expr is not of type 'Type', insert an implicit cast.
bool isInitListConstructor(const FunctionDecl *Ctor)
Determine whether Ctor is an initializer-list constructor, as defined in [dcl.init....
AccessResult CheckMemberOperatorAccess(SourceLocation Loc, Expr *ObjectExpr, const SourceRange &, DeclAccessPair FoundDecl)
ExprResult ActOnParenListExpr(SourceLocation L, SourceLocation R, MultiExprArg Val)
llvm::SmallVector< QualType, 4 > CurrentParameterCopyTypes
Stack of types that correspond to the parameter entities that are currently being copy-initialized.
std::string getFixItZeroInitializerForType(QualType T, SourceLocation Loc) const
Get a string to suggest for zero-initialization of a type.
void AddConversionCandidate(CXXConversionDecl *Conversion, DeclAccessPair FoundDecl, CXXRecordDecl *ActingContext, Expr *From, QualType ToType, OverloadCandidateSet &CandidateSet, bool AllowObjCConversionOnExplicit, bool AllowExplicit, bool AllowResultConversion=true, bool StrictPackMatch=false)
AddConversionCandidate - Add a C++ conversion function as a candidate in the candidate set (C++ [over...
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...
SourceLocation getLocForEndOfToken(SourceLocation Loc, unsigned Offset=0)
Calls Lexer::getLocForEndOfToken()
CXXConstructorDecl * LookupDefaultConstructor(CXXRecordDecl *Class)
Look up the default constructor for the given class.
const LangOptions & getLangOpts() const
TypoCorrection CorrectTypo(const DeclarationNameInfo &Typo, Sema::LookupNameKind LookupKind, Scope *S, CXXScopeSpec *SS, CorrectionCandidateCallback &CCC, CorrectTypoKind Mode, DeclContext *MemberContext=nullptr, bool EnteringContext=false, const ObjCObjectPointerType *OPT=nullptr, bool RecordFailure=true)
Try to "correct" a typo in the source code by finding visible declarations whose names are similar to...
void NoteTemplateLocation(const NamedDecl &Decl, std::optional< SourceRange > ParamRange={})
bool RequireNonAbstractType(SourceLocation Loc, QualType T, TypeDiagnoser &Diagnoser)
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, bool StrictPackMatch=false)
AddOverloadCandidate - Adds the given function to the set of candidate functions, using the given fun...
ExprResult PerformQualificationConversion(Expr *E, QualType Ty, ExprValueKind VK=VK_PRValue, CheckedConversionKind CCK=CheckedConversionKind::Implicit)
ExprResult BuildCXXMemberCallExpr(Expr *Exp, NamedDecl *FoundDecl, CXXConversionDecl *Method, bool HadMultipleCandidates)
ExprResult CheckForImmediateInvocation(ExprResult E, FunctionDecl *Decl)
Wrap the expression in a ConstantExpr if it is a potential immediate invocation.
ExprResult TemporaryMaterializationConversion(Expr *E)
If E is a prvalue denoting an unmaterialized temporary, materialize it as an xvalue.
bool CanUseDecl(NamedDecl *D, bool TreatUnavailableAsInvalid)
Determine whether the use of this declaration is valid, without emitting diagnostics.
CleanupInfo Cleanup
Used to control the generation of ExprWithCleanups.
ReferenceConversionsScope::ReferenceConversions ReferenceConversions
ExprResult BuildCXXAggregateDefaultInitExpr(SourceLocation Loc, FieldDecl *Field, const InitializedEntity &MemberEntity)
QualType DeduceTemplateSpecializationFromInitializer(TypeSourceInfo *TInfo, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Init)
void DefineImplicitDefaultConstructor(SourceLocation CurrentLocation, CXXConstructorDecl *Constructor)
DefineImplicitDefaultConstructor - Checks for feasibility of defining this constructor as the default...
SourceLocation getLocationOfStringLiteralByte(const StringLiteral *SL, unsigned ByteNo) const
bool CheckDerivedToBaseConversion(QualType Derived, QualType Base, SourceLocation Loc, SourceRange Range, CXXCastPath *BasePath=nullptr, bool IgnoreAccess=false)
bool isInLifetimeExtendingContext() const
AssignConvertType CheckTransparentUnionArgumentConstraints(QualType ArgType, ExprResult &RHS)
bool IsAssignConvertCompatible(AssignConvertType ConvTy)
bool DiagnoseUseOfOverloadedDecl(NamedDecl *D, SourceLocation Loc)
DeclContext * CurContext
CurContext - This is the current declaration context of parsing.
MaterializeTemporaryExpr * CreateMaterializeTemporaryExpr(QualType T, Expr *Temporary, bool BoundToLvalueReference)
AccessResult CheckConstructorAccess(SourceLocation Loc, CXXConstructorDecl *D, DeclAccessPair FoundDecl, const InitializedEntity &Entity, bool IsCopyBindingRefToTemp=false)
Checks access to a constructor.
bool IsDerivedFrom(SourceLocation Loc, CXXRecordDecl *Derived, CXXRecordDecl *Base, CXXBasePaths &Paths)
Determine whether the type Derived is a C++ class that is derived from the type Base.
bool isUnevaluatedContext() const
Determines whether we are currently in a context that is not evaluated as per C++ [expr] p5.
AccessResult CheckAddressOfMemberAccess(Expr *OvlExpr, DeclAccessPair FoundDecl)
TemplateNameKindForDiagnostics getTemplateNameKindForDiagnostics(TemplateName Name)
ExprResult CheckPlaceholderExpr(Expr *E)
Check for operands with placeholder types and complain if found.
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
ExprResult FixOverloadedFunctionReference(Expr *E, DeclAccessPair FoundDecl, FunctionDecl *Fn)
FixOverloadedFunctionReference - E is an expression that refers to a C++ overloaded function (possibl...
void DiscardMisalignedMemberAddress(const Type *T, Expr *E)
This function checks if the expression is in the sef of potentially misaligned members and it is conv...
bool BoundsSafetyCheckInitialization(const InitializedEntity &Entity, const InitializationKind &Kind, AssignmentAction Action, QualType LHSType, Expr *RHSExpr)
Perform Bounds Safety Semantic checks for initializing a Bounds Safety pointer.
bool DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement, const PartialDiagnostic &PD)
Conditionally issue a diagnostic based on the current evaluation context.
ExprResult BuildCXXDefaultArgExpr(SourceLocation CallLoc, FunctionDecl *FD, ParmVarDecl *Param, Expr *Init=nullptr)
BuildCXXDefaultArgExpr - Creates a CXXDefaultArgExpr, instantiating the default expr if needed.
TypeSourceInfo * SubstAutoTypeSourceInfoDependent(TypeSourceInfo *TypeWithAuto)
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 isSFINAEContext() const
bool isCompleteType(SourceLocation Loc, QualType T, CompleteTypeKind Kind=CompleteTypeKind::Default)
bool CanPerformAggregateInitializationForOverloadResolution(const InitializedEntity &Entity, InitListExpr *From)
Determine whether we can perform aggregate initialization for the purposes of overload resolution.
bool isStdInitializerList(QualType Ty, QualType *Element)
Tests whether Ty is an instance of std::initializer_list and, if it is and Element is not NULL,...
ExprResult VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result, VerifyICEDiagnoser &Diagnoser, AllowFoldKind CanFold=AllowFoldKind::No)
VerifyIntegerConstantExpression - Verifies that an expression is an ICE, and reports the appropriate ...
void NoteDeletedFunction(FunctionDecl *FD)
Emit a note explaining that this function is deleted.
ExprResult CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc, Expr *Idx, SourceLocation RLoc)
void diagnoseTypo(const TypoCorrection &Correction, const PartialDiagnostic &TypoDiag, bool ErrorRecovery=true)
bool RequireCompleteType(SourceLocation Loc, QualType T, CompleteTypeKind Kind, TypeDiagnoser &Diagnoser)
Ensure that the type T is a complete type.
ReferenceCompareResult CompareReferenceRelationship(SourceLocation Loc, QualType T1, QualType T2, ReferenceConversions *Conv=nullptr)
CompareReferenceRelationship - Compare the two types T1 and T2 to determine whether they are referenc...
bool LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, bool InUnqualifiedLookup=false)
Perform qualified name lookup into a given context.
void checkInitializerLifetime(const InitializedEntity &Entity, Expr *Init)
Check that the lifetime of the initializer (and its subobjects) is sufficient for initializing the en...
QualType getCompletedType(Expr *E)
Get the type of expression E, triggering instantiation to complete the type if necessary – that is,...
SourceManager & SourceMgr
TypeSourceInfo * SubstAutoTypeSourceInfo(TypeSourceInfo *TypeWithAuto, QualType Replacement)
Substitute Replacement for auto in TypeWithAuto.
DiagnosticsEngine & Diags
OpenCLOptions & getOpenCLOptions()
NamespaceDecl * getStdNamespace() const
ExprResult PerformCopyInitialization(const InitializedEntity &Entity, SourceLocation EqualLoc, ExprResult Init, bool TopLevelOfInitList=false, bool AllowExplicit=false)
friend class InitializationSequence
CXXDeductionGuideDecl * DeclareAggregateDeductionGuideFromInitList(TemplateDecl *Template, MutableArrayRef< QualType > ParamTypes, SourceLocation Loc)
void runWithSufficientStackSpace(SourceLocation Loc, llvm::function_ref< void()> Fn)
Run some code with "sufficient" stack space.
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 CanPerformCopyInitialization(const InitializedEntity &Entity, ExprResult Init)
bool CheckExceptionSpecCompatibility(Expr *From, QualType ToType)
void HandleFunctionTypeMismatch(PartialDiagnostic &PDiag, QualType FromType, QualType ToType)
HandleFunctionTypeMismatch - Gives diagnostic information for differeing function types.
DeclContextLookupResult LookupConstructors(CXXRecordDecl *Class)
Look up the constructors for the given class.
CXXConstructorDecl * findInheritingConstructor(SourceLocation Loc, CXXConstructorDecl *BaseCtor, ConstructorUsingShadowDecl *DerivedShadow)
Given a derived-class using shadow declaration for a constructor and the correspnding base class cons...
ValueDecl * tryLookupUnambiguousFieldDecl(RecordDecl *ClassDecl, const IdentifierInfo *MemberOrBase)
Encodes a location in the source.
SourceLocation getLocWithOffset(IntTy Offset) const
Return a source location with the specified offset from this SourceLocation.
CharSourceRange getImmediateExpansionRange(SourceLocation Loc) const
Return the start/end of the expansion information for an expansion location.
bool isInSystemHeader(SourceLocation Loc) const
Returns if a SourceLocation is in a system header.
bool isAtStartOfImmediateMacroExpansion(SourceLocation Loc, SourceLocation *MacroBegin=nullptr) const
Returns true if the given MacroID location points at the beginning of the immediate macro expansion.
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....
void setFromType(QualType T)
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,...
void setAsIdentityConversion()
StandardConversionSequence - Set the standard conversion sequence to the identity conversion.
NarrowingKind getNarrowingKind(ASTContext &Context, const Expr *Converted, APValue &ConstantValue, QualType &ConstantType, bool IgnoreFloatToIntegralConversion=false, bool AllowRelaxedEval=false) const
Check if this standard conversion sequence represents a narrowing conversion, according to C++11 [dcl...
void setToType(unsigned Idx, QualType T)
void setAllToTypes(QualType T)
QualType getToType(unsigned Idx) const
Stmt - This represents one statement.
SourceLocation getEndLoc() const LLVM_READONLY
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
SourceLocation getBeginLoc() const LLVM_READONLY
StringLiteral - This represents a string literal expression, e.g.
unsigned getLength() const
StringLiteralKind getKind() const
int64_t getCodeUnitS(size_t I, uint64_t BitWidth) const
StringRef getString() const
The base class of all kinds of template declarations (e.g., class, function, etc.).
Represents a C++ template name within the type system.
TemplateDecl * getAsTemplateDecl(bool IgnoreDeduced=false) const
Retrieve the underlying template declaration that this template name refers to, if known.
bool isDependent() const
Determines whether this is a dependent template name.
SourceRange getSourceRange() const LLVM_READONLY
Get the full source range.
SourceLocation getEndLoc() const
Get the end source location.
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.
The base class of the type hierarchy.
bool isBooleanType() const
bool isMFloat8Type() const
const Type * getPointeeOrArrayElementType() const
If this is a pointer type, return the pointee type.
bool isIncompleteArrayType() const
bool isSignedIntegerType() const
Return true if this is an integer type that is signed, according to C99 6.2.5p4 [char,...
bool isIntegralOrUnscopedEnumerationType() const
Determine whether this type is an integral or unscoped enumeration type.
bool isRValueReferenceType() const
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
RecordDecl * getAsRecordDecl() const
Retrieves the RecordDecl this type refers to.
CXXRecordDecl * castAsCXXRecordDecl() const
bool isConstantMatrixType() const
bool isArrayParameterType() 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 isEnumeralType() const
bool isScalarType() const
const CXXRecordDecl * getPointeeCXXRecordDecl() const
If this is a pointer or reference to a RecordType, return the CXXRecordDecl that the type refers to.
bool isSizelessBuiltinType() const
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
bool isExtVectorType() const
bool isOCLIntelSubgroupAVCType() const
bool isLValueReferenceType() const
bool isOpenCLSpecificType() const
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
bool isAggregateType() const
Determines whether the type is a C++ aggregate type or C aggregate or union type.
RecordDecl * castAsRecordDecl() const
bool isAnyComplexType() const
DeducedType * getContainedDeducedType() const
Get the DeducedType whose type will be deduced for a variable with an initializer of this type.
const Type * getBaseElementTypeUnsafe() const
Get the base element type of this type, potentially discarding type qualifiers.
bool isAtomicType() const
bool isFunctionProtoType() const
bool isMatrixType() const
EnumDecl * castAsEnumDecl() const
bool isObjCObjectType() const
const ArrayType * getAsArrayTypeUnsafe() const
A variant of getAs<> for array types which silently discards qualifiers from the outermost type.
bool isIncompleteType(NamedDecl **Def=nullptr) const
Types are partitioned into 3 broad categories (C99 6.2.5p1): object types, function types,...
bool isFunctionType() const
bool isObjCObjectPointerType() const
bool isVectorType() const
bool isRealFloatingType() const
Floating point categories.
const T * getAsCanonical() const
If this type is canonically the specified type, return its canonical type cast to that specified type...
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...
const T * getAs() const
Member-template getAs<specific type>'.
const Type * getUnqualifiedDesugaredType() const
Return the specified type with any "sugar" removed from the type, removing any typedefs,...
bool isNullPtrType() const
bool isRecordType() const
bool isObjCRetainableType() const
DeclClass * getCorrectionDeclAs() const
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Represents a variable declaration or definition.
const Expr * getInit() const
bool hasLocalStorage() const
Returns true if a variable with function scope is a non-static local variable.
StorageDuration getStorageDuration() const
Get the storage duration of this variable, per C++ [basic.stc].
Represents a C array with a specified size that is not an integer-constant-expression.
Represents a GCC generic vector type.
unsigned getNumElements() const
VectorKind getVectorKind() const
QualType getElementType() const
Defines the clang::TargetInfo interface.
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
const AstTypeMatcher< ArrayType > arrayType
const internal::VariadicDynCastAllOfMatcher< Stmt, Expr > expr
Matches expressions.
@ OS
Indicates that the tracking object is a descendant of a referenced-counted OSObject,...
void checkInitLifetime(Sema &SemaRef, const InitializedEntity &Entity, Expr *Init)
Check that the lifetime of the given expr (and its subobjects) is sufficient for initializing the ent...
Top level wrappers for InstallAPI frontend operations.
CanQual< Type > CanQualType
Represents a canonical, potentially-qualified type.
bool isa(CodeGen::Address addr)
if(T->getSizeExpr()) TRY_TO(TraverseStmt(const_cast< Expr * >(T -> getSizeExpr())))
OverloadingResult
OverloadingResult - Capture the result of performing overload resolution.
@ OR_Deleted
Succeeded, but refers to a deleted function.
@ OR_Success
Overload resolution succeeded.
@ OR_Ambiguous
Ambiguous candidates found.
@ OR_No_Viable_Function
No viable function found.
@ ovl_fail_bad_conversion
@ OCD_AmbiguousCandidates
Requests that only tied-for-best candidates be shown.
@ OCD_AllCandidates
Requests that all candidates be shown.
@ Seq
'seq' clause, allowed on 'loop' and 'routine' directives.
MutableArrayRef< Expr * > MultiExprArg
@ SD_Thread
Thread storage duration.
@ SD_Static
Static storage duration.
@ SD_Automatic
Automatic storage duration (most local variables).
@ Result
The result type of a method or function.
const FunctionProtoType * T
@ ICK_Integral_Conversion
Integral conversions (C++ [conv.integral])
@ ICK_Floating_Integral
Floating-integral conversions (C++ [conv.fpint])
@ ICK_Array_To_Pointer
Array-to-pointer conversion (C++ [conv.array])
@ ICK_Lvalue_To_Rvalue
Lvalue-to-rvalue conversion (C++ [conv.lval])
@ ICK_Writeback_Conversion
Objective-C ARC writeback conversion.
@ Template
We are parsing a template declaration.
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.
CastKind
CastKind - The kind of operation required for a conversion.
std::pair< SourceLocation, PartialDiagnostic > PartialDiagnosticAt
A partial diagnostic along with the source location where this diagnostic occurs.
ExprValueKind
The categorization of expression values, currently following the C++11 scheme.
@ VK_PRValue
A pr-value expression (in the C++11 taxonomy) produces a temporary value.
@ VK_XValue
An x-value expression is a reference to an object with independent storage but which can be "moved",...
@ VK_LValue
An l-value expression is a reference to an object with independent storage.
Expr * IgnoreParensSingleStep(Expr *E)
SmallVector< CXXBaseSpecifier *, 4 > CXXCastPath
A simple array of base specifiers.
@ NK_Not_Narrowing
Not a narrowing conversion.
@ NK_Constant_Narrowing
A narrowing conversion, because a constant expression got narrowed.
@ NK_Dependent_Narrowing
Cannot tell whether this is a narrowing conversion because the expression is value-dependent.
@ NK_Type_Narrowing
A narrowing conversion by virtue of the source and destination types.
@ NK_Variable_Narrowing
A narrowing conversion, because a non-constant-expression variable might have got narrowed.
bool declaresSameEntity(const Decl *D1, const Decl *D2)
Determine whether two declarations declare the same entity.
U cast(CodeGen::Address addr)
ConstructorInfo getConstructorInfo(NamedDecl *ND)
ActionResult< Expr * > ExprResult
@ Braces
New-expression has a C++11 list-initializer.
CheckedConversionKind
The kind of conversion being performed.
@ Implicit
An implicit conversion.
@ CStyleCast
A C-style cast.
@ OtherCast
A cast other than a C-style cast.
@ FunctionalCast
A functional-style cast.
__builtin_elementwise_add_sat __builtin_elementwise_sub_sat uint32_t __packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 __packed_splat2 __packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 uint32_t
CXXConstructorDecl * Constructor
DeclarationNameInfo - A collector data type for bundling together a DeclarationName and the correspon...
EvalResult is a struct with detailed info about an evaluated expression.
APValue Val
Val - This is the value the expression can be folded to.
bool HadMultipleCandidates
OverloadCandidate - A single candidate in an overload set (C++ 13.3).
unsigned FailureKind
FailureKind - The reason why this candidate is not viable.
ConversionSequenceList Conversions
The conversion sequences used to convert the function arguments to the function parameters.
unsigned Viable
Viable - True to indicate that this overload candidate is viable.
SmallVector< MaterializeTemporaryExpr *, 8 > ForRangeLifetimeExtendTemps
P2718R0 - Lifetime extension in range-based for loops.
StandardConversionSequence After
After - Represents the standard conversion that occurs after the actual user-defined conversion.