44#include "llvm/ADT/ArrayRef.h"
45#include "llvm/ADT/STLForwardCompat.h"
46#include "llvm/ADT/StringExtras.h"
47#include "llvm/IR/DerivedTypes.h"
48#include "llvm/Support/ErrorHandling.h"
82 bool useExpansionLoc =
true;
83 switch (
attr.getKind()) {
84 case ParsedAttr::AT_ObjCGC:
87 case ParsedAttr::AT_ObjCOwnership:
93 useExpansionLoc =
false;
98 StringRef name =
attr.getAttrName()->getName();
102 attr.isArgIdent(0) ?
attr.getArgAsIdent(0)->getIdentifierInfo() :
nullptr;
103 if (useExpansionLoc && loc.
isMacroID() && II) {
104 if (II->
isStr(
"strong")) {
106 }
else if (II->
isStr(
"weak")) {
111 S.
Diag(loc,
attr.isRegularKeywordAttribute()
112 ? diag::err_type_attribute_wrong_type
113 : diag::warn_type_attribute_wrong_type)
114 << name << WhichType <<
type;
119#define OBJC_POINTER_TYPE_ATTRS_CASELIST \
120 case ParsedAttr::AT_ObjCGC: \
121 case ParsedAttr::AT_ObjCOwnership
124#define CALLING_CONV_ATTRS_CASELIST \
125 case ParsedAttr::AT_CDecl: \
126 case ParsedAttr::AT_FastCall: \
127 case ParsedAttr::AT_StdCall: \
128 case ParsedAttr::AT_ThisCall: \
129 case ParsedAttr::AT_RegCall: \
130 case ParsedAttr::AT_Pascal: \
131 case ParsedAttr::AT_SwiftCall: \
132 case ParsedAttr::AT_SwiftAsyncCall: \
133 case ParsedAttr::AT_VectorCall: \
134 case ParsedAttr::AT_AArch64VectorPcs: \
135 case ParsedAttr::AT_AArch64SVEPcs: \
136 case ParsedAttr::AT_MSABI: \
137 case ParsedAttr::AT_SysVABI: \
138 case ParsedAttr::AT_Pcs: \
139 case ParsedAttr::AT_IntelOclBicc: \
140 case ParsedAttr::AT_PreserveMost: \
141 case ParsedAttr::AT_PreserveAll: \
142 case ParsedAttr::AT_M68kRTD: \
143 case ParsedAttr::AT_PreserveNone: \
144 case ParsedAttr::AT_RISCVVectorCC: \
145 case ParsedAttr::AT_RISCVVLSCC
148#define FUNCTION_TYPE_ATTRS_CASELIST \
149 case ParsedAttr::AT_NSReturnsRetained: \
150 case ParsedAttr::AT_NoReturn: \
151 case ParsedAttr::AT_NonBlocking: \
152 case ParsedAttr::AT_NonAllocating: \
153 case ParsedAttr::AT_Blocking: \
154 case ParsedAttr::AT_Allocating: \
155 case ParsedAttr::AT_Regparm: \
156 case ParsedAttr::AT_CFIUncheckedCallee: \
157 case ParsedAttr::AT_CFISalt: \
158 case ParsedAttr::AT_CmseNSCall: \
159 case ParsedAttr::AT_ArmStreaming: \
160 case ParsedAttr::AT_ArmStreamingCompatible: \
161 case ParsedAttr::AT_ArmPreserves: \
162 case ParsedAttr::AT_ArmIn: \
163 case ParsedAttr::AT_ArmOut: \
164 case ParsedAttr::AT_ArmInOut: \
165 case ParsedAttr::AT_ArmAgnostic: \
166 case ParsedAttr::AT_AnyX86NoCallerSavedRegisters: \
167 case ParsedAttr::AT_AnyX86NoCfCheck: \
168 CALLING_CONV_ATTRS_CASELIST
171#define MS_TYPE_ATTRS_CASELIST \
172 case ParsedAttr::AT_Ptr32: \
173 case ParsedAttr::AT_Ptr64: \
174 case ParsedAttr::AT_SPtr: \
175 case ParsedAttr::AT_UPtr
178#define NULLABILITY_TYPE_ATTRS_CASELIST \
179 case ParsedAttr::AT_TypeNonNull: \
180 case ParsedAttr::AT_TypeNullable: \
181 case ParsedAttr::AT_TypeNullableResult: \
182 case ParsedAttr::AT_TypeNullUnspecified
187 class TypeProcessingState {
211 using TypeAttrPair = std::pair<const AttributedType*, const Attr*>;
213 bool AttrsForTypesSorted =
true;
217 llvm::DenseMap<const MacroQualifiedType *, SourceLocation> LocsForMacros;
225 bool ParsedHLSLParamMod;
229 :
sema(
sema), declarator(declarator),
231 ParsedHLSLParamMod(
false) {}
233 Sema &getSema()
const {
241 bool isProcessingDeclSpec()
const {
245 unsigned getCurrentChunkIndex()
const {
249 void setCurrentChunkIndex(
unsigned idx) {
255 if (isProcessingDeclSpec())
256 return getMutableDeclSpec().getAttributes();
261 void saveDeclSpecAttrs() {
263 if (!savedAttrs.empty())
266 DeclSpec &spec = getMutableDeclSpec();
267 llvm::append_range(savedAttrs,
274 ignoredTypeAttrs.push_back(&
attr);
280 for (
auto *
Attr : ignoredTypeAttrs)
289 sema.Context.getAttributedType(A, ModifiedType, EquivType);
291 AttrsForTypesSorted =
false;
296 QualType getBTFTagAttributedType(
const BTFTypeTagAttr *BTFAttr,
298 return sema.Context.getBTFTagAttributedType(BTFAttr, WrappedType);
304 getOverflowBehaviorType(OverflowBehaviorType::OverflowBehaviorKind Kind,
306 return sema.Context.getOverflowBehaviorType(Kind, UnderlyingType);
313 QualType T =
sema.ReplaceAutoType(TypeWithAuto, Replacement);
314 if (
auto *AttrTy = TypeWithAuto->
getAs<AttributedType>()) {
317 for (TypeAttrPair &A : AttrsForTypes) {
318 if (A.first == AttrTy)
321 AttrsForTypesSorted =
false;
327 const Attr *takeAttrForAttributedType(
const AttributedType *AT) {
328 if (!AttrsForTypesSorted) {
329 llvm::stable_sort(AttrsForTypes, llvm::less_first());
330 AttrsForTypesSorted =
true;
335 for (
auto It = llvm::partition_point(
337 [=](
const TypeAttrPair &A) {
return A.first < AT; });
338 It != AttrsForTypes.end() && It->first == AT; ++It) {
341 It->second =
nullptr;
355 auto FoundLoc = LocsForMacros.find(MQT);
356 assert(FoundLoc != LocsForMacros.end() &&
357 "Unable to find macro expansion location for MacroQualifedType");
358 return FoundLoc->second;
363 LocsForMacros[MQT] = Loc;
366 void setParsedNoDeref(
bool parsed) { parsedNoDeref = parsed; }
368 bool didParseNoDeref()
const {
return parsedNoDeref; }
370 void setParsedHLSLParamMod(
bool Parsed) { ParsedHLSLParamMod = Parsed; }
372 bool didParseHLSLParamMod()
const {
return ParsedHLSLParamMod; }
374 ~TypeProcessingState() {
375 if (savedAttrs.empty())
378 getMutableDeclSpec().getAttributes().clearListOnly();
380 getMutableDeclSpec().getAttributes().addAtEnd(AL);
384 DeclSpec &getMutableDeclSpec()
const {
426 if (
attr.getKind() == ParsedAttr::AT_ObjCGC)
428 assert(
attr.getKind() == ParsedAttr::AT_ObjCOwnership);
443 bool onlyBlockPointers) {
449 for (; i != 0; --i) {
451 switch (fnChunk.
Kind) {
467 for (--i; i != 0; --i) {
469 switch (ptrChunk.
Kind) {
479 if (onlyBlockPointers)
488 llvm_unreachable(
"bad declarator chunk kind");
494 llvm_unreachable(
"bad declarator chunk kind");
511 Declarator &declarator = state.getDeclarator();
514 for (
unsigned i = state.getCurrentChunkIndex(); i != 0; --i) {
516 switch (chunk.
Kind) {
522 if (state.isProcessingDeclSpec() &&
523 attr.getKind() == ParsedAttr::AT_ObjCOwnership)
526 if (!destChunk) destChunk = &chunk;
539 if (state.isProcessingDeclSpec() &&
540 attr.getKind() == ParsedAttr::AT_ObjCOwnership) {
567 Declarator &declarator = state.getDeclarator();
571 unsigned innermost = -1U;
572 bool considerDeclSpec =
true;
575 switch (chunk.
Kind) {
589 considerDeclSpec =
false;
597 if (considerDeclSpec) {
602 state.saveDeclSpecAttrs();
611 if (innermost != -1U) {
619 state.addIgnoredTypeAttr(
attr);
628 Declarator &declarator = state.getDeclarator();
632 for (
unsigned i = state.getCurrentChunkIndex(); i != 0; --i) {
634 switch (chunk.
Kind) {
661 Declarator &declarator = state.getDeclarator();
681 state.saveDeclSpecAttrs();
685 state,
attr, state.getCurrentAttributes(), declSpecType, CFT))
690 state.addIgnoredTypeAttr(
attr);
701 Declarator &declarator = state.getDeclarator();
711 state.addIgnoredTypeAttr(
attr);
736 if (
attr.isStandardAttributeSyntax() ||
attr.isRegularKeywordAttribute())
739 switch (
attr.getKind()) {
756 case ParsedAttr::AT_ObjCKindOf:
769 Declarator &declarator = state.getDeclarator();
815 {}, loc, loc, declarator));
830 typedef std::pair<DeclSpec::TQ, SourceLocation> QualLoc;
835 if (!(RemoveTQs & Qual.first))
839 if (TypeQuals & Qual.first)
840 S.
Diag(Qual.second, DiagID)
845 TypeQuals &= ~Qual.first;
859 if (AL.isInvalid() || !AL.isTypeAttr())
862 diag::warn_block_literal_attributes_on_omitted_return_type)
864 ToBeRemoved.push_back(&AL);
874 diag::warn_block_literal_qualifiers_on_omitted_return_type);
880static OpenCLAccessAttr::Spelling
883 if (AL.getKind() == ParsedAttr::AT_OpenCLAccess)
884 return static_cast<OpenCLAccessAttr::Spelling
>(AL.getSemanticSpelling());
885 return OpenCLAccessAttr::Keyword_read_only;
888static UnaryTransformType::UTTKind
891#define TRANSFORM_TYPE_TRAIT_DEF(Enum, Trait) \
893 return UnaryTransformType::Enum;
894#include "clang/Basic/BuiltinTraits.inc"
896 llvm_unreachable(
"attempted to parse a non-unary transform builtin");
910 Sema &S = state.getSema();
911 Declarator &declarator = state.getDeclarator();
928 Result = Context.SignedCharTy;
931 "Unknown TSS value");
932 Result = Context.UnsignedCharTy;
941 Context.getPrintingPolicy());
942 Result = Context.getSignedWCharType();
945 "Unknown TSS value");
948 Context.getPrintingPolicy());
949 Result = Context.getUnsignedWCharType();
954 "Unknown TSS value");
959 "Unknown TSS value");
960 Result = Context.Char16Ty;
964 "Unknown TSS value");
965 Result = Context.Char32Ty;
975 Result = Context.getAutoDeductType();
979 Context.DependentTy)) {
980 Result = Context.DependentTy;
996 S.
Diag(DeclLoc, diag::warn_missing_type_specifier)
1007 S.
Diag(DeclLoc, diag::err_missing_type_specifier)
1018 S.
Diag(DeclLoc, diag::err_missing_actual_pipe_type)
1024 "implicit int is disabled?");
1025 S.
Diag(DeclLoc, diag::ext_missing_type_specifier)
1039 Result = Context.ShortTy;
1045 Result = Context.LongLongTy;
1055 diag::warn_cxx98_compat_longlong : diag::ext_cxx11_longlong);
1064 Result = Context.UnsignedIntTy;
1067 Result = Context.UnsignedShortTy;
1070 Result = Context.UnsignedLongTy;
1073 Result = Context.UnsignedLongLongTy;
1083 diag::warn_cxx98_compat_longlong : diag::ext_cxx11_longlong);
1107 Result = Context.ShortAccumTy;
1110 Result = Context.AccumTy;
1113 Result = Context.LongAccumTy;
1116 llvm_unreachable(
"Unable to specify long long as _Accum width");
1123 Result = Context.getCorrespondingSaturatedType(
Result);
1130 Result = Context.ShortFractTy;
1133 Result = Context.FractTy;
1136 Result = Context.LongFractTy;
1139 llvm_unreachable(
"Unable to specify long long as _Fract width");
1146 Result = Context.getCorrespondingSaturatedType(
Result);
1156 Result = Context.UnsignedInt128Ty;
1158 Result = Context.Int128Ty;
1168 Result = Context.Float16Ty;
1176 Result = Context.BFloat16Ty;
1181 Result = Context.LongDoubleTy;
1183 Result = Context.DoubleTy;
1188 << (S.
getLangOpts().getOpenCLCompatibleVersion() >= 300
1189 ?
"cl_khr_fp64 and __opencl_c_fp64"
1200 Result = Context.Float128Ty;
1207 Result = Context.Ibm128Ty;
1238 "No qualifiers on tag names!");
1251 "Can't handle qualifiers on typedef names yet!");
1264 assert(!
Result.isNull() &&
"Didn't get a type for typeof?");
1265 if (!
Result->isDependentType())
1266 if (
const auto *TT =
Result->getAs<TagType>())
1269 Result = Context.getTypeOfType(
1277 assert(E &&
"Didn't get an expression for typeof?");
1291 assert(E &&
"Didn't get an expression for decltype?");
1302 assert(E &&
"Didn't get an expression for pack indexing");
1313#define TRANSFORM_TYPE_TRAIT_DEF(_, Trait) case DeclSpec::TST_##Trait:
1314#include "clang/Basic/BuiltinTraits.inc"
1316 assert(!
Result.isNull() &&
"Didn't get a type for the transformation?");
1336 TypeConstraintConcept = TemplateId->
Template.get();
1341 TemplateId->NumArgs);
1343 for (
const auto &ArgLoc : TemplateArgsInfo.
arguments())
1344 TemplateArgs.push_back(ArgLoc.getArgument());
1350 TypeConstraintConcept, TemplateArgs);
1360 Result = Context.UnknownAnyTy;
1365 assert(!
Result.isNull() &&
"Didn't get a type for _Atomic?");
1373#define GENERIC_IMAGE_TYPE(ImgType, Id) \
1374 case DeclSpec::TST_##ImgType##_t: \
1375 switch (getImageAccess(DS.getAttributes())) { \
1376 case OpenCLAccessAttr::Keyword_write_only: \
1377 Result = Context.Id##WOTy; \
1379 case OpenCLAccessAttr::Keyword_read_write: \
1380 Result = Context.Id##RWTy; \
1382 case OpenCLAccessAttr::Keyword_read_only: \
1383 Result = Context.Id##ROTy; \
1385 case OpenCLAccessAttr::SpellingNotCalculated: \
1386 llvm_unreachable("Spelling not yet calculated"); \
1389#include "clang/Basic/OpenCLImageTypes.def"
1391#define HLSL_INTANGIBLE_TYPE(Name, Id, SingletonId) \
1392 case DeclSpec::TST_##Name: \
1393 Result = Context.SingletonId; \
1395#include "clang/Basic/HLSLIntangibleTypes.def"
1406 if (
Result->containsErrors())
1411 bool IsOpenCLC30Compatible =
1421 (IsOpenCLC30Compatible &&
1424 << 0 <<
Result <<
"__opencl_c_images";
1426 }
else if (
Result->isOCLImage3dWOType() &&
1431 << (IsOpenCLC30Compatible
1432 ?
"cl_khr_3d_image_writes and __opencl_c_3d_image_writes"
1433 :
"cl_khr_3d_image_writes");
1445 Context.getPrintingPolicy());
1453 unsigned typeSize =
static_cast<unsigned>(Context.getTypeSize(
Result));
1454 assert(typeSize > 0 &&
"type size for vector must be greater than 0 bits");
1460 Result = Context.getVectorType(
Result, 128/typeSize, VecKind);
1485 if (AL.slidesFromDeclToDeclSpecLegacyBehavior()) {
1496 if (AL.isStandardAttributeSyntax() && AL.isClangScope() &&
1497 !(AL.getKind() == ParsedAttr::AT_MatrixType &&
1499 S.
Diag(AL.getLoc(), diag::warn_type_attribute_deprecated_on_decl)
1527 if (
Result->isFunctionType()) {
1528 unsigned DiagId = diag::warn_typecheck_function_qualifiers_ignored;
1530 DiagId = diag::ext_typecheck_function_qualifiers_unspecified;
1546 if (TypeQuals &&
Result->isReferenceType()) {
1548 S, DS, TypeQuals,
Result,
1550 diag::warn_typecheck_reference_qualifiers);
1557 && TypeQuals &
Result.getCVRQualifiers()) {
1584 if (
Result->isAtomicType()) {
1586 StringRef SpecifierName =
1588 S.
Diag(Loc, diag::err_overflow_behavior_atomic_type)
1589 << SpecifierName <<
Result.getAsString() << 1;
1590 }
else if (!
Result->isIntegerType()) {
1592 StringRef SpecifierName =
1594 S.
Diag(Loc, diag::err_overflow_behavior_non_integer_type)
1595 << SpecifierName <<
Result.getAsString() << 1;
1597 OverflowBehaviorType::OverflowBehaviorKind Kind =
1599 ? OverflowBehaviorType::OverflowBehaviorKind::Wrap
1600 : OverflowBehaviorType::OverflowBehaviorKind::Trap;
1608 assert(!
Result.isNull() &&
"This function should not return a null type");
1625 if (
T->isReferenceType()) {
1633 unsigned DiagID = 0;
1647 DiagID = diag::err_typecheck_invalid_restrict_invalid_pointee;
1652 DiagID = diag::err_typecheck_invalid_restrict_not_pointer;
1658 Diag(Loc, DiagID) << EltTy;
1661 if (
T->isArrayType())
1662 DiagCompat(Loc, diag_compat::restrict_on_array_of_pointers);
1666 return Context.getQualifiedType(
T, Qs);
1670 unsigned CVRAU,
const DeclSpec *DS) {
1675 if (
T->isReferenceType())
1704 Split.Quals.addCVRQualifiers(CVR);
1722 if (!
type->isObjCLifetimeType() ||
1732 if (
type.isConstQualified()) {
1738 }
else if (
type->isObjCARCImplicitlyUnretainedType()) {
1756 diag::err_arc_indirect_no_ownership,
type, isReference));
1758 S.
Diag(loc, diag::err_arc_indirect_no_ownership) <<
type << isReference;
1762 assert(implicitLifetime &&
"didn't infer any lifetime!");
1803enum QualifiedFunctionKind { QFK_BlockPointer, QFK_Pointer, QFK_Reference };
1809 QualifiedFunctionKind QFK) {
1816 S.
Diag(Loc, diag::err_compound_qualified_function_type)
1817 << QFK << isa<FunctionType>(
T.IgnoreParens()) <<
T
1828 Diag(Loc, diag::err_qualified_function_typeid)
1845 if (
T->isReferenceType()) {
1847 Diag(Loc, diag::err_illegal_decl_pointer_to_reference)
1855 Diag(Loc, diag::err_opencl_function_pointer) << 0;
1860 Diag(Loc, diag::err_hlsl_pointers_unsupported) << 0;
1867 if (
T->isObjCObjectType())
1868 return Context.getObjCObjectPointerType(
T);
1880 if (
T.isWebAssemblyReferenceType()) {
1881 Diag(Loc, diag::err_wasm_reference_pr) << 0;
1886 if (
T->getUnqualifiedDesugaredType()->isWebAssemblyTableType()) {
1887 Diag(Loc, diag::err_wasm_table_pr) << 0;
1900 "Unresolved overloaded function type");
1927 if (
T->isVoidType()) {
1928 Diag(Loc, diag::err_reference_to_void);
1933 Diag(Loc, diag::err_hlsl_pointers_unsupported) << 1;
1943 Diag(Loc, diag::err_opencl_function_pointer) << 1;
1956 T.isWebAssemblyReferenceType()) {
1957 Diag(Loc, diag::err_wasm_reference_pr) << 1;
1960 if (
T->isWebAssemblyTableType()) {
1961 Diag(Loc, diag::err_wasm_table_pr) << 1;
1967 return Context.getLValueReferenceType(
T, SpelledAsLValue);
1968 return Context.getRValueReferenceType(
T);
1976 return Context.getWritePipeType(
T);
1982 return Context.getDependentBitIntType(IsUnsigned, BitWidth);
1984 llvm::APSInt Bits(32);
1991 size_t NumBits = Bits.getZExtValue();
1992 if (!IsUnsigned && NumBits < 2) {
1993 Diag(Loc, diag::err_bit_int_bad_size) << 0;
1997 if (IsUnsigned && NumBits < 1) {
1998 Diag(Loc, diag::err_bit_int_bad_size) << 1;
2004 Diag(Loc, diag::err_bit_int_max_size)
2009 return Context.getBitIntType(IsUnsigned, NumBits);
2018 llvm::APSInt &SizeVal,
unsigned VLADiag,
2043 VLADiagnoser(
unsigned VLADiag,
bool VLAIsError)
2044 : VLADiag(VLADiag), VLAIsError(VLAIsError) {}
2048 return S.
Diag(Loc, diag::err_array_size_non_int) <<
T;
2053 IsVLA = !VLAIsError;
2054 return S.
Diag(Loc, VLADiag);
2059 return S.
Diag(Loc, diag::ext_vla_folded_to_constant);
2061 } Diagnoser(VLADiag, VLAIsError);
2065 if (Diagnoser.IsVLA)
2071 EltTy =
Context.getBaseElementType(EltTy);
2079 if (Size.isMultipleOf(Alignment))
2082 Diag(Loc, diag::err_array_element_alignment)
2083 << EltTy << Size.getQuantity() << Alignment.
getQuantity();
2088 Expr *ArraySize,
unsigned Quals,
2104 if (
T->isReferenceType()) {
2105 Diag(Loc, diag::err_illegal_decl_array_of_references)
2110 if (
T->isVoidType() ||
T->isIncompleteArrayType()) {
2111 Diag(Loc, diag::err_array_incomplete_or_sizeless_type) << 0 <<
T;
2116 diag::err_array_of_abstract_type))
2121 if (
Context.getTargetInfo().getCXXABI().isMicrosoft())
2123 if (!MPTy->getQualifier().isDependent())
2129 if (!
T.isWebAssemblyReferenceType() &&
2131 diag::err_array_incomplete_or_sizeless_type))
2136 if (
Context.getTargetInfo().getTriple().isWasm() &&
T->isArrayType()) {
2137 const auto *ATy = dyn_cast<ArrayType>(
T);
2138 if (ATy && ATy->getElementType().isWebAssemblyReferenceType()) {
2139 Diag(Loc, diag::err_wasm_reftype_multidimensional_array);
2144 if (
T->isSizelessType() && !
T.isWebAssemblyReferenceType()) {
2145 Diag(Loc, diag::err_array_incomplete_or_sizeless_type) << 1 <<
T;
2149 if (
T->isFunctionType()) {
2150 Diag(Loc, diag::err_illegal_decl_array_of_functions)
2155 if (
const auto *RD =
T->getAsRecordDecl()) {
2158 if (RD->hasFlexibleArrayMember())
2159 Diag(Loc, diag::ext_flexible_array_in_array) <<
T;
2160 }
else if (
T->isObjCObjectType()) {
2161 Diag(Loc, diag::err_objc_array_of_interfaces) <<
T;
2172 ArraySize =
Result.get();
2176 if (ArraySize && !ArraySize->
isPRValue()) {
2181 ArraySize =
Result.get();
2204 if (
const auto *CondExpr = dyn_cast_if_present<ConditionalOperator>(
2206 std::optional<llvm::APSInt> LHS =
2207 CondExpr->getLHS()->getIntegerConstantExpr(
Context);
2208 std::optional<llvm::APSInt> RHS =
2209 CondExpr->getRHS()->getIntegerConstantExpr(
Context);
2210 return LHS && RHS && LHS->isNegative() != RHS->isNegative();
2220 VLADiag = diag::err_opencl_vla;
2223 VLADiag = diag::warn_vla_used;
2226 VLADiag = diag::err_vla_in_sfinae;
2229 VLADiag = diag::err_openmp_vla_in_task_untied;
2234 ? diag::ext_vla_cxx_in_gnu_mode_static_assert
2235 : diag::ext_vla_cxx_static_assert;
2237 VLADiag =
getLangOpts().GNUMode ? diag::ext_vla_cxx_in_gnu_mode
2238 : diag::ext_vla_cxx;
2241 VLADiag = diag::ext_vla;
2245 llvm::APSInt ConstVal(
Context.getTypeSize(
Context.getSizeType()));
2252 T =
Context.getVariableArrayType(
T,
nullptr, ASM, Quals);
2254 T =
Context.getIncompleteArrayType(
T, ASM, Quals);
2257 T =
Context.getDependentSizedArrayType(
T, ArraySize, ASM, Quals);
2264 if (!R.isUsable()) {
2268 T =
Context.getVariableArrayType(
T, ArraySize, ASM, Quals);
2269 }
else if (!
T->isDependentType() && !
T->isIncompleteType() &&
2270 !
T->isConstantSizeType()) {
2277 T =
Context.getVariableArrayType(
T, ArraySize, ASM, Quals);
2282 if (ConstVal.isSigned() && ConstVal.isNegative()) {
2289 diag::err_typecheck_negative_array_size)
2293 if (ConstVal == 0 && !
T.isWebAssemblyReferenceType()) {
2304 : diag::ext_typecheck_zero_array_size)
2311 unsigned ActiveSizeBits =
2312 (!
T->isDependentType() && !
T->isVariablyModifiedType() &&
2313 !
T->isIncompleteType() && !
T->isUndeducedType())
2315 : ConstVal.getActiveBits();
2318 <<
toString(ConstVal, 10, ConstVal.isSigned(),
2325 T =
Context.getConstantArrayType(
T, ConstVal, ArraySize, ASM, Quals);
2329 if (
T->isVariableArrayType()) {
2330 if (!
Context.getTargetInfo().isVLASupported()) {
2334 IsCUDADevice ? diag::err_cuda_vla : diag::err_vla_unsupported)
2335 << (IsCUDADevice ? llvm::to_underlying(
CUDA().CurrentTarget()) : 0);
2339 FSI->setHasVLA(Loc);
2347 : diag::ext_c99_array_usage)
2358 Diag(Loc, diag::err_opencl_invalid_type_array) << ArrType;
2368 bool ForMatrixType =
false) {
2371 if (!llvm::isPowerOf2_32(NumBits))
2372 return S.
Diag(AttrLoc, diag::err_attribute_invalid_bitint_vector_type)
2392 Diag(AttrLoc, diag::err_attribute_invalid_vector_type) << CurType;
2401 return Context.getDependentVectorType(CurType, SizeExpr, AttrLoc,
2404 std::optional<llvm::APSInt> VecSize =
2407 Diag(AttrLoc, diag::err_attribute_argument_type)
2413 if (VecSize->isNegative()) {
2414 Diag(SizeExpr->
getExprLoc(), diag::err_attribute_vec_negative_size);
2419 return Context.getDependentVectorType(CurType, SizeExpr, AttrLoc,
2424 Diag(AttrLoc, diag::err_attribute_size_too_large)
2428 uint64_t VectorSizeBits = VecSize->getZExtValue() * 8;
2429 unsigned TypeSize =
static_cast<unsigned>(
Context.getTypeSize(CurType));
2431 if (VectorSizeBits == 0) {
2432 Diag(AttrLoc, diag::err_attribute_zero_size)
2437 if (!TypeSize || VectorSizeBits % TypeSize) {
2438 Diag(AttrLoc, diag::err_attribute_invalid_size)
2444 Diag(AttrLoc, diag::err_attribute_size_too_large)
2449 return Context.getVectorType(CurType, VectorSizeBits / TypeSize,
2465 if ((!
T->isDependentType() && !
T->isIntegerType() &&
2466 !
T->isRealFloatingType()) ||
2467 (IsNoBoolVecLang &&
T->isBooleanType())) {
2468 Diag(AttrLoc, diag::err_attribute_invalid_vector_type) <<
T;
2477 std::optional<llvm::APSInt> VecSize =
2480 Diag(AttrLoc, diag::err_attribute_argument_type)
2486 if (VecSize->isNegative()) {
2487 Diag(SizeExpr->
getExprLoc(), diag::err_attribute_vec_negative_size);
2494 Diag(AttrLoc, diag::err_attribute_size_too_large)
2498 unsigned VectorSize =
static_cast<unsigned>(VecSize->getZExtValue());
2500 if (VectorSize == 0) {
2501 Diag(AttrLoc, diag::err_attribute_zero_size)
2506 if (!
T->isDependentType() &&
2508 Diag(AttrLoc, diag::err_attribute_size_too_large)
2513 return Context.getExtVectorType(
T, VectorSize);
2516 return Context.getDependentSizedExtVectorType(
T, SizeExpr, AttrLoc);
2521 assert(
Context.getLangOpts().MatrixTypes &&
2522 "Should never build a matrix type when it is disabled");
2527 Diag(AttrLoc, diag::err_attribute_invalid_matrix_type) << ElementTy;
2538 return Context.getDependentSizedMatrixType(ElementTy, NumRows, NumCols,
2541 std::optional<llvm::APSInt> ValueRows =
2543 std::optional<llvm::APSInt> ValueColumns =
2550 if (!ValueRows && !ValueColumns) {
2551 Diag(AttrLoc, diag::err_attribute_argument_type)
2559 Diag(AttrLoc, diag::err_attribute_argument_type)
2565 if (!ValueColumns) {
2566 Diag(AttrLoc, diag::err_attribute_argument_type)
2572 unsigned MatrixRows =
static_cast<unsigned>(ValueRows->getZExtValue());
2573 unsigned MatrixColumns =
static_cast<unsigned>(ValueColumns->getZExtValue());
2574 if (MatrixRows == 0 && MatrixColumns == 0) {
2575 Diag(AttrLoc, diag::err_attribute_zero_size)
2576 <<
"matrix" << RowRange << ColRange;
2579 if (MatrixRows == 0) {
2580 Diag(AttrLoc, diag::err_attribute_zero_size) <<
"matrix" << RowRange;
2583 if (MatrixColumns == 0) {
2584 Diag(AttrLoc, diag::err_attribute_zero_size) <<
"matrix" << ColRange;
2587 if (MatrixRows >
Context.getLangOpts().MaxMatrixDimension &&
2588 MatrixColumns >
Context.getLangOpts().MaxMatrixDimension) {
2589 Diag(AttrLoc, diag::err_attribute_size_too_large)
2590 << RowRange << ColRange <<
"matrix row and column";
2593 if (MatrixRows >
Context.getLangOpts().MaxMatrixDimension) {
2594 Diag(AttrLoc, diag::err_attribute_size_too_large)
2595 << RowRange <<
"matrix row";
2598 if (MatrixColumns >
Context.getLangOpts().MaxMatrixDimension) {
2599 Diag(AttrLoc, diag::err_attribute_size_too_large)
2600 << ColRange <<
"matrix column";
2603 return Context.getConstantMatrixType(ElementTy, MatrixRows, MatrixColumns);
2607 if ((
T->isArrayType() && !
getLangOpts().allowArrayReturnTypes()) ||
2608 T->isFunctionType()) {
2609 Diag(Loc, diag::err_func_returning_array_function)
2610 <<
T->isFunctionType() <<
T;
2615 if (
T->isHalfType() && !
getLangOpts().NativeHalfArgsAndReturns &&
2616 !
Context.getTargetInfo().allowHalfArgsAndReturns()) {
2617 Diag(Loc, diag::err_parameters_retval_cannot_have_fp16_type) << 1 <<
2624 if (
T->isObjCObjectType()) {
2625 Diag(Loc, diag::err_object_cannot_be_passed_returned_by_value)
2631 if (
T.getPointerAuth()) {
2632 Diag(Loc, diag::err_ptrauth_qualifier_invalid) <<
T << 0;
2636 if (
T.hasNonTrivialToPrimitiveDestructCUnion() ||
2637 T.hasNonTrivialToPrimitiveCopyCUnion())
2644 Diag(Loc, diag::warn_deprecated_volatile_return) <<
T;
2659 bool emittedError =
false;
2661 enum class RequiredCC { OnlySwift, SwiftOrSwiftAsync };
2662 auto checkCompatible = [&](
unsigned paramIndex, RequiredCC required) {
2664 (required == RequiredCC::OnlySwift)
2667 if (isCompatible || emittedError)
2669 S.
Diag(getParamLoc(paramIndex), diag::err_swift_param_attr_not_swiftcall)
2671 << (required == RequiredCC::OnlySwift);
2672 emittedError =
true;
2674 for (
size_t paramIndex = 0, numParams = paramTypes.size();
2675 paramIndex != numParams; ++paramIndex) {
2686 checkCompatible(paramIndex, RequiredCC::SwiftOrSwiftAsync);
2687 if (paramIndex != 0 &&
2690 S.
Diag(getParamLoc(paramIndex),
2691 diag::err_swift_indirect_result_not_first);
2696 checkCompatible(paramIndex, RequiredCC::SwiftOrSwiftAsync);
2705 checkCompatible(paramIndex, RequiredCC::OnlySwift);
2706 if (paramIndex == 0 ||
2709 S.
Diag(getParamLoc(paramIndex),
2710 diag::err_swift_error_result_not_after_swift_context);
2714 llvm_unreachable(
"bad ABI kind");
2726 for (
unsigned Idx = 0, Cnt = ParamTypes.size(); Idx < Cnt; ++Idx) {
2728 QualType ParamType =
Context.getAdjustedParameterType(ParamTypes[Idx]);
2730 Diag(Loc, diag::err_param_with_void_type);
2733 !
Context.getTargetInfo().allowHalfArgsAndReturns()) {
2735 Diag(Loc, diag::err_parameters_retval_cannot_have_fp16_type) << 0 <<
2739 Diag(Loc, diag::err_wasm_table_as_function_parameter);
2743 Diag(Loc, diag::err_ptrauth_qualifier_invalid) <<
T << 1;
2750 Diag(Loc, diag::warn_deprecated_volatile_param) << ParamType;
2752 ParamTypes[Idx] = ParamType;
2757 [=](
unsigned i) {
return Loc; });
2768 return Context.getFunctionType(
T, ParamTypes, EPI);
2783 D <<
"member pointer";
2791 Diag(Loc, diag::err_distant_exception_spec);
2797 if (
T->isReferenceType()) {
2798 Diag(Loc, diag::err_illegal_decl_mempointer_to_reference)
2803 if (
T->isVoidType()) {
2804 Diag(Loc, diag::err_illegal_decl_mempointer_to_void)
2812 Diag(Loc, diag::err_opencl_function_pointer) << 0;
2817 Diag(Loc, diag::err_hlsl_pointers_unsupported) << 0;
2826 if (
T->isFunctionType())
2835 if (!
T->isFunctionType()) {
2836 Diag(Loc, diag::err_nonfunction_block_type);
2846 return Context.getBlockPointerType(
T);
2852 if (TInfo) *TInfo =
nullptr;
2857 if (
const LocInfoType *LIT = dyn_cast<LocInfoType>(QT)) {
2858 QT = LIT->getType();
2859 TSI = LIT->getTypeSourceInfo();
2869 unsigned chunkIndex);
2876 Sema &S = state.getSema();
2877 Declarator &declarator = state.getDeclarator();
2883 unsigned outermostPointerIndex = 0;
2885 unsigned numPointers = 0;
2887 unsigned chunkIndex = i;
2889 switch (chunk.
Kind) {
2899 outermostPointerIndex = chunkIndex;
2907 if (numPointers != 1)
return;
2909 outermostPointerIndex = chunkIndex;
2927 if (numPointers == 1) {
2945 }
else if (numPointers == 2) {
2958 if (AL.getKind() == ParsedAttr::AT_ObjCOwnership)
2962 outermostPointerIndex);
2984 }
const QualKinds[5] = {
2998 for (
auto &E : QualKinds) {
2999 if (Quals & E.Mask) {
3000 if (!QualStr.empty()) QualStr +=
' ';
3017 << QualStr <<
NumQuals << FixIts[0] << FixIts[1] << FixIts[2] << FixIts[3];
3023 unsigned FunctionChunkIndex) {
3033 for (
unsigned OuterChunkIndex = FunctionChunkIndex + 1,
3035 OuterChunkIndex != End; ++OuterChunkIndex) {
3037 switch (OuterChunk.
Kind) {
3044 diag::warn_qual_return_type,
3070 llvm_unreachable(
"unknown declarator chunk kind");
3091static std::pair<QualType, TypeSourceInfo *>
3095 Sema &S = state.getSema();
3099 const unsigned AutoParameterPosition = Info.
TemplateParams.size();
3112 AutoParameterPosition,
3114 AutoParameterPosition),
3115 false, IsParameterPack,
3116 Auto->isConstrained());
3121 if (
Auto->isConstrained()) {
3128 for (
unsigned Idx = 0; Idx < AutoLoc.
getNumArgs(); ++Idx) {
3188 QualType NewT = state.ReplaceAutoType(
T, Replacement);
3192 return {NewT, NewTSI};
3201 Sema &SemaRef = state.getSema();
3204 ReturnTypeInfo =
nullptr;
3207 TagDecl *OwnedTagDecl =
nullptr;
3257 DeducedType *
Deduced =
T->getContainedDeducedType();
3258 bool DeducedIsTrailingReturnType =
false;
3262 DeducedIsTrailingReturnType =
true;
3272 bool IsCXXAutoType =
3274 bool IsDeducedReturnType =
false;
3324 assert(Info &&
"No LambdaScopeInfo on the stack!");
3330 if (!DeducedIsTrailingReturnType)
3343 llvm_unreachable(
"unhandled tag kind");
3345 Error = Cxx ? 1 : 2;
3348 Error = Cxx ? 3 : 4;
3393 if (!SemaRef.
getLangOpts().CPlusPlus14 || !IsCXXAutoType)
3395 IsDeducedReturnType =
true;
3398 if (!SemaRef.
getLangOpts().CPlusPlus14 || !IsCXXAutoType)
3400 IsDeducedReturnType =
true;
3405 if (IsCXXAutoType && !
Auto->isDecltypeAuto())
3438 (!SemaRef.
getLangOpts().CPlusPlus11 || !IsCXXAutoType))
3444 switch (
Auto->getKeyword()) {
3451 "unknown auto type");
3455 auto *DTST = dyn_cast<DeducedTemplateSpecializationType>(
Deduced);
3458 SemaRef.
Diag(AutoRange.
getBegin(), diag::err_auto_not_allowed)
3471 unsigned DiagId = 0;
3473 DiagId = diag::warn_cxx11_compat_generic_lambda;
3474 else if (IsDeducedReturnType)
3475 DiagId = diag::warn_cxx11_compat_deduced_return_type;
3477 DiagId = diag::warn_cxx98_compat_auto_type_specifier;
3480 SemaRef.
Diag(AutoRange.
getBegin(), DiagId) << AutoRange;
3488 unsigned DiagID = 0;
3494 llvm_unreachable(
"parser should not have allowed this");
3510 DiagID = diag::err_type_defined_in_alias_template;
3522 DiagID = diag::err_type_defined_in_type_specifier;
3532 DiagID = diag::err_type_defined_in_param_type;
3538 DiagID = diag::err_type_defined_in_condition;
3549 assert(!
T.isNull() &&
"This function should not return a null type");
3558 assert(FTI.
isAmbiguous &&
"no direct-initializer / function ambiguity");
3588 FTI.
NumParams ? diag::warn_parens_disambiguated_as_function_declaration
3589 : diag::warn_empty_parens_are_function_decl)
3600 if (Comma.getFileID() != Name.
getFileID() ||
3608 Result.suppressDiagnostics();
3621 S.
Diag(B, diag::note_additional_parens_for_variable_declaration)
3636 S.
Diag(DeclType.
Loc, diag::note_empty_parens_default_ctor)
3644 S.
Diag(DeclType.
Loc, diag::note_empty_parens_zero_initialize)
3655 "do not have redundant top-level parentheses");
3664 bool CouldBeTemporaryObject =
3668 (
T->isRecordType() ||
T->isDependentType()) &&
3671 bool StartsWithDeclaratorId =
true;
3679 StartsWithDeclaratorId =
false;
3684 CouldBeTemporaryObject =
false;
3692 CouldBeTemporaryObject =
false;
3693 StartsWithDeclaratorId =
false;
3703 CouldBeTemporaryObject =
false;
3710 CouldBeTemporaryObject =
false;
3711 StartsWithDeclaratorId =
false;
3721 if (CouldBeTemporaryObject) {
3725 CouldBeTemporaryObject =
false;
3726 Result.suppressDiagnostics();
3731 if (!CouldBeTemporaryObject) {
3755 S.
Diag(
Paren.Loc, diag::warn_redundant_parens_around_declarator)
3761 S.
Diag(
Paren.Loc, diag::warn_parens_disambiguated_as_variable_declaration)
3763 auto *RD =
T->getAsCXXRecordDecl();
3764 if (!RD || !RD->hasDefinition() || RD->hasNonTrivialDestructor())
3765 S.
Diag(
Paren.Loc, diag::note_raii_guard_add_name)
3770 S.
Diag(D.
getBeginLoc(), diag::note_function_style_cast_add_parentheses)
3773 S.
Diag(
Paren.Loc, diag::note_remove_parens_for_variable_declaration)
3789 switch (AL.getKind()) {
3808 bool IsCXXInstanceMethod =
false;
3814 unsigned I = ChunkIndex;
3815 bool FoundNonParen =
false;
3816 while (I && !FoundNonParen) {
3819 FoundNonParen =
true;
3822 if (FoundNonParen) {
3825 IsCXXInstanceMethod =
3830 IsCXXInstanceMethod =
3838 IsCXXInstanceMethod =
3846 IsCXXInstanceMethod);
3854 if (Triple.isSPIRV() && Triple.getVendor() != llvm::Triple::AMD) {
3856 if (AL.getKind() == ParsedAttr::AT_CUDAGlobal) {
3864 for (
const ParsedAttr &AL : llvm::concat<ParsedAttr>(
3867 if (AL.getKind() == ParsedAttr::AT_DeviceKernel) {
3878 enum class SimplePointerKind {
3887 switch (nullability) {
3889 if (!Ident__Nonnull)
3890 Ident__Nonnull =
PP.getIdentifierInfo(
"_Nonnull");
3891 return Ident__Nonnull;
3894 if (!Ident__Nullable)
3895 Ident__Nullable =
PP.getIdentifierInfo(
"_Nullable");
3896 return Ident__Nullable;
3899 if (!Ident__Nullable_result)
3900 Ident__Nullable_result =
PP.getIdentifierInfo(
"_Nullable_result");
3901 return Ident__Nullable_result;
3904 if (!Ident__Null_unspecified)
3905 Ident__Null_unspecified =
PP.getIdentifierInfo(
"_Null_unspecified");
3906 return Ident__Null_unspecified;
3908 llvm_unreachable(
"Unknown nullability kind.");
3915 if (AL.getKind() == ParsedAttr::AT_TypeNonNull ||
3916 AL.getKind() == ParsedAttr::AT_TypeNullable ||
3917 AL.getKind() == ParsedAttr::AT_TypeNullableResult ||
3918 AL.getKind() == ParsedAttr::AT_TypeNullUnspecified)
3927 enum class PointerDeclaratorKind {
3935 MaybePointerToCFRef,
3939 NSErrorPointerPointer,
3945 enum class PointerWrappingDeclaratorKind {
3959static PointerDeclaratorKind
3961 PointerWrappingDeclaratorKind &wrappingKind) {
3962 unsigned numNormalPointers = 0;
3965 if (
type->isDependentType())
3966 return PointerDeclaratorKind::NonPointer;
3971 switch (chunk.
Kind) {
3973 if (numNormalPointers == 0)
3974 wrappingKind = PointerWrappingDeclaratorKind::Array;
3983 return numNormalPointers > 0 ? PointerDeclaratorKind::MultiLevelPointer
3984 : PointerDeclaratorKind::SingleLevelPointer;
3990 if (numNormalPointers == 0)
3991 wrappingKind = PointerWrappingDeclaratorKind::Reference;
3995 ++numNormalPointers;
3996 if (numNormalPointers > 2)
3997 return PointerDeclaratorKind::MultiLevelPointer;
4003 unsigned numTypeSpecifierPointers = 0;
4007 ++numNormalPointers;
4009 if (numNormalPointers > 2)
4010 return PointerDeclaratorKind::MultiLevelPointer;
4012 type = ptrType->getPointeeType();
4013 ++numTypeSpecifierPointers;
4019 return numNormalPointers > 0 ? PointerDeclaratorKind::MultiLevelPointer
4020 : PointerDeclaratorKind::SingleLevelPointer;
4025 return numNormalPointers > 0 ? PointerDeclaratorKind::MultiLevelPointer
4026 : PointerDeclaratorKind::SingleLevelPointer;
4031 ++numNormalPointers;
4032 ++numTypeSpecifierPointers;
4035 if (
auto objcClassDecl = objcObjectPtr->getInterfaceDecl()) {
4037 numNormalPointers == 2 && numTypeSpecifierPointers < 2) {
4038 return PointerDeclaratorKind::NSErrorPointerPointer;
4047 if (objcClass->getInterface()->getIdentifier() ==
4049 if (numNormalPointers == 2 && numTypeSpecifierPointers < 2)
4050 return PointerDeclaratorKind::NSErrorPointerPointer;
4057 if (numNormalPointers == 0)
4058 return PointerDeclaratorKind::NonPointer;
4062 if (numNormalPointers == 2 && numTypeSpecifierPointers < 2 &&
4064 return PointerDeclaratorKind::CFErrorRefPointer;
4072 switch (numNormalPointers) {
4074 return PointerDeclaratorKind::NonPointer;
4077 return PointerDeclaratorKind::SingleLevelPointer;
4080 return PointerDeclaratorKind::MaybePointerToCFRef;
4083 return PointerDeclaratorKind::MultiLevelPointer;
4092 if (ctx->isFunctionOrMethod())
4095 if (ctx->isFileContext())
4106 bool invalid =
false;
4108 if (invalid || !sloc.
isFile())
4126template <
typename DiagBuilderT>
4135 if (!FixItLoc.
isValid() || FixItLoc == PointerLoc)
4144 InsertionTextBuf +=
" ";
4145 StringRef InsertionText = InsertionTextBuf.str();
4148 InsertionText = InsertionText.drop_back();
4149 }
else if (NextChar[-1] ==
'[') {
4150 if (NextChar[0] ==
']')
4151 InsertionText = InsertionText.drop_back().drop_front();
4153 InsertionText = InsertionText.drop_front();
4156 InsertionText = InsertionText.drop_back().drop_front();
4163 SimplePointerKind PointerKind,
4168 if (PointerKind == SimplePointerKind::Array) {
4169 S.
Diag(PointerLoc, diag::warn_nullability_missing_array);
4171 S.
Diag(PointerLoc, diag::warn_nullability_missing)
4172 <<
static_cast<unsigned>(PointerKind);
4175 auto FixItLoc = PointerEndLoc.
isValid() ? PointerEndLoc : PointerLoc;
4176 if (FixItLoc.isMacroID())
4180 auto Diag = S.
Diag(FixItLoc, diag::note_nullability_fix_it);
4211 if (pointerKind == SimplePointerKind::Array)
4212 diagKind = diag::warn_nullability_missing_array;
4214 diagKind = diag::warn_nullability_missing;
4220 fileNullability.
PointerKind =
static_cast<unsigned>(pointerKind);
4252 auto kind =
static_cast<SimplePointerKind
>(fileNullability.
PointerKind);
4267 unsigned i = endIndex;
4295template<
typename AttrT>
4298 return ::new (Ctx) AttrT(Ctx, AL);
4316 llvm_unreachable(
"unknown NullabilityKind");
4327 if (ASOld != ASNew) {
4328 S.
Diag(AttrLoc, diag::err_attribute_address_multiple_qualifiers);
4333 diag::warn_attribute_address_multiple_identical_qualifiers);
4342 return T->canHaveNullability(
false) &&
4348 T->getCanonicalTypeInternal());
4358 Sema &S = state.getSema();
4368 bool IsTypedefName =
4374 bool IsQualifiedFunction =
T->isFunctionProtoType() &&
4382 if (
auto *DT =
T->getAs<DeducedType>(); DT && !
T->containsErrors()) {
4383 const AutoType *AT =
T->getAs<AutoType>();
4385 if ((AT && AT->isDecltypeAuto()) || IsClassTemplateDeduction) {
4387 unsigned Index = E - I - 1;
4389 unsigned DiagId = IsClassTemplateDeduction
4390 ? diag::err_deduced_class_template_compound_type
4391 : diag::err_decltype_auto_compound_type;
4392 unsigned DiagKind = 0;
4393 switch (DeclChunk.
Kind) {
4397 if (IsClassTemplateDeduction) {
4405 DiagId = diag::err_decltype_auto_function_declarator_not_declaration;
4423 S.
Diag(DeclChunk.
Loc, DiagId) << DiagKind;
4432 bool inferNullabilityCS =
false;
4433 bool inferNullabilityInnerOnly =
false;
4434 bool inferNullabilityInnerOnlyComplete =
false;
4437 bool inAssumeNonNullRegion =
false;
4439 if (assumeNonNullLoc.
isValid()) {
4440 inAssumeNonNullRegion =
true;
4454 } complainAboutMissingNullability = CAMN_No;
4455 unsigned NumPointersRemaining = 0;
4456 auto complainAboutInferringWithinChunk = PointerWrappingDeclaratorKind::None;
4458 if (IsTypedefName) {
4462 complainAboutMissingNullability = CAMN_InnerPointers;
4466 ++NumPointersRemaining;
4471 switch (chunk.
Kind) {
4479 ++NumPointersRemaining;
4487 ++NumPointersRemaining;
4492 bool isFunctionOrMethod =
false;
4493 switch (
auto context = state.getDeclarator().getContext()) {
4499 isFunctionOrMethod =
true;
4503 if (state.getDeclarator().isObjCIvar() && !isFunctionOrMethod) {
4504 complainAboutMissingNullability = CAMN_No;
4509 if (state.getDeclarator().isObjCWeakProperty()) {
4512 complainAboutMissingNullability = CAMN_No;
4513 if (inAssumeNonNullRegion) {
4523 complainAboutMissingNullability = CAMN_Yes;
4526 auto wrappingKind = PointerWrappingDeclaratorKind::None;
4528 case PointerDeclaratorKind::NonPointer:
4529 case PointerDeclaratorKind::MultiLevelPointer:
4533 case PointerDeclaratorKind::SingleLevelPointer:
4535 if (inAssumeNonNullRegion) {
4536 complainAboutInferringWithinChunk = wrappingKind;
4543 case PointerDeclaratorKind::CFErrorRefPointer:
4544 case PointerDeclaratorKind::NSErrorPointerPointer:
4547 if (isFunctionOrMethod && inAssumeNonNullRegion)
4551 case PointerDeclaratorKind::MaybePointerToCFRef:
4552 if (isFunctionOrMethod) {
4556 auto hasCFReturnsAttr =
4558 return AttrList.hasAttribute(ParsedAttr::AT_CFReturnsRetained) ||
4559 AttrList.hasAttribute(ParsedAttr::AT_CFReturnsNotRetained);
4564 hasCFReturnsAttr(InnermostChunk->getAttrs()) ||
4567 inferNullabilityInnerOnly =
true;
4577 complainAboutMissingNullability = CAMN_Yes;
4605 auto isVaList = [&S](
QualType T) ->
bool {
4611 if (typedefTy->getDecl() == vaListTypedef)
4613 if (
auto *name = typedefTy->getDecl()->getIdentifier())
4614 if (name->isStr(
"va_list"))
4616 typedefTy = typedefTy->desugar()->getAs<
TypedefType>();
4617 }
while (typedefTy);
4623 auto inferPointerNullability =
4628 if (NumPointersRemaining > 0)
4629 --NumPointersRemaining;
4636 if (inferNullability && !inferNullabilityInnerOnlyComplete) {
4639 ? ParsedAttr::Form::ContextSensitiveKeyword()
4640 : ParsedAttr::Form::Keyword(
false ,
4646 attrs.addAtEnd(nullabilityAttr);
4648 if (inferNullabilityCS) {
4649 state.getDeclarator().getMutableDeclSpec().getObjCQualifiers()
4653 if (pointerLoc.isValid() &&
4654 complainAboutInferringWithinChunk !=
4655 PointerWrappingDeclaratorKind::None) {
4657 S.
Diag(pointerLoc, diag::warn_nullability_inferred_on_nested_type);
4662 if (inferNullabilityInnerOnly)
4663 inferNullabilityInnerOnlyComplete =
true;
4664 return nullabilityAttr;
4669 switch (complainAboutMissingNullability) {
4673 case CAMN_InnerPointers:
4674 if (NumPointersRemaining == 0)
4690 if (NumPointersRemaining > 0)
4691 --NumPointersRemaining;
4693 SimplePointerKind pointerKind = SimplePointerKind::Pointer;
4694 if (
T->isBlockPointerType())
4695 pointerKind = SimplePointerKind::BlockPointer;
4696 else if (
T->isMemberPointerType())
4697 pointerKind = SimplePointerKind::MemberPointer;
4699 if (
auto *
attr = inferPointerNullability(
4704 T = state.getAttributedType(
4710 if (complainAboutMissingNullability == CAMN_Yes &&
T->isArrayType() &&
4718 bool ExpectNoDerefChunk =
4719 state.getCurrentAttributes().hasAttribute(ParsedAttr::AT_NoDeref);
4729 bool AreDeclaratorChunksValid =
true;
4731 unsigned chunkIndex = e - i - 1;
4732 state.setCurrentChunkIndex(chunkIndex);
4735 switch (DeclType.
Kind) {
4743 if (!LangOpts.Blocks)
4744 S.
Diag(DeclType.
Loc, diag::err_blocks_disable) << LangOpts.OpenCL;
4747 inferPointerNullability(SimplePointerKind::BlockPointer, DeclType.
Loc,
4749 state.getDeclarator().getAttributePool());
4755 if (LangOpts.OpenCL)
4770 inferPointerNullability(SimplePointerKind::Pointer, DeclType.
Loc,
4772 state.getDeclarator().getAttributePool());
4775 T = Context.getObjCObjectPointerType(
T);
4784 if (LangOpts.OpenCL) {
4785 if (
T->isImageType() ||
T->isSamplerT() ||
T->isPipeType() ||
4786 T->isBlockPointerType()) {
4800 diag::err_overflow_behavior_non_integer_type)
4834 if (chunkIndex != 0 && !ArraySize &&
4853 S.
Diag(DeclType.
Loc, diag::err_array_star_outside_prototype);
4864 S.
Diag(DeclType.
Loc, diag::err_array_static_outside_prototype)
4866 :
"type qualifier");
4877 S.
Diag(DeclType.
Loc, diag::err_array_static_not_outermost)
4879 :
"type qualifier");
4889 if (complainAboutMissingNullability == CAMN_Yes &&
4905 IsQualifiedFunction =
4911 return SS.isInvalid() ||
4912 isa_and_present<CXXRecordDecl>(
4937 if (
First &&
First->isExplicitObjectParameter() &&
4951 diag::err_explicit_object_parameter_nonmember)
4952 << 2 << 0 <<
First->getSourceRange();
4955 diag::err_explicit_object_parameter_invalid)
4956 <<
First->getSourceRange();
4962 AreDeclaratorChunksValid =
false;
4975 ? diag::err_auto_missing_trailing_return
4976 : diag::err_deduced_return_type);
4979 AreDeclaratorChunksValid =
false;
4982 diag::warn_cxx11_compat_deduced_return_type);
4991 AreDeclaratorChunksValid =
false;
4994 if (
T != Context.DependentTy) {
4996 diag::err_deduction_guide_with_complex_decl)
5000 AreDeclaratorChunksValid =
false;
5017 S.
Diag(Loc, diag::err_trailing_return_without_auto) <<
T << SR;
5020 AreDeclaratorChunksValid =
false;
5027 }
else if (AutoType *
Auto =
T->getContainedAutoType()) {
5036 if (InventedParamInfo) {
5038 state,
T, TInfo,
Auto, *InventedParamInfo);
5051 T->isFunctionType()) &&
5054 unsigned diagID = diag::err_func_returning_array_function;
5057 if (chunkIndex == 0 &&
5059 diagID = diag::err_block_returning_array_function;
5060 S.
Diag(DeclType.
Loc, diagID) <<
T->isFunctionType() <<
T;
5063 AreDeclaratorChunksValid =
false;
5068 if (
T->isHalfType()) {
5076 }
else if (!S.
getLangOpts().NativeHalfArgsAndReturns &&
5079 diag::err_parameters_retval_cannot_have_fp16_type) << 1;
5085 if (
T.getPointerAuth()) {
5086 S.
Diag(DeclType.
Loc, diag::err_ptrauth_qualifier_invalid) <<
T << 0;
5089 if (LangOpts.OpenCL) {
5092 if (
T->isBlockPointerType() ||
T->isImageType() ||
T->isSamplerT() ||
5103 "__cl_clang_variadic_functions", S.
getLangOpts()) &&
5115 if (
T->isObjCObjectType()) {
5124 S.
Diag(DiagLoc, diag::err_object_cannot_be_passed_returned_by_value)
5128 T = Context.getObjCObjectPointerType(
T);
5136 AreDeclaratorChunksValid =
false;
5144 if ((
T.getCVRQualifiers() ||
T->isAtomicType()) &&
5148 (
T->isRecordType() ||
T->isDependentType() ||
5149 T->isUndeducedAutoType()))) {
5156 S.
Diag(DeclType.
Loc, diag::err_func_returning_qualified_void) <<
T;
5163 if (
T.isVolatileQualified() && S.
getLangOpts().CPlusPlus20)
5164 S.
Diag(DeclType.
Loc, diag::warn_deprecated_volatile_return) <<
T;
5169 if (
T.getQualifiers().hasObjCLifetime()) {
5174 if (AL.getKind() == ParsedAttr::AT_ObjCOwnership) {
5175 AttrLoc = AL.getLoc();
5182 if (AL.getKind() == ParsedAttr::AT_ObjCOwnership) {
5183 AttrLoc = AL.getLoc();
5197 S.
Diag(AttrLoc, diag::warn_arc_lifetime_result_type)
5198 <<
T.getQualifiers().getObjCLifetime();
5206 S.
Diag(Tag->getLocation(), diag::err_type_defined_in_result_type)
5207 << Context.getCanonicalTagType(Tag);
5214 diag::err_exception_spec_in_typedef)
5232 T = Context.getFunctionNoProtoType(
T, EI);
5240 diag::warn_c17_compat_ellipsis_only_parameter);
5242 ParsedAttr::AT_Overloadable) &&
5244 ParsedAttr::AT_Overloadable) &&
5246 ParsedAttr::AT_Overloadable))
5254 diag::err_ident_list_in_fn_declaration);
5258 ? Context.getFunctionNoProtoType(
T, EI)
5260 AreDeclaratorChunksValid =
false;
5283 bool HasAnyInterestingExtParameterInfos =
false;
5285 for (
unsigned i = 0, e = FTI.
NumParams; i != e; ++i) {
5287 QualType ParamTy = Param->getType();
5288 assert(!ParamTy.
isNull() &&
"Couldn't parse type?");
5299 ParamTy = Context.IntTy;
5300 Param->setType(ParamTy);
5304 ParamTy = Context.IntTy;
5305 Param->setType(ParamTy);
5309 S.
Diag(DeclType.
Loc, diag::err_void_param_qualified);
5311 for (
const auto *A : Param->attrs()) {
5312 S.
Diag(A->getLoc(), diag::warn_attribute_on_void_param)
5313 << A << A->getRange();
5318 if (Param->isExplicitObjectParameter()) {
5319 S.
Diag(Param->getLocation(),
5320 diag::err_void_explicit_object_param);
5333 S.
Diag(Param->getLocation(), diag::err_opencl_invalid_param)
5336 Param->setInvalidDecl();
5338 }
else if (!S.
getLangOpts().NativeHalfArgsAndReturns &&
5340 S.
Diag(Param->getLocation(),
5341 diag::err_parameters_retval_cannot_have_fp16_type) << 0;
5345 if (Context.isPromotableIntegerType(ParamTy)) {
5346 ParamTy = Context.getPromotedIntegerType(ParamTy);
5347 Param->setKNRPromoted(
true);
5349 if (BTy->getKind() == BuiltinType::Float) {
5350 ParamTy = Context.DoubleTy;
5351 Param->setKNRPromoted(
true);
5356 S.
Diag(Param->getLocation(), diag::err_opencl_invalid_param)
5361 if (LangOpts.ObjCAutoRefCount && Param->hasAttr<NSConsumedAttr>()) {
5362 ExtParameterInfos[i] = ExtParameterInfos[i].withIsConsumed(
true);
5363 HasAnyInterestingExtParameterInfos =
true;
5367 ExtParameterInfos[i] =
5368 ExtParameterInfos[i].withABI(
attr->getABI());
5369 HasAnyInterestingExtParameterInfos =
true;
5372 if (Param->hasAttr<PassObjectSizeAttr>()) {
5373 ExtParameterInfos[i] = ExtParameterInfos[i].withHasPassObjectSize();
5374 HasAnyInterestingExtParameterInfos =
true;
5377 if (Param->hasAttr<NoEscapeAttr>()) {
5378 ExtParameterInfos[i] = ExtParameterInfos[i].withIsNoEscape(
true);
5379 HasAnyInterestingExtParameterInfos =
true;
5382 ParamTys.push_back(ParamTy);
5385 if (HasAnyInterestingExtParameterInfos) {
5394 Expr *NoexceptExpr =
nullptr;
5400 DynamicExceptions.reserve(N);
5401 DynamicExceptionRanges.reserve(N);
5402 for (
unsigned I = 0; I != N; ++I) {
5413 DynamicExceptionRanges,
5420 auto IsClassMember = [&]() {
5421 return (!state.getDeclarator().getCXXScopeSpec().isEmpty() &&
5422 state.getDeclarator()
5426 state.getDeclarator().getContext() ==
5428 state.getDeclarator().getContext() ==
5432 if (state.getSema().getLangOpts().OpenCLCPlusPlus && IsClassMember()) {
5452 T = Context.getFunctionType(
T, ParamTys, EPI);
5461 inferPointerNullability(SimplePointerKind::MemberPointer, DeclType.
Loc,
5463 state.getDeclarator().getAttributePool());
5468 AreDeclaratorChunksValid =
false;
5477 AreDeclaratorChunksValid =
false;
5495 AreDeclaratorChunksValid =
false;
5504 S.
Diag(DeclType.
Loc, diag::warn_noderef_on_non_pointer_or_array);
5506 ExpectNoDerefChunk = state.didParseNoDeref();
5510 if (ExpectNoDerefChunk)
5511 S.
Diag(state.getDeclarator().getBeginLoc(),
5512 diag::warn_noderef_on_non_pointer_or_array);
5525 bool IsBlock =
false;
5527 switch (DeclType.Kind) {
5539 S.
Diag(DeclType.Loc, diag::warn_strict_prototypes)
5551 assert(!
T.isNull() &&
"T must not be null after this point");
5553 if (LangOpts.CPlusPlus &&
T->isFunctionType()) {
5555 assert(FnTy &&
"Why oh why is there not a FunctionProtoType here?");
5568 ExplicitObjectMember,
5572 Kind = DeductionGuide;
5589 auto *P = dyn_cast_or_null<ParmVarDecl>(Chunk.
Fun.
Params->
Param);
5590 if (P && P->isExplicitObjectParameter())
5591 Kind = ExplicitObjectMember;
5617 if (IsQualifiedFunction &&
5643 if (!RemovalLocs.empty()) {
5644 llvm::sort(RemovalLocs,
5646 RemovalRange =
SourceRange(RemovalLocs.front(), RemovalLocs.back());
5647 Loc = RemovalLocs.front();
5651 S.
Diag(Loc, diag::err_invalid_qualified_function_type)
5675 if (!AL.slidesFromDeclToDeclSpecLegacyBehavior()) {
5683 state.diagnoseIgnoredTypeAttrs(
T);
5694 if (
T.isVolatileQualified() && S.
getLangOpts().CPlusPlus20 &&
5719 if (!
T->containsUnexpandedParameterPack() &&
5720 (!LangOpts.CPlusPlus20 || !
T->getContainedAutoType())) {
5722 diag::err_function_parameter_pack_without_parameter_packs)
5726 T = Context.getPackExpansionType(
T, std::nullopt,
5739 if (
T->containsUnexpandedParameterPack())
5740 T = Context.getPackExpansionType(
T, std::nullopt);
5772 diag::err_ellipsis_in_declarator_not_parameter);
5778 assert(!
T.isNull() &&
"T must not be null at the end of this function");
5779 if (!AreDeclaratorChunksValid)
5780 return Context.getTrivialTypeSourceInfo(
T);
5782 if (state.didParseHLSLParamMod() && !
T->isConstantArrayType())
5791 TypeProcessingState state(*
this, D);
5814 unsigned chunkIndex) {
5815 Sema &S = state.getSema();
5823 const char *attrStr =
nullptr;
5824 switch (ownership) {
5842 &Args, 1, ParsedAttr::Form::GNU());
5851 Sema &S = state.getSema();
5855 bool hasIndirection =
false;
5858 switch (chunk.
Kind) {
5867 hasIndirection =
true;
5900 TypeProcessingState state(*
this, D);
5915 TypeProcessingState &State) {
5920 TypeProcessingState &State) {
5922 State.getSema().HLSL().TakeLocForHLSLAttribute(TL.
getTypePtr());
5930 if (AL.getKind() == ParsedAttr::AT_MatrixType) {
5939 llvm_unreachable(
"no matrix_type attribute found at the expected location!");
5944 switch (Chunk.
Kind) {
5949 llvm_unreachable(
"cannot be _Atomic qualified");
5967 class TypeSpecLocFiller :
public TypeLocVisitor<TypeSpecLocFiller> {
5969 ASTContext &Context;
5970 TypeProcessingState &State;
5974 TypeSpecLocFiller(Sema &S, ASTContext &Context, TypeProcessingState &State,
5976 : SemaRef(S), Context(Context), State(State), DS(DS) {}
5978 void VisitAttributedTypeLoc(AttributedTypeLoc TL) {
5982 void VisitBTFTagAttributedTypeLoc(BTFTagAttributedTypeLoc TL) {
5985 void VisitOverflowBehaviorTypeLoc(OverflowBehaviorTypeLoc TL) {
5988 void VisitHLSLAttributedResourceTypeLoc(HLSLAttributedResourceTypeLoc TL) {
5992 void VisitHLSLInlineSpirvTypeLoc(HLSLInlineSpirvTypeLoc TL) {}
5993 void VisitMacroQualifiedTypeLoc(MacroQualifiedTypeLoc TL) {
5996 State.getExpansionLocForMacroQualifiedType(TL.
getTypePtr()));
5998 void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
6003 void VisitPointerTypeLoc(PointerTypeLoc TL) { Visit(TL.
getNextTypeLoc()); }
6004 void VisitTypedefTypeLoc(TypedefTypeLoc TL) {
6006 TypeSourceInfo *TInfo =
nullptr;
6019 void VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
6021 TypeSourceInfo *TInfo =
nullptr;
6034 void VisitUsingTypeLoc(UsingTypeLoc TL) {
6036 TypeSourceInfo *TInfo =
nullptr;
6049 void VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
6056 void VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
6057 TypeSourceInfo *RepTInfo =
nullptr;
6061 void VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
6062 TypeSourceInfo *RepTInfo =
nullptr;
6066 void VisitTemplateSpecializationTypeLoc(TemplateSpecializationTypeLoc TL) {
6067 TypeSourceInfo *TInfo =
nullptr;
6078 TL.
copy(OldTL.
castAs<TemplateSpecializationTypeLoc>());
6080 OldTL.
castAs<TemplateSpecializationTypeLoc>().getRAngleLoc());
6082 void VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
6088 void VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
6094 TypeSourceInfo *TInfo =
nullptr;
6098 void VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
6103 void VisitPackIndexingTypeLoc(PackIndexingTypeLoc TL) {
6107 void VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) {
6112 TypeSourceInfo *TInfo =
nullptr;
6116 void VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
6129 void VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
6131 TypeSourceInfo *TInfo =
nullptr;
6136 void VisitAutoTypeLoc(AutoTypeLoc TL) {
6150 NestedNameSpecifierLoc NNS =
6153 : NestedNameSpecifierLoc());
6154 TemplateArgumentListInfo TemplateArgsInfo(TemplateId->
LAngleLoc,
6156 if (TemplateId->
NumArgs > 0) {
6165 NamedDecl *FoundDecl;
6170 FoundDecl = cast_if_present<NamedDecl>(TN.getAsTemplateDecl());
6178 void VisitDeducedTemplateSpecializationTypeLoc(
6179 DeducedTemplateSpecializationTypeLoc TL) {
6181 TypeSourceInfo *TInfo =
nullptr;
6187 void VisitTagTypeLoc(TagTypeLoc TL) {
6189 TypeSourceInfo *TInfo =
nullptr;
6197 ElaboratedTypeKeyword::None
6199 : SourceLocation());
6203 void VisitAtomicTypeLoc(AtomicTypeLoc TL) {
6210 TypeSourceInfo *TInfo =
nullptr;
6222 void VisitPipeTypeLoc(PipeTypeLoc TL) {
6225 TypeSourceInfo *TInfo =
nullptr;
6230 void VisitExtIntTypeLoc(BitIntTypeLoc TL) {
6234 void VisitDependentExtIntTypeLoc(DependentBitIntTypeLoc TL) {
6238 void VisitTypeLoc(TypeLoc TL) {
6244 class DeclaratorLocFiller :
public TypeLocVisitor<DeclaratorLocFiller> {
6245 ASTContext &Context;
6246 TypeProcessingState &State;
6247 const DeclaratorChunk &Chunk;
6250 DeclaratorLocFiller(ASTContext &Context, TypeProcessingState &State,
6251 const DeclaratorChunk &Chunk)
6252 : Context(Context), State(State), Chunk(Chunk) {}
6254 void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
6255 llvm_unreachable(
"qualified type locs not expected here!");
6257 void VisitDecayedTypeLoc(DecayedTypeLoc TL) {
6258 llvm_unreachable(
"decayed type locs not expected here!");
6260 void VisitArrayParameterTypeLoc(ArrayParameterTypeLoc TL) {
6261 llvm_unreachable(
"array parameter type locs not expected here!");
6264 void VisitAttributedTypeLoc(AttributedTypeLoc TL) {
6267 void VisitCountAttributedTypeLoc(CountAttributedTypeLoc TL) {
6270 void VisitBTFTagAttributedTypeLoc(BTFTagAttributedTypeLoc TL) {
6273 void VisitOverflowBehaviorTypeLoc(OverflowBehaviorTypeLoc TL) {
6276 void VisitAdjustedTypeLoc(AdjustedTypeLoc TL) {
6279 void VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
6283 void VisitPointerTypeLoc(PointerTypeLoc TL) {
6287 void VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
6291 void VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
6296 void VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
6302 void VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
6307 void VisitArrayTypeLoc(ArrayTypeLoc TL) {
6313 void VisitFunctionTypeLoc(FunctionTypeLoc TL) {
6318 const DeclaratorChunk::FunctionTypeInfo &FTI = Chunk.
Fun;
6321 for (
unsigned i = 0, e = TL.
getNumParams(), tpi = 0; i != e; ++i) {
6327 void VisitParenTypeLoc(ParenTypeLoc TL) {
6332 void VisitPipeTypeLoc(PipeTypeLoc TL) {
6336 void VisitBitIntTypeLoc(BitIntTypeLoc TL) {
6339 void VisitMacroQualifiedTypeLoc(MacroQualifiedTypeLoc TL) {
6342 void VisitVectorTypeLoc(VectorTypeLoc TL) { TL.
setNameLoc(Chunk.
Loc); }
6343 void VisitDependentVectorTypeLoc(DependentVectorTypeLoc TL) {
6346 void VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
6349 void VisitAtomicTypeLoc(AtomicTypeLoc TL) {
6353 VisitDependentSizedExtVectorTypeLoc(DependentSizedExtVectorTypeLoc TL) {
6356 void VisitMatrixTypeLoc(MatrixTypeLoc TL) {
6360 void VisitTypeLoc(TypeLoc TL) {
6361 llvm_unreachable(
"unsupported TypeLoc kind in declarator!");
6372 if (AL.getKind() != ParsedAttr::AT_AddressSpace || AL.isInvalid() ||
6373 AL.getNumArgs() != 1 || !AL.isArgExpr(0))
6383 "no address_space attribute found at the expected location!");
6397 Sema &S = State.getSema();
6423 bool HasDesugaredTypeLoc =
true;
6424 while (HasDesugaredTypeLoc) {
6426 case TypeLoc::MacroQualified: {
6429 State.getExpansionLocForMacroQualifiedType(TL.
getTypePtr()));
6434 case TypeLoc::Attributed: {
6441 case TypeLoc::Adjusted:
6442 case TypeLoc::BTFTagAttributed: {
6447 case TypeLoc::DependentAddressSpace: {
6461 HasDesugaredTypeLoc =
false;
6472 if (ReturnTypeInfo) {
6492 "LocInfoType's TypeClass conflicts with an existing Type class");
6498 llvm_unreachable(
"LocInfoType leaked into the type system; an opaque TypeTy*"
6499 " was used directly instead of getting the QualType through"
6500 " GetTypeFromParser");
6507 "Type name should have no identifier!");
6544 const Expr *AddrSpace,
6547 std::optional<llvm::APSInt> OptAddrSpace =
6549 if (!OptAddrSpace) {
6550 S.
Diag(AttrLoc, diag::err_attribute_argument_type)
6555 llvm::APSInt &addrSpace = *OptAddrSpace;
6558 if (addrSpace.isSigned()) {
6559 if (addrSpace.isNegative()) {
6560 S.
Diag(AttrLoc, diag::err_attribute_address_space_negative)
6564 addrSpace.setIsSigned(
false);
6567 llvm::APSInt
max(addrSpace.getBitWidth());
6571 if (addrSpace >
max) {
6572 S.
Diag(AttrLoc, diag::err_attribute_address_space_too_high)
6594 return Context.getAddrSpaceQualType(
T, ASIdx);
6603 Diag(AttrLoc, diag::err_attribute_address_multiple_qualifiers);
6607 return Context.getDependentAddressSpaceType(
T, AddrSpace, AttrLoc);
6619 TypeProcessingState &State) {
6620 Sema &S = State.getSema();
6626 if (!
Attr.diagnoseLangOpts(S)) {
6632 if (
Attr.getNumArgs() != 1) {
6633 S.
Diag(
Attr.
getLoc(), diag::err_attribute_wrong_number_arguments)
6640 auto *StrLiteral = dyn_cast<StringLiteral>(
Attr.getArgAsExpr(0));
6649 StringRef BTFTypeTag = StrLiteral->getString();
6650 Type = State.getBTFTagAttributedType(
6651 ::new (Ctx) BTFTypeTagAttr(Ctx,
Attr, BTFTypeTag),
Type);
6659 TypeProcessingState &State) {
6660 Sema &S = State.getSema();
6665 S.
Diag(
Attr.
getLoc(), diag::err_attribute_address_function_type);
6671 if (
Attr.
getKind() == ParsedAttr::AT_AddressSpace) {
6674 if (
Attr.getNumArgs() != 1) {
6681 Expr *ASArgExpr =
Attr.getArgAsExpr(0);
6690 ::new (Ctx) AddressSpaceAttr(Ctx,
Attr,
static_cast<unsigned>(ASIdx));
6702 if (EquivType.
isNull()) {
6706 T = State.getAttributedType(ASAttr,
Type, EquivType);
6708 T = State.getAttributedType(ASAttr,
Type,
Type);
6723 ASIdx =
Attr.asHLSLLangAS();
6726 llvm_unreachable(
"Invalid address space");
6739 TypeProcessingState &State) {
6740 Sema &S = State.getSema();
6744 S.
Diag(
Attr.
getLoc(), diag::warn_overflow_behavior_attribute_disabled)
6751 if (
Attr.getNumArgs() != 1) {
6752 S.
Diag(
Attr.
getLoc(), diag::err_attribute_wrong_number_arguments)
6761 <<
Attr <<
Type.getAsString() << 0;
6768 S.
Diag(
Attr.
getLoc(), diag::err_overflow_behavior_non_integer_type)
6769 <<
Attr <<
Type.getAsString() << 0;
6774 StringRef KindName =
"";
6777 if (
Attr.isArgIdent(0)) {
6778 Ident =
Attr.getArgAsIdent(0)->getIdentifierInfo();
6787 auto *Str = dyn_cast<StringLiteral>(
Attr.getArgAsExpr(0));
6789 KindName = Str->getString();
6798 OverflowBehaviorType::OverflowBehaviorKind Kind;
6799 if (KindName ==
"wrap") {
6800 Kind = OverflowBehaviorType::OverflowBehaviorKind::Wrap;
6801 }
else if (KindName ==
"trap") {
6802 Kind = OverflowBehaviorType::OverflowBehaviorKind::Trap;
6805 << KindName <<
Attr;
6811 const DeclSpec &DS = State.getDeclarator().getDeclSpec();
6815 OverflowBehaviorType::OverflowBehaviorKind SpecifierKind =
6816 DS.
isWrapSpecified() ? OverflowBehaviorType::OverflowBehaviorKind::Wrap
6817 : OverflowBehaviorType::OverflowBehaviorKind::Trap;
6819 if (SpecifierKind != Kind) {
6822 << 1 << SpecifierName << KindName;
6826 S.
Diag(
Attr.
getLoc(), diag::warn_redundant_overflow_behaviors_mixed)
6833 if (
const auto *ExistingOBT =
Type->
getAs<OverflowBehaviorType>()) {
6834 OverflowBehaviorType::OverflowBehaviorKind ExistingKind =
6835 ExistingOBT->getBehaviorKind();
6836 if (ExistingKind != Kind) {
6837 S.
Diag(
Attr.
getLoc(), diag::err_conflicting_overflow_behaviors) << 0;
6838 if (Kind == OverflowBehaviorType::OverflowBehaviorKind::Trap) {
6839 Type = State.getOverflowBehaviorType(Kind,
6840 ExistingOBT->getUnderlyingType());
6845 Type = State.getOverflowBehaviorType(Kind,
Type);
6855 bool NonObjCPointer =
false;
6857 if (!
type->isDependentType() && !
type->isUndeducedType()) {
6865 NonObjCPointer =
true;
6866 }
else if (!
type->isObjCRetainableType()) {
6872 if (state.isProcessingDeclSpec()) {
6880 Sema &S = state.getSema();
6886 if (!
attr.isArgIdent(0)) {
6887 S.
Diag(AttrLoc, diag::err_attribute_argument_type) <<
attr
6895 if (II->
isStr(
"none"))
6897 else if (II->
isStr(
"strong"))
6899 else if (II->
isStr(
"weak"))
6901 else if (II->
isStr(
"autoreleasing"))
6904 S.
Diag(AttrLoc, diag::warn_attribute_type_not_supported) <<
attr << II;
6921 =
type.getQualifiers().getObjCLifetime()) {
6924 S.
Diag(AttrLoc, diag::err_attr_objc_ownership_redundant)
6931 if (previousLifetime != lifetime) {
6934 const Type *prevTy =
nullptr;
6935 while (!prevTy || prevTy != underlyingType.
Ty) {
6936 prevTy = underlyingType.
Ty;
6945 if (NonObjCPointer) {
6946 StringRef name =
attr.getAttrName()->getName();
6955 S.
Diag(AttrLoc, diag::warn_type_attribute_wrong_type) << name
6972 type = state.getAttributedType(
6979 if (!NonObjCPointer)
6996 diagnostic,
type, 0));
6998 S.
Diag(loc, diagnostic);
7007 unsigned diagnostic =
7008 (S.
getLangOpts().ObjCWeakRuntime ? diag::err_arc_weak_disabled
7009 : diag::err_arc_weak_no_runtime);
7012 diagnoseOrDelay(S, AttrLoc, diagnostic,
type);
7024 if (Class->isArcWeakrefUnavailable()) {
7025 S.
Diag(AttrLoc, diag::err_arc_unsupported_weak_class);
7026 S.
Diag(ObjT->getInterfaceDecl()->getLocation(),
7027 diag::note_class_declared);
7042 Sema &S = state.getSema();
7045 if (!
type->isPointerType() &&
7046 !
type->isObjCObjectPointerType() &&
7047 !
type->isBlockPointerType())
7051 S.
Diag(
attr.getLoc(), diag::err_attribute_multiple_objc_gc);
7057 if (!
attr.isArgIdent(0)) {
7058 S.
Diag(
attr.getLoc(), diag::err_attribute_argument_type)
7064 if (
attr.getNumArgs() > 1) {
7065 S.
Diag(
attr.getLoc(), diag::err_attribute_wrong_number_arguments) <<
attr
7072 if (II->
isStr(
"weak"))
7074 else if (II->
isStr(
"strong"))
7077 S.
Diag(
attr.getLoc(), diag::warn_attribute_type_not_supported)
7087 if (
attr.getLoc().isValid())
7088 type = state.getAttributedType(
7105 struct FunctionTypeUnwrapper {
7119 const FunctionType *
Fn;
7120 SmallVector<
unsigned char , 8> Stack;
7122 FunctionTypeUnwrapper(Sema &S, QualType
T) : Original(
T) {
7124 const Type *Ty =
T.getTypePtr();
7134 Stack.push_back(
Array);
7140 Stack.push_back(BlockPointer);
7143 Stack.push_back(MemberPointer);
7149 Stack.push_back(Attributed);
7152 Stack.push_back(MacroQualified);
7160 T = QualType(DTy, 0);
7161 Stack.push_back(Desugar);
7166 bool isFunctionType()
const {
return (Fn !=
nullptr); }
7167 const FunctionType *get()
const {
return Fn; }
7169 QualType wrap(Sema &S,
const FunctionType *
New) {
7171 if (
New == get())
return Original;
7174 return wrap(S.
Context, Original, 0);
7178 QualType wrap(ASTContext &
C, QualType Old,
unsigned I) {
7179 if (I == Stack.size())
7184 SplitQualType SplitOld = Old.
split();
7188 return wrap(
C, SplitOld.
Ty, I);
7189 return C.getQualifiedType(wrap(
C, SplitOld.
Ty, I), SplitOld.
Quals);
7192 QualType wrap(ASTContext &
C,
const Type *Old,
unsigned I) {
7193 if (I == Stack.size())
return QualType(Fn, 0);
7195 switch (
static_cast<WrapKind
>(Stack[I++])) {
7206 return C.getParenType(
New);
7209 case MacroQualified:
7213 if (
const auto *CAT = dyn_cast<ConstantArrayType>(Old)) {
7214 QualType
New = wrap(
C, CAT->getElementType(), I);
7215 return C.getConstantArrayType(
New, CAT->getSize(), CAT->getSizeExpr(),
7216 CAT->getSizeModifier(),
7217 CAT->getIndexTypeCVRQualifiers());
7220 if (
const auto *VAT = dyn_cast<VariableArrayType>(Old)) {
7221 QualType
New = wrap(
C, VAT->getElementType(), I);
7222 return C.getVariableArrayType(
New, VAT->getSizeExpr(),
7223 VAT->getSizeModifier(),
7224 VAT->getIndexTypeCVRQualifiers());
7228 QualType
New = wrap(
C, IAT->getElementType(), I);
7229 return C.getIncompleteArrayType(
New, IAT->getSizeModifier(),
7230 IAT->getIndexTypeCVRQualifiers());
7235 return C.getPointerType(
New);
7238 case BlockPointer: {
7240 return C.getBlockPointerType(
New);
7243 case MemberPointer: {
7256 return C.getRValueReferenceType(
New);
7260 llvm_unreachable(
"unknown wrapping kind");
7267 Sema &S = State.getSema();
7271 default: llvm_unreachable(
"Unknown attribute kind");
7272 case ParsedAttr::AT_Ptr32:
7275 case ParsedAttr::AT_Ptr64:
7278 case ParsedAttr::AT_SPtr:
7281 case ParsedAttr::AT_UPtr:
7286 std::bitset<attr::LastAttr> Attrs;
7289 if (
const TypedefType *TT = dyn_cast<TypedefType>(Desugared)) {
7290 Desugared = TT->desugar();
7293 const AttributedType *AT = dyn_cast<AttributedType>(Desugared);
7296 Attrs[AT->getAttrKind()] =
true;
7297 Desugared = AT->getModifiedType();
7303 if (Attrs[NewAttrKind]) {
7304 S.
Diag(PAttr.
getLoc(), diag::warn_duplicate_attribute_exact) << PAttr;
7307 Attrs[NewAttrKind] =
true;
7311 if (Attrs[attr::Ptr32] && Attrs[attr::Ptr64]) {
7312 S.
Diag(PAttr.
getLoc(), diag::err_attributes_are_not_compatible)
7314 <<
"'__ptr64'" << 0;
7316 }
else if (Attrs[attr::SPtr] && Attrs[attr::UPtr]) {
7317 S.
Diag(PAttr.
getLoc(), diag::err_attributes_are_not_compatible)
7329 S.
Diag(PAttr.
getLoc(), diag::err_attribute_no_member_pointers) << PAttr;
7331 S.
Diag(PAttr.
getLoc(), diag::err_attribute_pointers_only) << PAttr << 0;
7339 if (PtrWidth == 32) {
7340 if (Attrs[attr::Ptr64])
7342 else if (Attrs[attr::UPtr])
7344 }
else if (PtrWidth == 64 && Attrs[attr::Ptr32]) {
7364 assert(PAttr.
getKind() == ParsedAttr::AT_WebAssemblyFuncref);
7366 Sema &S = State.getSema();
7369 std::bitset<attr::LastAttr> Attrs;
7371 const auto *AT = dyn_cast<AttributedType>(QT);
7373 Attrs[AT->getAttrKind()] =
true;
7374 AT = dyn_cast<AttributedType>(AT->getModifiedType());
7379 if (Attrs[NewAttrKind]) {
7380 S.
Diag(PAttr.
getLoc(), diag::warn_duplicate_attribute_exact) << PAttr;
7386 const auto *Ptr = dyn_cast<PointerType>(Desugared);
7387 if (!Ptr || !Ptr->getPointeeType()->isFunctionType()) {
7388 S.
Diag(PAttr.
getLoc(), diag::err_attribute_webassembly_funcref);
7400 QT = State.getAttributedType(A, QT,
Equivalent);
7409 Sema &S = State.getSema();
7410 auto &D = State.getDeclarator();
7416 if (State.isProcessingDeclSpec()) {
7417 if (!(D.isPrototypeContext() ||
7421 if (
auto *chunk = D.getInnermostNonParenChunk()) {
7444 auto chunkIdx = State.getCurrentChunkIndex();
7445 if (chunkIdx >= 1 &&
7448 D.getTypeObject(chunkIdx - 1).getAttrs());
7453 auto *A = ::new (S.
Context) SwiftAttrAttr(S.
Context, PAttr, Str);
7454 QT = State.getAttributedType(A, QT, QT);
7461 auto Attributed = dyn_cast<AttributedType>(
Type.getTypePtr());
7466 if (Attributed->getImmediateNullability())
7467 return Attributed->getModifiedType();
7471 Ctx, Attributed->getModifiedType());
7472 assert(Modified.
getTypePtr() != Attributed->getModifiedType().getTypePtr());
7474 Attributed->getEquivalentType(),
7475 Attributed->getAttr());
7481 case ParsedAttr::AT_TypeNonNull:
7484 case ParsedAttr::AT_TypeNullable:
7487 case ParsedAttr::AT_TypeNullableResult:
7490 case ParsedAttr::AT_TypeNullUnspecified:
7494 llvm_unreachable(
"not a nullability attribute kind");
7501 bool IsContextSensitive,
bool AllowOnArrayType,
bool OverrideExisting) {
7502 bool Implicit = (State ==
nullptr);
7508 while (
auto *Attributed = dyn_cast<AttributedType>(Desugared.
getTypePtr())) {
7510 if (
auto ExistingNullability = Attributed->getImmediateNullability()) {
7512 if (Nullability == *ExistingNullability) {
7516 S.
Diag(NullabilityLoc, diag::warn_nullability_duplicate)
7523 if (!OverrideExisting) {
7525 S.
Diag(NullabilityLoc, diag::err_nullability_conflicting)
7535 Desugared = Attributed->getModifiedType();
7543 if (Nullability != *ExistingNullability && !
Implicit) {
7544 S.
Diag(NullabilityLoc, diag::err_nullability_conflicting)
7552 if (
auto typedefNullability =
7553 AttributedType::stripOuterNullability(underlyingType)) {
7554 if (*typedefNullability == *ExistingNullability) {
7567 !(AllowOnArrayType && Desugared->
isArrayType())) {
7569 S.
Diag(NullabilityLoc, diag::err_nullability_nonpointer)
7577 if (IsContextSensitive) {
7588 S.
Diag(NullabilityLoc, diag::err_nullability_cs_multilevel)
7590 S.
Diag(NullabilityLoc, diag::note_nullability_type_specifier)
7602 QT = State->getAttributedType(A, QT, QT);
7611 bool AllowOnArrayType) {
7617 Nullability, NullabilityLoc,
7618 IsContextSensitive, AllowOnArrayType,
7625 bool AllowArrayTypes,
7626 bool OverrideExisting) {
7628 *
this,
nullptr,
nullptr,
Type, Nullability, DiagLoc,
7629 false, AllowArrayTypes, OverrideExisting);
7637 llvm::APInt MaxSizeForAddrSpace =
7638 llvm::APInt::getMaxValue(
Context.getTargetInfo().getPointerWidth(AS));
7639 std::optional<CharUnits> TSizeInChars =
Context.getTypeSizeInCharsIfKnown(
T);
7640 if (TSizeInChars &&
static_cast<uint64_t
>(TSizeInChars->getQuantity()) >
7641 MaxSizeForAddrSpace.getZExtValue()) {
7643 <<
T << MaxSizeForAddrSpace;
7654 Sema &S = state.getSema();
7658 type = state.getAttributedType(
7671 S.
Diag(
attr.getLoc(), diag::err_objc_kindof_nonobject)
7680 objType->getBaseType(), objType->getTypeArgsAsWritten(),
7681 objType->getProtocols(),
7682 objType->isObjCUnqualifiedId() ?
false :
true);
7687 if (
auto nullability =
type->getNullability()) {
7690 assert(
attr.getAttributeSpellingListIndex() == 0 &&
7691 "multiple spellings for __kindof?");
7694 equivType = state.getAttributedType(A, equivType, equivType);
7699 type = state.getAttributedType(
7712 Declarator &declarator = state.getDeclarator();
7715 auto moveToChunk = [&](
DeclaratorChunk &chunk,
bool inFunction) ->
bool {
7728 PK_MemberFunctionPointer,
7733 : inFunction? PK_MemberFunctionPointer : PK_MemberPointer;
7735 auto diag = state.getSema().Diag(
attr.getLoc(),
7736 diag::warn_nullability_declspec)
7738 attr.isContextSensitiveKeywordAttribute())
7740 <<
static_cast<unsigned>(pointerKind);
7746 state.getSema().getPreprocessor().getLocForEndOfToken(
7748 " " +
attr.getAttrName()->getName().str() +
" ");
7758 for (
unsigned i = state.getCurrentChunkIndex(); i != 0; --i) {
7760 switch (chunk.
Kind) {
7764 return moveToChunk(chunk,
false);
7776 return moveToChunk(*dest,
true);
7792 assert(!
Attr.isInvalid());
7795 llvm_unreachable(
"not a calling convention attribute");
7796 case ParsedAttr::AT_CDecl:
7798 case ParsedAttr::AT_FastCall:
7800 case ParsedAttr::AT_StdCall:
7802 case ParsedAttr::AT_ThisCall:
7804 case ParsedAttr::AT_RegCall:
7806 case ParsedAttr::AT_Pascal:
7808 case ParsedAttr::AT_SwiftCall:
7810 case ParsedAttr::AT_SwiftAsyncCall:
7812 case ParsedAttr::AT_VectorCall:
7814 case ParsedAttr::AT_AArch64VectorPcs:
7816 case ParsedAttr::AT_AArch64SVEPcs:
7818 case ParsedAttr::AT_ArmStreaming:
7820 case ParsedAttr::AT_Pcs: {
7825 if (
Attr.isArgExpr(0))
7828 Str =
Attr.getArgAsIdent(0)->getIdentifierInfo()->getName();
7829 PcsAttr::PCSType
Type;
7830 if (!PcsAttr::ConvertStrToPCSType(Str,
Type))
7831 llvm_unreachable(
"already validated the attribute");
7832 return ::new (Ctx) PcsAttr(Ctx,
Attr,
Type);
7834 case ParsedAttr::AT_IntelOclBicc:
7836 case ParsedAttr::AT_MSABI:
7838 case ParsedAttr::AT_SysVABI:
7840 case ParsedAttr::AT_PreserveMost:
7842 case ParsedAttr::AT_PreserveAll:
7844 case ParsedAttr::AT_M68kRTD:
7846 case ParsedAttr::AT_PreserveNone:
7848 case ParsedAttr::AT_RISCVVectorCC:
7850 case ParsedAttr::AT_RISCVVLSCC: {
7853 unsigned ABIVLen = 128;
7854 if (
Attr.getNumArgs()) {
7855 std::optional<llvm::APSInt> MaybeABIVLen =
7856 Attr.getArgAsExpr(0)->getIntegerConstantExpr(Ctx);
7858 llvm_unreachable(
"Invalid RISC-V ABI VLEN");
7859 ABIVLen = MaybeABIVLen->getZExtValue();
7862 return ::new (Ctx) RISCVVLSCCAttr(Ctx,
Attr, ABIVLen);
7865 llvm_unreachable(
"unexpected attribute kind!");
7868std::optional<FunctionEffectMode>
7873 std::optional<llvm::APSInt> ConditionValue =
7875 if (!ConditionValue) {
7881 return std::nullopt;
7890 FunctionTypeUnwrapper &Unwrapped) {
7892 if (!Unwrapped.isFunctionType())
7895 Sema &S = TPState.getSema();
7899 if (FPT ==
nullptr) {
7900 S.
Diag(PAttr.
getLoc(), diag::err_func_with_effects_no_prototype)
7907 bool IsNonBlocking = PAttr.
getKind() == ParsedAttr::AT_NonBlocking ||
7908 PAttr.
getKind() == ParsedAttr::AT_Blocking;
7911 Expr *CondExpr =
nullptr;
7913 if (PAttr.
getKind() == ParsedAttr::AT_NonBlocking ||
7914 PAttr.
getKind() == ParsedAttr::AT_NonAllocating) {
7923 std::optional<FunctionEffectMode> MaybeMode =
7929 NewMode = *MaybeMode;
7964 assert(
Success &&
"effect conflicts should have been diagnosed above");
7968 FPT->getParamTypes(), EPI);
7977 auto OtherAttr = llvm::find_if(
7978 state.getCurrentAttributes(),
7979 [OtherKind](
const ParsedAttr &A) { return A.getKind() == OtherKind; });
7980 if (OtherAttr == state.getCurrentAttributes().end() || OtherAttr->isInvalid())
7983 Sema &S = state.getSema();
7985 << *OtherAttr <<
Attr
7986 << (OtherAttr->isRegularKeywordAttribute() ||
7988 S.
Diag(OtherAttr->getLoc(), diag::note_conflicting_attribute);
7996 if (!
Attr.getNumArgs()) {
8002 for (
unsigned I = 0; I <
Attr.getNumArgs(); ++I) {
8003 StringRef StateName;
8008 if (StateName !=
"sme_za_state") {
8009 S.
Diag(LiteralLoc, diag::err_unknown_arm_state) << StateName;
8016 S.
Diag(
Attr.
getLoc(), diag::err_conflicting_attributes_arm_agnostic);
8031 if (!
Attr.getNumArgs()) {
8037 for (
unsigned I = 0; I <
Attr.getNumArgs(); ++I) {
8038 StringRef StateName;
8045 if (StateName ==
"za") {
8048 }
else if (StateName ==
"zt0") {
8052 S.
Diag(LiteralLoc, diag::err_unknown_arm_state) << StateName;
8058 S.
Diag(LiteralLoc, diag::err_conflicting_attributes_arm_agnostic);
8067 S.
Diag(LiteralLoc, diag::err_conflicting_attributes_arm_state)
8083 Sema &S = state.getSema();
8085 FunctionTypeUnwrapper unwrapped(S,
type);
8087 if (
attr.getKind() == ParsedAttr::AT_NoReturn) {
8092 if (!unwrapped.isFunctionType())
8101 if (
attr.getKind() == ParsedAttr::AT_CFIUncheckedCallee) {
8103 if (!unwrapped.isFunctionType())
8106 if (!unwrapped.get()->isFunctionProtoType()) {
8107 S.
Diag(
attr.getLoc(), diag::warn_attribute_wrong_decl_type)
8108 <<
attr <<
attr.isRegularKeywordAttribute()
8116 FPT->getReturnType(), FPT->getParamTypes(),
8117 FPT->getExtProtoInfo().withCFIUncheckedCallee(
true));
8122 if (
attr.getKind() == ParsedAttr::AT_CmseNSCall) {
8124 if (!unwrapped.isFunctionType())
8129 S.
Diag(
attr.getLoc(), diag::warn_attribute_ignored) <<
attr;
8136 unwrapped.get()->getExtInfo().withCmseNSCall(
true);
8143 if (
attr.getKind() == ParsedAttr::AT_NSReturnsRetained) {
8144 if (
attr.getNumArgs())
return true;
8147 if (!unwrapped.isFunctionType())
8152 attr.getLoc(), unwrapped.get()->getReturnType()))
8157 if (state.getSema().getLangOpts().ObjCAutoRefCount) {
8159 = unwrapped.get()->getExtInfo().withProducesResult(
true);
8162 type = state.getAttributedType(
8168 if (
attr.getKind() == ParsedAttr::AT_AnyX86NoCallerSavedRegisters) {
8173 if (!unwrapped.isFunctionType())
8177 unwrapped.get()->getExtInfo().withNoCallerSavedRegs(
true);
8182 if (
attr.getKind() == ParsedAttr::AT_AnyX86NoCfCheck) {
8184 S.
Diag(
attr.getLoc(), diag::warn_nocf_check_attribute_ignored);
8194 if (!unwrapped.isFunctionType())
8198 unwrapped.get()->getExtInfo().withNoCfCheck(
true);
8203 if (
attr.getKind() == ParsedAttr::AT_Regparm) {
8209 if (!unwrapped.isFunctionType())
8216 S.
Diag(
attr.getLoc(), diag::err_attributes_are_not_compatible)
8218 <<
attr.isRegularKeywordAttribute();
8224 unwrapped.get()->getExtInfo().withRegParm(value);
8229 if (
attr.getKind() == ParsedAttr::AT_CFISalt) {
8230 if (
attr.getNumArgs() != 1)
8238 if (!unwrapped.isFunctionType())
8243 S.
Diag(
attr.getLoc(), diag::err_attribute_wrong_decl_type)
8244 <<
attr <<
attr.isRegularKeywordAttribute()
8254 FnTy->getParamTypes(), EPI);
8259 if (
attr.getKind() == ParsedAttr::AT_ArmStreaming ||
8260 attr.getKind() == ParsedAttr::AT_ArmStreamingCompatible ||
8261 attr.getKind() == ParsedAttr::AT_ArmPreserves ||
8262 attr.getKind() == ParsedAttr::AT_ArmIn ||
8263 attr.getKind() == ParsedAttr::AT_ArmOut ||
8264 attr.getKind() == ParsedAttr::AT_ArmInOut ||
8265 attr.getKind() == ParsedAttr::AT_ArmAgnostic) {
8269 if (
attr.getKind() == ParsedAttr::AT_ArmStreaming ||
8270 attr.getKind() == ParsedAttr::AT_ArmStreamingCompatible)
8274 if (!unwrapped.isFunctionType())
8281 S.
Diag(
attr.getLoc(), diag::warn_attribute_wrong_decl_type)
8282 <<
attr <<
attr.isRegularKeywordAttribute()
8289 switch (
attr.getKind()) {
8290 case ParsedAttr::AT_ArmStreaming:
8292 ParsedAttr::AT_ArmStreamingCompatible))
8296 case ParsedAttr::AT_ArmStreamingCompatible:
8301 case ParsedAttr::AT_ArmPreserves:
8305 case ParsedAttr::AT_ArmIn:
8309 case ParsedAttr::AT_ArmOut:
8313 case ParsedAttr::AT_ArmInOut:
8317 case ParsedAttr::AT_ArmAgnostic:
8322 llvm_unreachable(
"Unsupported attribute");
8326 FnTy->getParamTypes(), EPI);
8331 if (
attr.getKind() == ParsedAttr::AT_NoThrow) {
8333 if (!unwrapped.isFunctionType())
8346 if (Proto->hasExceptionSpec()) {
8347 switch (Proto->getExceptionSpecType()) {
8349 llvm_unreachable(
"This doesn't have an exception spec!");
8367 S.
Diag(
attr.getLoc(), diag::warn_nothrow_attribute_ignored);
8373 type = unwrapped.wrap(
8382 if (
attr.getKind() == ParsedAttr::AT_NonBlocking ||
8383 attr.getKind() == ParsedAttr::AT_NonAllocating ||
8384 attr.getKind() == ParsedAttr::AT_Blocking ||
8385 attr.getKind() == ParsedAttr::AT_Allocating) {
8390 if (!unwrapped.isFunctionType())
return false;
8405 S.
Diag(
attr.getLoc(), diag::err_attributes_are_not_compatible)
8408 <<
attr.isRegularKeywordAttribute();
8427 return S.
Diag(
attr.getLoc(), diag::warn_cconv_unsupported)
8432 return S.
Diag(
attr.getLoc(), diag::err_cconv_varargs)
8439 S.
Diag(
attr.getLoc(), diag::err_attributes_are_not_compatible)
8441 <<
attr.isRegularKeywordAttribute();
8453 auto EI = unwrapped.get()->getExtInfo().withCallingConv(CC);
8462 const AttributedType *AT;
8466 while ((AT =
T->getAs<AttributedType>()) &&
8468 if (AT->isCallingConv())
8470 T = AT->getModifiedType();
8477 FunctionTypeUnwrapper Unwrapped(*
this,
T);
8483 Context.getDefaultCallingConvention(IsVariadic, HasThisPointer);
8490 if (
Context.getTargetInfo().getCXXABI().isMicrosoft() && IsCtorOrDtor) {
8494 Diag(Loc, diag::warn_cconv_unsupported)
8503 Context.getDefaultCallingConvention(IsVariadic, !HasThisPointer);
8505 if (CurCC != DefaultCC)
8513 QualType Wrapped = Unwrapped.wrap(*
this, FT);
8514 T =
Context.getAdjustedType(
T, Wrapped);
8527 if (
Attr.getNumArgs() != 1) {
8534 Expr *SizeExpr =
Attr.getArgAsExpr(0);
8547 if (
Attr.getNumArgs() != 1) {
8553 Expr *SizeExpr =
Attr.getArgAsExpr(0);
8568 bool IsPolyUnsigned = Triple.getArch() == llvm::Triple::aarch64 ||
8569 Triple.getArch() == llvm::Triple::aarch64_32 ||
8570 Triple.getArch() == llvm::Triple::aarch64_be;
8572 if (IsPolyUnsigned) {
8574 return BTy->
getKind() == BuiltinType::UChar ||
8575 BTy->
getKind() == BuiltinType::UShort ||
8576 BTy->
getKind() == BuiltinType::ULong ||
8577 BTy->
getKind() == BuiltinType::ULongLong;
8580 return BTy->
getKind() == BuiltinType::SChar ||
8581 BTy->
getKind() == BuiltinType::Short ||
8582 BTy->
getKind() == BuiltinType::LongLong;
8588 if ((Triple.isArch64Bit() || Triple.getArch() == llvm::Triple::aarch64_32) &&
8589 BTy->
getKind() == BuiltinType::Double)
8592 return BTy->
getKind() == BuiltinType::SChar ||
8593 BTy->
getKind() == BuiltinType::UChar ||
8594 BTy->
getKind() == BuiltinType::Short ||
8595 BTy->
getKind() == BuiltinType::UShort ||
8596 BTy->
getKind() == BuiltinType::Int ||
8597 BTy->
getKind() == BuiltinType::UInt ||
8598 BTy->
getKind() == BuiltinType::Long ||
8599 BTy->
getKind() == BuiltinType::ULong ||
8600 BTy->
getKind() == BuiltinType::LongLong ||
8601 BTy->
getKind() == BuiltinType::ULongLong ||
8602 BTy->
getKind() == BuiltinType::Float ||
8603 BTy->
getKind() == BuiltinType::Half ||
8604 BTy->
getKind() == BuiltinType::BFloat16 ||
8605 BTy->
getKind() == BuiltinType::MFloat8;
8610 const auto *AttrExpr =
Attr.getArgAsExpr(0);
8611 if (!AttrExpr->isTypeDependent()) {
8612 if (std::optional<llvm::APSInt> Res =
8613 AttrExpr->getIntegerConstantExpr(S.
Context)) {
8655 if (
Attr.getNumArgs() != 1) {
8656 S.
Diag(
Attr.
getLoc(), diag::err_attribute_wrong_number_arguments)
8662 llvm::APSInt numEltsInt(32);
8668 S.
Diag(
Attr.
getLoc(), diag::err_attribute_invalid_vector_type) << CurType;
8675 unsigned numElts =
static_cast<unsigned>(numEltsInt.getZExtValue());
8676 unsigned vecSize = typeSize * numElts;
8677 if (vecSize != 64 && vecSize != 128) {
8678 S.
Diag(
Attr.
getLoc(), diag::err_attribute_bad_neon_vector_size) << CurType;
8690 assert((
Attr.getNumArgs() > 0 &&
Attr.getNumArgs() <= 3) &&
8691 "__ptrauth qualifier takes between 1 and 3 arguments");
8692 Expr *KeyArg =
Attr.getArgAsExpr(0);
8693 Expr *IsAddressDiscriminatedArg =
8694 Attr.getNumArgs() >= 2 ?
Attr.getArgAsExpr(1) :
nullptr;
8695 Expr *ExtraDiscriminatorArg =
8696 Attr.getNumArgs() >= 3 ?
Attr.getArgAsExpr(2) :
nullptr;
8705 bool IsInvalid =
false;
8706 unsigned IsAddressDiscriminated, ExtraDiscriminator;
8709 IsAddressDiscriminated);
8718 if (!
T->isSignableType(Ctx) && !
T->isDependentType()) {
8719 S.
Diag(
Attr.
getLoc(), diag::err_ptrauth_qualifier_invalid_target) <<
T;
8724 if (
T.getPointerAuth()) {
8736 assert((!IsAddressDiscriminatedArg || IsAddressDiscriminated <= 1) &&
8737 "address discriminator arg should be either 0 or 1");
8739 Key, IsAddressDiscriminated, ExtraDiscriminator,
8761 S.
Diag(
Attr.
getLoc(), diag::err_attribute_arm_feature_sve_bits_unsupported)
8768 if (
Attr.getNumArgs() != 1) {
8769 S.
Diag(
Attr.
getLoc(), diag::err_attribute_wrong_number_arguments)
8776 llvm::APSInt SveVectorSizeInBits(32);
8780 unsigned VecSize =
static_cast<unsigned>(SveVectorSizeInBits.getZExtValue());
8803 if (BT->getKind() == BuiltinType::SveBool) {
8808 VecSize /= TypeSize;
8815 const VectorType *VT = dyn_cast<VectorType>(CurType);
8818 diag::err_attribute_arm_mve_polymorphism);
8825 State.getSema().Context,
Attr),
8837 <<
Attr <<
"'zve32x'";
8844 if (!VScale || !VScale->first || VScale->first != VScale->second) {
8845 S.
Diag(
Attr.
getLoc(), diag::err_attribute_riscv_rvv_bits_unsupported)
8852 if (
Attr.getNumArgs() != 1) {
8853 S.
Diag(
Attr.
getLoc(), diag::err_attribute_wrong_number_arguments)
8860 llvm::APSInt RVVVectorSizeInBits(32);
8872 unsigned VecSize =
static_cast<unsigned>(RVVVectorSizeInBits.getZExtValue());
8876 unsigned MinElts = Info.
EC.getKnownMinValue();
8879 unsigned ExpectedSize = VScale->first * MinElts;
8901 ExpectedSize *= EltSize;
8902 NumElts = VecSize / EltSize;
8906 if (VecSize != ExpectedSize) {
8908 << VecSize << ExpectedSize;
8921 S.
Diag(
Attr.
getLoc(), diag::err_opencl_invalid_access_qualifier);
8927 QualType BaseTy = TypedefTy->desugar();
8929 std::string PrevAccessQual;
8931 if (TypedefTy->getDecl()->hasAttr<OpenCLAccessAttr>()) {
8932 OpenCLAccessAttr *
Attr =
8933 TypedefTy->getDecl()->getAttr<OpenCLAccessAttr>();
8936 PrevAccessQual =
"read_only";
8940 switch (ImgType->getKind()) {
8941 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
8942 case BuiltinType::Id: \
8943 PrevAccessQual = #Access; \
8945 #include "clang/Basic/OpenCLImageTypes.def"
8947 llvm_unreachable(
"Unable to find corresponding image type.");
8950 llvm_unreachable(
"unexpected type");
8953 if (PrevAccessQual == AttrName.ltrim(
"_")) {
8959 S.
Diag(
Attr.
getLoc(), diag::err_opencl_multiple_access_qualifiers);
8962 S.
Diag(TypedefTy->getDecl()->getBeginLoc(),
8963 diag::note_opencl_typedef_access_qualifier) << PrevAccessQual;
8965 if (
Attr.getSemanticSpelling() == OpenCLAccessAttr::Keyword_write_only) {
8980 if (
Attr.getNumArgs() != 2) {
8981 S.
Diag(
Attr.
getLoc(), diag::err_attribute_wrong_number_arguments)
8986 Expr *RowsExpr =
Attr.getArgAsExpr(0);
8987 Expr *ColsExpr =
Attr.getArgAsExpr(1);
8995 Sema &S = State.getSema();
8998 S.
Diag(PA.
getLoc(), diag::err_attribute_too_few_arguments) << PA << 1;
9010 for (
unsigned Idx = 1; Idx < PA.
getNumArgs(); Idx++) {
9016 auto *AnnotateTypeAttr =
9017 AnnotateTypeAttr::Create(S.
Context, Str, Args.data(), Args.size(), PA);
9018 CurType = State.getAttributedType(AnnotateTypeAttr, CurType, CurType);
9024 if (State.getDeclarator().isDeclarationOfFunction()) {
9025 CurType = State.getAttributedType(
9030 State.getSema().Diag(
Attr.
getLoc(), diag::err_attribute_wrong_decl_type)
9037 if (State.getDeclarator().isDeclarationOfFunction()) {
9038 auto *
Attr = State.getSema().ParseLifetimeCaptureByAttr(PA,
"this");
9040 CurType = State.getAttributedType(
Attr, CurType, CurType);
9052 if (
Attr.getSemanticSpelling() == HLSLParamModifierAttr::Keyword_inout ||
9053 Attr.getSemanticSpelling() == HLSLParamModifierAttr::Keyword_out) {
9054 State.setParsedHLSLParamMod(
true);
9063 state.setParsedNoDeref(
false);
9079 if (
attr.isInvalid())
9082 if (
attr.isStandardAttributeSyntax() ||
attr.isRegularKeywordAttribute()) {
9087 if (
attr.isGNUScope()) {
9088 assert(
attr.isStandardAttributeSyntax());
9089 bool IsTypeAttr =
attr.isTypeAttr();
9091 state.getSema().Diag(
attr.getLoc(),
9093 ? diag::warn_gcc_ignores_type_attr
9094 : diag::warn_cxx11_gnu_attribute_on_type)
9100 !
attr.isTypeAttr()) {
9113 switch (
attr.getKind()) {
9116 if ((
attr.isStandardAttributeSyntax() ||
9117 attr.isRegularKeywordAttribute()) &&
9119 state.getSema().Diag(
attr.getLoc(), diag::err_attribute_not_type_attr)
9120 <<
attr <<
attr.isRegularKeywordAttribute();
9121 attr.setUsedAsTypeAttr();
9126 if (
attr.isStandardAttributeSyntax()) {
9127 state.getSema().DiagnoseUnknownAttribute(
attr);
9137 case ParsedAttr::AT_BTFTypeTag:
9139 attr.setUsedAsTypeAttr();
9142 case ParsedAttr::AT_MayAlias:
9145 attr.setUsedAsTypeAttr();
9147 case ParsedAttr::AT_OpenCLGlobalDeviceAddressSpace:
9148 case ParsedAttr::AT_OpenCLGlobalHostAddressSpace:
9149 state.getSema().Diag(
attr.getLoc(), diag::warn_deprecated_attribute)
9152 case ParsedAttr::AT_OpenCLPrivateAddressSpace:
9153 case ParsedAttr::AT_OpenCLGlobalAddressSpace:
9154 case ParsedAttr::AT_OpenCLLocalAddressSpace:
9155 case ParsedAttr::AT_OpenCLConstantAddressSpace:
9156 case ParsedAttr::AT_OpenCLGenericAddressSpace:
9157 case ParsedAttr::AT_AddressSpace:
9158 case ParsedAttr::AT_SYCLPrivateAddressSpace:
9159 case ParsedAttr::AT_SYCLGlobalAddressSpace:
9160 case ParsedAttr::AT_SYCLLocalAddressSpace:
9161 case ParsedAttr::AT_SYCLConstantAddressSpace:
9162 case ParsedAttr::AT_SYCLGenericAddressSpace:
9164 attr.setUsedAsTypeAttr();
9166 case ParsedAttr::AT_HLSLGroupSharedAddressSpace:
9169 if (state.getSema().getLangOpts().getHLSLVersion() <
9171 state.getSema().Diag(
attr.getLoc(), diag::warn_hlsl_groupshared_202x);
9178 attr.setUsedAsTypeAttr();
9180 case ParsedAttr::AT_HLSLRowMajor:
9181 case ParsedAttr::AT_HLSLColumnMajor:
9183 state.getSema().HLSL().buildMatrixLayoutTypeAttr(
type,
attr))
9185 attr.setUsedAsTypeAttr();
9190 attr.setUsedAsTypeAttr();
9192 case ParsedAttr::AT_VectorSize:
9194 attr.setUsedAsTypeAttr();
9196 case ParsedAttr::AT_ExtVectorType:
9198 attr.setUsedAsTypeAttr();
9200 case ParsedAttr::AT_NeonVectorType:
9202 attr.setUsedAsTypeAttr();
9204 case ParsedAttr::AT_NeonPolyVectorType:
9207 attr.setUsedAsTypeAttr();
9209 case ParsedAttr::AT_ArmSveVectorBits:
9211 attr.setUsedAsTypeAttr();
9213 case ParsedAttr::AT_ArmMveStrictPolymorphism: {
9215 attr.setUsedAsTypeAttr();
9218 case ParsedAttr::AT_RISCVRVVVectorBits:
9220 attr.setUsedAsTypeAttr();
9222 case ParsedAttr::AT_OpenCLAccess:
9224 attr.setUsedAsTypeAttr();
9226 case ParsedAttr::AT_PointerAuth:
9229 attr.setUsedAsTypeAttr();
9231 case ParsedAttr::AT_LifetimeBound:
9235 case ParsedAttr::AT_LifetimeCaptureBy:
9239 case ParsedAttr::AT_OverflowBehavior:
9241 attr.setUsedAsTypeAttr();
9244 case ParsedAttr::AT_NoDeref: {
9249 if (
attr.isStandardAttributeSyntax()) {
9250 state.getSema().Diag(
attr.getLoc(), diag::warn_attribute_ignored)
9257 attr.setUsedAsTypeAttr();
9258 state.setParsedNoDeref(
true);
9262 case ParsedAttr::AT_MatrixType:
9264 attr.setUsedAsTypeAttr();
9267 case ParsedAttr::AT_WebAssemblyFuncref: {
9269 attr.setUsedAsTypeAttr();
9273 case ParsedAttr::AT_HLSLParamModifier: {
9275 if (attrs.
hasAttribute(ParsedAttr::AT_HLSLGroupSharedAddressSpace)) {
9276 state.getSema().Diag(
attr.getLoc(), diag::err_hlsl_attr_incompatible)
9277 <<
attr <<
"'groupshared'";
9281 attr.setUsedAsTypeAttr();
9285 case ParsedAttr::AT_SwiftAttr: {
9292 attr.setUsedAsTypeAttr();
9300 if (
type->canHaveNullability() ||
type->isDependentType() ||
9301 type->isArrayType() ||
9305 endIndex = state.getCurrentChunkIndex();
9307 endIndex = state.getDeclarator().getNumTypeObjects();
9308 bool allowOnArrayType =
9309 state.getDeclarator().isPrototypeContext() &&
9312 allowOnArrayType)) {
9316 attr.setUsedAsTypeAttr();
9320 case ParsedAttr::AT_ObjCKindOf:
9328 state.getSema().Diag(
attr.getLoc(),
9329 diag::err_objc_kindof_wrong_position)
9332 state.getDeclarator().getDeclSpec().getBeginLoc(),
9342 case ParsedAttr::AT_NoThrow:
9345 if (!state.getSema().getLangOpts().CPlusPlus)
9350 attr.setUsedAsTypeAttr();
9354 if (
attr.isStandardAttributeSyntax() ||
9355 attr.isRegularKeywordAttribute()) {
9372 case ParsedAttr::AT_AcquireHandle: {
9373 if (!
type->isFunctionType())
9376 if (
attr.getNumArgs() != 1) {
9377 state.getSema().Diag(
attr.getLoc(),
9378 diag::err_attribute_wrong_number_arguments)
9384 StringRef HandleType;
9385 if (!state.getSema().checkStringLiteralArgumentAttr(
attr, 0, HandleType))
9387 type = state.getAttributedType(
9388 AcquireHandleAttr::Create(state.getSema().Context, HandleType,
attr),
9390 attr.setUsedAsTypeAttr();
9393 case ParsedAttr::AT_AnnotateType: {
9395 attr.setUsedAsTypeAttr();
9398 case ParsedAttr::AT_HLSLResourceClass:
9399 case ParsedAttr::AT_HLSLResourceDimension:
9400 case ParsedAttr::AT_HLSLIsROV:
9401 case ParsedAttr::AT_HLSLRawBuffer:
9402 case ParsedAttr::AT_HLSLIsArray:
9403 case ParsedAttr::AT_HLSLIsMultiSampled:
9404 case ParsedAttr::AT_HLSLContainedType: {
9409 state.getSema().HLSL().handleResourceTypeAttr(
type,
attr))
9410 attr.setUsedAsTypeAttr();
9418 !
type.getQualifiers().hasObjCLifetime() &&
9419 !
type.getQualifiers().hasObjCGCAttr() &&
9420 attr.getKind() != ParsedAttr::AT_ObjCGC &&
9421 attr.getKind() != ParsedAttr::AT_ObjCOwnership) {
9423 type = state.getSema().Context.getMacroQualifiedType(
type, MacroII);
9424 state.setExpansionLocForMacroQualifiedType(
9426 attr.getMacroExpansionLoc());
9433 if (
VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) {
9435 auto *Def = Var->getDefinition();
9441 Def = Var->getDefinition();
9448 if (Var->getPointOfInstantiation().isInvalid() && Def) {
9449 assert(Var->getTemplateSpecializationKind() ==
9451 "explicit instantiation with no point of instantiation");
9452 Var->setTemplateSpecializationKind(
9453 Var->getTemplateSpecializationKind(), PointOfInstantiation);
9473 if (
const auto CastE = dyn_cast<ExplicitCastExpr>(E)) {
9474 QualType DestType = CastE->getTypeAsWritten();
9475 if (
const auto *IAT =
Context.getAsIncompleteArrayType(DestType)) {
9480 IAT->getElementType(),
9517 if (RequireCompleteTypeImpl(Loc,
T, Kind, &Diagnoser))
9519 if (
auto *TD =
T->getAsTagDecl(); TD && !TD->isCompleteDefinitionRequired()) {
9520 TD->setCompleteDefinitionRequired();
9521 Consumer.HandleTagDeclRequiredDefinition(TD);
9554 auto DefinitionIsAcceptable = [&](
NamedDecl *D) {
9574 if (
auto *RD = dyn_cast<CXXRecordDecl>(D))
9575 return RD->isThisDeclarationADefinition();
9576 if (
auto *ED = dyn_cast<EnumDecl>(D))
9577 return ED->isThisDeclarationADefinition();
9578 if (
auto *FD = dyn_cast<FunctionDecl>(D))
9579 return FD->isThisDeclarationADefinition();
9580 if (
auto *VD = dyn_cast<VarDecl>(D))
9582 llvm_unreachable(
"unexpected decl type");
9584 auto FoundAcceptableDefinition = [&](
NamedDecl *D) {
9586 return DefinitionIsAcceptable(D);
9594 return DefinitionIsAcceptable(D);
9596 for (
auto *RD : D->
redecls()) {
9598 if (!IsDefinition(ND))
9600 if (DefinitionIsAcceptable(ND)) {
9609 if (
auto *RD = dyn_cast<CXXRecordDecl>(D)) {
9610 if (
auto *Pattern = RD->getTemplateInstantiationPattern())
9612 D = RD->getDefinition();
9613 }
else if (
auto *ED = dyn_cast<EnumDecl>(D)) {
9614 if (
auto *Pattern = ED->getTemplateInstantiationPattern())
9616 if (OnlyNeedComplete && (ED->isFixed() ||
getLangOpts().MSVCCompat)) {
9622 *Suggested =
nullptr;
9623 for (
auto *Redecl : ED->redecls()) {
9626 if (Redecl->isThisDeclarationADefinition() ||
9627 (Redecl->isCanonicalDecl() && !*Suggested))
9628 *Suggested = Redecl;
9633 D = ED->getDefinition();
9634 }
else if (
auto *FD = dyn_cast<FunctionDecl>(D)) {
9635 if (
auto *Pattern = FD->getTemplateInstantiationPattern())
9637 D = FD->getDefinition();
9638 }
else if (
auto *VD = dyn_cast<VarDecl>(D)) {
9639 if (
auto *Pattern = VD->getTemplateInstantiationPattern())
9641 D = VD->getDefinition();
9644 assert(D &&
"missing definition for pattern of instantiated definition");
9648 if (FoundAcceptableDefinition(D))
9653 if (
auto *Source =
Context.getExternalSource()) {
9654 Source->CompleteRedeclChain(D);
9655 return FoundAcceptableDefinition(D);
9671 bool OnlyNeedComplete) {
9688 bool OnlyNeedComplete) {
9696 if (!RD->
hasAttr<MSInheritanceAttr>()) {
9698 bool BestCase =
false;
9718 RD->
addAttr(MSInheritanceAttr::CreateImplicit(
9719 S.
getASTContext(), BestCase, Loc, MSInheritanceAttr::Spelling(IM)));
9725 CompleteTypeKind Kind,
9726 TypeDiagnoser *Diagnoser) {
9735 if (
const auto *MPTy = dyn_cast<MemberPointerType>(
T.getCanonicalType())) {
9736 if (CXXRecordDecl *RD = MPTy->getMostRecentCXXRecordDecl();
9737 RD && !RD->isDependentType()) {
9739 if (
getLangOpts().CompleteMemberPointers && !RD->isBeingDefined() &&
9745 if (
Context.getTargetInfo().getCXXABI().isMicrosoft()) {
9752 NamedDecl *Def =
nullptr;
9764 NamedDecl *Suggested =
nullptr;
9770 if (Diagnoser && Suggested)
9773 return !TreatAsComplete;
9778 TagDecl *
Tag = dyn_cast_or_null<TagDecl>(Def);
9779 ObjCInterfaceDecl *IFace = dyn_cast_or_null<ObjCInterfaceDecl>(Def);
9791 if (
auto *Source =
Context.getExternalSource()) {
9792 if (Tag &&
Tag->hasExternalLexicalStorage())
9793 Source->CompleteType(Tag);
9795 Source->CompleteType(IFace);
9799 return RequireCompleteTypeImpl(Loc,
T, Kind, Diagnoser);
9806 if (
auto *RD = dyn_cast_or_null<CXXRecordDecl>(Tag)) {
9807 bool Instantiated =
false;
9808 bool Diagnosed =
false;
9809 if (RD->isDependentContext()) {
9813 }
else if (
auto *ClassTemplateSpec =
9814 dyn_cast<ClassTemplateSpecializationDecl>(RD)) {
9815 if (ClassTemplateSpec->getSpecializationKind() ==
TSK_Undeclared) {
9819 Diagnoser, ClassTemplateSpec->hasStrictPackMatch());
9821 Instantiated =
true;
9824 CXXRecordDecl *Pattern = RD->getInstantiatedFromMemberClass();
9825 if (!RD->isBeingDefined() && Pattern) {
9826 MemberSpecializationInfo *MSI = RD->getMemberSpecializationInfo();
9827 assert(MSI &&
"Missing member specialization information?");
9837 Instantiated =
true;
9845 if (Diagnoser && Diagnosed)
9851 return RequireCompleteTypeImpl(Loc,
T, Kind, Diagnoser);
9861 Diagnoser->diagnose(*
this, Loc,
T);
9865 if (Tag && !
Tag->isInvalidDecl() && !
Tag->getLocation().isInvalid())
9866 Diag(
Tag->getLocation(),
Tag->isBeingDefined()
9867 ? diag::note_type_being_defined
9868 : diag::note_forward_declaration)
9869 <<
Context.getCanonicalTagType(Tag);
9902 default: llvm_unreachable(
"Invalid tag kind for literal type diagnostic!");
9908 assert(!
T->isDependentType() &&
"type should not be dependent");
9917 if (
T->isVariableArrayType())
9933 Diag(RD->getLocation(), diag::note_non_literal_lambda);
9942 Diag(RD->getLocation(), diag::note_non_literal_virtual_base)
9944 for (
const auto &I : RD->vbases())
9945 Diag(I.getBeginLoc(), diag::note_constexpr_virtual_base_here)
9946 << I.getSourceRange();
9947 }
else if (!RD->isAggregate() && !RD->hasConstexprNonCopyMoveConstructor() &&
9948 !RD->hasTrivialDefaultConstructor()) {
9949 Diag(RD->getLocation(), diag::note_non_literal_no_constexpr_ctors) << RD;
9950 }
else if (RD->hasNonLiteralTypeFieldsOrBases()) {
9951 for (
const auto &I : RD->bases()) {
9952 if (!I.getType()->isLiteralType(
Context)) {
9953 Diag(I.getBeginLoc(), diag::note_non_literal_base_class)
9954 << RD << I.getType() << I.getSourceRange();
9958 for (
const auto *I : RD->fields()) {
9959 if (!I->getType()->isLiteralType(
Context) ||
9960 I->getType().isVolatileQualified()) {
9961 Diag(I->getLocation(), diag::note_non_literal_field)
9962 << RD << I << I->getType()
9963 << I->getType().isVolatileQualified();
9968 : !RD->hasTrivialDestructor()) {
9973 assert(Dtor &&
"class has literal fields and bases but no dtor?");
9978 Diag(Dtor->getLocation(), diag::note_non_literal_non_constexpr_dtor)
9981 Diag(Dtor->getLocation(), Dtor->isUserProvided()
9982 ? diag::note_non_literal_user_provided_dtor
9983 : diag::note_non_literal_nontrivial_dtor)
9985 if (!Dtor->isUserProvided())
10009 if (
const TagType *TT =
T->getAs<TagType>())
10012 return Context.getTypeOfExprType(E, Kind);
10033 return Context.getCountAttributedType(WrappedTy, CountExpr, CountInBytes,
10043 if (
auto *ImplCastExpr = dyn_cast<ImplicitCastExpr>(E))
10044 IDExpr = ImplCastExpr->getSubExpr();
10046 if (
auto *PackExpr = dyn_cast<PackIndexingExpr>(E)) {
10048 IDExpr = PackExpr->getPackIdExpression();
10050 IDExpr = PackExpr->getSelectedExpr();
10066 if (
const auto *SNTTPE = dyn_cast<SubstNonTypeTemplateParmExpr>(IDExpr))
10067 IDExpr = SNTTPE->getReplacement();
10075 if (
const auto *DRE = dyn_cast<DeclRefExpr>(IDExpr)) {
10080 if (
const auto *ME = dyn_cast<MemberExpr>(IDExpr)) {
10081 if (
const auto *VD = ME->getMemberDecl())
10083 return VD->getType();
10084 }
else if (
const auto *IR = dyn_cast<ObjCIvarRefExpr>(IDExpr)) {
10085 return IR->getDecl()->getType();
10086 }
else if (
const auto *PR = dyn_cast<ObjCPropertyRefExpr>(IDExpr)) {
10087 if (PR->isExplicitProperty())
10088 return PR->getExplicitProperty()->getType();
10089 }
else if (
const auto *PE = dyn_cast<PredefinedExpr>(IDExpr)) {
10090 return PE->getType();
10101 if (
auto *DRE = dyn_cast<DeclRefExpr>(IDExpr->
IgnoreParens())) {
10102 if (
auto *Var = dyn_cast<VarDecl>(DRE->getDecl())) {
10105 return Context.getLValueReferenceType(
T);
10110 return Context.getReferenceQualifiedType(E);
10122 Diag(E->
getExprLoc(), diag::warn_side_effects_unevaluated_context);
10135 Diag(Loc, diag::err_expected_name_of_pack) << Pattern;
10139 if (!
Type.isNull())
10140 DiagCompat(Loc, diag_compat::pack_indexing);
10147 bool FullySubstituted,
10152 llvm::APSInt
Value;
10159 IndexExpr = Res.
get();
10160 uint64_t
V =
Value.getZExtValue();
10161 if (FullySubstituted &&
V >= Expansions.size()) {
10163 <<
V << Pattern << Expansions.size();
10166 Index =
static_cast<unsigned>(
V);
10169 return Context.getPackIndexingType(Pattern, IndexExpr, FullySubstituted,
10170 Expansions, Index);
10175 assert(BaseType->isEnumeralType());
10176 EnumDecl *ED = BaseType->castAs<EnumType>()->getDecl();
10181 if (Underlying.
isNull()) {
10183 assert(!Underlying.
isNull());
10191 if (!BaseType->isEnumeralType()) {
10192 Diag(Loc, diag::err_only_enums_have_underlying_types);
10199 if (BaseType->isIncompleteType(&FwdDecl)) {
10200 Diag(Loc, diag::err_underlying_type_of_incomplete_enum) << BaseType;
10201 Diag(FwdDecl->
getLocation(), diag::note_forward_declaration) << FwdDecl;
10209 QualType Pointer = BaseType.isReferenceable() || BaseType->isVoidType()
10218 if (!BaseType->isAnyPointerType())
10227 return Context.getDecayedType(Underlying);
10236 Split.Quals.removeCVRQualifiers();
10237 return Context.getQualifiedType(Split);
10244 BaseType.isReferenceable()
10246 UKind == UnaryTransformType::AddLvalueReference,
10254 if (UKind == UnaryTransformType::RemoveAllExtents)
10255 return Context.getBaseElementType(BaseType);
10257 if (
const auto *AT =
Context.getAsArrayType(BaseType))
10258 return AT->getElementType();
10266 QualType T = BaseType.getNonReferenceType();
10267 if (UKind == UTTKind::RemoveCVRef &&
10268 (
T.isConstQualified() ||
T.isVolatileQualified())) {
10273 T =
Context.getQualifiedType(Unqual, Quals);
10280 if ((BaseType->isReferenceType() && UKind != UTTKind::RemoveRestrict) ||
10281 BaseType->isFunctionType())
10287 if (UKind == UTTKind::RemoveConst || UKind == UTTKind::RemoveCV)
10289 if (UKind == UTTKind::RemoveVolatile || UKind == UTTKind::RemoveCV)
10291 if (UKind == UTTKind::RemoveRestrict)
10294 return Context.getQualifiedType(Unqual, Quals);
10300 if (BaseType->isEnumeralType()) {
10302 if (
auto *
BitInt = dyn_cast<BitIntType>(Underlying)) {
10303 unsigned int Bits =
BitInt->getNumBits();
10307 S.
Diag(Loc, diag::err_make_signed_integral_only)
10308 << IsMakeSigned <<
true << BaseType << 1 << Underlying;
10312 S.
Diag(Loc, diag::err_make_signed_integral_only)
10313 << IsMakeSigned <<
false << BaseType << 1
10320 std::array<CanQualType *, 6> AllSignedIntegers = {
10324 AllSignedIntegers.data(), AllSignedIntegers.size() - Int128Unsupported);
10325 std::array<CanQualType *, 6> AllUnsignedIntegers = {
10330 AllUnsignedIntegers.size() -
10331 Int128Unsupported);
10333 IsMakeSigned ? &AvailableSignedIntegers : &AvailableUnsignedIntegers;
10337 llvm::find_if(*Consider, [&S, BaseSize](
const CanQual<Type> *
T) {
10341 assert(
Result != Consider->end());
10342 return QualType((*Result)->getTypePtr(), 0);
10347 bool IsMakeSigned = UKind == UnaryTransformType::MakeSigned;
10348 if ((!BaseType->isIntegerType() && !BaseType->isEnumeralType()) ||
10349 BaseType->isBooleanType() ||
10350 (BaseType->isBitIntType() &&
10352 Diag(Loc, diag::err_make_signed_integral_only)
10353 << IsMakeSigned << BaseType->isBitIntType() << BaseType << 0;
10357 bool IsNonIntIntegral =
10358 BaseType->
isChar16Type() || BaseType->isChar32Type() ||
10359 BaseType->isWideCharType() || BaseType->isEnumeralType();
10364 : IsMakeSigned ?
Context.getCorrespondingSignedType(BaseType)
10365 :
Context.getCorrespondingUnsignedType(BaseType);
10366 if (Underlying.
isNull())
10373 if (BaseType->isDependentType())
10374 return Context.getUnaryTransformType(BaseType, BaseType, UKind);
10377 case UnaryTransformType::EnumUnderlyingType: {
10381 case UnaryTransformType::AddPointer: {
10385 case UnaryTransformType::RemovePointer: {
10389 case UnaryTransformType::Decay: {
10393 case UnaryTransformType::AddLvalueReference:
10394 case UnaryTransformType::AddRvalueReference: {
10398 case UnaryTransformType::RemoveAllExtents:
10399 case UnaryTransformType::RemoveExtent: {
10403 case UnaryTransformType::RemoveCVRef:
10404 case UnaryTransformType::RemoveReference: {
10408 case UnaryTransformType::RemoveConst:
10409 case UnaryTransformType::RemoveCV:
10410 case UnaryTransformType::RemoveRestrict:
10411 case UnaryTransformType::RemoveVolatile: {
10415 case UnaryTransformType::MakeSigned:
10416 case UnaryTransformType::MakeUnsigned: {
10434 int DisallowedKind = -1;
10435 if (
T->isArrayType())
10436 DisallowedKind = 1;
10437 else if (
T->isFunctionType())
10438 DisallowedKind = 2;
10439 else if (
T->isReferenceType())
10440 DisallowedKind = 3;
10441 else if (
T->isAtomicType())
10442 DisallowedKind = 4;
10443 else if (
T.hasQualifiers())
10444 DisallowedKind = 5;
10445 else if (
T->isSizelessType())
10446 DisallowedKind = 6;
10449 DisallowedKind = 7;
10450 else if (
T->isBitIntType())
10451 DisallowedKind = 8;
10454 DisallowedKind = 9;
10455 else if (
T->isOverflowBehaviorType())
10457 DisallowedKind = 10;
10459 if (DisallowedKind != -1) {
10460 Diag(Loc, diag::err_atomic_specifier_bad_type) << DisallowedKind <<
T;
Defines the clang::ASTContext interface.
This file defines the classes used to store parsed information about declaration-specifiers and decla...
Defines the C++ template declaration subclasses.
Defines the classes clang::DelayedDiagnostic and clang::AccessedEntity.
Result
Implement __builtin_bit_cast and related operations.
Defines the clang::LangOptions interface.
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.
static StringRef getTriple(const Command &Job)
*collection of selector each with an associated kind and an ordered *collection of selectors A selector has a kind
Defines the clang::Preprocessor interface.
static QualType getUnderlyingType(const SubRegion *R)
static std::string toString(const clang::SanitizerSet &Sanitizers)
Produce a string containing comma-separated names of sanitizers in Sanitizers set.
This file declares semantic analysis for CUDA constructs.
This file declares semantic analysis for HLSL constructs.
This file declares semantic analysis for Objective-C.
This file declares semantic analysis for OpenMP constructs and clauses.
static void HandleNeonVectorTypeAttr(QualType &CurType, const ParsedAttr &Attr, Sema &S, VectorKind VecKind)
HandleNeonVectorTypeAttr - The "neon_vector_type" and "neon_polyvector_type" attributes are used to c...
static constexpr uint64_t MaxVectorSizeInBits
static QualType deduceOpenCLPointeeAddrSpace(Sema &S, QualType PointeeType)
static bool isPermittedNeonBaseType(QualType &Ty, VectorKind VecKind, Sema &S)
static void distributeObjCPointerTypeAttr(TypeProcessingState &state, ParsedAttr &attr, QualType type)
Given that an objc_gc attribute was written somewhere on a declaration other than on the declarator i...
static void maybeSynthesizeBlockSignature(TypeProcessingState &state, QualType declSpecType)
Add a synthetic '()' to a block-literal declarator if it is required, given the return type.
#define MS_TYPE_ATTRS_CASELIST
#define CALLING_CONV_ATTRS_CASELIST
static void emitNullabilityConsistencyWarning(Sema &S, SimplePointerKind PointerKind, SourceLocation PointerLoc, SourceLocation PointerEndLoc)
static void fixItNullability(Sema &S, DiagBuilderT &Diag, SourceLocation PointerLoc, NullabilityKind Nullability)
Creates a fix-it to insert a C-style nullability keyword at pointerLoc, taking into account whitespac...
static ExprResult checkArraySize(Sema &S, Expr *&ArraySize, llvm::APSInt &SizeVal, unsigned VLADiag, bool VLAIsError)
Check whether the specified array bound can be evaluated using the relevant language rules.
static Attr * createNullabilityAttr(ASTContext &Ctx, ParsedAttr &Attr, NullabilityKind NK)
static void HandleVectorSizeAttr(QualType &CurType, const ParsedAttr &Attr, Sema &S)
HandleVectorSizeAttribute - this attribute is only applicable to integral and float scalars,...
static void inferARCWriteback(TypeProcessingState &state, QualType &declSpecType)
Given that this is the declaration of a parameter under ARC, attempt to infer attributes and such for...
static TypeSourceInfo * GetTypeSourceInfoForDeclarator(TypeProcessingState &State, QualType T, TypeSourceInfo *ReturnTypeInfo)
Create and instantiate a TypeSourceInfo with type source information.
static bool BuildAddressSpaceIndex(Sema &S, LangAS &ASIdx, const Expr *AddrSpace, SourceLocation AttrLoc)
Build an AddressSpace index from a constant expression and diagnose any errors related to invalid add...
static void HandleBTFTypeTagAttribute(QualType &Type, const ParsedAttr &Attr, TypeProcessingState &State)
static void transferARCOwnershipToDeclaratorChunk(TypeProcessingState &state, Qualifiers::ObjCLifetime ownership, unsigned chunkIndex)
static bool handleObjCGCTypeAttr(TypeProcessingState &state, ParsedAttr &attr, QualType &type)
handleObjCGCTypeAttr - Process the attribute((objc_gc)) type attribute on the specified type.
static void fillAtomicQualLoc(AtomicTypeLoc ATL, const DeclaratorChunk &Chunk)
static void HandleExtVectorTypeAttr(QualType &CurType, const ParsedAttr &Attr, Sema &S)
Process the OpenCL-like ext_vector_type attribute when it occurs on a type.
static void HandleHLSLParamModifierAttr(TypeProcessingState &State, QualType &CurType, const ParsedAttr &Attr, Sema &S)
static void HandleLifetimeBoundAttr(TypeProcessingState &State, QualType &CurType, ParsedAttr &Attr)
static bool handleArmStateAttribute(Sema &S, FunctionProtoType::ExtProtoInfo &EPI, ParsedAttr &Attr, FunctionType::ArmStateValue State)
static bool handleArmAgnosticAttribute(Sema &S, FunctionProtoType::ExtProtoInfo &EPI, ParsedAttr &Attr)
static void distributeFunctionTypeAttrFromDeclSpec(TypeProcessingState &state, ParsedAttr &attr, QualType &declSpecType, CUDAFunctionTarget CFT)
A function type attribute was written in the decl spec.
static bool handleObjCPointerTypeAttr(TypeProcessingState &state, ParsedAttr &attr, QualType &type)
static constexpr uint64_t MaxVectorElements
static QualType inferARCLifetimeForPointee(Sema &S, QualType type, SourceLocation loc, bool isReference)
Given that we're building a pointer or reference to the given.
static bool handleNonBlockingNonAllocatingTypeAttr(TypeProcessingState &TPState, ParsedAttr &PAttr, QualType &QT, FunctionTypeUnwrapper &Unwrapped)
static QualType ChangeIntegralSignedness(Sema &S, QualType BaseType, bool IsMakeSigned, SourceLocation Loc)
static bool CheckNullabilityTypeSpecifier(Sema &S, TypeProcessingState *State, ParsedAttr *PAttr, QualType &QT, NullabilityKind Nullability, SourceLocation NullabilityLoc, bool IsContextSensitive, bool AllowOnArrayType, bool OverrideExisting)
#define OBJC_POINTER_TYPE_ATTRS_CASELIST
static void diagnoseBadTypeAttribute(Sema &S, const ParsedAttr &attr, QualType type)
diagnoseBadTypeAttribute - Diagnoses a type attribute which doesn't apply to the given type.
static PointerDeclaratorKind classifyPointerDeclarator(Sema &S, QualType type, Declarator &declarator, PointerWrappingDeclaratorKind &wrappingKind)
Classify the given declarator, whose type-specified is type, based on what kind of pointer it refers ...
static bool verifyValidIntegerConstantExpr(Sema &S, const ParsedAttr &Attr, llvm::APSInt &Result)
static void HandleSwiftAttr(TypeProcessingState &State, TypeAttrLocation TAL, QualType &QT, ParsedAttr &PAttr)
static bool handleMSPointerTypeQualifierAttr(TypeProcessingState &state, ParsedAttr &attr, QualType &type)
static bool shouldHaveNullability(QualType T)
static void HandleArmMveStrictPolymorphismAttr(TypeProcessingState &State, QualType &CurType, ParsedAttr &Attr)
static void warnAboutAmbiguousFunction(Sema &S, Declarator &D, DeclaratorChunk &DeclType, QualType RT)
Produce an appropriate diagnostic for an ambiguity between a function declarator and a C++ direct-ini...
static void distributeObjCPointerTypeAttrFromDeclarator(TypeProcessingState &state, ParsedAttr &attr, QualType &declSpecType)
Distribute an objc_gc type attribute that was written on the declarator.
static FileID getNullabilityCompletenessCheckFileID(Sema &S, SourceLocation loc)
static void HandleOverflowBehaviorAttr(QualType &Type, const ParsedAttr &Attr, TypeProcessingState &State)
static void HandleArmSveVectorBitsTypeAttr(QualType &CurType, ParsedAttr &Attr, Sema &S)
HandleArmSveVectorBitsTypeAttr - The "arm_sve_vector_bits" attribute is used to create fixed-length v...
#define FUNCTION_TYPE_ATTRS_CASELIST
static void HandleLifetimeCaptureByAttr(TypeProcessingState &State, QualType &CurType, ParsedAttr &PA)
static bool distributeNullabilityTypeAttr(TypeProcessingState &state, QualType type, ParsedAttr &attr)
Distribute a nullability type attribute that cannot be applied to the type specifier to a pointer,...
static void distributeTypeAttrsFromDeclarator(TypeProcessingState &state, QualType &declSpecType, CUDAFunctionTarget CFT)
Given that there are attributes written on the declarator or declaration itself, try to distribute an...
static void fillHLSLAttributedResourceTypeLoc(HLSLAttributedResourceTypeLoc TL, TypeProcessingState &State)
static void distributeFunctionTypeAttr(TypeProcessingState &state, ParsedAttr &attr, QualType type)
A function type attribute was written somewhere in a declaration other than on the declarator itself ...
static void HandleMatrixTypeAttr(QualType &CurType, const ParsedAttr &Attr, Sema &S)
HandleMatrixTypeAttr - "matrix_type" attribute, like ext_vector_type.
static bool HandleWebAssemblyFuncrefAttr(TypeProcessingState &State, QualType &QT, ParsedAttr &PAttr)
static bool hasOuterPointerLikeChunk(const Declarator &D, unsigned endIndex)
Returns true if any of the declarator chunks before endIndex include a level of indirection: array,...
static void HandleOpenCLAccessAttr(QualType &CurType, const ParsedAttr &Attr, Sema &S)
Handle OpenCL Access Qualifier Attribute.
static NullabilityKind mapNullabilityAttrKind(ParsedAttr::Kind kind)
Map a nullability attribute kind to a nullability kind.
static bool distributeFunctionTypeAttrToInnermost(TypeProcessingState &state, ParsedAttr &attr, ParsedAttributesView &attrList, QualType &declSpecType, CUDAFunctionTarget CFT)
Try to distribute a function type attribute to the innermost function chunk or type.
#define NULLABILITY_TYPE_ATTRS_CASELIST
static QualType GetDeclSpecTypeForDeclarator(TypeProcessingState &state, TypeSourceInfo *&ReturnTypeInfo)
static void checkNullabilityConsistency(Sema &S, SimplePointerKind pointerKind, SourceLocation pointerLoc, SourceLocation pointerEndLoc=SourceLocation())
Complains about missing nullability if the file containing pointerLoc has other uses of nullability (...
static void transferARCOwnership(TypeProcessingState &state, QualType &declSpecTy, Qualifiers::ObjCLifetime ownership)
Used for transferring ownership in casts resulting in l-values.
static std::string getPrintableNameForEntity(DeclarationName Entity)
static std::string getFunctionQualifiersAsString(const FunctionProtoType *FnTy)
static QualType rebuildAttributedTypeWithoutNullability(ASTContext &Ctx, QualType Type)
Rebuild an attributed type without the nullability attribute on it.
static DeclaratorChunk * maybeMovePastReturnType(Declarator &declarator, unsigned i, bool onlyBlockPointers)
Given the index of a declarator chunk, check whether that chunk directly specifies the return type of...
static OpenCLAccessAttr::Spelling getImageAccess(const ParsedAttributesView &Attrs)
static void fillMatrixTypeLoc(MatrixTypeLoc MTL, const ParsedAttributesView &Attrs)
static UnaryTransformType::UTTKind TSTToUnaryTransformType(DeclSpec::TST SwitchTST)
static void HandleRISCVRVVVectorBitsTypeAttr(QualType &CurType, ParsedAttr &Attr, Sema &S)
HandleRISCVRVVVectorBitsTypeAttr - The "riscv_rvv_vector_bits" attribute is used to create fixed-leng...
static void HandleAddressSpaceTypeAttribute(QualType &Type, const ParsedAttr &Attr, TypeProcessingState &State)
HandleAddressSpaceTypeAttribute - Process an address_space attribute on the specified type.
static bool checkQualifiedFunction(Sema &S, QualType T, SourceLocation Loc, QualifiedFunctionKind QFK)
Check whether the type T is a qualified function type, and if it is, diagnose that it cannot be conta...
static bool checkOmittedBlockReturnType(Sema &S, Declarator &declarator, QualType Result)
Return true if this is omitted block return type.
static void HandlePtrAuthQualifier(ASTContext &Ctx, QualType &T, const ParsedAttr &Attr, Sema &S)
Handle the __ptrauth qualifier.
static bool DiagnoseMultipleAddrSpaceAttributes(Sema &S, LangAS ASOld, LangAS ASNew, SourceLocation AttrLoc)
static void warnAboutRedundantParens(Sema &S, Declarator &D, QualType T)
Produce an appropriate diagnostic for a declarator with top-level parentheses.
static QualType ConvertDeclSpecToType(TypeProcessingState &state)
Convert the specified declspec to the appropriate type object.
static std::pair< QualType, TypeSourceInfo * > InventTemplateParameter(TypeProcessingState &state, QualType T, TypeSourceInfo *TrailingTSI, AutoType *Auto, InventedTemplateParameterInfo &Info)
static void distributeFunctionTypeAttrFromDeclarator(TypeProcessingState &state, ParsedAttr &attr, QualType &declSpecType, CUDAFunctionTarget CFT)
A function type attribute was written on the declarator or declaration.
static void diagnoseAndRemoveTypeQualifiers(Sema &S, const DeclSpec &DS, unsigned &TypeQuals, QualType TypeSoFar, unsigned RemoveTQs, unsigned DiagID)
static CallingConv getCCForDeclaratorChunk(Sema &S, Declarator &D, const ParsedAttributesView &AttrList, const DeclaratorChunk::FunctionTypeInfo &FTI, unsigned ChunkIndex)
Helper for figuring out the default CC for a function declarator type.
static unsigned getLiteralDiagFromTagKind(TagTypeKind Tag)
Get diagnostic select index for tag kind for literal type diagnostic message.
static void recordNullabilitySeen(Sema &S, SourceLocation loc)
Marks that a nullability feature has been used in the file containing loc.
static bool CheckBitIntElementType(Sema &S, SourceLocation AttrLoc, const BitIntType *BIT, bool ForMatrixType=false)
static void checkExtParameterInfos(Sema &S, ArrayRef< QualType > paramTypes, const FunctionProtoType::ExtProtoInfo &EPI, llvm::function_ref< SourceLocation(unsigned)> getParamLoc)
Check the extended parameter information.
static bool handleFunctionTypeAttr(TypeProcessingState &state, ParsedAttr &attr, QualType &type, CUDAFunctionTarget CFT)
Process an individual function attribute.
static void transferARCOwnershipToDeclSpec(Sema &S, QualType &declSpecTy, Qualifiers::ObjCLifetime ownership)
static void BuildTypeCoupledDecls(Expr *E, llvm::SmallVectorImpl< TypeCoupledDeclRefInfo > &Decls)
static void assignInheritanceModel(Sema &S, CXXRecordDecl *RD)
Locks in the inheritance model for the given class and all of its bases.
static bool checkObjCKindOfType(TypeProcessingState &state, QualType &type, ParsedAttr &attr)
Check the application of the Objective-C '__kindof' qualifier to the given type.
static bool hasNullabilityAttr(const ParsedAttributesView &attrs)
Check whether there is a nullability attribute of any kind in the given attribute list.
static bool handleObjCOwnershipTypeAttr(TypeProcessingState &state, ParsedAttr &attr, QualType &type)
handleObjCOwnershipTypeAttr - Process an objc_ownership attribute on the specified type.
static void moveAttrFromListToList(ParsedAttr &attr, ParsedAttributesView &fromList, ParsedAttributesView &toList)
static void HandleAnnotateTypeAttr(TypeProcessingState &State, QualType &CurType, const ParsedAttr &PA)
static void fillAttributedTypeLoc(AttributedTypeLoc TL, TypeProcessingState &State)
TypeAttrLocation
The location of a type attribute.
@ TAL_DeclChunk
The attribute is part of a DeclaratorChunk.
@ TAL_DeclSpec
The attribute is in the decl-specifier-seq.
@ TAL_DeclName
The attribute is immediately after the declaration's name.
static bool isOmittedBlockReturnType(const Declarator &D)
isOmittedBlockReturnType - Return true if this declarator is missing a return type because this is a ...
static TypeSourceInfo * GetFullTypeForDeclarator(TypeProcessingState &state, QualType declSpecType, TypeSourceInfo *TInfo)
static QualType GetEnumUnderlyingType(Sema &S, QualType BaseType, SourceLocation Loc)
static void fillDependentAddressSpaceTypeLoc(DependentAddressSpaceTypeLoc DASTL, ArrayRef< const ParsedAttributesView * > AttrLists)
static bool IsNoDerefableChunk(const DeclaratorChunk &Chunk)
static AttrT * createSimpleAttr(ASTContext &Ctx, ParsedAttr &AL)
static void diagnoseRedundantReturnTypeQualifiers(Sema &S, QualType RetTy, Declarator &D, unsigned FunctionChunkIndex)
static void processTypeAttrs(TypeProcessingState &state, QualType &type, TypeAttrLocation TAL, const ParsedAttributesView &attrs, CUDAFunctionTarget CFT=CUDAFunctionTarget::HostDevice)
static bool checkMutualExclusion(TypeProcessingState &state, const FunctionProtoType::ExtProtoInfo &EPI, ParsedAttr &Attr, AttributeCommonInfo::Kind OtherKind)
static Attr * getCCTypeAttr(ASTContext &Ctx, ParsedAttr &Attr)
Defines the clang::SourceLocation class and associated facilities.
Defines various enumerations that describe declaration and type specifiers.
static QualType getPointeeType(const MemRegion *R)
Defines the clang::TypeLoc interface and its subclasses.
C Language Family Type Representation.
__DEVICE__ void * memcpy(void *__a, const void *__b, size_t __c)
__DEVICE__ int max(int __a, int __b)
virtual void AssignInheritanceModel(CXXRecordDecl *RD)
Callback invoked when an MSInheritanceAttr has been attached to a CXXRecordDecl.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
BuiltinVectorTypeInfo getBuiltinVectorTypeInfo(const BuiltinType *VecTy) const
Returns the element type, element count and number of vectors (in case of tuple) for a builtin vector...
TranslationUnitDecl * getTranslationUnitDecl() const
const FunctionType * adjustFunctionType(const FunctionType *Fn, FunctionType::ExtInfo EInfo)
Change the ExtInfo on a function type.
QualType getAutoType(DeducedKind DK, QualType DeducedAsType, AutoTypeKeyword Keyword, TemplateName TypeConstraintConcept=TemplateName(), ArrayRef< TemplateArgument > TypeConstraintArgs={}) const
C++11 deduced auto type.
QualType getAttributedType(attr::Kind attrKind, QualType modifiedType, QualType equivalentType, const Attr *attr=nullptr) const
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.
CallingConv getDefaultCallingConvention(bool IsVariadic, bool IsCXXMethod) const
Retrieves the default calling convention for the current context.
QualType getFunctionTypeWithExceptionSpec(QualType Orig, const FunctionProtoType::ExceptionSpecInfo &ESI) const
Get a function type and produce the equivalent function type with the specified exception specificati...
CanQualType UnsignedLongTy
QualType removeAddrSpaceQualType(QualType T) const
Remove any existing address space on the type and returns the type with qualifiers intact (or that's ...
QualType getQualifiedType(SplitQualType split) const
Un-split a SplitQualType.
QualType getObjCObjectPointerType(QualType OIT) const
Return a ObjCObjectPointerType type for the given ObjCObjectType.
QualType getObjCObjectType(QualType Base, ObjCProtocolDecl *const *Protocols, unsigned NumProtocols) const
Legacy interface: cannot provide type arguments or __kindof.
LangAS getDefaultOpenCLPointeeAddrSpace()
Returns default address space based on OpenCL version and enabled features.
QualType getWritePipeType(QualType T) const
Return a write_only pipe type for the specified type.
uint64_t getTypeSize(QualType T) const
Return the size of the specified (complete) type T, in bits.
CanQualType UnsignedInt128Ty
TypedefDecl * getBuiltinVaListDecl() const
Retrieve the C type declaration corresponding to the predefined __builtin_va_list type.
CanQualType UnsignedCharTy
CanQualType UnsignedIntTy
TypeSourceInfo * CreateTypeSourceInfo(QualType T, unsigned Size=0) const
Allocate an uninitialized TypeSourceInfo.
CanQualType UnsignedLongLongTy
CanQualType UnsignedShortTy
QualType getFunctionType(QualType ResultTy, ArrayRef< QualType > Args, const FunctionProtoType::ExtProtoInfo &EPI) const
Return a normal function type with a typed argument list.
bool hasDirectOwnershipQualifier(QualType Ty) const
Return true if the type has been explicitly qualified with ObjC ownership.
DiagnosticsEngine & getDiagnostics() const
QualType getSizeType() const
Return the unique type for "size_t" (C99 7.17), defined in <stddef.h>.
DeclarationNameInfo getNameForTemplate(TemplateName Name, SourceLocation NameLoc) const
const TargetInfo & getTargetInfo() const
QualType getAddrSpaceQualType(QualType T, LangAS AddressSpace) const
Return the uniqued reference to the type for an address space qualified type with the specified type ...
CanQualType getCanonicalTagType(const TagDecl *TD) const
QualType getObjCGCQualType(QualType T, Qualifiers::GC gcAttr) const
Return the uniqued reference to the type for an Objective-C gc-qualified type.
QualType getPointerAuthType(QualType Ty, PointerAuthQualifier PointerAuth)
Return a type with the given __ptrauth qualifier.
uint64_t getCharWidth() const
Return the size of the character type, in bits.
QualType getBitIntType(bool Unsigned, unsigned NumBits) const
Return a bit-precise integer type with the specified signedness and bit count.
void setLBracketLoc(SourceLocation Loc)
void setRBracketLoc(SourceLocation Loc)
void setSizeExpr(Expr *Size)
TypeLoc getValueLoc() const
void setKWLoc(SourceLocation Loc)
void setParensRange(SourceRange Range)
Attr - This represents one attribute.
attr::Kind getKind() const
const char * getSpelling() const
SourceRange getRange() const
bool isContextSensitiveKeywordAttribute() const
bool isRegularKeywordAttribute() const
SourceLocation getLoc() const
const IdentifierInfo * getAttrName() const
ParsedAttr * create(IdentifierInfo *attrName, SourceRange attrRange, AttributeScopeInfo scope, ArgsUnion *args, unsigned numArgs, ParsedAttr::Form form, SourceLocation ellipsisLoc=SourceLocation())
Type source information for an attributed type.
TypeLoc getModifiedLoc() const
The modified type, which is generally canonically different from the attribute type.
void setAttr(const Attr *A)
bool hasExplicitTemplateArgs() const
const NestedNameSpecifierLoc getNestedNameSpecifierLoc() const
SourceLocation getRAngleLoc() const
TemplateName getNamedConcept() const
SourceLocation getLAngleLoc() const
void setConceptReference(ConceptReference *CR)
NamedDecl * getFoundDecl() const
TemplateArgumentLoc getArgLoc(unsigned i) const
unsigned getNumArgs() const
DeclarationNameInfo getConceptNameInfo() const
void setRParenLoc(SourceLocation Loc)
TypeLoc getWrappedLoc() const
Comparison function object.
A fixed int type of a specified bitwidth.
unsigned getNumBits() const
void setCaretLoc(SourceLocation Loc)
TypeSpecifierWidth getWrittenWidthSpec() const
bool needsExtraLocalData() const
void setBuiltinLoc(SourceLocation Loc)
WrittenBuiltinSpecs & getWrittenBuiltinSpecs()
TypeSpecifierSign getWrittenSignSpec() const
void expandBuiltinRange(SourceRange Range)
This class is used for builtin types like 'int'.
Represents a C++ destructor within a class.
Represents a C++ struct/union/class.
CXXRecordDecl * getMostRecentDecl()
bool hasUserProvidedDefaultConstructor() const
Whether this class has a user-provided default constructor per C++11.
bool hasDefinition() const
MSInheritanceModel calculateInheritanceModel() const
Calculate what the inheritance model would be for this class.
bool isEmpty() const
Determine whether this is an empty class in the sense of (C++11 [meta.unary.prop]).
Represents a C++ nested-name-specifier or a global scope specifier.
bool isValid() const
A scope specifier is present, and it refers to a real scope.
SourceRange getRange() const
SourceLocation getBeginLoc() const
bool isSet() const
Deprecated.
NestedNameSpecifier getScopeRep() const
Retrieve the representation of the nested-name-specifier.
NestedNameSpecifierLoc getWithLocInContext(ASTContext &Context) const
Retrieve a nested-name-specifier with location information, copied into the given AST context.
bool isInvalid() const
An error occurred during parsing of the scope specifier.
Represents a canonical, potentially-qualified type.
SourceLocation getBegin() const
CharUnits - This is an opaque type for sizes expressed in character units.
QuantityType getQuantity() const
getQuantity - Get the raw integer representation of this quantity.
static ConceptReference * Create(const ASTContext &C, NestedNameSpecifierLoc NNS, SourceLocation TemplateKWLoc, DeclarationNameInfo ConceptNameInfo, NamedDecl *FoundDecl, TemplateName NamedConcept, const ASTTemplateArgumentListInfo *ArgsAsWritten)
const TypeClass * getTypePtr() const
TypeLoc getNextTypeLoc() const
static unsigned getNumAddressingBits(const ASTContext &Context, QualType ElementType, const llvm::APInt &NumElements)
Determine the number of bits required to address a member of.
static unsigned getMaxSizeBits(const ASTContext &Context)
Determine the maximum number of active bits that an array's size can require, which limits the maximu...
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
DeclContext * getParent()
getParent - Returns the containing DeclContext.
bool hasExternalLexicalStorage() const
Whether this DeclContext has external storage containing additional declarations that are lexically i...
bool isFunctionOrMethod() const
Returns true if this DeclContext is a function, Objective-C method, or block, or a DeclContext that c...
A reference to a declared variable, function, enum, etc.
Captures information about "declaration specifiers".
const WrittenBuiltinSpecs & getWrittenBuiltinSpecs() const
bool isTypeSpecPipe() const
static const TST TST_typeof_unqualType
SourceLocation getTypeSpecSignLoc() const
bool hasAutoTypeSpec() const
static const TST TST_typename
SourceLocation getEndLoc() const LLVM_READONLY
bool hasTypeSpecifier() const
Return true if any type-specifier has been found.
static const TST TST_char8
static const TST TST_BFloat16
Expr * getPackIndexingExpr() const
TST getTypeSpecType() const
SCS getStorageClassSpec() const
SourceLocation getOverflowBehaviorLoc() const
SourceLocation getBeginLoc() const LLVM_READONLY
bool isTypeSpecSat() const
SourceRange getSourceRange() const LLVM_READONLY
static const TST TST_auto_type
static const TST TST_interface
static const TST TST_double
static const TST TST_typeofExpr
unsigned getTypeQualifiers() const
getTypeQualifiers - Return a set of TQs.
TemplateIdAnnotation * getRepAsTemplateId() const
static const TST TST_union
static const TST TST_typename_pack_indexing
static const TST TST_char
static const TST TST_bool
static const TST TST_char16
static const TST TST_unknown_anytype
TSC getTypeSpecComplex() const
ParsedType getRepAsType() const
static const TST TST_accum
static const TST TST_half
ParsedAttributes & getAttributes()
SourceLocation getEllipsisLoc() const
bool isTypeAltiVecPixel() const
void ClearTypeQualifiers()
Clear out all of the type qualifiers.
SourceLocation getConstSpecLoc() const
static const TST TST_ibm128
Expr * getRepAsExpr() const
static const TST TST_enum
AttributePool & getAttributePool() const
bool isWrapSpecified() const
static const TST TST_float128
static const TST TST_decltype
SourceRange getTypeSpecWidthRange() const
SourceLocation getTypeSpecTypeNameLoc() const
SourceLocation getTypeSpecWidthLoc() const
SourceLocation getRestrictSpecLoc() const
static const TST TST_typeof_unqualExpr
static const TST TST_class
bool isOverflowBehaviorSpecified() const
bool hasTagDefinition() const
static const TST TST_decimal64
unsigned getParsedSpecifiers() const
Return a bitmask of which flavors of specifiers this DeclSpec includes.
bool isTypeAltiVecBool() const
bool isConstrainedAuto() const
static const TST TST_wchar
SourceLocation getTypeSpecComplexLoc() const
static const TST TST_void
bool isTypeAltiVecVector() const
static const TST TST_bitint
static const char * getSpecifierName(DeclSpec::TST T, const PrintingPolicy &Policy)
Turn a type-specifier-type into a string like "_Bool" or "union".
static const TST TST_float
static const TST TST_atomic
bool isTrapSpecified() const
static const TST TST_fract
Decl * getRepAsDecl() const
static const TST TST_float16
static bool isTransformTypeTrait(TST T)
static const TST TST_unspecified
SourceLocation getAtomicSpecLoc() const
TypeSpecifierSign getTypeSpecSign() const
CXXScopeSpec & getTypeSpecScope()
SourceLocation getTypeSpecTypeLoc() const
OverflowBehaviorState getOverflowBehaviorState() const
static const TST TST_decltype_auto
static const TST TST_error
void forEachQualifier(llvm::function_ref< void(TQ, StringRef, SourceLocation)> Handle)
This method calls the passed in handler on each qual being set.
static const TST TST_decimal32
TypeSpecifierWidth getTypeSpecWidth() const
static const TST TST_char32
static const TST TST_decimal128
bool isTypeSpecOwned() const
SourceLocation getTypeSpecSatLoc() const
SourceRange getTypeofParensRange() const
SourceLocation getUnalignedSpecLoc() const
static const TST TST_int128
SourceLocation getVolatileSpecLoc() const
FriendSpecified isFriendSpecified() const
static const TST TST_typeofType
static const TST TST_auto
ConstexprSpecKind getConstexprSpecifier() const
static const TST TST_struct
Decl - This represents one declaration (or definition), e.g.
ASTContext & getASTContext() const LLVM_READONLY
Module * getOwningModule() const
Get the module that owns this declaration (for visibility purposes).
bool isInvalidDecl() const
SourceLocation getLocation() const
void setImplicit(bool I=true)
redecl_range redecls() const
Returns an iterator range for all the redeclarations of the same decl.
virtual SourceRange getSourceRange() const LLVM_READONLY
Source range that this declaration covers.
void setVisibleDespiteOwningModule()
Set that this declaration is globally visible, even if it came from a module that is not visible.
The name of a declaration.
IdentifierInfo * getAsIdentifierInfo() const
Retrieve the IdentifierInfo * stored in this declaration name, or null if this declaration name isn't...
std::string getAsString() const
Retrieve the human-readable string for this name.
NameKind getNameKind() const
Determine what kind of name this is.
Information about one declarator, including the parsed type information and the identifier.
bool isFunctionDeclarator(unsigned &idx) const
isFunctionDeclarator - This method returns true if the declarator is a function declarator (looking t...
const DeclaratorChunk & getTypeObject(unsigned i) const
Return the specified TypeInfo from this declarator.
const DeclSpec & getDeclSpec() const
getDeclSpec - Return the declaration-specifier that this declarator was declared with.
const DeclaratorChunk * getInnermostNonParenChunk() const
Return the innermost (closest to the declarator) chunk of this declarator that is not a parens chunk,...
void AddInnermostTypeInfo(const DeclaratorChunk &TI)
Add a new innermost chunk to this declarator.
bool isFunctionDeclarationContext() const
Return true if this declaration appears in a context where a function declarator would be a function ...
FunctionDefinitionKind getFunctionDefinitionKind() const
const ParsedAttributes & getAttributes() const
SourceLocation getIdentifierLoc() const
bool hasTrailingReturnType() const
Determine whether a trailing return type was written (at any level) within this declarator.
SourceLocation getEndLoc() const LLVM_READONLY
bool isExpressionContext() const
Determine whether this declaration appears in a context where an expression could appear.
type_object_range type_objects() const
Returns the range of type objects, from the identifier outwards.
void setInvalidType(bool Val=true)
unsigned getNumTypeObjects() const
Return the number of types applied to this declarator.
const ParsedAttributesView & getDeclarationAttributes() const
SourceLocation getEllipsisLoc() const
DeclaratorContext getContext() const
SourceLocation getBeginLoc() const LLVM_READONLY
UnqualifiedId & getName()
Retrieve the name specified by this declarator.
bool isFirstDeclarator() const
SourceLocation getCommaLoc() const
AttributePool & getAttributePool() const
const CXXScopeSpec & getCXXScopeSpec() const
getCXXScopeSpec - Return the C++ scope specifier (global scope or nested-name-specifier) that is part...
ParsedType getTrailingReturnType() const
Get the trailing return type appearing (at any level) within this declarator.
bool isInvalidType() const
bool isExplicitObjectMemberFunction()
SourceRange getSourceRange() const LLVM_READONLY
Get the source range that spans this declarator.
bool isFirstDeclarationOfMember()
Returns true if this declares a real member and not a friend.
bool isPrototypeContext() const
bool isStaticMember()
Returns true if this declares a static member.
DeclSpec & getMutableDeclSpec()
getMutableDeclSpec - Return a non-const version of the DeclSpec.
DeclaratorChunk::FunctionTypeInfo & getFunctionTypeInfo()
getFunctionTypeInfo - Retrieves the function type info object (looking through parentheses).
void setEllipsisLoc(SourceLocation EL)
const IdentifierInfo * getIdentifier() const
void setRParenLoc(SourceLocation Loc)
void setDecltypeLoc(SourceLocation Loc)
void setAttrNameLoc(SourceLocation loc)
void setAttrOperandParensRange(SourceRange range)
void setAttrExprOperand(Expr *e)
Represents an extended address space qualifier where the input address space value is dependent.
void copy(DependentNameTypeLoc Loc)
void setNameLoc(SourceLocation Loc)
void setNameLoc(SourceLocation Loc)
bool isIgnored(unsigned DiagID, SourceLocation Loc) const
Determine whether the diagnostic is known to be ignored.
bool getSuppressSystemWarnings() const
Wrap a function effect's condition expression in another struct so that FunctionProtoType's TrailingO...
void set(SourceLocation ElaboratedKeywordLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation NameLoc)
QualType getIntegerType() const
Return the integer type this enum decl corresponds to.
EnumDecl * getDefinition() const
This represents one expression.
bool isValueDependent() const
Determines whether the value of this expression depends on.
bool isTypeDependent() const
Determines whether the type of this expression depends on.
Expr * IgnoreParenImpCasts() LLVM_READONLY
Skip past any parentheses and implicit casts which might surround this expression until reaching a fi...
Expr * IgnoreParens() LLVM_READONLY
Skip past any parentheses which might surround this expression until reaching a fixed point.
bool HasSideEffects(const ASTContext &Ctx, bool IncludePossibleEffects=true) const
HasSideEffects - This routine returns true for all those expressions which have any effect other than...
bool isInstantiationDependent() const
Whether this expression is instantiation-dependent, meaning that it depends in some way on.
std::optional< llvm::APSInt > getIntegerConstantExpr(const ASTContext &Ctx, bool AllowRelaxedEval=false) const
isIntegerConstantExpr - Return the value if this expression is a valid integer constant expression.
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
bool refersToBitField() const
Returns true if this expression is a gl-value that potentially refers to a bit-field.
bool hasPlaceholderType() const
Returns whether this expression has a placeholder type.
An opaque identifier used by SourceManager which refers to a source file (MemoryBuffer) along with it...
Annotates a diagnostic with some code that should be inserted, removed, or replaced to fix the proble...
static FixItHint CreateReplacement(CharSourceRange RemoveRange, StringRef Code)
Create a code modification hint that replaces the given source range with the given code string.
static FixItHint CreateRemoval(CharSourceRange RemoveRange)
Create a code modification hint that removes the given source range.
static FixItHint CreateInsertion(SourceLocation InsertionLoc, StringRef Code, bool BeforePreviousInsertions=false)
Create a code modification hint that inserts the given code string at a specific location.
A SourceLocation and its associated SourceManager.
unsigned getSpellingLineNumber(bool *Invalid=nullptr) const
A mutable set of FunctionEffects and possibly conditions attached to them.
bool insert(const FunctionEffectWithCondition &NewEC, Conflicts &Errs)
SmallVector< Conflict > Conflicts
Represents an abstract function effect, using just an enumeration describing its kind.
Kind
Identifies the particular effect.
An immutable set of FunctionEffects and possibly conditions attached to them.
Represents a prototype with parameter type info, e.g.
Qualifiers getMethodQuals() const
bool isVariadic() const
Whether this function prototype is variadic.
ExtProtoInfo getExtProtoInfo() const
ArrayRef< QualType > getParamTypes() const
RefQualifierKind getRefQualifier() const
Retrieve the ref-qualifier associated with this function type.
unsigned getNumParams() const
void setLocalRangeBegin(SourceLocation L)
void setLParenLoc(SourceLocation Loc)
void setParam(unsigned i, ParmVarDecl *VD)
void setRParenLoc(SourceLocation Loc)
void setLocalRangeEnd(SourceLocation L)
void setExceptionSpecRange(SourceRange R)
A class which abstracts out some details necessary for making a call.
ExtInfo withCallingConv(CallingConv cc) const
CallingConv getCC() const
bool getProducesResult() const
ParameterABI getABI() const
Return the ABI treatment of this parameter.
FunctionType - C99 6.7.5.3 - Function Declarators.
ExtInfo getExtInfo() const
static StringRef getNameForCallConv(CallingConv CC)
AArch64SMETypeAttributes
The AArch64 SME ACLE (Arm C/C++ Language Extensions) define a number of function type attributes that...
@ SME_PStateSMEnabledMask
@ SME_PStateSMCompatibleMask
@ SME_AgnosticZAStateMask
static ArmStateValue getArmZT0State(unsigned AttrBits)
static ArmStateValue getArmZAState(unsigned AttrBits)
CallingConv getCallConv() const
QualType getReturnType() const
bool getHasRegParm() const
Type source information for HLSL attributed resource type.
TypeLoc getWrappedLoc() const
void setContainedTypeSourceInfo(TypeSourceInfo *TSI) const
void setSourceRange(const SourceRange &R)
One of these records is kept for each identifier that is lexed.
bool isStr(const char(&Str)[StrLen]) const
Return true if this is the identifier for the specified string.
StringRef getName() const
Return the actual identifier string.
A simple pair of identifier info and location.
void setIdentifierInfo(IdentifierInfo *Ident)
IdentifierInfo & get(StringRef Name)
Return the identifier token info for the specified named identifier.
ElaboratedTypeKeyword getKeyword() const
void setAmpLoc(SourceLocation Loc)
An lvalue reference type, per C++11 [dcl.ref].
@ PPTMK_FullGeneralityMultipleInheritance
@ PPTMK_FullGeneralityVirtualInheritance
@ PPTMK_FullGeneralitySingleInheritance
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
bool requiresStrictPrototypes() const
Returns true if functions without prototypes or functions with an identifier list (aka K&R C function...
bool isImplicitIntAllowed() const
Returns true if implicit int is supported at all.
bool allowArrayReturnTypes() const
bool isTargetDevice() const
True when compiling for an offloading target device.
bool isImplicitIntRequired() const
Returns true if implicit int is part of the language requirements.
unsigned getOpenCLCompatibleVersion() const
Return the OpenCL version that kernel language is compatible with.
Holds a QualType and a TypeSourceInfo* that came out of a declarator parsing.
void getAsStringInternal(std::string &Str, const PrintingPolicy &Policy) const
Represents the results of name lookup.
TypeLoc getInnerLoc() const
void setExpansionLoc(SourceLocation Loc)
Sugar type that represents a type that was qualified by a qualifier written as a macro invocation.
void setAttrRowOperand(Expr *e)
void setAttrColumnOperand(Expr *e)
void setAttrOperandParensRange(SourceRange range)
void setAttrNameLoc(SourceLocation loc)
static bool isValidElementType(QualType T, const LangOptions &LangOpts)
Valid elements types are the following:
void setStarLoc(SourceLocation Loc)
void setQualifierLoc(NestedNameSpecifierLoc QualifierLoc)
A pointer to member type per C++ 8.3.3 - Pointers to members.
NestedNameSpecifier getQualifier() const
CXXRecordDecl * getMostRecentCXXRecordDecl() const
Note: this can trigger extra deserialization when external AST sources are used.
QualType getPointeeType() const
TemplateSpecializationKind getTemplateSpecializationKind() const
Determine what kind of template specialization this is.
bool isHeaderLikeModule() const
Is this module have similar semantics as headers.
This represents a decl that may have a name.
bool isModulePrivate() const
Whether this declaration was marked as being private to the module in which it was defined.
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
NamespaceAndPrefix getAsNamespaceAndPrefix() const
const Type * getAsType() const
@ Global
The global specifier '::'. There is no stored value.
@ Type
A type, stored as a Type*.
@ Namespace
A namespace-like entity, stored as a NamespaceBaseDecl*.
Represents an ObjC class declaration.
void setNameLoc(SourceLocation Loc)
void setNameEndLoc(SourceLocation Loc)
Represents typeof(type), a C23 feature and GCC extension, or `typeof_unqual(type),...
Wraps an ObjCPointerType with source location information.
void setStarLoc(SourceLocation Loc)
Represents a pointer to an Objective C object.
const ObjCObjectType * getObjectType() const
Gets the type pointed to by this ObjC pointer.
static OpaquePtr make(QualType P)
OpenCL supported extensions and optional core features.
bool isAvailableOption(llvm::StringRef Ext, const LangOptions &LO) const
bool isSupported(llvm::StringRef Ext, const LangOptions &LO) const
TypeLoc getWrappedLoc() const
void setEllipsisLoc(SourceLocation Loc)
A parameter attribute which changes the argument-passing ABI rule for the parameter.
void setRParenLoc(SourceLocation Loc)
void setLParenLoc(SourceLocation Loc)
Represents a parameter to a function.
ParsedAttr - Represents a syntactic attribute.
void setInvalid(bool b=true) const
unsigned getNumArgs() const
getNumArgs - Return the number of actual arguments to this attribute.
bool isArgIdent(unsigned Arg) const
Expr * getArgAsExpr(unsigned Arg) const
AttributeCommonInfo::Kind getKind() const
void setUsedAsTypeAttr(bool Used=true)
bool checkAtMostNumArgs(class Sema &S, unsigned Num) const
Check if the attribute has at most as many args as Num.
bool hasMSPropertyAttr() const
void addAtEnd(ParsedAttr *newAttr)
bool hasAttribute(ParsedAttr::Kind K) const
void remove(ParsedAttr *ToBeRemoved)
void takeOneFrom(ParsedAttributes &Other, ParsedAttr *PA)
TypeLoc getValueLoc() const
void setKWLoc(SourceLocation Loc)
Pointer-authentication qualifiers.
static PointerAuthQualifier Create(unsigned Key, bool IsAddressDiscriminated, unsigned ExtraDiscriminator, PointerAuthenticationMode AuthenticationMode, bool IsIsaPointer, bool AuthenticatesNullValues)
@ MaxKey
The maximum supported pointer-authentication key.
void setStarLoc(SourceLocation Loc)
PointerType - C99 6.7.5.1 - Pointer Declarators.
SourceLocation getPragmaAssumeNonNullLoc() const
The location of the currently-active #pragma clang assume_nonnull begin.
A (possibly-)qualified type.
bool isVolatileQualified() const
Determine whether this type is volatile-qualified.
bool hasQualifiers() const
Determine whether this type has any qualifiers.
PointerAuthQualifier getPointerAuth() const
QualType getDesugaredType(const ASTContext &Context) const
Return the specified type with any "sugar" removed from the type.
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.
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...
unsigned getLocalCVRQualifiers() const
Retrieve the set of CVR (const-volatile-restrict) qualifiers local to this particular QualType instan...
SplitQualType split() const
Divides a QualType into its unqualified type and a set of local qualifiers.
SplitQualType getSplitUnqualifiedType() const
Retrieve the unqualified variant of the given type, removing as little sugar as possible.
bool hasAddressSpace() const
Check if this type has any address space qualifier.
unsigned getCVRQualifiers() const
Retrieve the set of CVR (const-volatile-restrict) qualifiers applied to this type.
UnqualTypeLoc getUnqualifiedLoc() const
The collection of all-type qualifiers we support.
void removeCVRQualifiers(unsigned mask)
void addAddressSpace(LangAS space)
@ OCL_Strong
Assigning into this object requires the old value to be released and the new value to be retained.
@ OCL_ExplicitNone
This object can be modified without requiring retains or releases.
@ OCL_None
There is no lifetime qualification on this type.
@ OCL_Weak
Reading or writing from this object requires a barrier call.
@ OCL_Autoreleasing
Assigning into this object requires a lifetime extension.
void removeObjCLifetime()
void addCVRUQualifiers(unsigned mask)
static Qualifiers fromCVRMask(unsigned CVR)
void setUnaligned(bool flag)
std::string getAsString() const
@ MaxAddressSpace
The maximum supported address space number.
void addObjCLifetime(ObjCLifetime type)
void setAmpAmpLoc(SourceLocation Loc)
QualType getPointeeType() const
bool isSpelledAsLValue() const
bool isFunctionDeclarationScope() const
isFunctionDeclarationScope - Return true if this scope is a function prototype scope.
A generic diagnostic builder for errors which may or may not be deferred.
SemaDiagnosticBuilder DiagCompat(SourceLocation Loc, unsigned CompatDiagId)
Emit a compatibility diagnostic.
SemaDiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID)
Emit a diagnostic.
CUDAFunctionTarget IdentifyTarget(const FunctionDecl *D, bool IgnoreImplicitHDAttr=false)
Determines whether the given function is a CUDA device/host/kernel/etc.
QualType ProcessResourceTypeAttributes(QualType Wrapped)
QualType getInoutParameterType(QualType Ty)
bool isCFError(RecordDecl *D)
IdentifierInfo * getNSErrorIdent()
Retrieve the identifier "NSError".
bool checkNSReturnsRetainedReturnType(SourceLocation loc, QualType type)
bool shouldDelayDiagnostics()
Determines whether diagnostics should be delayed.
void add(const sema::DelayedDiagnostic &diag)
Adds a delayed diagnostic.
Abstract base class used for diagnosing integer constant expression violations.
Sema - This implements semantic analysis and AST building for C.
bool hasReachableDefinition(NamedDecl *D, NamedDecl **Suggested, bool OnlyNeedComplete=false)
Determine if D has a reachable definition.
QualType BuildParenType(QualType T)
Build a paren type including T.
ParsedType CreateParsedType(QualType T, TypeSourceInfo *TInfo)
Package the given type and TSI into a ParsedType.
bool ConstantFoldAttrArgs(const AttributeCommonInfo &CI, MutableArrayRef< Expr * > Args)
ConstantFoldAttrArgs - Folds attribute arguments into ConstantExprs (unless they are value dependent ...
SmallVector< CodeSynthesisContext, 16 > CodeSynthesisContexts
List of active code synthesis contexts.
Scope * getCurScope() const
Retrieve the parser's current scope.
bool hasStructuralCompatLayout(Decl *D, Decl *Suggested)
Determine if D and Suggested have a structurally compatible layout as described in C11 6....
bool checkArrayElementAlignment(QualType EltTy, SourceLocation Loc)
bool RequireCompleteSizedType(SourceLocation Loc, QualType T, unsigned DiagID, const Ts &...Args)
@ LookupOrdinaryName
Ordinary name lookup, which finds ordinary names (functions, variables, typedefs, etc....
UnaryTransformType::UTTKind UTTKind
QualType BuildAddressSpaceAttr(QualType &T, LangAS ASIdx, Expr *AddrSpace, SourceLocation AttrLoc)
BuildAddressSpaceAttr - Builds a DependentAddressSpaceType if an expression is uninstantiated.
bool checkPointerAuthDiscriminatorArg(Expr *Arg, PointerAuthDiscArgKind Kind, unsigned &IntVal)
QualType BuildVectorType(QualType T, Expr *VecSize, SourceLocation AttrLoc)
std::optional< FunctionEffectMode > ActOnEffectExpression(Expr *CondExpr, StringRef AttributeName)
Try to parse the conditional expression attached to an effect attribute (e.g.
@ AcceptSizeless
Relax the normal rules for complete types so that they include sizeless built-in types.
class clang::Sema::DelayedDiagnostics DelayedDiagnostics
QualType BuildExtVectorType(QualType T, Expr *ArraySize, SourceLocation AttrLoc)
Build an ext-vector type.
bool CheckVarDeclSizeAddressSpace(const VarDecl *VD, LangAS AS)
Check whether the given variable declaration has a size that fits within the address space it is decl...
const AttributedType * getCallingConvAttributedType(QualType T) const
Get the outermost AttributedType node that sets a calling convention.
bool hasMergedDefinitionInCurrentModule(const NamedDecl *Def)
bool InstantiateClassTemplateSpecialization(SourceLocation PointOfInstantiation, ClassTemplateSpecializationDecl *ClassTemplateSpec, TemplateSpecializationKind TSK, bool Complain, bool PrimaryStrictPackMatch)
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.
QualType BuildFunctionType(QualType T, MutableArrayRef< QualType > ParamTypes, SourceLocation Loc, DeclarationName Entity, const FunctionProtoType::ExtProtoInfo &EPI)
Build a function type.
bool AttachTypeConstraint(NestedNameSpecifierLoc NS, DeclarationNameInfo NameInfo, TemplateName NamedConcept, NamedDecl *FoundDecl, const TemplateArgumentListInfo *TemplateArgs, TemplateTypeParmDecl *ConstrainedParameter, SourceLocation EllipsisLoc)
Attach a type-constraint to a template parameter.
bool SpecialMemberIsTrivial(CXXMethodDecl *MD, CXXSpecialMemberKind CSM, TrivialABIHandling TAH=TrivialABIHandling::IgnoreTrivialABI, bool Diagnose=false)
Determine whether a defaulted or deleted special member function is trivial, as specified in C++11 [c...
void checkSpecializationReachability(SourceLocation Loc, NamedDecl *Spec)
ASTContext & getASTContext() const
void translateTemplateArguments(const ASTTemplateArgsPtr &In, TemplateArgumentListInfo &Out)
Translates template arguments as provided by the parser into template arguments used by semantic anal...
void checkExceptionSpecification(bool IsTopLevel, ExceptionSpecificationType EST, ArrayRef< ParsedType > DynamicExceptions, ArrayRef< SourceRange > DynamicExceptionRanges, Expr *NoexceptExpr, SmallVectorImpl< QualType > &Exceptions, FunctionProtoType::ExceptionSpecInfo &ESI)
Check the given exception-specification and update the exception specification information with the r...
void InstantiateVariableDefinition(SourceLocation PointOfInstantiation, VarDecl *Var, bool Recursive=false, bool DefinitionRequired=false, bool AtEndOfTU=false)
Instantiate the definition of the given variable from its template.
bool CheckCallingConvAttr(const ParsedAttr &attr, CallingConv &CC, const FunctionDecl *FD=nullptr, CUDAFunctionTarget CFT=CUDAFunctionTarget::InvalidTarget)
Check validaty of calling convention attribute attr.
bool RequireLiteralType(SourceLocation Loc, QualType T, TypeDiagnoser &Diagnoser)
Ensure that the type T is a literal type.
QualType BuildCountAttributedArrayOrPointerType(QualType WrappedTy, Expr *CountExpr, bool CountInBytes, bool OrNull)
std::string getFixItZeroInitializerForType(QualType T, SourceLocation Loc) const
Get a string to suggest for zero-initialization of a type.
bool CheckAttrNoArgs(const ParsedAttr &CurrAttr)
ExprResult CheckConvertedConstantExpression(Expr *From, QualType T, llvm::APSInt &Value, CCEKind CCE)
QualType BuildBitIntType(bool IsUnsigned, Expr *BitWidth, SourceLocation Loc)
Build a bit-precise integer type.
LangAS getDefaultCXXMethodAddrSpace() const
Returns default addr space for method qualifiers.
QualType BuiltinRemoveReference(QualType BaseType, UTTKind UKind, SourceLocation Loc)
QualType BuildQualifiedType(QualType T, SourceLocation Loc, Qualifiers Qs, const DeclSpec *DS=nullptr)
bool CheckFunctionReturnType(QualType T, SourceLocation Loc)
SourceLocation getLocForEndOfToken(SourceLocation Loc, unsigned Offset=0)
Calls Lexer::getLocForEndOfToken()
@ UPPC_TypeConstraint
A type constraint.
const LangOptions & getLangOpts() const
bool RequireCompleteExprType(Expr *E, CompleteTypeKind Kind, TypeDiagnoser &Diagnoser)
Ensure that the type of the given expression is complete.
void NoteTemplateLocation(const NamedDecl &Decl, std::optional< SourceRange > ParamRange={})
QualType BuiltinEnumUnderlyingType(QualType BaseType, SourceLocation Loc)
bool DiagnoseUnexpandedParameterPack(SourceLocation Loc, TypeSourceInfo *T, UnexpandedParameterPackContext UPPC)
If the given type contains an unexpanded parameter pack, diagnose the error.
bool RequireNonAbstractType(SourceLocation Loc, QualType T, TypeDiagnoser &Diagnoser)
void CheckExtraCXXDefaultArguments(Declarator &D)
CheckExtraCXXDefaultArguments - Check for any extra default arguments in the declarator,...
const LangOptions & LangOpts
sema::LambdaScopeInfo * getCurLambda(bool IgnoreNonLambdaCapturingScope=false)
Retrieve the current lambda scope info, if any.
IdentifierInfo * InventAbbreviatedTemplateParameterTypeName(const IdentifierInfo *ParamName, unsigned Index)
Invent a new identifier for parameters of abbreviated templates.
bool checkConstantPointerAuthKey(Expr *keyExpr, unsigned &key)
SourceLocation ImplicitMSInheritanceAttrLoc
Source location for newly created implicit MSInheritanceAttrs.
SmallVector< InventedTemplateParameterInfo, 4 > InventedParameterInfos
Stack containing information needed when in C++2a an 'auto' is encountered in a function declaration ...
void completeExprArrayBound(Expr *E)
bool hasExplicitCallingConv(QualType T)
bool CheckRegparmAttr(const ParsedAttr &attr, unsigned &value)
Checks a regparm attribute, returning true if it is ill-formed and otherwise setting numParams to the...
FileNullabilityMap NullabilityMap
A mapping that describes the nullability we've seen in each header file.
sema::FunctionScopeInfo * getCurFunction() const
QualType BuildReferenceType(QualType T, bool LValueRef, SourceLocation Loc, DeclarationName Entity)
Build a reference type.
bool findMacroSpelling(SourceLocation &loc, StringRef name)
Looks through the macro-expansion chain for the given location, looking for a macro expansion with th...
QualType BuildMemberPointerType(QualType T, const CXXScopeSpec &SS, CXXRecordDecl *Cls, SourceLocation Loc, DeclarationName Entity)
Build a member pointer type T Class::*.
ExprResult DefaultLvalueConversion(Expr *E)
DeclContext * CurContext
CurContext - This is the current declaration context of parsing.
MultiLevelTemplateArgumentList getTemplateInstantiationArgs(const NamedDecl *D, const DeclContext *DC=nullptr, bool Final=false, std::optional< ArrayRef< TemplateArgument > > Innermost=std::nullopt, bool RelativeToPrimary=false, const FunctionDecl *Pattern=nullptr, bool ForConstraintInstantiation=false, bool SkipForSpecialization=false, bool ForDefaultArgumentSubstitution=false)
Retrieve the template argument list(s) that should be used to instantiate the definition of the given...
QualType BuiltinDecay(QualType BaseType, SourceLocation Loc)
IdentifierInfo * getNullabilityKeyword(NullabilityKind nullability)
Retrieve the keyword associated.
bool isUnevaluatedContext() const
Determines whether we are currently in a context that is not evaluated as per C++ [expr] p5.
TemplateNameKindForDiagnostics getTemplateNameKindForDiagnostics(TemplateName Name)
bool isAcceptable(const NamedDecl *D, AcceptableKind Kind)
Determine whether a declaration is acceptable (visible/reachable).
QualType getDecltypeForExpr(Expr *E)
getDecltypeForExpr - Given an expr, will return the decltype for that expression, according to the ru...
ExprResult CheckPlaceholderExpr(Expr *E)
Check for operands with placeholder types and complain if found.
bool hasVisibleDefinition(NamedDecl *D, NamedDecl **Suggested, bool OnlyNeedComplete=false)
Determine if D has a visible definition.
bool inTemplateInstantiation() const
Determine whether we are currently performing template instantiation.
SourceManager & getSourceManager() const
QualType BuiltinAddReference(QualType BaseType, UTTKind UKind, SourceLocation Loc)
bool hasVisibleMergedDefinition(const NamedDecl *Def)
QualType BuildPackIndexingType(QualType Pattern, Expr *IndexExpr, SourceLocation Loc, SourceLocation EllipsisLoc, bool FullySubstituted=false, ArrayRef< QualType > Expansions={})
DeclContext * computeDeclContext(QualType T)
Compute the DeclContext that is associated with the given type.
QualType BuildAtomicType(QualType T, SourceLocation Loc)
void diagnoseMissingImport(SourceLocation Loc, const NamedDecl *Decl, MissingImportKind MIK, bool Recover=true)
Diagnose that the specified declaration needs to be visible but isn't, and suggest a module import th...
bool diagnoseConflictingFunctionEffect(const FunctionEffectsRef &FX, const FunctionEffectWithCondition &EC, SourceLocation NewAttrLoc)
Warn and return true if adding a function effect to a set would create a conflict.
TypeSourceInfo * ReplaceAutoTypeSourceInfo(TypeSourceInfo *TypeWithAuto, QualType Replacement)
TypeResult ActOnTypeName(Declarator &D)
bool isSFINAEContext() const
bool isCompleteType(SourceLocation Loc, QualType T, CompleteTypeKind Kind=CompleteTypeKind::Default)
bool InstantiateClass(SourceLocation PointOfInstantiation, CXXRecordDecl *Instantiation, CXXRecordDecl *Pattern, const MultiLevelTemplateArgumentList &TemplateArgs, TemplateSpecializationKind TSK, bool Complain=true)
Instantiate the definition of a class from a given pattern.
void checkUnusedDeclAttributes(Declarator &D)
checkUnusedDeclAttributes - Given a declarator which is not being used to build a declaration,...
QualType BuildPointerType(QualType T, SourceLocation Loc, DeclarationName Entity)
Build a pointer type.
bool CheckAttrTarget(const ParsedAttr &CurrAttr)
QualType BuiltinAddPointer(QualType BaseType, SourceLocation Loc)
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 ...
IntrusiveRefCntPtr< ExternalSemaSource > ExternalSource
Source of additional semantic information.
bool CheckImplicitNullabilityTypeSpecifier(QualType &Type, NullabilityKind Nullability, SourceLocation DiagLoc, bool AllowArrayTypes, bool OverrideExisting)
Check whether a nullability type specifier can be added to the given type through some means not writ...
void CheckConstrainedAuto(const AutoType *AutoT, SourceLocation Loc)
bool CheckDistantExceptionSpec(QualType T)
CheckDistantExceptionSpec - Check if the given type is a pointer or pointer to member to a function w...
QualType BuildDecltypeType(Expr *E, bool AsUnevaluated=true)
If AsUnevaluated is false, E is treated as though it were an evaluated context, such as when building...
QualType BuildUnaryTransformType(QualType BaseType, UTTKind UKind, SourceLocation Loc)
TypeSourceInfo * GetTypeForDeclarator(Declarator &D)
GetTypeForDeclarator - Convert the type for the specified declarator to Type instances.
TypeSourceInfo * GetTypeForDeclaratorCast(Declarator &D, QualType FromTy)
bool RequireCompleteType(SourceLocation Loc, QualType T, CompleteTypeKind Kind, TypeDiagnoser &Diagnoser)
Ensure that the type T is a complete type.
QualType getCapturedDeclRefType(ValueDecl *Var, SourceLocation Loc)
Given a variable, determine the type that a reference to that variable will have in the given scope.
QualType BuiltinRemoveExtent(QualType BaseType, UTTKind UKind, SourceLocation Loc)
QualType getCompletedType(Expr *E)
Get the type of expression E, triggering instantiation to complete the type if necessary – that is,...
QualType BuiltinChangeCVRQualifiers(QualType BaseType, UTTKind UKind, SourceLocation Loc)
bool isDependentScopeSpecifier(const CXXScopeSpec &SS)
SourceManager & SourceMgr
DiagnosticsEngine & Diags
OpenCLOptions & getOpenCLOptions()
QualType BuiltinRemovePointer(QualType BaseType, SourceLocation Loc)
QualType BuildArrayType(QualType T, ArraySizeModifier ASM, Expr *ArraySize, unsigned Quals, SourceRange Brackets, DeclarationName Entity)
Build an array type.
bool CheckQualifiedFunctionForTypeId(QualType T, SourceLocation Loc)
QualType BuildReadPipeType(QualType T, SourceLocation Loc)
Build a Read-only Pipe type.
void diagnoseIgnoredQualifiers(unsigned DiagID, unsigned Quals, SourceLocation FallbackLoc, SourceLocation ConstQualLoc=SourceLocation(), SourceLocation VolatileQualLoc=SourceLocation(), SourceLocation RestrictQualLoc=SourceLocation(), SourceLocation AtomicQualLoc=SourceLocation(), SourceLocation UnalignedQualLoc=SourceLocation())
LangOptions::PragmaMSPointersToMembersKind MSPointerToMemberRepresentationMethod
Controls member pointer representation format under the MS ABI.
llvm::BumpPtrAllocator BumpAlloc
QualType BuildWritePipeType(QualType T, SourceLocation Loc)
Build a Write-only Pipe type.
QualType ActOnPackIndexingType(QualType Pattern, Expr *IndexExpr, SourceLocation Loc, SourceLocation EllipsisLoc)
QualType BuildTypeofExprType(Expr *E, TypeOfKind Kind)
void runWithSufficientStackSpace(SourceLocation Loc, llvm::function_ref< void()> Fn)
Run some code with "sufficient" stack space.
QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns, SourceLocation AttrLoc)
SemaDiagnosticBuilder targetDiag(SourceLocation Loc, unsigned DiagID, const FunctionDecl *FD=nullptr)
bool hasAcceptableDefinition(NamedDecl *D, NamedDecl **Suggested, AcceptableKind Kind, bool OnlyNeedComplete=false)
QualType BuiltinChangeSignedness(QualType BaseType, UTTKind UKind, SourceLocation Loc)
void adjustMemberFunctionCC(QualType &T, bool HasThisPointer, bool IsCtorOrDtor, SourceLocation Loc)
Adjust the calling convention of a method to be the ABI default if it wasn't specified explicitly.
bool LookupName(LookupResult &R, Scope *S, bool AllowBuiltinCreation=false, bool ForceNoCPlusPlus=false)
Perform unqualified name lookup starting from a given scope.
static QualType GetTypeFromParser(ParsedType Ty, TypeSourceInfo **TInfo=nullptr)
void checkNonTrivialCUnion(QualType QT, SourceLocation Loc, NonTrivialCUnionContext UseContext, unsigned NonTrivialKind)
Emit diagnostics if a non-trivial C union type or a struct that contains a non-trivial C union is use...
bool checkStringLiteralArgumentAttr(const AttributeCommonInfo &CI, const Expr *E, StringRef &Str, SourceLocation *ArgLocation=nullptr)
Check if the argument E is a ASCII string literal.
QualType BuildBlockPointerType(QualType T, SourceLocation Loc, DeclarationName Entity)
Build a block pointer type.
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
FileID getFileID(SourceLocation SpellingLoc) const
Return the FileID for a SourceLocation.
const char * getCharacterData(SourceLocation SL, bool *Invalid=nullptr) const
Return a pointer to the start of the specified location in the appropriate spelling MemoryBuffer.
CharSourceRange getImmediateExpansionRange(SourceLocation Loc) const
Return the start/end of the expansion information for an expansion location.
SourceLocation getExpansionLoc(SourceLocation Loc) const
Given a SourceLocation object Loc, return the expansion location referenced by the ID.
const SrcMgr::SLocEntry & getSLocEntry(FileID FID, bool *Invalid=nullptr) const
A trivial tuple used to represent a source range.
SourceLocation getEnd() const
SourceLocation getBegin() const
Information about a FileID, basically just the logical file that it represents and include stack info...
CharacteristicKind getFileCharacteristic() const
Return whether this is a system header or not.
SourceLocation getIncludeLoc() const
This is a discriminated union of FileInfo and ExpansionInfo.
const FileInfo & getFile() const
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
Represents the declaration of a struct/union/class/enum.
void setEmbeddedInDeclarator(bool isInDeclarator)
True if this tag declaration is "embedded" (i.e., defined or declared for the very first time) in the...
bool isCompleteDefinition() const
Return true if this decl has its body fully specified.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
void setQualifierLoc(NestedNameSpecifierLoc QualifierLoc)
void setNameLoc(SourceLocation Loc)
void setElaboratedKeywordLoc(SourceLocation Loc)
Exposes information about the current target.
virtual bool hasBitIntType() const
Determine whether the _BitInt type is supported on this target.
const llvm::Triple & getTriple() const
Returns the target triple of the primary target.
virtual std::optional< std::pair< unsigned, unsigned > > getVScaleRange(const LangOptions &LangOpts, ArmStreamingKind Mode, llvm::StringMap< bool > *FeatureMap=nullptr) const
Returns target-specific min and max values VScale_Range.
uint64_t getPointerWidth(LangAS AddrSpace) const
Return the width of pointers on this target, for the specified address space.
virtual bool allowHalfArgsAndReturns() const
Whether half args and returns are supported.
virtual bool hasInt128Type() const
Determine whether the __int128 type is supported on this target.
virtual bool hasFloat16Type() const
Determine whether the _Float16 type is supported on this target.
virtual bool hasIbm128Type() const
Determine whether the __ibm128 type is supported on this target.
virtual bool hasFloat128Type() const
Determine whether the __float128 type is supported on this target.
virtual size_t getMaxBitIntWidth() const
virtual bool hasBFloat16Type() const
Determine whether the _BFloat16 type is supported on this target.
virtual bool hasFeature(StringRef Feature) const
Determine whether the given target has the given feature.
A convenient class for passing around template argument information.
void setLAngleLoc(SourceLocation Loc)
void setRAngleLoc(SourceLocation Loc)
void addArgument(const TemplateArgumentLoc &Loc)
ArrayRef< TemplateArgumentLoc > arguments() const
Location wrapper for a TemplateArgument.
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.
@ Template
A single template declaration.
UsingShadowDecl * getAsUsingShadowDecl() const
Retrieve the using shadow declaration through which the underlying template declaration is introduced...
SourceLocation getRAngleLoc() const
void copy(TemplateSpecializationTypeLoc Loc)
Declaration of a template type parameter.
static TemplateTypeParmDecl * Create(const ASTContext &C, DeclContext *DC, SourceLocation KeyLoc, SourceLocation NameLoc, int D, int P, IdentifierInfo *Id, bool Typename, bool ParameterPack, bool HasTypeConstraint=false, UnsignedOrNone NumExpanded=std::nullopt)
[BoundsSafety] Represents information of declarations referenced by the arguments of the counted_by a...
const Type * getTypeForDecl() const
TyLocType push(QualType T)
Pushes space for a new TypeLoc of the given type.
void pushFullCopy(TypeLoc L)
Pushes a copy of the given TypeLoc onto this builder.
TypeSourceInfo * getTypeSourceInfo(ASTContext &Context, QualType T)
Creates a TypeSourceInfo for the given type.
Base wrapper for a particular "section" of type source info.
UnqualTypeLoc getUnqualifiedLoc() const
Skips past any qualifiers, if this is qualified.
TypeLoc getNextTypeLoc() const
Get the next TypeLoc pointed by this TypeLoc, e.g for "int*" the TypeLoc is a PointerLoc and next Typ...
T getAs() const
Convert to the specified TypeLoc type, returning a null TypeLoc if this TypeLoc is not of the desired...
T castAs() const
Convert to the specified TypeLoc type, asserting that this TypeLoc is of the desired type.
void initializeFullCopy(TypeLoc Other)
Initializes this by copying its information from another TypeLoc of the same type.
unsigned getFullDataSize() const
Returns the size of the type source info data block.
AutoTypeLoc getContainedAutoTypeLoc() const
Get the typeloc of an AutoType whose type will be deduced for a variable with an initializer of this ...
void * getOpaqueData() const
Get the pointer where source information is stored.
void copy(TypeLoc other)
Copies the other type loc into this one.
void initialize(ASTContext &Context, SourceLocation Loc) const
Initializes this to state that every location in this type is the given location.
SourceLocation getEndLoc() const
Get the end source location.
SourceLocation getBeginLoc() const
Get the begin source location.
void setUnmodifiedTInfo(TypeSourceInfo *TI) const
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.
void setNameLoc(SourceLocation Loc)
The base class of the type hierarchy.
bool isIncompleteOrObjectType() const
Return true if this is an incomplete or object type, in other words, not a function type.
bool isBlockPointerType() const
bool isBooleanType() const
QualType getRVVEltType(const ASTContext &Ctx) const
Returns the representative type for the element of an RVV builtin type.
bool isIncompleteArrayType() const
bool isIntegralOrUnscopedEnumerationType() const
Determine whether this type is an integral or unscoped enumeration type.
bool isUndeducedAutoType() const
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
CXXRecordDecl * castAsCXXRecordDecl() const
bool isPointerType() 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
NestedNameSpecifier getPrefix() const
If this type represents a qualified-id, this returns its nested name specifier.
bool isSizelessBuiltinType() const
bool isSveVLSBuiltinType() const
Determines if this is a sizeless type supported by the 'arm_sve_vector_bits' type attribute,...
const Type * getArrayElementTypeNoTypeQual() const
If this is an array type, return the element type of the array, potentially with type qualifiers miss...
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
bool canHaveNullability(bool ResultIfUnknown=true) const
Determine whether the given type can have a nullability specifier applied to it, i....
QualType getSveEltType(const ASTContext &Ctx) const
Returns the representative type for the element of an SVE builtin type.
bool isBitIntType() const
bool isBuiltinType() const
Helper methods to distinguish type categories.
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
bool isChar16Type() const
bool containsUnexpandedParameterPack() const
Whether this type is or contains an unexpanded parameter pack, used to support C++0x variadic templat...
bool isWebAssemblyTableType() const
Returns true if this is a WebAssembly table type: either an array of reference types,...
bool isMemberPointerType() const
bool isAtomicType() const
bool isObjCObjectType() const
bool isUndeducedType() const
Determine whether this type is an undeduced type, meaning that it somehow involves a C++11 'auto' typ...
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 isRVVVLSBuiltinType() const
Determines if this is a sizeless type supported by the 'riscv_rvv_vector_bits' type attribute,...
bool isRealFloatingType() const
Floating point categories.
bool isAnyPointerType() const
TypeClass getTypeClass() const
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 isObjCARCImplicitlyUnretainedType() const
Determines if this type, which must satisfy isObjCLifetimeType(), is implicitly __unsafe_unretained r...
bool isRecordType() const
bool isObjCRetainableType() const
NullabilityKindOrNone getNullability() const
Determine the nullability of the given type.
Represents the declaration of a typedef-name via the 'typedef' type specifier.
Base class for declarations which introduce a typedef-name.
void setParensRange(SourceRange range)
void setTypeofLoc(SourceLocation Loc)
Wrapper of type source information for a type with no direct qualifiers.
TypeLocClass getTypeLocClass() const
UnionParsedType ConversionFunctionId
When Kind == IK_ConversionFunctionId, the type that the conversion function names.
SourceRange getSourceRange() const LLVM_READONLY
Return the source range that covers this unqualified-id.
UnqualifiedIdKind getKind() const
Determine what kind of name we have.
Represents a shadow declaration implicitly introduced into a scope by a (resolved) using-declaration ...
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.
@ Definition
This declaration is definitely a definition.
void setNameLoc(SourceLocation Loc)
Represents a GCC generic vector type.
VectorKind getVectorKind() const
static DelayedDiagnostic makeForbiddenType(SourceLocation loc, unsigned diagnostic, QualType type, unsigned argument)
Retains information about a function, method, or block that is currently being parsed.
Defines the clang::TargetInfo interface.
const internal::VariadicDynCastAllOfMatcher< Decl, TypedefDecl > typedefDecl
Matches typedef declarations.
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
const internal::VariadicDynCastAllOfMatcher< Decl, RecordDecl > recordDecl
Matches class, struct, and union declarations.
unsigned kind
All of the diagnostics that can be emitted by the frontend.
Top level wrappers for InstallAPI frontend operations.
CanQual< Type > CanQualType
Represents a canonical, potentially-qualified type.
bool isa(CodeGen::Address addr)
bool isTemplateInstantiation(TemplateSpecializationKind Kind)
Determine whether this template specialization kind refers to an instantiation of an entity (as oppos...
@ ExpectedParameterOrImplicitObjectParameter
@ ExpectedFunctionWithProtoType
@ GNUAutoType
__auto_type (GNU extension)
@ DecltypeAuto
decltype(auto)
llvm::StringRef getParameterABISpelling(ParameterABI kind)
FunctionEffectMode
Used with attributes/effects with a boolean condition, e.g. nonblocking.
LLVM_READONLY bool isAsciiIdentifierContinue(unsigned char c)
QualType pointeeType(QualType T)
NullabilityKind
Describes the nullability of a particular type.
@ Nullable
Values of this type can be null.
@ Unspecified
Whether values of this type can be null is (explicitly) unspecified.
@ NonNull
Values of this type can never be null.
@ RQ_None
No ref-qualifier was provided.
@ RQ_LValue
An lvalue ref-qualifier was provided (&).
@ RQ_RValue
An rvalue ref-qualifier was provided (&&).
llvm::PointerUnion< Expr *, IdentifierLoc * > ArgsUnion
A union of the various pointer types that can be passed to an ParsedAttr as an argument.
@ Success
Annotation was successful.
@ TemplateName
The identifier is a template name. FIXME: Add an annotation for that.
@ IK_DeductionGuideName
A deduction-guide name (a template-name)
@ IK_ImplicitSelfParam
An implicit 'self' parameter.
@ IK_TemplateId
A template-id, e.g., f<int>.
@ IK_ConstructorTemplateId
A constructor named via a template-id.
@ IK_ConstructorName
A constructor name.
@ IK_LiteralOperatorId
A user-defined literal name, e.g., operator "" _i.
@ IK_Identifier
An identifier.
@ IK_DestructorName
A destructor name.
@ IK_OperatorFunctionId
An overloaded operator name, e.g., operator+.
@ IK_ConversionFunctionId
A conversion function name, e.g., operator int.
TypeOfKind
The kind of 'typeof' expression we're after.
nullptr
This class represents a compute construct, representing a 'Kind' of ‘parallel’, 'serial',...
std::pair< NullabilityKind, bool > DiagNullabilityKind
A nullability kind paired with a bit indicating whether it used a context-sensitive keyword.
@ AANT_ArgumentIntegerConstant
@ Result
The result type of a method or function.
ActionResult< ParsedType > TypeResult
llvm::StringRef getNullabilitySpelling(NullabilityKind kind, bool isContextSensitive=false)
Retrieve the spelling of the given nullability kind.
ArraySizeModifier
Capture whether this is a normal array (e.g.
@ SwiftAsyncContext
This parameter (which must have pointer type) uses the special Swift asynchronous context-pointer ABI...
@ SwiftErrorResult
This parameter (which must have pointer-to-pointer type) uses the special Swift error-result ABI trea...
@ Ordinary
This parameter uses ordinary ABI rules for its type.
@ SwiftIndirectResult
This parameter (which must have pointer type) is a Swift indirect result parameter.
@ SwiftContext
This parameter (which must have pointer type) uses the special Swift context-pointer ABI treatment.
OptionalUnsigned< unsigned > UnsignedOrNone
const FunctionProtoType * T
bool supportsVariadicCall(CallingConv CC)
Checks whether the given calling convention supports variadic calls.
bool isComputedNoexcept(ExceptionSpecificationType ESpecType)
static bool isBlockPointer(Expr *Arg)
TagTypeKind
The kind of a tag type.
@ Interface
The "__interface" keyword.
@ Struct
The "struct" keyword.
@ Class
The "class" keyword.
@ Union
The "union" keyword.
@ Enum
The "enum" keyword.
LLVM_READONLY bool isWhitespace(unsigned char c)
Return true if this character is horizontal or vertical ASCII whitespace: ' ', '\t',...
@ Keyword
The name has been typo-corrected to a keyword.
@ Type
The name was classified as a type.
LangAS
Defines the address space values used by the address space qualifier of QualType.
@ FirstTargetAddressSpace
MutableArrayRef< ParsedTemplateArgument > ASTTemplateArgsPtr
@ Deduced
The normal deduced case.
@ Undeduced
Not deduced yet. This is for example an 'auto' which was just parsed.
MSInheritanceModel
Assigned inheritance model for a class in the MS C++ ABI.
@ IgnoreTrivialABI
The triviality of a method unaffected by "trivial_abi".
@ Incomplete
Template argument deduction did not deduce a value for every template parameter.
@ TSK_ExplicitSpecialization
This template specialization was declared or defined by an explicit specialization (C++ [temp....
@ TSK_ImplicitInstantiation
This template specialization was implicitly instantiated from a template.
@ TSK_Undeclared
This template specialization was formed from a template-id but has not yet been declared,...
CallingConv
CallingConv - Specifies the calling convention that a function uses.
@ AltiVecBool
is AltiVec 'vector bool ...'
@ SveFixedLengthData
is AArch64 SVE fixed-length data vector
@ AltiVecVector
is AltiVec vector
@ AltiVecPixel
is AltiVec 'vector Pixel'
@ Generic
not a target-specific vector type
@ RVVFixedLengthData
is RISC-V RVV fixed-length data vector
@ RVVFixedLengthMask
is RISC-V RVV fixed-length mask vector
@ NeonPoly
is ARM Neon polynomial vector
@ SveFixedLengthPredicate
is AArch64 SVE fixed-length predicate vector
U cast(CodeGen::Address addr)
LangAS getLangASFromTargetAS(unsigned TargetAS)
@ None
The alignment was not explicit in code.
@ ArrayBound
Array bound in array declarator or new-expression.
@ PackIndex
Index of a pack indexing expression or specifier.
OpaquePtr< QualType > ParsedType
An opaque type for threading parsed type information through the parser.
ElaboratedTypeKeyword
The elaboration keyword that precedes a qualified type name or introduces an elaborated-type-specifie...
ActionResult< Expr * > ExprResult
@ Parens
New-expression has a C++98 paren-delimited initializer.
@ EST_DependentNoexcept
noexcept(expression), value-dependent
@ EST_Uninstantiated
not instantiated yet
@ EST_Unparsed
not parsed yet
@ EST_NoThrow
Microsoft __declspec(nothrow) extension.
@ EST_None
no exception specification
@ EST_MSAny
Microsoft throw(...) extension.
@ EST_BasicNoexcept
noexcept
@ EST_NoexceptFalse
noexcept(expression), evals to 'false'
@ EST_Unevaluated
not evaluated yet, for special member function
@ EST_NoexceptTrue
noexcept(expression), evals to 'true'
@ EST_Dynamic
throw(T1, T2)
@ Implicit
An implicit conversion.
OptionalUnsigned< NullabilityKind > NullabilityKindOrNone
static const ASTTemplateArgumentListInfo * Create(const ASTContext &C, const TemplateArgumentListInfo &List)
DeclarationNameInfo - A collector data type for bundling together a DeclarationName and the correspon...
unsigned isStar
True if this dimension was [*]. In this case, NumElts is null.
unsigned TypeQuals
The type qualifiers for the array: const/volatile/restrict/__unaligned/_Atomic.
unsigned hasStatic
True if this dimension included the 'static' keyword.
Expr * NumElts
This is the size of the array, or null if [] or [*] was specified.
unsigned TypeQuals
For now, sema will catch these as invalid.
unsigned isVariadic
isVariadic - If this function has a prototype, and if that proto ends with ',...)',...
SourceLocation getTrailingReturnTypeLoc() const
Get the trailing-return-type location for this function declarator.
SourceLocation getLParenLoc() const
bool hasTrailingReturnType() const
Determine whether this function declarator had a trailing-return-type.
TypeAndRange * Exceptions
Pointer to a new[]'d array of TypeAndRange objects that contain the types in the function's dynamic e...
ParamInfo * Params
Params - This is a pointer to a new[]'d array of ParamInfo objects that describe the parameters speci...
ParsedType getTrailingReturnType() const
Get the trailing-return-type for this function declarator.
unsigned RefQualifierIsLValueRef
Whether the ref-qualifier (if any) is an lvalue reference.
SourceLocation getExceptionSpecLocBeg() const
DeclSpec * MethodQualifiers
DeclSpec for the function with the qualifier related info.
SourceLocation getRefQualifierLoc() const
Retrieve the location of the ref-qualifier, if any.
SourceLocation getRParenLoc() const
SourceLocation getEllipsisLoc() const
unsigned NumParams
NumParams - This is the number of formal parameters specified by the declarator.
unsigned getNumExceptions() const
Get the number of dynamic exception specifications.
bool hasMethodTypeQualifiers() const
Determine whether this method has qualifiers.
unsigned isAmbiguous
Can this declaration be a constructor-style initializer?
unsigned hasPrototype
hasPrototype - This is true if the function had at least one typed parameter.
bool hasRefQualifier() const
Determine whether this function declaration contains a ref-qualifier.
SourceRange getExceptionSpecRange() const
ExceptionSpecificationType getExceptionSpecType() const
Get the type of exception specification this function has.
Expr * NoexceptExpr
Pointer to the expression in the noexcept-specifier of this function, if it has one.
unsigned TypeQuals
The type qualifiers: const/volatile/restrict/__unaligned/_Atomic.
SourceLocation StarLoc
Location of the '*' token.
const IdentifierInfo * Ident
SourceLocation OverflowBehaviorLoc
The location of an __ob_wrap or __ob_trap qualifier, if any.
SourceLocation RestrictQualLoc
The location of the restrict-qualifier, if any.
SourceLocation ConstQualLoc
The location of the const-qualifier, if any.
SourceLocation VolatileQualLoc
The location of the volatile-qualifier, if any.
SourceLocation UnalignedQualLoc
The location of the __unaligned-qualifier, if any.
unsigned TypeQuals
The type qualifiers: const/volatile/restrict/unaligned/atomic.
SourceLocation AtomicQualLoc
The location of the _Atomic-qualifier, if any.
unsigned OverflowBehaviorIsWrap
Whether the overflow behavior qualifier is wrap (true) or trap (false).
bool LValueRef
True if this is an lvalue reference, false if it's an rvalue reference.
bool HasRestrict
The type qualifier: restrict. [GNU] C++ extension.
One instance of this struct is used for each type in a declarator that is parsed.
const ParsedAttributesView & getAttrs() const
If there are attributes applied to this declaratorchunk, return them.
SourceLocation EndLoc
EndLoc - If valid, the place where this chunck ends.
static DeclaratorChunk getFunction(bool HasProto, bool IsAmbiguous, SourceLocation LParenLoc, ParamInfo *Params, unsigned NumParams, SourceLocation EllipsisLoc, SourceLocation RParenLoc, bool RefQualifierIsLvalueRef, SourceLocation RefQualifierLoc, SourceLocation MutableLoc, ExceptionSpecificationType ESpecType, SourceRange ESpecRange, ParsedType *Exceptions, SourceRange *ExceptionRanges, unsigned NumExceptions, Expr *NoexceptExpr, CachedTokens *ExceptionSpecTokens, ArrayRef< NamedDecl * > DeclsInPrototype, SourceLocation LocalRangeBegin, SourceLocation LocalRangeEnd, Declarator &TheDeclarator, TypeResult TrailingReturnType=TypeResult(), SourceLocation TrailingReturnTypeLoc=SourceLocation(), DeclSpec *MethodQualifiers=nullptr)
DeclaratorChunk::getFunction - Return a DeclaratorChunk for a function.
MemberPointerTypeInfo Mem
SourceLocation Loc
Loc - The place where this type was defined.
enum clang::DeclaratorChunk::@340323374315200305336204205154073066142310370142 Kind
Describes whether we've seen any nullability information for the given file.
SourceLocation PointerEndLoc
The end location for the first pointer declarator in the file.
SourceLocation PointerLoc
The first pointer declarator (of any pointer kind) in the file that does not have a corresponding nul...
bool SawTypeNullability
Whether we saw any type nullability annotations in the given file.
uint8_t PointerKind
Which kind of pointer declarator we saw.
A FunctionEffect plus a potential boolean expression determining whether the effect is declared (e....
Holds information about the various types of exception specification.
Extra information about a function prototype.
ExceptionSpecInfo ExceptionSpec
FunctionTypeExtraAttributeInfo ExtraAttributeInfo
unsigned AArch64SMEAttributes
SourceLocation EllipsisLoc
FunctionEffectsRef FunctionEffects
const ExtParameterInfo * ExtParameterInfos
RefQualifierKind RefQualifier
unsigned HasTrailingReturn
void setArmSMEAttribute(AArch64SMETypeAttributes Kind, bool Enable=true)
FunctionType::ExtInfo ExtInfo
TypeSourceInfo * ContainedTyInfo
SmallVector< NamedDecl *, 4 > TemplateParams
Store the list of the template parameters for a generic lambda or an abbreviated function template.
unsigned AutoTemplateParameterDepth
If this is a generic lambda or abbreviated function template, use this as the depth of each 'auto' pa...
static ElaboratedTypeKeyword getKeywordForTypeSpec(unsigned TypeSpec)
Converts a type specifier (DeclSpec::TST) into an elaborated type keyword.
NestedNameSpecifier Prefix
Describes how types, statements, expressions, and declarations should be printed.
Abstract class used to diagnose incomplete types.
virtual void diagnose(Sema &S, SourceLocation Loc, QualType T)=0
A std::pair-like structure for storing a qualified type split into its local qualifiers and its local...
SplitQualType getSingleStepDesugaredType() const
const Type * Ty
The locally-unqualified type.
Qualifiers Quals
The local qualifiers.
llvm::DenseSet< std::tuple< Decl *, Decl *, int > > NonEquivalentDeclSet
Store declaration pairs already found to be non-equivalent.
bool IsEquivalent(Decl *D1, Decl *D2)
Determine whether the two declarations are structurally equivalent.
Information about a template-id annotation token.
const IdentifierInfo * Name
FIXME: Temporarily stores the name of a specialization.
unsigned NumArgs
NumArgs - The number of template arguments.
SourceLocation TemplateNameLoc
TemplateNameLoc - The location of the template name within the source.
ParsedTemplateArgument * getTemplateArgs()
Retrieves a pointer to the template arguments.
SourceLocation RAngleLoc
The location of the '>' after the template argument list.
SourceLocation LAngleLoc
The location of the '<' before the template argument list.
SourceLocation TemplateKWLoc
TemplateKWLoc - The location of the template keyword.
ParsedTemplateTy Template
The declaration of the template corresponding to the template-name.