17#ifndef LLVM_CLANG_AST_TYPE_BASE_H
18#define LLVM_CLANG_AST_TYPE_BASE_H
35#include "llvm/ADT/APInt.h"
36#include "llvm/ADT/APSInt.h"
37#include "llvm/ADT/ArrayRef.h"
38#include "llvm/ADT/FoldingSet.h"
39#include "llvm/ADT/PointerIntPair.h"
40#include "llvm/ADT/PointerUnion.h"
41#include "llvm/ADT/STLForwardCompat.h"
42#include "llvm/ADT/StringRef.h"
43#include "llvm/ADT/Twine.h"
44#include "llvm/ADT/iterator_range.h"
45#include "llvm/Support/Casting.h"
46#include "llvm/Support/Compiler.h"
47#include "llvm/Support/DXILABI.h"
48#include "llvm/Support/ErrorHandling.h"
49#include "llvm/Support/PointerLikeTypeTraits.h"
50#include "llvm/Support/TrailingObjects.h"
51#include "llvm/Support/type_traits.h"
80namespace serialization {
81 template <
class T>
class AbstractTypeReader;
118template <
typename>
class CanQual;
123class ExtQualsTypeCommonBase;
125class FunctionEffectsRef;
126class FunctionEffectKindSet;
127class FunctionEffectSet;
130class ObjCInterfaceDecl;
131class ObjCProtocolDecl;
132class ObjCTypeParamDecl;
133struct PrintingPolicy;
137class ClassTemplateDecl;
138class TemplateArgument;
139class TemplateArgumentListInfo;
140class TemplateArgumentLoc;
141class TemplateTypeParmDecl;
142class TypedefNameDecl;
143class UnresolvedUsingTypenameDecl;
144class UsingShadowDecl;
149#define TYPE(Class, Base) class Class##Type;
150#include "clang/AST/TypeNodes.inc"
153class PointerAuthQualifier {
157 EnabledMask = 1 << EnabledShift,
158 AddressDiscriminatedShift = EnabledShift + EnabledBits,
159 AddressDiscriminatedBits = 1,
160 AddressDiscriminatedMask = 1 << AddressDiscriminatedShift,
161 AuthenticationModeShift =
162 AddressDiscriminatedShift + AddressDiscriminatedBits,
163 AuthenticationModeBits = 2,
164 AuthenticationModeMask = ((1 << AuthenticationModeBits) - 1)
165 << AuthenticationModeShift,
166 IsaPointerShift = AuthenticationModeShift + AuthenticationModeBits,
168 IsaPointerMask = ((1 << IsaPointerBits) - 1) << IsaPointerShift,
169 AuthenticatesNullValuesShift = IsaPointerShift + IsaPointerBits,
170 AuthenticatesNullValuesBits = 1,
171 AuthenticatesNullValuesMask = ((1 << AuthenticatesNullValuesBits) - 1)
172 << AuthenticatesNullValuesShift,
173 KeyShift = AuthenticatesNullValuesShift + AuthenticatesNullValuesBits,
175 KeyMask = ((1 << KeyBits) - 1) << KeyShift,
176 DiscriminatorShift = KeyShift + KeyBits,
177 DiscriminatorBits = 16,
178 DiscriminatorMask = ((1u << DiscriminatorBits) - 1) << DiscriminatorShift,
189 static_assert((EnabledBits + AddressDiscriminatedBits +
190 AuthenticationModeBits + IsaPointerBits +
191 AuthenticatesNullValuesBits + KeyBits + DiscriminatorBits) ==
193 "PointerAuthQualifier should be exactly 32 bits");
194 static_assert((EnabledMask + AddressDiscriminatedMask +
195 AuthenticationModeMask + IsaPointerMask +
196 AuthenticatesNullValuesMask + KeyMask + DiscriminatorMask) ==
198 "All masks should cover the entire bits");
199 static_assert((EnabledMask ^ AddressDiscriminatedMask ^
200 AuthenticationModeMask ^ IsaPointerMask ^
201 AuthenticatesNullValuesMask ^ KeyMask ^ DiscriminatorMask) ==
203 "All masks should cover the entire bits");
206 unsigned ExtraDiscriminator,
208 bool IsIsaPointer,
bool AuthenticatesNullValues)
210 (IsAddressDiscriminated
211 ? llvm::to_underlying(AddressDiscriminatedMask)
214 (llvm::to_underlying(AuthenticationMode)
215 << AuthenticationModeShift) |
216 (ExtraDiscriminator << DiscriminatorShift) |
217 (IsIsaPointer << IsaPointerShift) |
218 (AuthenticatesNullValues << AuthenticatesNullValuesShift)) {
221 assert((Data == 0) ==
239 static PointerAuthQualifier
240 Create(
unsigned Key,
bool IsAddressDiscriminated,
unsigned ExtraDiscriminator,
242 bool AuthenticatesNullValues) {
247 AuthenticationMode, IsIsaPointer,
248 AuthenticatesNullValues);
252 assert((Data == 0) ==
261 return (Data & KeyMask) >> KeyShift;
268 return (Data & AddressDiscriminatedMask) >> AddressDiscriminatedShift;
273 return (Data >> DiscriminatorShift);
278 AuthenticationModeShift);
283 return (Data & IsaPointerMask) >> IsaPointerShift;
288 return (Data & AuthenticatesNullValuesMask) >> AuthenticatesNullValuesShift;
295 friend bool operator==(PointerAuthQualifier Lhs, PointerAuthQualifier Rhs) {
296 return Lhs.Data == Rhs.Data;
298 friend bool operator!=(PointerAuthQualifier Lhs, PointerAuthQualifier Rhs) {
299 return Lhs.Data != Rhs.Data;
310 PointerAuthQualifier
Result;
312 assert((
Result.Data == 0) ==
323 void Profile(llvm::FoldingSetNodeID &ID)
const { ID.AddInteger(Data); }
390 LPtrAuth == R.getPointerAuth()) {
394 R.setPointerAuth(
Empty);
399 Q.Mask = L.Mask & R.Mask;
408 R.removeCVRQualifiers(CommonCRV);
413 R.removeObjCGCAttr();
419 R.removeObjCLifetime();
425 R.removeAddressSpace();
493 assert(!(mask & ~
CVRMask) &&
"bitmask contains non-CVR bits");
497 assert(!(mask & ~
CVRMask) &&
"bitmask contains non-CVR bits");
498 Mask &= ~static_cast<uint64_t>(mask);
504 assert(!(mask & ~
CVRMask) &&
"bitmask contains non-CVR bits");
508 assert(!(mask & ~
CVRMask & ~UMask) &&
"bitmask contains non-CVRU bits");
514 Mask = (Mask & ~UMask) | (flag ? UMask : 0);
522 Mask = (Mask & ~GCAttrMask) | (
type << GCAttrShift);
547 return ObjCLifetime((Mask & LifetimeMask) >> LifetimeShift);
550 Mask = (Mask & ~LifetimeMask) | (
type << LifetimeShift);
556 Mask |= (
type << LifetimeShift);
573 return static_cast<LangAS>((Mask & AddressSpaceMask) >> AddressSpaceShift);
594 Mask = (Mask & ~AddressSpaceMask)
595 | (((
uint32_t) space) << AddressSpaceShift);
608 Mask = (Mask & ~PtrAuthMask) |
622 assert(!(mask & ~
FastMask) &&
"bitmask contains non-fast qualifier bits");
626 assert(!(mask & ~
FastMask) &&
"bitmask contains non-fast qualifier bits");
627 Mask &= ~static_cast<uint64_t>(mask);
633 assert(!(mask & ~
FastMask) &&
"bitmask contains non-fast qualifier bits");
648 bool empty()
const {
return !Mask; }
803 bool appendSpaceIfNonEmpty =
false)
const;
805 void Profile(llvm::FoldingSetNodeID &ID)
const { ID.AddInteger(Mask); }
812 "PointerAuthQualifier must be 32 bits");
814 static constexpr uint64_t PtrAuthShift = 32;
815 static constexpr uint64_t PtrAuthMask = UINT64_C(0xffffffff) << PtrAuthShift;
817 static constexpr uint64_t UMask = 0x8;
818 static constexpr uint64_t UShift = 3;
819 static constexpr uint64_t GCAttrMask = 0x30;
820 static constexpr uint64_t GCAttrShift = 4;
821 static constexpr uint64_t LifetimeMask = 0x1C0;
822 static constexpr uint64_t LifetimeShift = 6;
823 static constexpr uint64_t AddressSpaceMask =
824 ~(
CVRMask | UMask | GCAttrMask | LifetimeMask | PtrAuthMask);
825 static constexpr uint64_t AddressSpaceShift = 9;
835 : Quals(Quals), HasAtomic(HasAtomic) {}
855 return {Quals.withVolatile(), HasAtomic};
859 return {Quals.withRestrict(), HasAtomic};
884 std::pair<const Type *,Qualifiers>
asPair()
const {
885 return std::pair<const Type *, Qualifiers>(
Ty,
Quals);
942 llvm::PointerIntPair<llvm::PointerUnion<const Type *, const ExtQuals *>,
945 const ExtQuals *getExtQualsUnsafe()
const {
949 const Type *getTypePtrUnsafe()
const {
953 const ExtQualsTypeCommonBase *getCommonPtr()
const {
954 assert(!
isNull() &&
"Cannot retrieve a NULL type pointer");
955 auto CommonPtrVal =
reinterpret_cast<uintptr_t>(
Value.getOpaqueValue());
957 return reinterpret_cast<ExtQualsTypeCommonBase*
>(CommonPtrVal);
989 T.Value.setFromOpaqueValue(
const_cast<void*
>(Ptr));
1006 return Value.getPointer().isNull();
1033 std::optional<NonConstantStorageReason>
1201 &&
"non-fast qualifier bits set in mask!");
1202 Value.setInt(Value.getInt() | TQs);
1212 Value.setInt(Value.getInt() & ~Mask);
1219 T.addFastQualifiers(TQs);
1232 T.removeLocalFastQualifiers();
1326 return getSingleStepDesugaredTypeImpl(*
this, Context);
1339 return LHS.Value == RHS.Value;
1342 return LHS.Value != RHS.Value;
1345 return LHS.Value < RHS.Value;
1359 const Twine &PlaceHolder = Twine(),
1360 unsigned Indentation = 0)
const;
1364 unsigned Indentation = 0) {
1365 return print(
split.Ty,
split.Quals, OS, policy, PlaceHolder, Indentation);
1370 const Twine &PlaceHolder,
1371 unsigned Indentation = 0);
1388 const Twine &PlaceHolder;
1389 unsigned Indentation;
1393 const Twine &PlaceHolder,
unsigned Indentation)
1394 : T(T), Policy(Policy), PlaceHolder(PlaceHolder),
1395 Indentation(Indentation) {}
1399 SQT.T.
print(OS, SQT.Policy, SQT.PlaceHolder, SQT.Indentation);
1405 const Twine &PlaceHolder = Twine(),
1406 unsigned Indentation = 0)
const {
1410 void dump(
const char *s)
const;
1412 void dump(llvm::raw_ostream &OS,
const ASTContext &Context)
const;
1475 return PtrAuth.isAddressDiscriminated();
1562 return isDestructedTypeImpl(*
this);
1667raw_ostream &
operator<<(raw_ostream &OS, QualType QT);
1705class ExtQualsTypeCommonBase {
1716 const Type *
const BaseType;
1721 ExtQualsTypeCommonBase(
const Type *baseType,
QualType canon)
1722 : BaseType(baseType), CanonicalType(canon) {}
1735class alignas(TypeAlignment)
ExtQuals :
public ExtQualsTypeCommonBase,
1736 public llvm::FoldingSetNode {
1758 : ExtQualsTypeCommonBase(baseType,
1759 canon.isNull() ?
QualType(this_(), 0) : canon),
1761 assert(Quals.hasNonFastQualifiers()
1762 &&
"ExtQuals created with no fast qualifiers");
1763 assert(!Quals.hasFastQualifiers()
1764 &&
"ExtQuals created with fast qualifiers");
1774 return Quals.getObjCLifetime();
1788 const Type *BaseType,
1790 assert(!Quals.hasFastQualifiers() &&
"fast qualifiers in ExtQuals hash!");
1791 ID.AddPointer(BaseType);
1849enum class ArraySizeModifier;
1850enum class ElaboratedTypeKeyword;
1851enum class VectorKind;
1879class alignas(TypeAlignment)
Type :
public ExtQualsTypeCommonBase {
1882#define TYPE(Class, Base) Class,
1883#define LAST_TYPE(Class) TypeLast = Class
1884#define ABSTRACT_TYPE(Class, Base)
1885#include "clang/AST/TypeNodes.inc"
1890 class TypeBitfields {
1892 template <
class T>
friend class TypePropertyCache;
1895 LLVM_PREFERRED_TYPE(TypeClass)
1900 unsigned Dependence : llvm::BitWidth<TypeDependence>;
1904 LLVM_PREFERRED_TYPE(
bool)
1905 mutable unsigned CacheValid : 1;
1909 mutable unsigned CachedLinkage : 3;
1912 LLVM_PREFERRED_TYPE(
bool)
1913 mutable unsigned CachedLocalOrUnnamed : 1;
1916 LLVM_PREFERRED_TYPE(
bool)
1917 mutable unsigned FromAST : 1;
1919 bool isCacheValid()
const {
1924 assert(isCacheValid() &&
"getting linkage from invalid cache");
1925 return static_cast<Linkage>(CachedLinkage);
1928 bool hasLocalOrUnnamedType()
const {
1929 assert(isCacheValid() &&
"getting linkage from invalid cache");
1930 return CachedLocalOrUnnamed;
1933 enum { NumTypeBits = 8 + llvm::BitWidth<TypeDependence> + 6 };
1942 LLVM_PREFERRED_TYPE(TypeBitfields)
1948 unsigned IndexTypeQuals : 3;
1953 unsigned SizeModifier : 3;
1964 LLVM_PREFERRED_TYPE(
bool)
1965 unsigned HasExternalSize : 1;
1967 LLVM_PREFERRED_TYPE(
unsigned)
1968 unsigned SizeWidth : 5;
1974 LLVM_PREFERRED_TYPE(TypeBitfields)
1978 static constexpr unsigned NumOfBuiltinTypeBits = 10;
1979 unsigned Kind : NumOfBuiltinTypeBits;
1994 LLVM_PREFERRED_TYPE(TypeBitfields)
2001 unsigned RefQualifier : 2;
2012 LLVM_PREFERRED_TYPE(
bool)
2013 unsigned HasExtQuals : 1;
2017 unsigned ExceptionSpecType : 4;
2020 LLVM_PREFERRED_TYPE(
bool)
2021 unsigned HasExtParameterInfos : 1;
2024 LLVM_PREFERRED_TYPE(
bool)
2025 unsigned HasExtraBitfields : 1;
2028 LLVM_PREFERRED_TYPE(
bool)
2029 unsigned Variadic : 1;
2032 LLVM_PREFERRED_TYPE(
bool)
2033 unsigned HasTrailingReturn : 1;
2036 LLVM_PREFERRED_TYPE(
bool)
2037 unsigned CFIUncheckedCallee : 1;
2042 unsigned ExtInfo : 14;
2054 LLVM_PREFERRED_TYPE(TypeBitfields)
2058 unsigned NumTypeArgs : 7;
2061 unsigned NumProtocols : 6;
2064 LLVM_PREFERRED_TYPE(
bool)
2065 unsigned IsKindOf : 1;
2071 LLVM_PREFERRED_TYPE(TypeBitfields)
2085 LLVM_PREFERRED_TYPE(
bool)
2086 unsigned SpelledAsLValue : 1;
2090 LLVM_PREFERRED_TYPE(
bool)
2091 unsigned InnerRef : 1;
2097 LLVM_PREFERRED_TYPE(TypeBitfields)
2102 unsigned Keyword : 8;
2114 LLVM_PREFERRED_TYPE(
bool)
2115 unsigned HasQualifier : 1;
2118 LLVM_PREFERRED_TYPE(
bool)
2119 unsigned OwnsTag : 1;
2122 LLVM_PREFERRED_TYPE(
bool)
2123 unsigned IsInjected : 1;
2130 LLVM_PREFERRED_TYPE(TypeBitfields)
2136 unsigned VecKind : 4;
2144 LLVM_PREFERRED_TYPE(TypeBitfields)
2148 unsigned AttrKind : 32 - NumTypeBits;
2174 unsigned Keyword : 2;
2190 LLVM_PREFERRED_TYPE(TypeBitfields)
2203 LLVM_PREFERRED_TYPE(
bool)
2204 unsigned hasQualifier : 1;
2214 LLVM_PREFERRED_TYPE(
bool)
2215 unsigned hasQualifier : 1;
2225 LLVM_PREFERRED_TYPE(
bool)
2226 unsigned hasQualifier : 1;
2229 LLVM_PREFERRED_TYPE(
bool)
2230 unsigned hasTypeDifferentFromDecl : 1;
2239 LLVM_PREFERRED_TYPE(TypeBitfields)
2246 LLVM_PREFERRED_TYPE(
bool)
2247 unsigned ParameterPack : 1;
2256 LLVM_PREFERRED_TYPE(TypeBitfields)
2259 LLVM_PREFERRED_TYPE(
bool)
2260 unsigned HasNonCanonicalUnderlyingType : 1;
2263 unsigned Index : 15;
2265 LLVM_PREFERRED_TYPE(
bool)
2273 unsigned PackIndex : 15;
2280 LLVM_PREFERRED_TYPE(TypeBitfields)
2287 unsigned NumArgs : 16;
2293 unsigned SubstTemplTypeParmPackIndex : 16;
2303 LLVM_PREFERRED_TYPE(
bool)
2304 unsigned TypeAlias : 1;
2319 LLVM_PREFERRED_TYPE(TypeBitfields)
2333 unsigned NumExpansions;
2353 LLVM_PREFERRED_TYPE(TypeBitfields)
2363 LLVM_PREFERRED_TYPE(TypeBitfields)
2366 static constexpr unsigned NumCoupledDeclsBits = 4;
2367 unsigned NumCoupledDecls : NumCoupledDeclsBits;
2368 LLVM_PREFERRED_TYPE(
bool)
2369 unsigned CountInBytes : 1;
2370 LLVM_PREFERRED_TYPE(
bool)
2371 unsigned OrNull : 1;
2406 void setFromAST(
bool V =
true)
const {
2414 : ExtQualsTypeCommonBase(this,
2416 static_assert(
sizeof(*this) <=
2417 alignof(
decltype(*this)) +
sizeof(ExtQualsTypeCommonBase),
2418 "changing bitfields changed sizeof(Type)!");
2419 static_assert(
alignof(
decltype(*this)) %
TypeAlignment == 0,
2420 "Insufficient alignment!");
2424 TypeBits.CachedLocalOrUnnamed =
false;
2433 TypeBits.Dependence =
static_cast<unsigned>(D);
2476 return CanonicalType ==
QualType(
this, 0);
2482 QualType getLocallyUnqualifiedSingleStepDesugaredType()
const;
2490 bool isSizelessType()
const;
2491 bool isSizelessBuiltinType()
const;
2494 bool isSizelessVectorType()
const;
2497 bool isSVESizelessBuiltinType()
const;
2500 bool isRVVSizelessBuiltinType()
const;
2503 bool isWebAssemblyExternrefType()
const;
2508 bool isWebAssemblyTableType()
const;
2513 bool isSveVLSBuiltinType()
const;
2523 bool isRVVVLSBuiltinType()
const;
2545 bool isIncompleteType(
NamedDecl **Def =
nullptr)
const;
2571 bool isAlwaysIncompleteType()
const;
2583 bool isLiteralType(
const ASTContext &Ctx)
const;
2586 bool isStructuralType()
const;
2590 bool isStandardLayoutType()
const;
2596 bool isBuiltinType()
const;
2599 bool isSpecificBuiltinType(
unsigned K)
const;
2604 bool isPlaceholderType()
const;
2608 bool isSpecificPlaceholderType(
unsigned K)
const;
2612 bool isNonOverloadPlaceholderType()
const;
2616 bool isIntegerType()
const;
2617 bool isEnumeralType()
const;
2620 bool isScopedEnumeralType()
const;
2622 bool isCharType()
const;
2623 bool isWideCharType()
const;
2624 bool isChar8Type()
const;
2625 bool isChar16Type()
const;
2626 bool isChar32Type()
const;
2627 bool isAnyCharacterType()
const;
2628 bool isUnicodeCharacterType()
const;
2629 bool isIntegralType(
const ASTContext &Ctx)
const;
2632 bool isIntegralOrEnumerationType()
const;
2635 bool isIntegralOrUnscopedEnumerationType()
const;
2636 bool isUnscopedEnumerationType()
const;
2639 bool isRealFloatingType()
const;
2642 bool isComplexType()
const;
2643 bool isAnyComplexType()
const;
2644 bool isFloatingType()
const;
2645 bool isHalfType()
const;
2646 bool isFloat16Type()
const;
2647 bool isFloat32Type()
const;
2648 bool isDoubleType()
const;
2649 bool isBFloat16Type()
const;
2650 bool isMFloat8Type()
const;
2651 bool isFloat128Type()
const;
2652 bool isIbm128Type()
const;
2653 bool isRealType()
const;
2654 bool isArithmeticType()
const;
2655 bool isVoidType()
const;
2656 bool isScalarType()
const;
2657 bool isAggregateType()
const;
2658 bool isFundamentalType()
const;
2659 bool isCompoundType()
const;
2663 bool isFunctionType()
const;
2666 bool isPointerType()
const;
2667 bool isPointerOrReferenceType()
const;
2668 bool isSignableType(
const ASTContext &Ctx)
const;
2669 bool isSignablePointerType()
const;
2670 bool isSignableIntegerType(
const ASTContext &Ctx)
const;
2671 bool isAnyPointerType()
const;
2672 bool isCountAttributedType()
const;
2673 bool isCFIUncheckedCalleeFunctionType()
const;
2674 bool hasPointeeToCFIUncheckedCalleeFunctionType()
const;
2675 bool isBlockPointerType()
const;
2676 bool isVoidPointerType()
const;
2677 bool isReferenceType()
const;
2678 bool isLValueReferenceType()
const;
2679 bool isRValueReferenceType()
const;
2680 bool isObjectPointerType()
const;
2681 bool isFunctionPointerType()
const;
2682 bool isFunctionReferenceType()
const;
2683 bool isMemberPointerType()
const;
2684 bool isMemberFunctionPointerType()
const;
2685 bool isMemberDataPointerType()
const;
2686 bool isArrayType()
const;
2687 bool isConstantArrayType()
const;
2688 bool isIncompleteArrayType()
const;
2689 bool isVariableArrayType()
const;
2690 bool isArrayParameterType()
const;
2691 bool isDependentSizedArrayType()
const;
2693 bool isClassType()
const;
2694 bool isStructureType()
const;
2695 bool isStructureTypeWithFlexibleArrayMember()
const;
2696 bool isObjCBoxableRecordType()
const;
2697 bool isInterfaceType()
const;
2698 bool isStructureOrClassType()
const;
2699 bool isUnionType()
const;
2700 bool isComplexIntegerType()
const;
2701 bool isVectorType()
const;
2702 bool isExtVectorType()
const;
2703 bool isExtVectorBoolType()
const;
2704 bool isConstantMatrixBoolType()
const;
2707 bool isPackedVectorBoolType(
const ASTContext &ctx)
const;
2708 bool isSubscriptableVectorType()
const;
2709 bool isMatrixType()
const;
2710 bool isConstantMatrixType()
const;
2711 bool isOverflowBehaviorType()
const;
2712 bool isDependentAddressSpaceType()
const;
2713 bool isObjCObjectPointerType()
const;
2714 bool isObjCRetainableType()
const;
2715 bool isObjCLifetimeType()
const;
2716 bool isObjCIndirectLifetimeType()
const;
2717 bool isObjCNSObjectType()
const;
2718 bool isObjCIndependentClassType()
const;
2721 bool isObjCObjectType()
const;
2722 bool isObjCQualifiedInterfaceType()
const;
2723 bool isObjCQualifiedIdType()
const;
2724 bool isObjCQualifiedClassType()
const;
2725 bool isObjCObjectOrInterfaceType()
const;
2726 bool isObjCIdType()
const;
2727 bool isDecltypeType()
const;
2735 return hasAttr(attr::ObjCInertUnsafeUnretained);
2745 bool isObjCIdOrObjectKindOfType(
const ASTContext &ctx,
2748 bool isObjCClassType()
const;
2756 bool isObjCClassOrClassKindOfType()
const;
2758 bool isBlockCompatibleObjCPointerType(
ASTContext &ctx)
const;
2759 bool isObjCSelType()
const;
2760 bool isObjCBuiltinType()
const;
2761 bool isObjCARCBridgableType()
const;
2762 bool isCARCBridgableType()
const;
2763 bool isTemplateTypeParmType()
const;
2764 bool isNullPtrType()
const;
2766 bool isNothrowT()
const;
2767 bool isAlignValT()
const;
2768 bool isStdByteType()
const;
2769 bool isAtomicType()
const;
2770 bool isUndeducedAutoType()
const;
2772 bool isTypedefNameType()
const;
2774#define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
2775 bool is##Id##Type() const;
2776#include "clang/Basic/OpenCLImageTypes.def"
2778 bool isImageType()
const;
2780 bool isSamplerT()
const;
2781 bool isEventT()
const;
2782 bool isClkEventT()
const;
2783 bool isQueueT()
const;
2784 bool isReserveIDT()
const;
2786#define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
2787 bool is##Id##Type() const;
2788#include "clang/Basic/OpenCLExtensionTypes.def"
2790 bool isOCLIntelSubgroupAVCType()
const;
2791 bool isOCLExtOpaqueType()
const;
2793 bool isPipeType()
const;
2794 bool isBitIntType()
const;
2795 bool isOpenCLSpecificType()
const;
2797#define HLSL_INTANGIBLE_TYPE(Name, Id, SingletonId) bool is##Id##Type() const;
2798#include "clang/Basic/HLSLIntangibleTypes.def"
2799 bool isHLSLSpecificType()
const;
2800 bool isHLSLBuiltinIntangibleType()
const;
2801 bool isHLSLAttributedResourceType()
const;
2802 bool isHLSLInlineSpirvType()
const;
2803 bool isHLSLResourceRecord()
const;
2804 bool isHLSLResourceRecordArray()
const;
2806 bool isHLSLIntangibleType()
const;
2808 bool isHLSLStandardLayoutRecordOrArrayOf()
const;
2810#define SPIRV_TYPE(Name, Id, SingletonId) bool is##Id##Type() const;
2811#include "clang/Basic/SPIRVTypes.def"
2816 bool isObjCARCImplicitlyUnretainedType()
const;
2819 bool isCUDADeviceBuiltinSurfaceType()
const;
2821 bool isCUDADeviceBuiltinTextureType()
const;
2824 bool isAMDGPUNamedBarrierType()
const;
2827 bool isAMDGPUNamedBarrierTypeOrWrapper()
const;
2830 Qualifiers::ObjCLifetime getObjCARCImplicitLifetime()
const;
2846 ScalarTypeKind getScalarTypeKind()
const;
2874 bool isUndeducedType()
const;
2883 bool hasSizedVLAType()
const;
2886 bool hasUnnamedOrLocalType()
const;
2888 bool isOverloadableType()
const;
2891 bool isElaboratedTypeSpecifier()
const;
2893 bool canDecayToPointerType()
const;
2898 bool hasPointerRepresentation()
const;
2902 bool hasObjCPointerRepresentation()
const;
2906 bool hasIntegerRepresentation()
const;
2910 bool hasSignedIntegerRepresentation()
const;
2914 bool hasUnsignedIntegerRepresentation()
const;
2918 bool hasFloatingRepresentation()
const;
2923 bool hasBooleanRepresentation()
const;
2928 const RecordType *getAsStructureType()
const;
2930 const RecordType *getAsUnionType()
const;
2931 const ComplexType *getAsComplexIntegerType()
const;
2952 inline EnumDecl *getAsEnumDecl()
const;
2953 inline EnumDecl *castAsEnumDecl()
const;
2958 inline TagDecl *getAsTagDecl()
const;
2959 inline TagDecl *castAsTagDecl()
const;
2971 DeducedType *getContainedDeducedType()
const;
2983 bool hasAutoForTrailingReturnType()
const;
2994 template <
typename T>
const T *getAs()
const;
2999 return dyn_cast<T>(CanonicalType);
3006 return cast<T>(CanonicalType);
3010#define TYPE(Class, Base)
3011#define NEVER_CANONICAL_TYPE(Class) \
3012 template <> inline const Class##Type *Type::getAsCanonical() const = delete; \
3013 template <> inline const Class##Type *Type::castAsCanonical() const = delete;
3014#include "clang/AST/TypeNodes.inc"
3020 const TemplateSpecializationType *
3021 getAsNonAliasTemplateSpecializationType()
const;
3023 const TemplateSpecializationType *
3026 assert(TST &&
"not a TemplateSpecializationType");
3035 template <
typename T>
const T *getAsAdjusted()
const;
3039 const ArrayType *getAsArrayTypeUnsafe()
const;
3047 template <
typename T>
const T *castAs()
const;
3051 const ArrayType *castAsArrayTypeUnsafe()
const;
3065 const Type *getBaseElementTypeUnsafe()
const;
3070 const Type *getArrayElementTypeNoTypeQual()
const;
3075 const Type *getPointeeOrArrayElementType()
const;
3083 const Type *getUnqualifiedDesugaredType()
const;
3088 bool isSignedIntegerType()
const;
3093 bool isUnsignedIntegerType()
const;
3097 bool isSignedIntegerOrEnumerationType()
const;
3101 bool isUnsignedIntegerOrEnumerationType()
const;
3105 bool isFixedPointType()
const;
3108 bool isFixedPointOrIntegerType()
const;
3111 bool isConvertibleToFixedPointType()
const;
3115 bool isSaturatedFixedPointType()
const;
3119 bool isUnsaturatedFixedPointType()
const;
3123 bool isSignedFixedPointType()
const;
3127 bool isUnsignedFixedPointType()
const;
3132 bool isConstantSizeType()
const;
3136 bool isSpecifierType()
const;
3156 bool isLinkageValid()
const;
3170 bool canHaveNullability(
bool ResultIfUnknown =
true)
const;
3187 std::optional<ArrayRef<QualType>>
3188 getObjCSubstitutions(
const DeclContext *dc)
const;
3192 bool acceptsObjCTypeParams()
const;
3194 const char *getTypeClassName()
const;
3197 return CanonicalType;
3202 void dump(llvm::raw_ostream &OS,
const ASTContext &Context)
const;
3229#define TYPE(Class, Base)
3230#define ALWAYS_CANONICAL_TYPE(Class) \
3231 template <> inline const Class##Type *Type::getAs() const { \
3232 return dyn_cast<Class##Type>(CanonicalType); \
3234 template <> inline const Class##Type *Type::castAs() const { \
3235 return cast<Class##Type>(CanonicalType); \
3237#include "clang/AST/TypeNodes.inc"
3245#define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) Id,
3246#include "clang/Basic/OpenCLImageTypes.def"
3248#define EXT_OPAQUE_TYPE(ExtType, Id, Ext) Id,
3249#include "clang/Basic/OpenCLExtensionTypes.def"
3251#define SVE_TYPE(Name, Id, SingletonId) Id,
3252#include "clang/Basic/AArch64ACLETypes.def"
3254#define PPC_VECTOR_TYPE(Name, Id, Size) Id,
3255#include "clang/Basic/PPCTypes.def"
3257#define RVV_TYPE(Name, Id, SingletonId) Id,
3258#include "clang/Basic/RISCVVTypes.def"
3260#define WASM_TYPE(Name, Id, SingletonId) Id,
3261#include "clang/Basic/WebAssemblyReferenceTypes.def"
3263#define AMDGPU_TYPE(Name, Id, SingletonId, Width, Align) Id,
3264#include "clang/Basic/AMDGPUTypes.def"
3266#define HLSL_INTANGIBLE_TYPE(Name, Id, SingletonId) Id,
3267#include "clang/Basic/HLSLIntangibleTypes.def"
3269#define SPIRV_TYPE(Name, Id, SingletonId) Id,
3270#include "clang/Basic/SPIRVTypes.def"
3272#define BUILTIN_TYPE(Id, SingletonId) Id,
3273#define LAST_BUILTIN_TYPE(Id) LastKind = Id
3274#include "clang/AST/BuiltinTypes.def"
3284 static_assert(Kind::LastKind <
3285 (1 << BuiltinTypeBitfields::NumOfBuiltinTypeBits) &&
3286 "Defined builtin type exceeds the allocated space for serial "
3297 StringRef str =
getName(Policy);
3298 assert(!str.empty() && str.data()[str.size()] ==
'\0');
3355class ComplexType :
public Type,
public llvm::FoldingSetNode {
3362 ElementType(Element) {}
3382class ParenType :
public Type,
public llvm::FoldingSetNode {
3408class PointerType :
public Type,
public llvm::FoldingSetNode {
3415 PointeeType(Pointee) {}
3438 using BaseTy = llvm::PointerIntPair<ValueDecl *, 1, unsigned>;
3453 bool isDeref()
const;
3455 unsigned getInt()
const;
3456 void *getOpaqueValue()
const;
3458 void setFromOpaqueValue(
void *
V);
3496 bool referencesFieldDecls()
const;
3502 switch (
T->getTypeClass()) {
3503 case CountAttributed:
3513class CountAttributedType final
3515 public llvm::TrailingObjects<CountAttributedType,
3516 TypeCoupledDeclRefInfo> {
3527 bool CountInBytes,
bool OrNull,
3530 unsigned numTrailingObjects(OverloadToken<TypeCoupledDeclRefInfo>)
const {
3556 static void Profile(llvm::FoldingSetNodeID &ID,
QualType WrappedTy,
3560 return T->getTypeClass() == CountAttributed;
3563 StringRef getAttributeName(
bool WithMacroPrefix)
const;
3575class LateParsedAttrType :
public Type {
3584 WrappedTy(Wrapped), LateParsedTypeAttr(
Attr) {}
3589 return LateParsedTypeAttr;
3596 return T->getTypeClass() == LateParsedAttr;
3612 :
Type(TC, CanonicalPtr,
3615 OriginalTy(OriginalTy), AdjustedTy(AdjustedTy) {}
3625 Profile(ID, OriginalTy, AdjustedTy);
3630 ID.AddPointer(
New.getAsOpaquePtr());
3634 return T->getTypeClass() == Adjusted ||
T->getTypeClass() == Decayed;
3656class BlockPointerType :
public Type,
public llvm::FoldingSetNode {
3664 PointeeType(Pointee) {}
3682 return T->getTypeClass() == BlockPointer;
3692 bool SpelledAsLValue)
3694 PointeeType(Referencee) {
3708 while (
T->isInnerRef())
3710 return T->PointeeType;
3719 bool SpelledAsLValue) {
3721 ID.AddBoolean(SpelledAsLValue);
3725 return T->getTypeClass() == LValueReference ||
3726 T->getTypeClass() == RValueReference;
3735 bool SpelledAsLValue)
3744 return T->getTypeClass() == LValueReference;
3760 return T->getTypeClass() == RValueReference;
3767class MemberPointerType :
public Type,
public llvm::FoldingSetNode {
3778 :
Type(MemberPointer, CanonicalPtr,
3782 PointeeType(Pointee), Qualifier(Qualifier) {}
3790 return PointeeType->isFunctionProtoType();
3796 return !PointeeType->isFunctionProtoType();
3805 bool isSugared()
const;
3817 static void Profile(llvm::FoldingSetNodeID &ID,
QualType Pointee,
3822 return T->getTypeClass() == MemberPointer;
3845 unsigned tq,
const Expr *sz =
nullptr);
3863 return T->getTypeClass() == ConstantArray ||
3864 T->getTypeClass() == VariableArray ||
3865 T->getTypeClass() == IncompleteArray ||
3866 T->getTypeClass() == DependentSizedArray ||
3867 T->getTypeClass() == ArrayParameter;
3877 struct ExternalSize {
3878 ExternalSize(
const llvm::APInt &Sz,
const Expr *SE)
3879 :
Size(Sz), SizeExpr(SE) {}
3881 const Expr *SizeExpr;
3892 ConstantArrayTypeBits.HasExternalSize =
false;
3893 ConstantArrayTypeBits.SizeWidth = Width / 8;
3896 assert(Width < 0xFF &&
"Type width in bits must be less than 8 bits");
3899 ConstantArrayType(QualType Et, QualType Can, ExternalSize *SzPtr,
3900 ArraySizeModifier SM,
unsigned TQ)
3901 : ArrayType(ConstantArray, Et, Can, SM, TQ, SzPtr->SizeExpr),
3903 ConstantArrayTypeBits.HasExternalSize =
true;
3904 ConstantArrayTypeBits.SizeWidth = 0;
3906 assert((SzPtr->SizeExpr ==
nullptr || !Can.isNull()) &&
3907 "canonical constant array should not have size expression");
3910 static ConstantArrayType *
Create(
const ASTContext &Ctx, QualType ET,
3911 QualType Can,
const llvm::APInt &Sz,
3912 const Expr *SzExpr, ArraySizeModifier SzMod,
3922 ConstantArrayTypeBits.SizeWidth = ATy->ConstantArrayTypeBits.SizeWidth;
3958 :
static_cast<int64_t
>(
Size);
3965 ?
SizePtr->Size.getLimitedValue()
3979 static unsigned getNumAddressingBits(
const ASTContext &Context,
3981 const llvm::APInt &NumElements);
3983 unsigned getNumAddressingBits(
const ASTContext &Context)
const;
3987 static unsigned getMaxSizeBits(
const ASTContext &Context);
3994 static void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Ctx,
3999 return T->getTypeClass() == ConstantArray ||
4000 T->getTypeClass() == ArrayParameter;
4006class ArrayParameterType :
public ConstantArrayType {
4009 ArrayParameterType(
const ConstantArrayType *ATy,
QualType CanTy)
4010 : ConstantArrayType(ArrayParameter, ATy, CanTy) {}
4014 return T->getTypeClass() == ArrayParameter;
4028 :
ArrayType(IncompleteArray, et, can, sm, tq) {}
4037 return T->getTypeClass() == IncompleteArray;
4048 ID.AddInteger(llvm::to_underlying(SizeMod));
4049 ID.AddInteger(TypeQuals);
4089 :
ArrayType(VariableArray, et, can, sm, tq, e), SizeExpr((
Stmt *)e) {}
4097 return (
Expr*) SizeExpr;
4104 return T->getTypeClass() == VariableArray;
4108 llvm_unreachable(
"Cannot unique VariableArrayTypes.");
4144 return (
Expr*) SizeExpr;
4151 return T->getTypeClass() == DependentSizedArray;
4159 static void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Context,
4161 unsigned TypeQuals,
Expr *E);
4175class DependentAddressSpaceType :
public Type,
public llvm::FoldingSetNode {
4178 Expr *AddrSpaceExpr;
4194 return T->getTypeClass() == DependentAddressSpace;
4201 static void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Context,
4215class DependentSizedExtVectorType :
public Type,
public llvm::FoldingSetNode {
4237 return T->getTypeClass() == DependentSizedExtVector;
4244 static void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Context,
4322 ID.AddInteger(NumElements);
4324 ID.AddInteger(llvm::to_underlying(VecKind));
4328 return T->getTypeClass() ==
Vector ||
T->getTypeClass() == ExtVector;
4341class DependentVectorType :
public Type,
public llvm::FoldingSetNode {
4363 return T->getTypeClass() == DependentVector;
4370 static void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Context,
4385 :
VectorType(ExtVector, vecType, nElements, canonType,
4392 case 'x':
case 'r':
return 0;
4393 case 'y':
case 'g':
return 1;
4394 case 'z':
case 'b':
return 2;
4395 case 'w':
case 'a':
return 3;
4413 case 'a':
return 10;
4415 case 'b':
return 11;
4417 case 'c':
return 12;
4419 case 'd':
return 13;
4421 case 'e':
return 14;
4423 case 'f':
return 15;
4428 if (isNumericAccessor)
4444 return T->getTypeClass() == ExtVector;
4461 const Expr *RowExpr =
nullptr,
const Expr *ColumnExpr =
nullptr);
4474 if (
T->isDependentType())
4478 if (
T->isEnumeralType())
4484 return T->isRealType();
4488 return T->isRealType() && !
T->isBooleanType();
4495 return T->getTypeClass() == ConstantMatrix ||
4496 T->getTypeClass() == DependentSizedMatrix;
4510 unsigned NColumns,
QualType CanonElementType);
4513 unsigned NColumns,
QualType CanonElementType);
4544 bool IsRowMajor =
false)
const {
4554 unsigned Row = ColumnMajorIdx %
NumRows;
4581 return T->getTypeClass() == ConstantMatrix;
4604 return T->getTypeClass() == DependentSizedMatrix;
4611 static void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Context,
4647 HasPassObjSize = 0x20,
4650 unsigned char Data = 0;
4659 copy.Data = (copy.Data & ~ABIMask) |
unsigned(
kind);
4669 copy.Data |= IsConsumed;
4671 copy.Data &= ~IsConsumed;
4678 Copy.Data |= HasPassObjSize;
4686 Copy.Data |= IsNoEscape;
4688 Copy.Data &= ~IsNoEscape;
4700 return lhs.Data == rhs.Data;
4704 return lhs.Data != rhs.Data;
4739 enum { CallConvMask = 0x3F };
4740 enum { NoReturnMask = 0x40 };
4741 enum { ProducesResultMask = 0x80 };
4742 enum { NoCallerSavedRegsMask = 0x100 };
4743 enum { RegParmMask = 0xe00, RegParmOffset = 9 };
4744 enum { NoCfCheckMask = 0x1000 };
4745 enum { CmseNSCallMask = 0x2000 };
4748 ExtInfo(
unsigned Bits) : Bits(static_cast<
uint16_t>(Bits)) {}
4754 bool producesResult,
bool noCallerSavedRegs,
bool NoCfCheck,
4756 assert((!hasRegParm || regParm < 7) &&
"Invalid regparm value");
4757 Bits = ((
unsigned)cc) | (noReturn ? NoReturnMask : 0) |
4758 (producesResult ? ProducesResultMask : 0) |
4759 (noCallerSavedRegs ? NoCallerSavedRegsMask : 0) |
4760 (hasRegParm ? ((regParm + 1) << RegParmOffset) : 0) |
4761 (NoCfCheck ? NoCfCheckMask : 0) |
4762 (cmseNSCall ? CmseNSCallMask : 0);
4778 bool getHasRegParm()
const {
return ((Bits & RegParmMask) >> RegParmOffset) != 0; }
4781 unsigned RegParm = (Bits & RegParmMask) >> RegParmOffset;
4790 return Bits ==
Other.Bits;
4793 return Bits !=
Other.Bits;
4801 return ExtInfo(Bits | NoReturnMask);
4803 return ExtInfo(Bits & ~NoReturnMask);
4808 return ExtInfo(Bits | ProducesResultMask);
4810 return ExtInfo(Bits & ~ProducesResultMask);
4815 return ExtInfo(Bits | CmseNSCallMask);
4817 return ExtInfo(Bits & ~CmseNSCallMask);
4821 if (noCallerSavedRegs)
4822 return ExtInfo(Bits | NoCallerSavedRegsMask);
4824 return ExtInfo(Bits & ~NoCallerSavedRegsMask);
4829 return ExtInfo(Bits | NoCfCheckMask);
4831 return ExtInfo(Bits & ~NoCfCheckMask);
4835 assert(RegParm < 7 &&
"Invalid regparm value");
4836 return ExtInfo((Bits & ~RegParmMask) |
4837 ((RegParm + 1) << RegParmOffset));
4841 return ExtInfo((Bits & ~CallConvMask) | (
unsigned) cc);
4845 ID.AddInteger(Bits);
4863 LLVM_PREFERRED_TYPE(
bool)
4866 LLVM_PREFERRED_TYPE(
bool)
4869 LLVM_PREFERRED_TYPE(
bool)
4969 bool getCFIUncheckedCalleeAttr()
const;
4976 "Const, volatile and restrict are assumed to be a subset of "
4977 "the fast qualifiers.");
4989 static StringRef getNameForCallConv(
CallingConv CC);
4992 return T->getTypeClass() == FunctionNoProto ||
4993 T->getTypeClass() == FunctionProto;
4999class FunctionNoProtoType :
public FunctionType,
public llvm::FoldingSetNode {
5022 ID.AddPointer(ResultType.getAsOpaquePtr());
5026 return T->getTypeClass() == FunctionNoProto;
5076 Kind oppositeKind()
const;
5099 llvm_unreachable(
"unknown effect kind");
5103 StringRef name()
const;
5107 OS << Effect.
name();
5117 std::optional<FunctionEffect>
5118 effectProhibitingInference(
const Decl &Callee,
5125 bool shouldDiagnoseFunctionCall(
bool Direct,
5129 return LHS.FKind == RHS.FKind;
5132 return !(LHS == RHS);
5135 return LHS.FKind < RHS.FKind;
5142 Expr *Cond =
nullptr;
5151 return Cond == RHS.Cond;
5166 std::string description()
const;
5168 friend raw_ostream &
operator<<(raw_ostream &OS,
5177 const Container *Outer =
nullptr;
5184 return Idx ==
Other.Idx;
5187 return Idx !=
Other.Idx;
5196 assert(Outer !=
nullptr &&
"invalid FunctionEffectIterator");
5197 bool HasConds = !Outer->Conditions.empty();
5199 HasConds ? Outer->Conditions[Idx]
5221class FunctionEffectsRef {
5226 friend FunctionProtoType;
5227 friend FunctionEffectSet;
5238 : Effects(FX), Conditions(Conds) {}
5251 bool empty()
const {
return Effects.empty(); }
5252 size_t size()
const {
return Effects.size(); }
5263 const FunctionEffectsRef &RHS) {
5264 return LHS.Effects == RHS.Effects && LHS.Conditions == RHS.Conditions;
5267 const FunctionEffectsRef &RHS) {
5268 return !(LHS == RHS);
5271 void dump(llvm::raw_ostream &OS)
const;
5275class FunctionEffectKindSet {
5278 using KindBitsT = std::bitset<EndBitPos>;
5280 KindBitsT KindBits{};
5282 explicit FunctionEffectKindSet(KindBitsT KB) : KindBits(KB) {}
5288 return static_cast<size_t>(K);
5297 const FunctionEffectKindSet *Outer =
nullptr;
5302 void advanceToNextSetBit() {
5303 while (Idx < EndBitPos && !Outer->KindBits.test(Idx))
5309 iterator(
const FunctionEffectKindSet &O,
size_t I) : Outer(&O), Idx(I) {
5310 advanceToNextSetBit();
5315 iterator operator++() {
5317 advanceToNextSetBit();
5322 assert(Idx < EndBitPos &&
"Dereference of end iterator");
5331 iterator
begin()
const {
return iterator(*
this, 0); }
5332 iterator
end()
const {
return iterator(*
this, EndBitPos); }
5341 bool empty()
const {
return KindBits.none(); }
5343 return KindBits.test(kindToPos(EK));
5345 void dump(llvm::raw_ostream &OS)
const;
5347 static FunctionEffectKindSet
difference(FunctionEffectKindSet LHS,
5348 FunctionEffectKindSet RHS) {
5349 return FunctionEffectKindSet(LHS.KindBits & ~RHS.KindBits);
5365 : Effects(FX.effects()), Conditions(FX.conditions()) {}
5367 bool empty()
const {
return Effects.empty(); }
5368 size_t size()
const {
return Effects.size(); }
5377 void dump(llvm::raw_ostream &OS)
const;
5412class FunctionProtoType final
5414 public llvm::FoldingSetNode,
5415 private llvm::TrailingObjects<
5416 FunctionProtoType, QualType, SourceLocation,
5417 FunctionType::FunctionTypeExtraBitfields,
5418 FunctionType::FunctionTypeExtraAttributeInfo,
5419 FunctionType::FunctionTypeArmAttributes, FunctionType::ExceptionType,
5420 Expr *, FunctionDecl *, FunctionType::ExtParameterInfo, Qualifiers,
5421 FunctionEffect, EffectConditionExpr> {
5423 friend TrailingObjects;
5516 LLVM_PREFERRED_TYPE(
bool)
5518 LLVM_PREFERRED_TYPE(
bool)
5520 LLVM_PREFERRED_TYPE(
bool)
5535 Result.ExceptionSpec = ESI;
5569 unsigned numTrailingObjects(OverloadToken<QualType>)
const {
5570 return getNumParams();
5573 unsigned numTrailingObjects(OverloadToken<SourceLocation>)
const {
5574 return isVariadic();
5577 unsigned numTrailingObjects(OverloadToken<FunctionTypeArmAttributes>)
const {
5578 return hasArmTypeAttributes();
5581 unsigned numTrailingObjects(OverloadToken<FunctionTypeExtraBitfields>)
const {
5582 return hasExtraBitfields();
5586 numTrailingObjects(OverloadToken<FunctionTypeExtraAttributeInfo>)
const {
5587 return hasExtraAttributeInfo();
5590 unsigned numTrailingObjects(OverloadToken<ExceptionType>)
const {
5591 return getExceptionSpecSize().NumExceptionType;
5594 unsigned numTrailingObjects(OverloadToken<Expr *>)
const {
5595 return getExceptionSpecSize().NumExprPtr;
5598 unsigned numTrailingObjects(OverloadToken<FunctionDecl *>)
const {
5599 return getExceptionSpecSize().NumFunctionDeclPtr;
5602 unsigned numTrailingObjects(OverloadToken<ExtParameterInfo>)
const {
5603 return hasExtParameterInfos() ? getNumParams() : 0;
5606 unsigned numTrailingObjects(OverloadToken<Qualifiers>)
const {
5607 return hasExtQualifiers() ? 1 : 0;
5610 unsigned numTrailingObjects(OverloadToken<FunctionEffect>)
const {
5611 return getNumFunctionEffects();
5616 static bool containsAnyUnexpandedParameterPack(
const QualType *ArgArray,
5618 for (
unsigned Idx = 0; Idx < numArgs; ++Idx)
5619 if (ArgArray[Idx]->containsUnexpandedParameterPack())
5625 FunctionProtoType(QualType result, ArrayRef<QualType> params,
5626 QualType canonical,
const ExtProtoInfo &epi);
5631 struct ExceptionSpecSizeHolder {
5632 unsigned NumExceptionType;
5633 unsigned NumExprPtr;
5634 unsigned NumFunctionDeclPtr;
5639 static ExceptionSpecSizeHolder
5640 getExceptionSpecSize(ExceptionSpecificationType EST,
unsigned NumExceptions) {
5651 return {NumExceptions, 0, 0};
5664 llvm_unreachable(
"bad exception specification kind");
5669 ExceptionSpecSizeHolder getExceptionSpecSize()
const {
5670 return getExceptionSpecSize(getExceptionSpecType(), getNumExceptions());
5674 bool hasExtraBitfields()
const {
5675 assert((getExceptionSpecType() != EST_Dynamic ||
5676 FunctionTypeBits.HasExtraBitfields) &&
5677 "ExtraBitfields are required for given ExceptionSpecType");
5678 return FunctionTypeBits.HasExtraBitfields;
5682 bool hasExtraAttributeInfo()
const {
5683 return FunctionTypeBits.HasExtraBitfields &&
5684 getTrailingObjects<FunctionTypeExtraBitfields>()
5685 ->HasExtraAttributeInfo;
5688 bool hasArmTypeAttributes()
const {
5689 return FunctionTypeBits.HasExtraBitfields &&
5690 getTrailingObjects<FunctionTypeExtraBitfields>()
5691 ->HasArmTypeAttributes;
5694 bool hasExtQualifiers()
const {
5695 return FunctionTypeBits.HasExtQuals;
5702 assert(i <
getNumParams() &&
"invalid parameter index");
5747 bool hasDependentExceptionSpec()
const;
5751 bool hasInstantiationDependentExceptionSpec()
const;
5773 ? getTrailingObjects<FunctionTypeExtraBitfields>()
5789 return *getTrailingObjects<Expr *>();
5800 return getTrailingObjects<FunctionDecl *>()[0];
5810 return getTrailingObjects<FunctionDecl *>()[1];
5828 return isVariadic() ? *getTrailingObjects<SourceLocation>()
5838 bool isTemplateVariadic()
const;
5848 if (hasExtQualifiers())
5849 return *getTrailingObjects<Qualifiers>();
5866 return getTrailingObjects<QualType>();
5881 getTrailingObjects<ExceptionType>());
5906 return getTrailingObjects<ExtParameterInfo>();
5911 if (hasExtraAttributeInfo())
5912 return *getTrailingObjects<FunctionTypeExtraAttributeInfo>();
5919 if (!hasArmTypeAttributes())
5921 return getTrailingObjects<FunctionTypeArmAttributes>()
5922 ->AArch64SMEAttributes;
5926 assert(I <
getNumParams() &&
"parameter index out of range");
5928 return getTrailingObjects<ExtParameterInfo>()[I];
5933 assert(I <
getNumParams() &&
"parameter index out of range");
5935 return getTrailingObjects<ExtParameterInfo>()[I].getABI();
5940 assert(I <
getNumParams() &&
"parameter index out of range");
5942 return getTrailingObjects<ExtParameterInfo>()[I].isConsumed();
5947 return hasExtraBitfields()
5948 ? getTrailingObjects<FunctionTypeExtraBitfields>()
5949 ->NumFunctionEffects
5955 if (hasExtraBitfields()) {
5956 const auto *Bitfields = getTrailingObjects<FunctionTypeExtraBitfields>();
5957 if (Bitfields->NumFunctionEffects > 0)
5958 return getTrailingObjects<FunctionEffect>(
5959 Bitfields->NumFunctionEffects);
5965 if (hasExtraBitfields()) {
5966 const auto *Bitfields = getTrailingObjects<FunctionTypeExtraBitfields>();
5967 if (Bitfields->EffectsHaveConditions)
5968 return Bitfields->NumFunctionEffects;
5975 if (hasExtraBitfields()) {
5976 const auto *Bitfields = getTrailingObjects<FunctionTypeExtraBitfields>();
5977 if (Bitfields->EffectsHaveConditions)
5978 return getTrailingObjects<EffectConditionExpr>(
5979 Bitfields->NumFunctionEffects);
5986 if (hasExtraBitfields()) {
5987 const auto *Bitfields = getTrailingObjects<FunctionTypeExtraBitfields>();
5988 if (Bitfields->NumFunctionEffects > 0) {
5989 const size_t NumConds = Bitfields->EffectsHaveConditions
5990 ? Bitfields->NumFunctionEffects
5993 getTrailingObjects<FunctionEffect>(Bitfields->NumFunctionEffects),
5994 {NumConds ? getTrailingObjects<EffectConditionExpr>() : nullptr,
6004 void printExceptionSpecification(raw_ostream &OS,
6008 return T->getTypeClass() == FunctionProto;
6011 void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Ctx);
6091 template <
class... As>
6094 this->KeywordWrapperBits.Keyword = llvm::to_underlying(
Keyword);
6119 constexpr unsigned long Offset =
6121 const auto *
Addr =
reinterpret_cast<const T *
>(
6122 reinterpret_cast<const char *
>(
this) - Offset);
6123 assert(llvm::isAddrAligned(llvm::Align(
alignof(
T)),
Addr));
6133class UnresolvedUsingType final
6135 private llvm::TrailingObjects<UnresolvedUsingType,
6136 FoldingSetPlaceholder<UnresolvedUsingType>,
6137 NestedNameSpecifier> {
6139 friend TrailingObjects;
6143 unsigned numTrailingObjects(
6151 assert(numTrailingObjects(
6154 return getTrailingObjects<FoldingSetPlaceholder<UnresolvedUsingType>>();
6157 UnresolvedUsingType(ElaboratedTypeKeyword Keyword,
6158 NestedNameSpecifier Qualifier,
6159 const UnresolvedUsingTypenameDecl *D,
6160 const Type *CanonicalType);
6165 ? *getTrailingObjects<NestedNameSpecifier>()
6180 Qualifier.Profile(ID);
6188 return T->getTypeClass() == UnresolvedUsing;
6193 public llvm::FoldingSetNode,
6194 llvm::TrailingObjects<UsingType, NestedNameSpecifier> {
6199 friend TrailingObjects;
6206 return UsingBits.hasQualifier ? *getTrailingObjects() : std::nullopt;
6219 UnderlyingType.Profile(ID);
6221 Qualifier.Profile(ID);
6230class TypedefType final
6232 private llvm::TrailingObjects<TypedefType,
6233 FoldingSetPlaceholder<TypedefType>,
6234 NestedNameSpecifier, QualType> {
6237 friend TrailingObjects;
6246 unsigned numTrailingObjects(OverloadToken<NestedNameSpecifier>)
const {
6247 return TypedefBits.hasQualifier;
6250 TypedefType(TypeClass TC, ElaboratedTypeKeyword Keyword,
6251 NestedNameSpecifier Qualifier,
const TypedefNameDecl *D,
6252 QualType UnderlyingType,
bool HasTypeDifferentFromDecl);
6254 FoldingSetPlaceholder<TypedefType> *getFoldingSetPlaceholder() {
6255 assert(numTrailingObjects(
6256 OverloadToken<FoldingSetPlaceholder<TypedefType>>{}) == 1);
6257 return getTrailingObjects<FoldingSetPlaceholder<TypedefType>>();
6262 return TypedefBits.hasQualifier ? *getTrailingObjects<NestedNameSpecifier>()
6283 ID.AddInteger(llvm::to_underlying(
Keyword));
6285 Qualifier.Profile(ID);
6286 if (!Underlying.
isNull())
6300class MacroQualifiedType :
public Type {
6309 UnderlyingTy(UnderlyingTy), MacroII(MacroII) {
6311 "Expected a macro qualified type to only wrap attributed types.");
6326 return T->getTypeClass() == MacroQualified;
6354 bool isSugared()
const;
6366 public llvm::FoldingSetNode {
6376 static void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Context,
6377 Expr *E,
bool IsUnqual);
6382class TypeOfType :
public Type {
6388 TypeOfType(
const ASTContext &Context, QualType T, QualType Can,
6392 QualType getUnmodifiedType()
const {
return TOType; }
6395 QualType desugar()
const;
6398 bool isSugared()
const {
return true; }
6402 return static_cast<TypeOfKind>(TypeOfBits.Kind);
6409class DecltypeType :
public Type {
6411 QualType UnderlyingType;
6414 friend class ASTContext;
6416 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());
6419 Expr *getUnderlyingExpr()
const {
return E; }
6423 QualType desugar()
const;
6426 bool isSugared()
const;
6437class DependentDecltypeType :
public DecltypeType,
public llvm::FoldingSetNode {
6439 DependentDecltypeType(Expr *E);
6441 void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Context) {
6442 Profile(ID, Context, getUnderlyingExpr());
6445 static void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Context,
6449class PackIndexingType final
6451 public llvm::FoldingSetNode,
6452 private llvm::TrailingObjects<PackIndexingType, QualType> {
6453 friend TrailingObjects;
6460 LLVM_PREFERRED_TYPE(
bool)
6461 unsigned FullySubstituted : 1;
6464 friend class ASTContext;
6465 PackIndexingType(QualType Canonical, QualType Pattern, Expr *IndexExpr,
6466 bool FullySubstituted, ArrayRef<QualType> Expansions = {});
6469 Expr *getIndexExpr()
const {
return IndexExpr; }
6470 QualType getPattern()
const {
return Pattern; }
6472 bool isSugared()
const {
return hasSelectedType(); }
6474 QualType desugar()
const {
6475 if (hasSelectedType())
6476 return getSelectedType();
6477 return QualType(
this, 0);
6480 QualType getSelectedType()
const {
6481 assert(hasSelectedType() &&
"Type is dependant");
6482 return *(getExpansionsPtr() + *getSelectedIndex());
6487 bool hasSelectedType()
const {
return getSelectedIndex() != std::nullopt; }
6489 bool isFullySubstituted()
const {
return FullySubstituted; }
6491 bool expandsToEmptyPack()
const {
return isFullySubstituted() &&
Size == 0; }
6493 ArrayRef<QualType> getExpansions()
const {
6494 return {getExpansionsPtr(),
Size};
6497 static bool classof(
const Type *T) {
6501 void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Context);
6502 static void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Context,
6503 QualType Pattern, Expr *E,
bool FullySubstituted,
6504 ArrayRef<QualType> Expansions);
6507 const QualType *getExpansionsPtr()
const {
return getTrailingObjects(); }
6510 ArrayRef<QualType> Expansions = {});
6514class UnaryTransformType :
public Type,
public llvm::FoldingSetNode {
6517#define TRANSFORM_TYPE_TRAIT_DEF(Enum, _) Enum,
6518#include "clang/Basic/BuiltinTraits.inc"
6526 QualType UnderlyingType;
6531 friend class ASTContext;
6533 UnaryTransformType(QualType BaseTy, QualType UnderlyingTy, UTTKind UKind,
6534 QualType CanonicalTy);
6537 bool isSugared()
const {
return !isDependentType(); }
6538 QualType desugar()
const {
return UnderlyingType; }
6543 UTTKind getUTTKind()
const {
return UKind; }
6545 static bool classof(
const Type *T) {
6549 void Profile(llvm::FoldingSetNodeID &ID) {
6553 static void Profile(llvm::FoldingSetNodeID &ID, QualType BaseType,
6554 QualType UnderlyingType, UTTKind UKind) {
6555 BaseType.Profile(ID);
6556 UnderlyingType.Profile(ID);
6557 ID.AddInteger(UKind);
6561class TagType :
public TypeWithKeyword {
6562 friend class ASTContext;
6568 void *getTrailingPointer()
const;
6569 NestedNameSpecifier &getTrailingQualifier()
const;
6572 TagType(TypeClass TC, ElaboratedTypeKeyword Keyword,
6573 NestedNameSpecifier Qualifier,
const TagDecl *TD,
bool OwnsTag,
6574 bool IsInjected,
const Type *CanonicalType);
6577 TagDecl *getDecl()
const {
return decl; }
6578 [[deprecated(
"Use getDecl instead")]] TagDecl *getOriginalDecl()
const {
6582 NestedNameSpecifier getQualifier()
const;
6585 bool isTagOwned()
const {
return TagTypeBits.OwnsTag; }
6587 bool isInjected()
const {
return TagTypeBits.IsInjected; }
6589 ClassTemplateDecl *getTemplateDecl()
const;
6590 TemplateName getTemplateName(
const ASTContext &Ctx)
const;
6591 ArrayRef<TemplateArgument> getTemplateArgs(
const ASTContext &Ctx)
const;
6593 bool isSugared()
const {
return false; }
6594 QualType desugar()
const {
return getCanonicalTypeInternal(); }
6596 static bool classof(
const Type *T) {
6602struct TagTypeFoldingSetPlaceholder :
public llvm::FoldingSetNode {
6603 static constexpr size_t getOffset() {
6604 return alignof(TagType) -
6605 (
sizeof(TagTypeFoldingSetPlaceholder) %
alignof(TagType));
6608 static void Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword,
6609 NestedNameSpecifier Qualifier,
const TagDecl *Tag,
6610 bool OwnsTag,
bool IsInjected) {
6611 ID.AddInteger(
uintptr_t(Tag) | OwnsTag | (IsInjected << 1) |
6612 ((Keyword != ElaboratedTypeKeyword::None) << 2));
6613 if (Keyword != ElaboratedTypeKeyword::None)
6614 ID.AddInteger(llvm::to_underlying(Keyword));
6619 void Profile(llvm::FoldingSetNodeID &ID)
const {
6620 const TagType *
T = getTagType();
6621 Profile(ID,
T->getKeyword(),
T->getQualifier(),
T->getDecl(),
6622 T->isTagOwned(),
T->isInjected());
6625 TagType *getTagType() {
6626 return reinterpret_cast<TagType *
>(
reinterpret_cast<char *
>(
this + 1) +
6629 const TagType *getTagType()
const {
6630 return const_cast<TagTypeFoldingSetPlaceholder *
>(
this)->getTagType();
6632 static TagTypeFoldingSetPlaceholder *fromTagType(TagType *T) {
6633 return reinterpret_cast<TagTypeFoldingSetPlaceholder *
>(
6634 reinterpret_cast<char *
>(
T) - getOffset()) -
6641class RecordType final :
public TagType {
6642 using TagType::TagType;
6645 RecordDecl *getDecl()
const {
6646 return reinterpret_cast<RecordDecl *
>(TagType::getDecl());
6648 [[deprecated(
"Use getDecl instead")]] RecordDecl *getOriginalDecl()
const {
6654 bool hasConstFields()
const;
6661class EnumType final :
public TagType {
6662 using TagType::TagType;
6665 EnumDecl *getDecl()
const {
6666 return reinterpret_cast<EnumDecl *
>(TagType::getDecl());
6668 [[deprecated(
"Use getDecl instead")]] EnumDecl *getOriginalDecl()
const {
6692class InjectedClassNameType final :
public TagType {
6693 friend class ASTContext;
6695 InjectedClassNameType(ElaboratedTypeKeyword Keyword,
6696 NestedNameSpecifier Qualifier,
const TagDecl *TD,
6697 bool IsInjected,
const Type *CanonicalType);
6700 CXXRecordDecl *getDecl()
const {
6701 return reinterpret_cast<CXXRecordDecl *
>(TagType::getDecl());
6703 [[deprecated(
"Use getDecl instead")]] CXXRecordDecl *getOriginalDecl()
const {
6707 static bool classof(
const Type *T) {
6726 using Kind = attr::Kind;
6729 friend class ASTContext;
6731 const Attr *Attribute;
6733 QualType ModifiedType;
6734 QualType EquivalentType;
6736 AttributedType(QualType canon, attr::Kind attrKind, QualType modified,
6737 QualType equivalent)
6740 AttributedType(QualType canon,
const Attr *attr, QualType modified,
6741 QualType equivalent);
6744 AttributedType(QualType canon, attr::Kind attrKind,
const Attr *attr,
6745 QualType modified, QualType equivalent);
6748 Kind getAttrKind()
const {
6749 return static_cast<Kind>(AttributedTypeBits.AttrKind);
6752 const Attr *getAttr()
const {
return Attribute; }
6754 QualType getModifiedType()
const {
return ModifiedType; }
6755 QualType getEquivalentType()
const {
return EquivalentType; }
6757 bool isSugared()
const {
return true; }
6758 QualType desugar()
const {
return getEquivalentType(); }
6775 bool isQualifier()
const;
6777 bool isMSTypeSpec()
const;
6779 bool isWebAssemblyFuncrefSpec()
const;
6781 bool isCallingConv()
const;
6796 void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Ctx) {
6797 Profile(ID, Ctx, getAttrKind(), ModifiedType, EquivalentType, Attribute);
6800 static void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Ctx,
6801 Kind attrKind, QualType modified, QualType equivalent,
6804 static bool classof(
const Type *T) {
6809class BTFTagAttributedType :
public Type,
public llvm::FoldingSetNode {
6811 friend class ASTContext;
6813 QualType WrappedType;
6814 const BTFTypeTagAttr *BTFAttr;
6816 BTFTagAttributedType(QualType Canon, QualType Wrapped,
6817 const BTFTypeTagAttr *BTFAttr)
6818 : Type(BTFTagAttributed, Canon, Wrapped->getDependence()),
6819 WrappedType(Wrapped), BTFAttr(BTFAttr) {}
6822 QualType getWrappedType()
const {
return WrappedType; }
6823 const BTFTypeTagAttr *getAttr()
const {
return BTFAttr; }
6825 bool isSugared()
const {
return true; }
6826 QualType desugar()
const {
return getWrappedType(); }
6828 void Profile(llvm::FoldingSetNodeID &ID) {
6829 Profile(ID, WrappedType, BTFAttr);
6832 static void Profile(llvm::FoldingSetNodeID &ID, QualType Wrapped,
6833 const BTFTypeTagAttr *BTFAttr) {
6834 ID.AddPointer(Wrapped.getAsOpaquePtr());
6835 ID.AddPointer(BTFAttr);
6838 static bool classof(
const Type *T) {
6843class OverflowBehaviorType :
public Type,
public llvm::FoldingSetNode {
6845 enum OverflowBehaviorKind { Wrap, Trap };
6848 friend class ASTContext;
6850 QualType UnderlyingType;
6851 OverflowBehaviorKind BehaviorKind;
6853 OverflowBehaviorType(QualType Canon, QualType Underlying,
6854 OverflowBehaviorKind Kind);
6858 OverflowBehaviorKind getBehaviorKind()
const {
return BehaviorKind; }
6860 bool isWrapKind()
const {
return BehaviorKind == OverflowBehaviorKind::Wrap; }
6861 bool isTrapKind()
const {
return BehaviorKind == OverflowBehaviorKind::Trap; }
6863 bool isSugared()
const {
return false; }
6866 void Profile(llvm::FoldingSetNodeID &ID) {
6867 Profile(ID, UnderlyingType, BehaviorKind);
6870 static void Profile(llvm::FoldingSetNodeID &ID, QualType Underlying,
6871 OverflowBehaviorKind Kind) {
6872 ID.AddPointer(Underlying.getAsOpaquePtr());
6873 ID.AddInteger((
int)Kind);
6876 static bool classof(
const Type *T) {
6881class HLSLAttributedResourceType :
public Type,
public llvm::FoldingSetNode {
6886 llvm::dxil::ResourceDimension ResourceDimension;
6888 LLVM_PREFERRED_TYPE(
bool)
6891 LLVM_PREFERRED_TYPE(
bool)
6894 LLVM_PREFERRED_TYPE(
bool)
6897 LLVM_PREFERRED_TYPE(
bool)
6904 Expr *SampleCountExpr;
6907 llvm::dxil::ResourceDimension ResourceDimension,
6908 bool IsROV =
false,
bool RawBuffer =
false,
6909 bool IsCounter =
false,
bool IsArray =
false,
6910 Expr *SampleCountExpr =
nullptr)
6912 IsROV(IsROV), RawBuffer(RawBuffer), IsCounter(IsCounter),
6913 IsArray(IsArray), SampleCountExpr(SampleCountExpr) {}
6920 llvm::dxil::ResourceDimension::
Unknown) {}
6922 bool isMultiSampled()
const {
return SampleCountExpr !=
nullptr; }
6924 friend bool operator==(
const Attributes &LHS,
const Attributes &RHS) {
6925 return std::tie(LHS.ResourceClass, LHS.ResourceDimension, LHS.IsROV,
6926 LHS.RawBuffer, LHS.IsCounter, LHS.IsArray,
6927 LHS.SampleCountExpr) ==
6928 std::tie(RHS.ResourceClass, RHS.ResourceDimension, RHS.IsROV,
6929 RHS.RawBuffer, RHS.IsCounter, RHS.IsArray,
6930 RHS.SampleCountExpr);
6932 friend bool operator!=(
const Attributes &LHS,
const Attributes &RHS) {
6933 return !(LHS == RHS);
6938 friend class ASTContext;
6940 QualType WrappedType;
6941 QualType ContainedType;
6942 const Attributes Attrs;
6944 HLSLAttributedResourceType(QualType Wrapped, QualType Contained,
6945 const Attributes &Attrs);
6949 const Attributes &Attrs);
6952 QualType getWrappedType()
const {
return WrappedType; }
6953 QualType getContainedType()
const {
return ContainedType; }
6954 bool hasContainedType()
const {
return !ContainedType.isNull(); }
6955 Expr *getSampleCountExpr()
const {
return Attrs.SampleCountExpr; }
6956 bool isMultiSampled()
const {
return Attrs.isMultiSampled(); }
6957 const Attributes &getAttrs()
const {
return Attrs; }
6958 bool isRaw()
const {
return Attrs.RawBuffer; }
6959 bool isStructured()
const {
return !ContainedType->isChar8Type(); }
6961 bool isSugared()
const {
return false; }
6962 QualType desugar()
const {
return QualType(
this, 0); }
6964 void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Ctx) {
6965 Profile(ID, Ctx, WrappedType, ContainedType, Attrs);
6968 static void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Ctx,
6969 QualType Wrapped, QualType Contained,
6970 const Attributes &Attrs);
6972 static bool classof(
const Type *T) {
6977 static const HLSLAttributedResourceType *
6978 findHandleTypeOnResource(
const Type *RT);
6984 enum SpirvOperandKind :
unsigned char {
6997 QualType ResultType;
7003 SpirvOperand(SpirvOperandKind Kind, QualType ResultType, llvm::APInt
Value)
7006 SpirvOperand(
const SpirvOperand &Other) =
default;
7007 ~SpirvOperand() =
default;
7008 SpirvOperand &operator=(
const SpirvOperand &Other) =
default;
7010 bool operator==(
const SpirvOperand &Other)
const {
7015 bool operator!=(
const SpirvOperand &Other)
const {
return !(*
this ==
Other); }
7020 bool isConstant()
const {
return Kind == ConstantId; }
7022 bool isType()
const {
return Kind == TypeId; }
7024 llvm::APInt getValue()
const {
7026 "This is not an operand with a value!");
7030 QualType getResultType()
const {
7031 assert((isConstant() || isType()) &&
7032 "This is not an operand with a result type!");
7036 static SpirvOperand createConstant(QualType ResultType, llvm::APInt Val) {
7037 return SpirvOperand(ConstantId, ResultType, std::move(Val));
7040 static SpirvOperand createLiteral(llvm::APInt Val) {
7041 return SpirvOperand(Literal, QualType(), std::move(Val));
7044 static SpirvOperand createType(QualType T) {
7045 return SpirvOperand(TypeId, T, llvm::APSInt());
7048 void Profile(llvm::FoldingSetNodeID &ID)
const {
7049 ID.AddInteger(Kind);
7050 ID.AddPointer(ResultType.getAsOpaquePtr());
7056class HLSLInlineSpirvType final
7058 public llvm::FoldingSetNode,
7059 private llvm::TrailingObjects<HLSLInlineSpirvType, SpirvOperand> {
7060 friend class ASTContext;
7061 friend TrailingObjects;
7070 ArrayRef<SpirvOperand> Operands)
7072 Size(
Size), Alignment(Alignment), NumOperands(Operands.size()) {
7073 for (
size_t I = 0; I < NumOperands; I++) {
7076 auto *
Operand =
new (&getTrailingObjects()[I]) SpirvOperand();
7084 uint32_t getAlignment()
const {
return Alignment; }
7085 ArrayRef<SpirvOperand> getOperands()
const {
7086 return getTrailingObjects(NumOperands);
7089 bool isSugared()
const {
return false; }
7090 QualType desugar()
const {
return QualType(
this, 0); }
7092 void Profile(llvm::FoldingSetNodeID &ID) {
7093 Profile(ID, Opcode, Size, Alignment, getOperands());
7096 static void Profile(llvm::FoldingSetNodeID &ID,
uint32_t Opcode,
7098 ArrayRef<SpirvOperand> Operands) {
7099 ID.AddInteger(Opcode);
7100 ID.AddInteger(Size);
7101 ID.AddInteger(Alignment);
7102 for (
auto &Operand : Operands)
7106 static bool classof(
const Type *T) {
7111class TemplateTypeParmType :
public Type,
public llvm::FoldingSetNode {
7112 friend class ASTContext;
7115 TemplateTypeParmDecl *TTPDecl;
7117 TemplateTypeParmType(
unsigned D,
unsigned I,
bool PP,
7118 TemplateTypeParmDecl *TTPDecl, QualType Canon)
7123 assert(!TTPDecl == Canon.isNull());
7124 assert(D < (1 << TemplateTypeParmTypeDepthBits) &&
"Depth too large");
7125 assert(I < (1 << TemplateTypeParmTypeIndexBits) &&
"Index too large");
7126 TemplateTypeParmTypeBits.Depth = D;
7127 TemplateTypeParmTypeBits.Index = I;
7128 TemplateTypeParmTypeBits.ParameterPack = PP;
7132 unsigned getDepth()
const {
return TemplateTypeParmTypeBits.Depth; }
7133 unsigned getIndex()
const {
return TemplateTypeParmTypeBits.Index; }
7135 return TemplateTypeParmTypeBits.ParameterPack;
7138 TemplateTypeParmDecl *getDecl()
const {
return TTPDecl; }
7142 bool isSugared()
const {
return false; }
7143 QualType desugar()
const {
return QualType(
this, 0); }
7145 void Profile(llvm::FoldingSetNodeID &ID) {
7149 static void Profile(llvm::FoldingSetNodeID &ID,
unsigned Depth,
7150 unsigned Index,
bool ParameterPack,
7151 TemplateTypeParmDecl *TTPDecl) {
7152 ID.AddInteger(Depth);
7153 ID.AddInteger(Index);
7154 ID.AddBoolean(ParameterPack);
7155 ID.AddPointer(TTPDecl);
7158 static bool classof(
const Type *T) {
7170class SubstTemplateTypeParmType final
7172 public llvm::FoldingSetNode,
7173 private llvm::TrailingObjects<SubstTemplateTypeParmType, QualType> {
7174 friend class ASTContext;
7175 friend class llvm::TrailingObjects<SubstTemplateTypeParmType, QualType>;
7177 Decl *AssociatedDecl;
7179 SubstTemplateTypeParmType(QualType Replacement, Decl *AssociatedDecl,
7180 unsigned Index, UnsignedOrNone PackIndex,
7186 QualType getReplacementType()
const {
7187 return SubstTemplateTypeParmTypeBits.HasNonCanonicalUnderlyingType
7188 ? *getTrailingObjects()
7189 : getCanonicalTypeInternal();
7195 Decl *getAssociatedDecl()
const {
return AssociatedDecl; }
7198 const TemplateTypeParmDecl *getReplacedParameter()
const;
7202 unsigned getIndex()
const {
return SubstTemplateTypeParmTypeBits.Index; }
7206 unsigned getFinal()
const {
return SubstTemplateTypeParmTypeBits.Final; }
7209 return UnsignedOrNone::fromInternalRepresentation(
7210 SubstTemplateTypeParmTypeBits.PackIndex);
7213 bool isSugared()
const {
return true; }
7214 QualType desugar()
const {
return getReplacementType(); }
7216 void Profile(llvm::FoldingSetNodeID &ID) {
7217 Profile(ID, getReplacementType(), getAssociatedDecl(),
getIndex(),
7218 getPackIndex(), getFinal());
7221 static void Profile(llvm::FoldingSetNodeID &ID, QualType Replacement,
7222 const Decl *AssociatedDecl,
unsigned Index,
7223 UnsignedOrNone PackIndex,
bool Final);
7225 static bool classof(
const Type *T) {
7236class SubstPackType :
public Type,
public llvm::FoldingSetNode {
7237 friend class ASTContext;
7244 SubstPackType(TypeClass Derived, QualType Canon,
7245 const TemplateArgument &ArgPack);
7248 unsigned getNumArgs()
const {
return SubstPackTypeBits.NumArgs; }
7250 TemplateArgument getArgumentPack()
const;
7252 void Profile(llvm::FoldingSetNodeID &ID);
7253 static void Profile(llvm::FoldingSetNodeID &ID,
7254 const TemplateArgument &ArgPack);
7256 static bool classof(
const Type *T) {
7263class SubstBuiltinTemplatePackType :
public SubstPackType {
7264 friend class ASTContext;
7266 SubstBuiltinTemplatePackType(QualType Canon,
const TemplateArgument &ArgPack);
7269 bool isSugared()
const {
return false; }
7270 QualType desugar()
const {
return QualType(
this, 0); }
7273 using SubstPackType::Profile;
7275 static bool classof(
const Type *T) {
7292class SubstTemplateTypeParmPackType :
public SubstPackType {
7293 friend class ASTContext;
7295 llvm::PointerIntPair<Decl *, 1, bool> AssociatedDeclAndFinal;
7297 SubstTemplateTypeParmPackType(QualType Canon, Decl *AssociatedDecl,
7298 unsigned Index,
bool Final,
7299 const TemplateArgument &ArgPack);
7307 Decl *getAssociatedDecl()
const;
7310 const TemplateTypeParmDecl *getReplacedParameter()
const;
7315 return SubstPackTypeBits.SubstTemplTypeParmPackIndex;
7320 bool getFinal()
const;
7322 bool isSugared()
const {
return false; }
7323 QualType desugar()
const {
return QualType(
this, 0); }
7325 void Profile(llvm::FoldingSetNodeID &ID);
7326 static void Profile(llvm::FoldingSetNodeID &ID,
const Decl *AssociatedDecl,
7327 unsigned Index,
bool Final,
7328 const TemplateArgument &ArgPack);
7330 static bool classof(
const Type *T) {
7343class DeducedType :
public Type {
7344 QualType DeducedAsType;
7347 DeducedType(TypeClass TC, DeducedKind DK, QualType DeducedAsTypeOrCanon);
7349 static void Profile(llvm::FoldingSetNodeID &ID, DeducedKind DK,
7351 ID.AddInteger(llvm::to_underlying(DK));
7357 return static_cast<DeducedKind>(DeducedTypeBits.Kind);
7360 bool isSugared()
const {
return getDeducedKind() == DeducedKind::Deduced; }
7361 QualType desugar()
const {
7362 return isSugared() ? DeducedAsType : QualType(
this, 0);
7367 QualType getDeducedType()
const {
return DeducedAsType; }
7368 bool isDeduced()
const {
return getDeducedKind() != DeducedKind::Undeduced; }
7370 static bool classof(
const Type *T) {
7378class AutoType :
public DeducedType,
public llvm::FoldingSetNode {
7379 friend class ASTContext;
7383 AutoType(DeducedKind DK, QualType DeducedAsTypeOrCanon,
7384 AutoTypeKeyword Keyword, TemplateName TypeConstraintConcept,
7385 ArrayRef<TemplateArgument> TypeConstraintArgs);
7388 ArrayRef<TemplateArgument> getTypeConstraintArguments()
const {
7389 return {
reinterpret_cast<const TemplateArgument *
>(
this + 1),
7390 AutoTypeBits.NumArgs};
7394 return TypeConstraintConcept;
7397 bool isConstrained()
const {
return !TypeConstraintConcept.isNull(); }
7399 bool isDecltypeAuto()
const {
7400 return getKeyword() == AutoTypeKeyword::DecltypeAuto;
7403 bool isGNUAutoType()
const {
7404 return getKeyword() == AutoTypeKeyword::GNUAutoType;
7408 return (AutoTypeKeyword)AutoTypeBits.Keyword;
7411 void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Context);
7412 static void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Context,
7413 DeducedKind DK, QualType Deduced, AutoTypeKeyword Keyword,
7414 TemplateName CD, ArrayRef<TemplateArgument> Arguments);
7416 static bool classof(
const Type *T) {
7422class DeducedTemplateSpecializationType :
public KeywordWrapper<DeducedType>,
7423 public llvm::FoldingSetNode {
7424 friend class ASTContext;
7429 DeducedTemplateSpecializationType(DeducedKind DK,
7430 QualType DeducedAsTypeOrCanon,
7431 ElaboratedTypeKeyword Keyword,
7432 TemplateName Template)
7433 : KeywordWrapper(
Keyword, DeducedTemplateSpecialization, DK,
7434 DeducedAsTypeOrCanon),
7441 if (DK == DeducedKind::Deduced)
7450 void Profile(llvm::FoldingSetNodeID &ID)
const {
7451 Profile(ID, getDeducedKind(), getDeducedType(), getKeyword(),
7455 static void Profile(llvm::FoldingSetNodeID &ID, DeducedKind DK,
7456 QualType Deduced, ElaboratedTypeKeyword Keyword,
7457 TemplateName Template) {
7458 DeducedType::Profile(ID, DK, Deduced);
7459 ID.AddInteger(llvm::to_underlying(Keyword));
7463 static bool classof(
const Type *T) {
7488class TemplateSpecializationType :
public TypeWithKeyword,
7489 public llvm::FoldingSetNode {
7490 friend class ASTContext;
7501 TemplateSpecializationType(ElaboratedTypeKeyword Keyword, TemplateName T,
7502 bool IsAlias, ArrayRef<TemplateArgument> Args,
7503 QualType Underlying);
7518 anyDependentTemplateArguments(ArrayRef<TemplateArgumentLoc> Args,
7519 ArrayRef<TemplateArgument> Converted);
7521 anyDependentTemplateArguments(
const TemplateArgumentListInfo &,
7522 ArrayRef<TemplateArgument> Converted);
7523 static bool anyInstantiationDependentTemplateArguments(
7524 ArrayRef<TemplateArgumentLoc> Args);
7528 bool isCurrentInstantiation()
const {
7529 return isa<InjectedClassNameType>(getCanonicalTypeInternal());
7547 bool isTypeAlias()
const {
return TemplateSpecializationTypeBits.TypeAlias; }
7551 QualType getAliasedType()
const;
7556 ArrayRef<TemplateArgument> template_arguments()
const {
7557 return {
reinterpret_cast<const TemplateArgument *
>(
this + 1),
7558 TemplateSpecializationTypeBits.NumArgs};
7561 bool isSugared()
const;
7563 QualType desugar()
const {
7564 return isTypeAlias() ? getAliasedType() : getCanonicalTypeInternal();
7567 void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Ctx);
7568 static void Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword,
7569 TemplateName T, ArrayRef<TemplateArgument> Args,
7570 QualType Underlying,
const ASTContext &Context);
7572 static bool classof(
const Type *T) {
7579void printTemplateArgumentList(raw_ostream &OS,
7580 ArrayRef<TemplateArgument> Args,
7581 const PrintingPolicy &Policy,
7582 const TemplateParameterList *TPL =
nullptr);
7584void printTemplateArgumentList(raw_ostream &OS,
7585 ArrayRef<TemplateArgumentLoc> Args,
7586 const PrintingPolicy &Policy,
7587 const TemplateParameterList *TPL =
nullptr);
7589void printTemplateArgumentList(raw_ostream &OS,
7590 const TemplateArgumentListInfo &Args,
7591 const PrintingPolicy &Policy,
7592 const TemplateParameterList *TPL =
nullptr);
7596bool isSubstitutedDefaultArgument(ASTContext &Ctx, TemplateArgument Arg,
7597 const NamedDecl *Param,
7598 ArrayRef<TemplateArgument> Args,
7613class DependentNameType :
public TypeWithKeyword,
public llvm::FoldingSetNode {
7614 friend class ASTContext;
7617 NestedNameSpecifier NNS;
7620 const IdentifierInfo *Name;
7622 DependentNameType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier NNS,
7623 const IdentifierInfo *Name, QualType CanonType)
7624 : TypeWithKeyword(
Keyword, DependentName, CanonType,
7628 NNS(NNS), Name(Name) {
7634 NestedNameSpecifier getQualifier()
const {
return NNS; }
7642 bool isSugared()
const {
return false; }
7643 QualType desugar()
const {
return QualType(
this, 0); }
7645 void Profile(llvm::FoldingSetNodeID &ID) {
7646 Profile(ID, getKeyword(), NNS, Name);
7649 static void Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword,
7650 NestedNameSpecifier NNS,
const IdentifierInfo *Name) {
7651 ID.AddInteger(llvm::to_underlying(Keyword));
7653 ID.AddPointer(Name);
7656 static bool classof(
const Type *T) {
7683class PackExpansionType :
public Type,
public llvm::FoldingSetNode {
7684 friend class ASTContext;
7689 PackExpansionType(QualType Pattern, QualType Canon,
7690 UnsignedOrNone NumExpansions)
7691 : Type(PackExpansion, Canon,
7696 PackExpansionTypeBits.NumExpansions =
7697 NumExpansions ? *NumExpansions + 1 : 0;
7704 QualType getPattern()
const {
return Pattern; }
7709 if (PackExpansionTypeBits.NumExpansions)
7710 return PackExpansionTypeBits.NumExpansions - 1;
7711 return std::nullopt;
7714 bool isSugared()
const {
return false; }
7715 QualType desugar()
const {
return QualType(
this, 0); }
7717 void Profile(llvm::FoldingSetNodeID &ID) {
7718 Profile(ID, getPattern(), getNumExpansions());
7721 static void Profile(llvm::FoldingSetNodeID &ID, QualType Pattern,
7722 UnsignedOrNone NumExpansions) {
7723 ID.AddPointer(Pattern.getAsOpaquePtr());
7724 ID.AddInteger(NumExpansions.toInternalRepresentation());
7727 static bool classof(
const Type *T) {
7735class ObjCProtocolQualifiers {
7737 ObjCProtocolQualifiers() =
default;
7739 ObjCProtocolDecl *
const *getProtocolStorage()
const {
7740 return const_cast<ObjCProtocolQualifiers*
>(
this)->getProtocolStorage();
7743 ObjCProtocolDecl **getProtocolStorage() {
7744 return static_cast<T*
>(
this)->getProtocolStorageImpl();
7747 void setNumProtocols(
unsigned N) {
7748 static_cast<T*
>(
this)->setNumProtocolsImpl(N);
7751 void initialize(ArrayRef<ObjCProtocolDecl *> protocols) {
7752 setNumProtocols(protocols.size());
7753 assert(getNumProtocols() == protocols.size() &&
7754 "bitfield overflow in protocol count");
7755 if (!protocols.empty())
7756 memcpy(getProtocolStorage(), protocols.data(),
7757 protocols.size() *
sizeof(ObjCProtocolDecl*));
7761 using qual_iterator = ObjCProtocolDecl *
const *;
7762 using qual_range = llvm::iterator_range<qual_iterator>;
7764 qual_range quals()
const {
return qual_range(qual_begin(), qual_end()); }
7765 qual_iterator qual_begin()
const {
return getProtocolStorage(); }
7766 qual_iterator qual_end()
const {
return qual_begin() + getNumProtocols(); }
7768 bool qual_empty()
const {
return getNumProtocols() == 0; }
7772 unsigned getNumProtocols()
const {
7773 return static_cast<const T*
>(
this)->getNumProtocolsImpl();
7777 ObjCProtocolDecl *getProtocol(
unsigned I)
const {
7778 assert(I < getNumProtocols() &&
"Out-of-range protocol access");
7779 return qual_begin()[I];
7783 ArrayRef<ObjCProtocolDecl *> getProtocols()
const {
7784 return ArrayRef<ObjCProtocolDecl *>(qual_begin(), getNumProtocols());
7790class ObjCTypeParamType :
public Type,
7791 public ObjCProtocolQualifiers<ObjCTypeParamType>,
7792 public llvm::FoldingSetNode {
7793 friend class ASTContext;
7794 friend class ObjCProtocolQualifiers<ObjCTypeParamType>;
7797 unsigned NumProtocols : 6;
7799 ObjCTypeParamDecl *OTPDecl;
7804 ObjCProtocolDecl **getProtocolStorageImpl();
7808 unsigned getNumProtocolsImpl()
const {
7809 return NumProtocols;
7812 void setNumProtocolsImpl(
unsigned N) {
7816 ObjCTypeParamType(
const ObjCTypeParamDecl *D,
7818 ArrayRef<ObjCProtocolDecl *> protocols);
7821 bool isSugared()
const {
return true; }
7822 QualType desugar()
const {
return getCanonicalTypeInternal(); }
7824 static bool classof(
const Type *T) {
7828 void Profile(llvm::FoldingSetNodeID &ID);
7829 static void Profile(llvm::FoldingSetNodeID &ID,
7830 const ObjCTypeParamDecl *OTPDecl,
7831 QualType CanonicalType,
7832 ArrayRef<ObjCProtocolDecl *> protocols);
7834 ObjCTypeParamDecl *getDecl()
const {
return OTPDecl; }
7865class ObjCObjectType :
public Type,
7866 public ObjCProtocolQualifiers<ObjCObjectType> {
7867 friend class ObjCProtocolQualifiers<ObjCObjectType>;
7885 mutable llvm::PointerIntPair<const ObjCObjectType *, 1, bool>
7886 CachedSuperClassType;
7888 QualType *getTypeArgStorage();
7889 const QualType *getTypeArgStorage()
const {
7890 return const_cast<ObjCObjectType *
>(
this)->getTypeArgStorage();
7893 ObjCProtocolDecl **getProtocolStorageImpl();
7896 unsigned getNumProtocolsImpl()
const {
7897 return ObjCObjectTypeBits.NumProtocols;
7899 void setNumProtocolsImpl(
unsigned N) {
7900 ObjCObjectTypeBits.NumProtocols = N;
7904 enum Nonce_ObjCInterface { Nonce_ObjCInterface };
7906 ObjCObjectType(QualType Canonical, QualType Base,
7907 ArrayRef<QualType> typeArgs,
7908 ArrayRef<ObjCProtocolDecl *> protocols,
7911 ObjCObjectType(
enum Nonce_ObjCInterface)
7913 BaseType(QualType(this_(), 0)) {
7914 ObjCObjectTypeBits.NumProtocols = 0;
7915 ObjCObjectTypeBits.NumTypeArgs = 0;
7916 ObjCObjectTypeBits.IsKindOf = 0;
7919 void computeSuperClassTypeSlow()
const;
7930 bool isObjCId()
const {
7931 return getBaseType()->isSpecificBuiltinType(BuiltinType::ObjCId);
7934 bool isObjCClass()
const {
7935 return getBaseType()->isSpecificBuiltinType(BuiltinType::ObjCClass);
7938 bool isObjCUnqualifiedId()
const {
return qual_empty() && isObjCId(); }
7939 bool isObjCUnqualifiedClass()
const {
return qual_empty() && isObjCClass(); }
7940 bool isObjCUnqualifiedIdOrClass()
const {
7941 if (!qual_empty())
return false;
7942 if (
const BuiltinType *T =
getBaseType()->getAs<BuiltinType>())
7943 return T->getKind() == BuiltinType::ObjCId ||
7944 T->getKind() == BuiltinType::ObjCClass;
7947 bool isObjCQualifiedId()
const {
return !qual_empty() && isObjCId(); }
7948 bool isObjCQualifiedClass()
const {
return !qual_empty() && isObjCClass(); }
7952 ObjCInterfaceDecl *getInterface()
const;
7956 bool isSpecialized()
const;
7959 bool isSpecializedAsWritten()
const {
7960 return ObjCObjectTypeBits.NumTypeArgs > 0;
7965 bool isUnspecialized()
const {
return !isSpecialized(); }
7969 bool isUnspecializedAsWritten()
const {
return !isSpecializedAsWritten(); }
7972 ArrayRef<QualType> getTypeArgs()
const;
7976 ArrayRef<QualType> getTypeArgsAsWritten()
const {
7977 return {getTypeArgStorage(), ObjCObjectTypeBits.NumTypeArgs};
7981 bool isKindOfTypeAsWritten()
const {
return ObjCObjectTypeBits.IsKindOf; }
7984 bool isKindOfType()
const;
7992 QualType getSuperClassType()
const {
7993 if (!CachedSuperClassType.getInt())
7994 computeSuperClassTypeSlow();
7996 assert(CachedSuperClassType.getInt() &&
"Superclass not set?");
7997 return QualType(CachedSuperClassType.getPointer(), 0);
8002 QualType stripObjCKindOfTypeAndQuals(
const ASTContext &ctx)
const;
8004 bool isSugared()
const {
return false; }
8005 QualType desugar()
const {
return QualType(
this, 0); }
8007 static bool classof(
const Type *T) {
8017class ObjCObjectTypeImpl :
public ObjCObjectType,
public llvm::FoldingSetNode {
8018 friend class ASTContext;
8023 ObjCObjectTypeImpl(QualType Canonical, QualType Base,
8024 ArrayRef<QualType> typeArgs,
8025 ArrayRef<ObjCProtocolDecl *> protocols,
8027 : ObjCObjectType(Canonical,
Base, typeArgs, protocols, isKindOf) {}
8030 void Profile(llvm::FoldingSetNodeID &ID);
8031 static void Profile(llvm::FoldingSetNodeID &ID,
8033 ArrayRef<QualType> typeArgs,
8034 ArrayRef<ObjCProtocolDecl *> protocols,
8038inline QualType *ObjCObjectType::getTypeArgStorage() {
8039 return reinterpret_cast<QualType *
>(
static_cast<ObjCObjectTypeImpl*
>(
this)+1);
8042inline ObjCProtocolDecl **ObjCObjectType::getProtocolStorageImpl() {
8043 return reinterpret_cast<ObjCProtocolDecl**
>(
8044 getTypeArgStorage() + ObjCObjectTypeBits.NumTypeArgs);
8047inline ObjCProtocolDecl **ObjCTypeParamType::getProtocolStorageImpl() {
8048 return reinterpret_cast<ObjCProtocolDecl**
>(
8049 static_cast<ObjCTypeParamType*
>(
this)+1);
8083 return T->getTypeClass() == ObjCInterface;
8099inline ObjCInterfaceDecl *ObjCObjectType::getInterface()
const {
8100 QualType baseType = getBaseType();
8102 if (
const auto *T = dyn_cast<ObjCInterfaceType>(ObjT))
8103 return T->getDecl();
8105 baseType = ObjT->getBaseType();
8120class ObjCObjectPointerType :
public Type,
public llvm::FoldingSetNode {
8127 PointeeType(Pointee) {}
8270 QualType getSuperClassType()
const;
8282 ID.AddPointer(
T.getAsOpaquePtr());
8286 return T->getTypeClass() == ObjCObjectPointer;
8290class AtomicType :
public Type,
public llvm::FoldingSetNode {
8311 ID.AddPointer(
T.getAsOpaquePtr());
8315 return T->getTypeClass() ==
Atomic;
8320class PipeType :
public Type,
public llvm::FoldingSetNode {
8328 ElementType(elemType), isRead(isRead) {}
8342 ID.AddPointer(
T.getAsOpaquePtr());
8343 ID.AddBoolean(isRead);
8347 return T->getTypeClass() ==
Pipe;
8356 LLVM_PREFERRED_TYPE(
bool)
8357 unsigned IsUnsigned : 1;
8358 unsigned NumBits : 24;
8375 static void Profile(llvm::FoldingSetNodeID &ID,
bool IsUnsigned,
8377 ID.AddBoolean(IsUnsigned);
8378 ID.AddInteger(NumBits);
8386 llvm::PointerIntPair<Expr*, 1, bool> ExprAndUnsigned;
8394 Expr *getNumBitsExpr()
const;
8402 static void Profile(llvm::FoldingSetNodeID &ID,
const ASTContext &Context,
8403 bool IsUnsigned,
Expr *NumBitsExpr);
8406 return T->getTypeClass() == DependentBitInt;
8410class PredefinedSugarType final :
public Type {
8423 static StringRef getName(Kind KD);
8437 return T->getTypeClass() == PredefinedSugar;
8451 if (!
type.hasLocalNonFastQualifiers())
8452 return type.getTypePtrUnsafe();
8473class alignas(8) TypeSourceInfo {
8480 TypeSourceInfo(
QualType ty,
size_t DataSize);
8497 Ty->getLocallyUnqualifiedSingleStepDesugaredType().split();
8503 return getCommonPtr()->BaseType;
8507 return (
isNull() ?
nullptr : getCommonPtr()->BaseType);
8515 if (
Self.isObjectType() ||
Self.isReferenceType())
8518 return F->getMethodQuals().empty() && F->getRefQualifier() ==
RQ_None;
8528 const ExtQuals *eq = getExtQualsUnsafe();
8537 Quals = getExtQualsUnsafe()->getQualifiers();
8543 Qualifiers quals = getCommonPtr()->CanonicalType.getLocalQualifiers();
8549 unsigned cvr = getCommonPtr()->CanonicalType.getLocalCVRQualifiers();
8555 QualType canon = getCommonPtr()->CanonicalType;
8560 return getTypePtr()->isCanonicalUnqualified();
8568 if (
T->isVariablyModifiedType() &&
T->hasSizedVLAType())
8577 getCommonPtr()->CanonicalType.isLocalConstQualified();
8582 getCommonPtr()->CanonicalType.isLocalRestrictQualified();
8588 getCommonPtr()->CanonicalType.isLocalVolatileQualified();
8593 getCommonPtr()->CanonicalType.hasLocalQualifiers();
8600 return QualType(getSplitUnqualifiedTypeImpl(*this).Ty, 0);
8607 return getSplitUnqualifiedTypeImpl(*
this);
8639 if (
const auto *FT = PT->getPointeeType()->getAs<
FunctionType>())
8640 return FT->getExtInfo();
8642 return FT->getExtInfo();
8689 return RefType->getPointeeType();
8780 return !
T->getPointeeType()->isFunctionType();
8787 return Fn->hasCFIUncheckedCallee();
8808 return T->getPointeeType()->isFunctionType();
8815 return T->getPointeeType()->isFunctionType();
8826 return T->isMemberFunctionPointer();
8833 return T->isMemberDataPointer();
8893 if (
auto *CMT = dyn_cast<ConstantMatrixType>(CanonicalType))
8894 return CMT->getElementType()->isBooleanType();
8941 return OPT->isObjCQualifiedIdType();
8947 return OPT->isObjCQualifiedClassType();
8953 return OPT->isObjCIdType();
8959 return OPT->isObjCClassType();
8965 return OPT->getPointeeType()->isSpecificBuiltinType(BuiltinType::ObjCSel);
8977#define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
8978 inline bool Type::is##Id##Type() const { \
8979 return isSpecificBuiltinType(BuiltinType::Id); \
8981#include "clang/Basic/OpenCLImageTypes.def"
9004#define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) is##Id##Type() ||
9006#include "clang/Basic/OpenCLImageTypes.def"
9018#define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
9019 inline bool Type::is##Id##Type() const { \
9020 return isSpecificBuiltinType(BuiltinType::Id); \
9022#include "clang/Basic/OpenCLExtensionTypes.def"
9025#define INTEL_SUBGROUP_AVC_TYPE(ExtType, Id) \
9026 isOCLIntelSubgroupAVC##Id##Type() ||
9028#include "clang/Basic/OpenCLExtensionTypes.def"
9033#define EXT_OPAQUE_TYPE(ExtType, Id, Ext) is##Id##Type() ||
9035#include "clang/Basic/OpenCLExtensionTypes.def"
9044#define HLSL_INTANGIBLE_TYPE(Name, Id, SingletonId) \
9045 inline bool Type::is##Id##Type() const { \
9046 return isSpecificBuiltinType(BuiltinType::Id); \
9048#include "clang/Basic/HLSLIntangibleTypes.def"
9050#define SPIRV_TYPE(Name, Id, SingletonId) \
9051 inline bool Type::is##Id##Type() const { \
9052 return isSpecificBuiltinType(BuiltinType::Id); \
9054#include "clang/Basic/SPIRVTypes.def"
9057#define HLSL_INTANGIBLE_TYPE(Name, Id, SingletonId) is##Id##Type() ||
9059#include "clang/Basic/HLSLIntangibleTypes.def"
9088 if (
const auto *BT = dyn_cast<BuiltinType>(
this))
9089 return BT->isPlaceholderType();
9094 if (
const auto *BT = dyn_cast<BuiltinType>(
this))
9095 if (BT->isPlaceholderType())
9106 if (
const auto *BT = dyn_cast<BuiltinType>(
this))
9107 return BT->isNonOverloadPlaceholderType();
9156 if (
const auto *BT = dyn_cast<BuiltinType>(CanonicalType))
9157 return BT->isInteger();
9158 if (
const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) {
9165 if (
const auto *OT = dyn_cast<OverflowBehaviorType>(CanonicalType))
9166 return OT->getUnderlyingType()->isIntegerType();
9172 if (
const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) {
9173 return BT->getKind() >= BuiltinType::ShortAccum &&
9174 BT->getKind() <= BuiltinType::SatULongFract;
9188 if (
const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) {
9189 return BT->getKind() >= BuiltinType::SatShortAccum &&
9190 BT->getKind() <= BuiltinType::SatULongFract;
9200 if (
const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) {
9201 return ((BT->getKind() >= BuiltinType::ShortAccum &&
9202 BT->getKind() <= BuiltinType::LongAccum) ||
9203 (BT->getKind() >= BuiltinType::ShortFract &&
9204 BT->getKind() <= BuiltinType::LongFract) ||
9205 (BT->getKind() >= BuiltinType::SatShortAccum &&
9206 BT->getKind() <= BuiltinType::SatLongAccum) ||
9207 (BT->getKind() >= BuiltinType::SatShortFract &&
9208 BT->getKind() <= BuiltinType::SatLongFract));
9218 if (
const auto *BT = dyn_cast<BuiltinType>(CanonicalType))
9219 return BT->getKind() > BuiltinType::Void &&
9220 BT->getKind() <= BuiltinType::NullPtr;
9221 if (
const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
9234 if (
const auto *BT = dyn_cast<BuiltinType>(CanonicalType))
9235 return BT->isInteger();
9239 if (
const auto *ET = dyn_cast<EnumType>(CanonicalType))
9242 if (
const auto *OBT = dyn_cast<OverflowBehaviorType>(CanonicalType))
9243 return OBT->getUnderlyingType()->isIntegralOrEnumerationType();
9249 if (
const auto *BT = dyn_cast<BuiltinType>(CanonicalType))
9250 return BT->getKind() == BuiltinType::Bool;
9256 return DT && !DT->isDeduced();
9273 return TST->isTypeAlias();
9300 if (
type->isAnyPointerType())
9301 return type->getPointeeType().getTypePtr();
9302 else if (
type->isArrayType())
9303 return type->getBaseElementTypeUnsafe();
9328 PD.
AddTaggedVal(
reinterpret_cast<uint64_t
>(
T.getAsOpaquePtr()),
9340 "ArrayType cannot be used with getAs!");
9343 if (
const auto *Ty = dyn_cast<T>(
this))
9347 if (!
isa<T>(CanonicalType))
9359 if (
const auto *Ty = dyn_cast<T>(
this))
9363 if (!
isa<T>(CanonicalType))
9368 const Type *Ty =
this;
9370 if (
const auto *A = dyn_cast<AttributedType>(Ty))
9371 Ty = A->getModifiedType().getTypePtr();
9372 else if (
const auto *A = dyn_cast<BTFTagAttributedType>(Ty))
9373 Ty = A->getWrappedType().getTypePtr();
9374 else if (
const auto *A = dyn_cast<HLSLAttributedResourceType>(Ty))
9375 Ty = A->getWrappedType().getTypePtr();
9376 else if (
const auto *P = dyn_cast<ParenType>(Ty))
9377 Ty = P->desugar().getTypePtr();
9378 else if (
const auto *A = dyn_cast<AdjustedType>(Ty))
9379 Ty = A->desugar().getTypePtr();
9380 else if (
const auto *M = dyn_cast<MacroQualifiedType>(Ty))
9381 Ty = M->desugar().getTypePtr();
9388 return dyn_cast<T>(Ty);
9393 if (
const auto *arr = dyn_cast<ArrayType>(
this))
9407 "ArrayType cannot be used with castAs!");
9409 if (
const auto *ty = dyn_cast<T>(
this))
return ty;
9410 assert(
isa<T>(CanonicalType));
9416 if (
const auto *arr = dyn_cast<ArrayType>(
this))
return arr;
9422 :
AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
9424 QualType Adjusted = getAdjustedType();
9425 (void)AttributedType::stripOuterNullability(Adjusted);
9432 (void)AttributedType::stripOuterNullability(Decayed);
9447 TypePtr = Pointee.getTypePtr();
9453 if (
const auto *FPT = TypePtr->
getAs<FunctionProtoType>())
9454 return FPT->getFunctionEffects();
Provides definitions for the various language-specific address spaces.
Defines the clang::attr::Kind enum.
Defines the Diagnostic-related interfaces.
static bool isBooleanType(QualType Ty)
static bool isUnsigned(SValBuilder &SVB, NonLoc Value)
llvm::dxil::ResourceClass ResourceClass
static std::optional< NonLoc > getIndex(ProgramStateRef State, const ElementRegion *ER, CharKind CK)
clang::CharUnits operator*(clang::CharUnits::QuantityType Scale, const clang::CharUnits &CU)
static void dump(llvm::raw_ostream &OS, StringRef FunctionName, ArrayRef< CounterExpression > Expressions, ArrayRef< CounterMappingRegion > Regions)
static Decl::Kind getKind(const Decl *D)
Defines the ExceptionSpecificationType enumeration and various utility functions.
static QualType getObjectType(APValue::LValueBase B)
Retrieves the "underlying object type" of the given expression, as used by __builtin_object_size.
Result
Implement __builtin_bit_cast and related operations.
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines the clang::LangOptions interface.
llvm::MachO::Record Record
*collection of selector each with an associated kind and an ordered *collection of selectors A selector has a kind
llvm::raw_ostream & operator<<(llvm::raw_ostream &OS, const OMPTraitInfo &TI)
static StringRef getIdentifier(const Token &Tok)
Implements a partial diagnostic that can be emitted anwyhere in a DiagnosticBuilder stream.
static QualType getUnderlyingType(const SubRegion *R)
static bool hasAttr(const Decl *D, bool IgnoreImplicitAttr)
static RecordDecl * getAsRecordDecl(QualType BaseType, HeuristicResolver &Resolver)
static bool isRecordType(QualType T)
static bool isParameterPack(Expr *PackExpression)
Defines the clang::SourceLocation class and associated facilities.
Defines various enumerations that describe declaration and type specifiers.
static OMPAtomicDirective * Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, ArrayRef< OMPClause * > Clauses, Stmt *AssociatedStmt, Expressions Exprs)
Creates directive with a list of Clauses and 'x', 'v' and 'expr' parts of the atomic construct (see S...
static bool classof(const Stmt *T)
static QualType getPointeeType(const MemRegion *R)
Defines the clang::Visibility enumeration and various utility functions.
__DEVICE__ void * memcpy(void *__a, const void *__b, size_t __c)
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Represents a type which was implicitly adjusted by the semantic engine for arbitrary reasons.
static bool classof(const Type *T)
static void Profile(llvm::FoldingSetNodeID &ID, QualType Orig, QualType New)
AdjustedType(TypeClass TC, QualType OriginalTy, QualType AdjustedTy, QualType CanonicalPtr)
QualType getAdjustedType() const
void Profile(llvm::FoldingSetNodeID &ID)
QualType getOriginalType() const
static bool classof(const Type *T)
Represents an array type, per C99 6.7.5.2 - Array Declarators.
ArraySizeModifier getSizeModifier() const
Qualifiers getIndexTypeQualifiers() const
static bool classof(const Type *T)
QualType getElementType() const
ArrayType(TypeClass tc, QualType et, QualType can, ArraySizeModifier sm, unsigned tq, const Expr *sz=nullptr)
unsigned getIndexTypeCVRQualifiers() const
static void Profile(llvm::FoldingSetNodeID &ID, QualType T)
QualType getValueType() const
Gets the type contained by this atomic type, i.e.
void Profile(llvm::FoldingSetNodeID &ID)
static bool classof(const Type *T)
Attr - This represents one attribute.
static bool classof(const Type *T)
BitIntType(bool isUnsigned, unsigned NumBits)
static void Profile(llvm::FoldingSetNodeID &ID, bool IsUnsigned, unsigned NumBits)
void Profile(llvm::FoldingSetNodeID &ID) const
unsigned getNumBits() const
void Profile(llvm::FoldingSetNodeID &ID)
QualType getPointeeType() const
static bool classof(const Type *T)
static void Profile(llvm::FoldingSetNodeID &ID, QualType Pointee)
[BoundsSafety] Represents a parent type class for CountAttributedType and similar sugar types that wi...
decl_iterator dependent_decl_begin() const
decl_iterator dependent_decl_end() const
unsigned getNumCoupledDecls() const
BoundsAttributedType(TypeClass TC, QualType Wrapped, QualType Canon)
const TypeCoupledDeclRefInfo * decl_iterator
decl_range dependent_decls() const
ArrayRef< TypeCoupledDeclRefInfo > getCoupledDecls() const
llvm::iterator_range< decl_iterator > decl_range
static bool classof(const Type *T)
ArrayRef< TypeCoupledDeclRefInfo > Decls
This class is used for builtin types like 'int'.
bool isPlaceholderType() const
Determines whether this type is a placeholder type, i.e.
bool isNonOverloadPlaceholderType() const
Determines whether this type is a placeholder type other than Overload.
bool isFloatingPoint() const
static bool classof(const Type *T)
bool isSignedInteger() const
bool isUnsignedInteger() const
static bool isPlaceholderTypeKind(Kind K)
Determines whether the given kind corresponds to a placeholder type.
StringRef getName(const PrintingPolicy &Policy) const
const char * getNameAsCString(const PrintingPolicy &Policy) const
Represents a C++ struct/union/class.
Complex values, per C99 6.2.5p11.
QualType getElementType() const
static void Profile(llvm::FoldingSetNodeID &ID, QualType Element)
static bool classof(const Type *T)
void Profile(llvm::FoldingSetNodeID &ID)
Declaration of a C++20 concept.
Represents the canonical version of C arrays with a specified constant size.
unsigned getSizeBitWidth() const
Return the bit width of the size type.
ConstantArrayType(TypeClass Tc, const ConstantArrayType *ATy, QualType Can)
uint64_t getLimitedSize() const
Return the size zero-extended to uint64_t or UINT64_MAX if the value is larger than UINT64_MAX.
bool isZeroSize() const
Return true if the size is zero.
int64_t getSExtSize() const
Return the size sign-extended as a uint64_t.
const Expr * getSizeExpr() const
Return a pointer to the size expression.
static bool classof(const Type *T)
llvm::APInt getSize() const
Return the constant array size as an APInt.
void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Ctx)
uint64_t getZExtSize() const
Return the size zero-extended as a uint64_t.
unsigned getNumColumns() const
Returns the number of columns in the matrix.
static void Profile(llvm::FoldingSetNodeID &ID, QualType ElementType, unsigned NumRows, unsigned NumColumns, TypeClass TypeClass)
void Profile(llvm::FoldingSetNodeID &ID)
unsigned getRowMajorFlattenedIndex(unsigned Row, unsigned Column) const
Returns the row-major flattened index of a matrix element located at row Row, and column Column.
unsigned getNumRows() const
Returns the number of rows in the matrix.
unsigned getNumElementsFlattened() const
Returns the number of elements required to embed the matrix into a vector.
unsigned getFlattenedIndex(unsigned Row, unsigned Column, bool IsRowMajor=false) const
Returns the flattened index of a matrix element located at row Row, and column Column.
ConstantMatrixType(QualType MatrixElementType, unsigned NRows, unsigned NColumns, QualType CanonElementType)
unsigned mapColumnMajorToRowMajorFlattenedIndex(unsigned ColumnMajorIdx) const
Given a column-major flattened index ColumnMajorIdx, return the equivalent row-major flattened index.
unsigned mapRowMajorToColumnMajorFlattenedIndex(unsigned RowMajorIdx) const
Given a row-major flattened index RowMajorIdx, return the equivalent column-major flattened index.
unsigned getColumnMajorFlattenedIndex(unsigned Row, unsigned Column) const
Returns the column-major flattened index of a matrix element located at row Row, and column Column.
unsigned NumRows
Number of rows and columns.
static bool classof(const Type *T)
Represents a sugar type with __counted_by or __sized_by annotations, including their _or_null variant...
void Profile(llvm::FoldingSetNodeID &ID)
static bool classof(const Type *T)
bool isCountInBytes() const
Expr * getCountExpr() const
DynamicCountPointerKind getKind() const
QualType getPointeeType() const
static bool classof(const Type *T)
QualType getDecayedType() const
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
Decl - This represents one declaration (or definition), e.g.
Expr * getAddrSpaceExpr() const
void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context)
QualType getPointeeType() const
static bool classof(const Type *T)
SourceLocation getAttributeLoc() const
Expr * getNumBitsExpr() const
void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context)
DependentBitIntType(bool IsUnsigned, Expr *NumBits)
static bool classof(const Type *T)
friend class StmtIteratorBase
void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context)
static bool classof(const Type *T)
Expr * getSizeExpr() const
Expr * getSizeExpr() const
static bool classof(const Type *T)
SourceLocation getAttributeLoc() const
void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context)
QualType getElementType() const
Expr * getColumnExpr() const
Expr * getRowExpr() const
void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context)
SourceLocation getAttributeLoc() const
static bool classof(const Type *T)
void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context)
DependentTypeOfExprType(const ASTContext &Context, Expr *E, TypeOfKind Kind)
Expr * getSizeExpr() const
VectorKind getVectorKind() const
SourceLocation getAttributeLoc() const
QualType getElementType() const
void Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context)
static bool classof(const Type *T)
@ ak_addrspace
address space
Wrap a function effect's condition expression in another struct so that FunctionProtoType's TrailingO...
EffectConditionExpr(Expr *E)
Expr * getCondition() const
bool operator==(const EffectConditionExpr &RHS) const
EffectConditionExpr()=default
This represents one expression.
We can encode up to four bits in the low bits of a type pointer, but there are many more type qualifi...
Qualifiers::ObjCLifetime getObjCLifetime() const
static void Profile(llvm::FoldingSetNodeID &ID, const Type *BaseType, Qualifiers Quals)
void Profile(llvm::FoldingSetNodeID &ID) const
ExtQuals(const Type *baseType, QualType canon, Qualifiers quals)
bool hasObjCGCAttr() const
Qualifiers::GC getObjCGCAttr() const
bool hasAddressSpace() const
const Type * getBaseType() const
Qualifiers getQualifiers() const
LangAS getAddressSpace() const
bool hasObjCLifetime() const
bool isAccessorWithinNumElements(char c, bool isNumericAccessor) const
static int getNumericAccessorIdx(char c)
static bool classof(const Type *T)
static int getPointAccessorIdx(char c)
static int getAccessorIdx(char c, bool isNumericAccessor)
Represents a function declaration or definition.
Support iteration in parallel through a pair of FunctionEffect and EffectConditionExpr containers.
bool operator==(const FunctionEffectIterator &Other) const
bool operator!=(const FunctionEffectIterator &Other) const
FunctionEffectIterator operator++()
FunctionEffectIterator(const Container &O, size_t I)
FunctionEffectWithCondition operator*() const
A mutable set of FunctionEffect::Kind.
static FunctionEffectKindSet difference(FunctionEffectKindSet LHS, FunctionEffectKindSet RHS)
bool contains(const FunctionEffect::Kind EK) const
FunctionEffectKindSet()=default
FunctionEffectKindSet(FunctionEffectsRef FX)
void insert(FunctionEffectKindSet Set)
void insert(FunctionEffectsRef FX)
void insert(FunctionEffect Effect)
FunctionEffectSet(const FunctionEffectsRef &FX)
FunctionEffectSet()=default
FunctionEffectIterator< FunctionEffectSet > iterator
bool insert(const FunctionEffectWithCondition &NewEC, Conflicts &Errs)
SmallVector< Conflict > Conflicts
static FunctionEffectSet getIntersection(FunctionEffectsRef LHS, FunctionEffectsRef RHS)
static FunctionEffectSet getUnion(FunctionEffectsRef LHS, FunctionEffectsRef RHS, Conflicts &Errs)
Represents an abstract function effect, using just an enumeration describing its kind.
Kind kind() const
The kind of the effect.
unsigned Flags
Flags describing some behaviors of the effect.
static constexpr size_t KindCount
friend bool operator<(FunctionEffect LHS, FunctionEffect RHS)
friend bool operator==(FunctionEffect LHS, FunctionEffect RHS)
uint32_t toOpaqueInt32() const
For serialization.
@ FE_ExcludeStaticLocalVars
@ FE_ExcludeThreadLocalVars
@ FE_ExcludeObjCMessageSend
friend bool operator!=(FunctionEffect LHS, FunctionEffect RHS)
Kind
Identifies the particular effect.
Flags flags() const
Flags describing some behaviors of the effect.
StringRef name() const
The description printed in diagnostics, e.g. 'nonblocking'.
static FunctionEffect fromOpaqueInt32(uint32_t Value)
friend raw_ostream & operator<<(raw_ostream &OS, const FunctionEffect &Effect)
An immutable set of FunctionEffects and possibly conditions attached to them.
ArrayRef< FunctionEffect > effects() const
ArrayRef< EffectConditionExpr > conditions() const
static FunctionEffectsRef create(ArrayRef< FunctionEffect > FX, ArrayRef< EffectConditionExpr > Conds)
Asserts invariants.
FunctionEffectIterator< FunctionEffectsRef > iterator
FunctionEffectsRef()=default
friend bool operator==(const FunctionEffectsRef &LHS, const FunctionEffectsRef &RHS)
static FunctionEffectsRef get(QualType QT)
Extract the effects from a Type if it is a function, block, or member function pointer,...
friend bool operator!=(const FunctionEffectsRef &LHS, const FunctionEffectsRef &RHS)
static void Profile(llvm::FoldingSetNodeID &ID, QualType ResultType, ExtInfo Info)
static bool classof(const Type *T)
void Profile(llvm::FoldingSetNodeID &ID)
Represents a prototype with parameter type info, e.g.
param_type_iterator param_type_begin() const
unsigned getNumFunctionEffectConditions() const
ExtParameterInfo getExtParameterInfo(unsigned I) const
ArrayRef< EffectConditionExpr > getFunctionEffectConditions() const
ExceptionSpecificationType getExceptionSpecType() const
Get the kind of exception specification on this function.
ArrayRef< FunctionEffect > getFunctionEffectsWithoutConditions() const
bool isParamConsumed(unsigned I) const
exception_iterator exception_end() const
const ExtParameterInfo * getExtParameterInfosOrNull() const
Return a pointer to the beginning of the array of extra parameter information, if present,...
unsigned getNumParams() const
bool hasTrailingReturn() const
Whether this function prototype has a trailing return type.
ExceptionSpecInfo getExceptionSpecInfo() const
Return all the available information about this type's exception spec.
const QualType * param_type_iterator
Qualifiers getMethodQuals() const
const QualType * exception_iterator
static bool classof(const Type *T)
QualType getParamType(unsigned i) const
FunctionEffectsRef getFunctionEffects() const
unsigned getAArch64SMEAttributes() const
Return a bitmask describing the SME attributes on the function type, see AArch64SMETypeAttributes for...
QualType getExceptionType(unsigned i) const
Return the ith exception type, where 0 <= i < getNumExceptions().
static void Profile(llvm::FoldingSetNodeID &ID, QualType Result, param_type_iterator ArgTys, unsigned NumArgs, const ExtProtoInfo &EPI, const ASTContext &Context, bool Canonical)
SourceLocation getEllipsisLoc() const
unsigned getNumFunctionEffects() const
bool hasCFIUncheckedCallee() const
unsigned getNumExceptions() const
Return the number of types in the exception specification.
bool hasExceptionSpec() const
Return whether this function has any kind of exception spec.
CanThrowResult canThrow() const
Determine whether this function type has a non-throwing exception specification.
bool hasDynamicExceptionSpec() const
Return whether this function has a dynamic (throw) exception spec.
bool hasNoexceptExceptionSpec() const
Return whether this function has a noexcept exception spec.
bool isVariadic() const
Whether this function prototype is variadic.
ExtProtoInfo getExtProtoInfo() const
Expr * getNoexceptExpr() const
Return the expression inside noexcept(expression), or a null pointer if there is none (because the ex...
param_type_iterator param_type_end() const
FunctionDecl * getExceptionSpecTemplate() const
If this function type has an uninstantiated exception specification, this is the function whose excep...
FunctionTypeExtraAttributeInfo getExtraAttributeInfo() const
Return the extra attribute information.
bool isNothrow(bool ResultIfDependent=false) const
Determine whether this function type has a non-throwing exception specification.
ArrayRef< QualType > getParamTypes() const
ArrayRef< QualType > exceptions() const
ParameterABI getParameterABI(unsigned I) const
ArrayRef< QualType > param_types() const
exception_iterator exception_begin() const
ArrayRef< ExtParameterInfo > getExtParameterInfos() const
bool hasExtParameterInfos() const
Is there any interesting extra information for any of the parameters of this function type?
RefQualifierKind getRefQualifier() const
Retrieve the ref-qualifier associated with this function type.
FunctionDecl * getExceptionSpecDecl() const
If this function type has an exception specification which hasn't been determined yet (either because...
A class which abstracts out some details necessary for making a call.
ExtInfo withNoCfCheck(bool noCfCheck) const
ExtInfo withCallingConv(CallingConv cc) const
CallingConv getCC() const
ExtInfo withProducesResult(bool producesResult) const
ExtInfo(bool noReturn, bool hasRegParm, unsigned regParm, CallingConv cc, bool producesResult, bool noCallerSavedRegs, bool NoCfCheck, bool cmseNSCall)
bool getCmseNSCall() const
bool getNoCfCheck() const
unsigned getRegParm() const
void Profile(llvm::FoldingSetNodeID &ID) const
bool getNoCallerSavedRegs() const
ExtInfo withNoReturn(bool noReturn) const
bool getHasRegParm() const
friend class FunctionType
bool operator==(ExtInfo Other) const
bool getProducesResult() const
ExtInfo withNoCallerSavedRegs(bool noCallerSavedRegs) const
ExtInfo withCmseNSCall(bool cmseNSCall) const
ExtInfo withRegParm(unsigned RegParm) const
bool operator!=(ExtInfo Other) const
Interesting information about a specific parameter that can't simply be reflected in parameter's type...
friend bool operator==(ExtParameterInfo lhs, ExtParameterInfo rhs)
friend bool operator!=(ExtParameterInfo lhs, ExtParameterInfo rhs)
ExtParameterInfo()=default
bool hasPassObjectSize() const
ExtParameterInfo withHasPassObjectSize() const
unsigned char getOpaqueValue() const
bool isConsumed() const
Is this parameter considered "consumed" by Objective-C ARC?
ParameterABI getABI() const
Return the ABI treatment of this parameter.
ExtParameterInfo withIsConsumed(bool consumed) const
ExtParameterInfo withIsNoEscape(bool NoEscape) const
ExtParameterInfo withABI(ParameterABI kind) const
static ExtParameterInfo getFromOpaqueValue(unsigned char data)
FunctionType - C99 6.7.5.3 - Function Declarators.
ExtInfo getExtInfo() const
AArch64SMETypeAttributes
The AArch64 SME ACLE (Arm C/C++ Language Extensions) define a number of function type attributes that...
@ SME_PStateSMEnabledMask
@ SME_PStateSMCompatibleMask
@ SME_AgnosticZAStateShift
@ SME_AgnosticZAStateMask
static ArmStateValue getArmZT0State(unsigned AttrBits)
bool getNoReturnAttr() const
Determine whether this function type includes the GNU noreturn attribute.
static ArmStateValue getArmZAState(unsigned AttrBits)
unsigned getRegParmType() const
CallingConv getCallConv() const
QualType getReturnType() const
FunctionType(TypeClass tc, QualType res, QualType Canonical, TypeDependence Dependence, ExtInfo Info)
static bool classof(const Type *T)
bool getCmseNSCallAttr() const
bool getHasRegParm() const
Qualifiers getFastTypeQuals() const
QualType getCallResultType(const ASTContext &Context) const
Determine the type of an expression that calls a function of this type.
One of these records is kept for each identifier that is lexed.
void Profile(llvm::FoldingSetNodeID &ID)
static void Profile(llvm::FoldingSetNodeID &ID, QualType ET, ArraySizeModifier SizeMod, unsigned TypeQuals)
friend class StmtIteratorBase
static bool classof(const Type *T)
KeywordWrapper(ElaboratedTypeKeyword Keyword, As &&...as)
ElaboratedTypeKeyword getKeyword() const
static CannotCastToThisType classof(const T *)
static bool classof(const Type *T)
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
QualType getWrappedType() const
LateParsedTypeAttribute * getLateParsedAttribute() const
static bool classof(const Type *T)
static bool classof(const Type *T)
QualType getUnderlyingType() const
const IdentifierInfo * getMacroIdentifier() const
static bool isValidElementType(QualType T, const LangOptions &LangOpts)
Valid elements types are the following:
QualType getElementType() const
Returns type of the elements being stored in the matrix.
MatrixType(QualType ElementTy, QualType CanonElementTy)
QualType ElementType
The element type of the matrix.
static bool classof(const Type *T)
NestedNameSpecifier getQualifier() const
void Profile(llvm::FoldingSetNodeID &ID)
QualType getPointeeType() const
bool isMemberFunctionPointer() const
Returns true if the member type (i.e.
bool isMemberDataPointer() const
Returns true if the member type (i.e.
static bool classof(const Type *T)
This represents a decl that may have a name.
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
Represents an ObjC class declaration.
Represents typeof(type), a C23 feature and GCC extension, or `typeof_unqual(type),...
static bool classof(const Type *T)
Represents a pointer to an Objective C object.
unsigned getNumProtocols() const
Return the number of qualifying protocols on the object type.
bool isSpecialized() const
Whether this type is specialized, meaning that it has type arguments.
qual_iterator qual_end() const
bool isObjCQualifiedClassType() const
True if this is equivalent to 'Class.
static void Profile(llvm::FoldingSetNodeID &ID, QualType T)
bool isObjCQualifiedIdType() const
True if this is equivalent to 'id.
bool isSpecializedAsWritten() const
Whether this type is specialized, meaning that it has type arguments.
bool isUnspecializedAsWritten() const
Determine whether this object type is "unspecialized" as written, meaning that it has no type argumen...
ArrayRef< QualType > getTypeArgsAsWritten() const
Retrieve the type arguments for this type.
void Profile(llvm::FoldingSetNodeID &ID)
const ObjCObjectType * getObjectType() const
Gets the type pointed to by this ObjC pointer.
ObjCObjectType::qual_iterator qual_iterator
An iterator over the qualifiers on the object type.
llvm::iterator_range< qual_iterator > qual_range
static bool classof(const Type *T)
bool isUnspecialized() const
Whether this type is unspecialized, meaning that is has no type arguments.
bool isObjCIdType() const
True if this is equivalent to the 'id' type, i.e.
ObjCProtocolDecl * getProtocol(unsigned I) const
Retrieve a qualifying protocol by index on the object type.
QualType getPointeeType() const
Gets the type pointed to by this ObjC pointer.
ObjCInterfaceDecl * getInterfaceDecl() const
If this pointer points to an Objective @interface type, gets the declaration for that interface.
bool isObjCClassType() const
True if this is equivalent to the 'Class' type, i.e.
bool isObjCIdOrClassType() const
True if this is equivalent to the 'id' or 'Class' type,.
ArrayRef< QualType > getTypeArgs() const
Retrieve the type arguments for this type.
qual_iterator qual_begin() const
bool isKindOfType() const
Whether this is a "__kindof" type.
Represents an Objective-C protocol declaration.
void Profile(llvm::FoldingSetNodeID &ID)
static bool classof(const Type *T)
static void Profile(llvm::FoldingSetNodeID &ID, QualType Inner)
QualType getInnerType() const
static void Profile(llvm::FoldingSetNodeID &ID, QualType T, bool isRead)
QualType getElementType() const
void Profile(llvm::FoldingSetNodeID &ID)
static bool classof(const Type *T)
Pointer-authentication qualifiers.
static PointerAuthQualifier fromOpaqueValue(uint32_t Opaque)
friend bool operator==(PointerAuthQualifier Lhs, PointerAuthQualifier Rhs)
bool isIsaPointer() const
static PointerAuthQualifier Create(unsigned Key, bool IsAddressDiscriminated, unsigned ExtraDiscriminator, PointerAuthenticationMode AuthenticationMode, bool IsIsaPointer, bool AuthenticatesNullValues)
friend bool operator!=(PointerAuthQualifier Lhs, PointerAuthQualifier Rhs)
bool authenticatesNullValues() const
bool isEquivalent(PointerAuthQualifier Other) const
@ MaxDiscriminator
The maximum supported pointer-authentication discriminator.
@ MaxKey
The maximum supported pointer-authentication key.
void Profile(llvm::FoldingSetNodeID &ID) const
bool isAddressDiscriminated() const
PointerAuthQualifier withoutKeyNone() const
unsigned getExtraDiscriminator() const
void print(raw_ostream &OS, const PrintingPolicy &Policy) const
PointerAuthenticationMode getAuthenticationMode() const
bool isEmptyWhenPrinted(const PrintingPolicy &Policy) const
std::string getAsString() const
uint32_t getAsOpaqueValue() const
PointerAuthQualifier()=default
PointerType - C99 6.7.5.1 - Pointer Declarators.
QualType getPointeeType() const
static bool classof(const Type *T)
void Profile(llvm::FoldingSetNodeID &ID)
static void Profile(llvm::FoldingSetNodeID &ID, QualType Pointee)
static bool classof(const Type *T)
const IdentifierInfo * getIdentifier() const
StreamedQualTypeHelper(const QualType &T, const PrintingPolicy &Policy, const Twine &PlaceHolder, unsigned Indentation)
friend raw_ostream & operator<<(raw_ostream &OS, const StreamedQualTypeHelper &SQT)
A (possibly-)qualified type.
void addRestrict()
Add the restrict qualifier to this QualType.
QualType(const ExtQuals *Ptr, unsigned Quals)
bool hasAddressDiscriminatedPointerAuth() const
bool isLocalConstQualified() const
Determine whether this particular QualType instance has the "const" qualifier set,...
bool isLocalRestrictQualified() const
Determine whether this particular QualType instance has the "restrict" qualifier set,...
bool isVolatileQualified() const
Determine whether this type is volatile-qualified.
bool isRestrictQualified() const
Determine whether this type is restrict-qualified.
bool isTriviallyCopyableType(const ASTContext &Context) const
Return true if this is a trivially copyable type (C++0x [basic.types]p9)
QualType IgnoreParens() const
Returns the specified type after dropping any outer-level parentheses.
Qualifiers::GC getObjCGCAttr() const
Returns gc attribute of this type.
friend bool operator==(const QualType &LHS, const QualType &RHS)
Indicate whether the specified types and qualifiers are identical.
bool hasQualifiers() const
Determine whether this type has any qualifiers.
QualType withFastQualifiers(unsigned TQs) const
QualType withRestrict() const
bool hasNonTrivialToPrimitiveCopyCUnion() const
Check if this is or contains a C union that is non-trivial to copy, which is a union that has a membe...
PointerAuthQualifier getPointerAuth() const
void addFastQualifiers(unsigned TQs)
bool isWebAssemblyFuncrefType() const
Returns true if it is a WebAssembly Funcref Type.
QualType getNonLValueExprType(const ASTContext &Context) const
Determine the type of a (typically non-lvalue) expression with the specified result type.
@ DK_objc_strong_lifetime
PrimitiveDefaultInitializeKind
@ PDIK_ARCWeak
The type is an Objective-C retainable pointer type that is qualified with the ARC __weak qualifier.
@ PDIK_Trivial
The type does not fall into any of the following categories.
@ PDIK_ARCStrong
The type is an Objective-C retainable pointer type that is qualified with the ARC __strong qualifier.
@ PDIK_Struct
The type is a struct containing a field whose type is not PCK_Trivial.
bool mayBeDynamicClass() const
Returns true if it is a class and it might be dynamic.
bool hasLocalNonFastQualifiers() const
Determine whether this particular QualType instance has any "non-fast" qualifiers,...
bool isNonWeakInMRRWithObjCWeak(const ASTContext &Context) const
const IdentifierInfo * getBaseTypeIdentifier() const
Retrieves a pointer to the name of the base type.
bool isBitwiseCloneableType(const ASTContext &Context) const
Return true if the type is safe to bitwise copy using memcpy/memmove.
QualType withoutLocalFastQualifiers() const
void Profile(llvm::FoldingSetNodeID &ID) const
bool isAddressSpaceOverlapping(QualType T, const ASTContext &Ctx) const
Returns true if address space qualifiers overlap with T address space qualifiers.
QualType getDesugaredType(const ASTContext &Context) const
Return the specified type with any "sugar" removed from the type.
void removeLocalFastQualifiers(unsigned Mask)
QualType withConst() const
QualType getLocalUnqualifiedType() const
Return this type with all of the instance-specific qualifiers removed, but without removing any quali...
void addConst()
Add the const type qualifier to this QualType.
bool hasLocalQualifiers() const
Determine whether this particular QualType instance has any qualifiers, without looking through any t...
bool isTriviallyCopyConstructibleType(const ASTContext &Context) const
Return true if this is a trivially copyable type.
bool isTrivialType(const ASTContext &Context) const
Return true if this is a trivial type per (C++0x [basic.types]p9)
bool isNull() const
Return true if this QualType doesn't point to a type yet.
PrimitiveCopyKind isNonTrivialToPrimitiveCopy() const
Check if this is a non-trivial type that would cause a C struct transitively containing this type to ...
const Type * getTypePtr() const
Retrieves a pointer to the underlying (unqualified) type.
LangAS getAddressSpace() const
Return the address space of this type.
bool isConstant(const ASTContext &Ctx) const
static QualType getFromOpaquePtr(const void *Ptr)
QualType withVolatile() const
bool hasNonTrivialToPrimitiveDestructCUnion() const
Check if this is or contains a C union that is non-trivial to destruct, which is a union that has a m...
Qualifiers getQualifiers() const
Retrieve the set of qualifiers applied to this type.
const Type * operator->() const
void setLocalFastQualifiers(unsigned Quals)
bool isCXX98PODType(const ASTContext &Context) const
Return true if this is a POD type according to the rules of the C++98 standard, regardless of the cur...
bool hasPostfixDeclaratorSyntax() const
Returns true if the type uses postfix declarator syntax, i.e.
Qualifiers::ObjCLifetime getObjCLifetime() const
Returns lifetime attribute of this type.
QualType stripObjCKindOfType(const ASTContext &ctx) const
Strip Objective-C "__kindof" types from the given type.
void print(raw_ostream &OS, const PrintingPolicy &Policy, const Twine &PlaceHolder=Twine(), unsigned Indentation=0) const
void getAsStringInternal(std::string &Str, const PrintingPolicy &Policy) const
bool isReferenceable() const
QualType getNonReferenceType() const
If Type is a reference type (e.g., const int&), returns the type that the reference refers to ("const...
QualType getCanonicalType() const
QualType getUnqualifiedType() const
Retrieve the unqualified variant of the given type, removing as little sugar as possible.
void removeLocalVolatile()
QualType substObjCMemberType(QualType objectType, const DeclContext *dc, ObjCSubstitutionContext context) const
Substitute type arguments from an object type for the Objective-C type parameters used in the subject...
bool isWebAssemblyReferenceType() const
Returns true if it is a WebAssembly Reference Type.
SplitQualType getSplitDesugaredType() const
std::optional< NonConstantStorageReason > isNonConstantStorage(const ASTContext &Ctx, bool ExcludeCtor, bool ExcludeDtor)
Determine whether instances of this type can be placed in immutable storage.
QualType withCVRQualifiers(unsigned CVR) const
bool isTrapType() const
Returns true if it is a OverflowBehaviorType of Trap kind.
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.
bool UseExcessPrecision(const ASTContext &Ctx)
void addVolatile()
Add the volatile type qualifier to this QualType.
bool isCForbiddenLValueType() const
Determine whether expressions of the given type are forbidden from being lvalues in C.
PrimitiveDefaultInitializeKind isNonTrivialToPrimitiveDefaultInitialize() const
Functions to query basic properties of non-trivial C struct types.
bool isObjCGCStrong() const
true when Type is objc's strong.
std::string getAsString() const
void * getAsOpaquePtr() const
static void print(SplitQualType split, raw_ostream &OS, const PrintingPolicy &policy, const Twine &PlaceHolder, unsigned Indentation=0)
bool isMoreQualifiedThan(QualType Other, const ASTContext &Ctx) const
Determine whether this type is more qualified than the other given type, requiring exact equality for...
bool isCanonicalAsParam() const
QualType stripNullability(const ASTContext &ctx) const
Strip nullability attributes from the given type.
void removeLocalRestrict()
bool isWebAssemblyExternrefType() const
Returns true if it is a WebAssembly Externref Type.
QualType(const Type *Ptr, unsigned Quals)
QualType getNonPackExpansionType() const
Remove an outer pack expansion type (if any) from this type.
SplitQualType getSplitUnqualifiedType() const
Retrieve the unqualified variant of the given type, removing as little sugar as possible.
bool isCXX11PODType(const ASTContext &Context) const
Return true if this is a POD type according to the more relaxed rules of the C++11 standard,...
bool mayBeNotDynamicClass() const
Returns true if it is not a class or if the class might not be dynamic.
bool isConstQualified() const
Determine whether this type is const-qualified.
bool hasAddressSpace() const
Check if this type has any address space qualifier.
bool isObjCGCWeak() const
true when Type is objc's weak.
QualType substObjCTypeArgs(ASTContext &ctx, ArrayRef< QualType > typeArgs, ObjCSubstitutionContext context) const
Substitute type arguments for the Objective-C type parameters used in the subject type.
unsigned getLocalFastQualifiers() const
void removeLocalFastQualifiers()
QualType getAtomicUnqualifiedType() const
Remove all qualifiers including _Atomic.
DestructionKind isDestructedType() const
Returns a nonzero value if objects of this type require non-trivial work to clean up after.
friend bool operator<(const QualType &LHS, const QualType &RHS)
friend bool operator!=(const QualType &LHS, const QualType &RHS)
StreamedQualTypeHelper stream(const PrintingPolicy &Policy, const Twine &PlaceHolder=Twine(), unsigned Indentation=0) const
bool isLocalVolatileQualified() const
Determine whether this particular QualType instance has the "volatile" qualifier set,...
bool isConstantStorage(const ASTContext &Ctx, bool ExcludeCtor, bool ExcludeDtor)
unsigned getCVRQualifiers() const
Retrieve the set of CVR (const-volatile-restrict) qualifiers applied to this type.
bool requiresBuiltinLaunder(const ASTContext &Context) const
Returns true if this type requires laundering by checking if it is a dynamic class type,...
static void getAsStringInternal(SplitQualType split, std::string &out, const PrintingPolicy &policy)
QualType getSingleStepDesugaredType(const ASTContext &Context) const
Return the specified type with one level of "sugar" removed from the type.
const Type * getTypePtrOrNull() const
bool isWrapType() const
Returns true if it is a OverflowBehaviorType of Wrap kind.
static std::string getAsString(SplitQualType split, const PrintingPolicy &Policy)
bool hasNonTrivialObjCLifetime() const
bool isPODType(const ASTContext &Context) const
Determine whether this is a Plain Old Data (POD) type (C++ 3.9p10).
bool isAtLeastAsQualifiedAs(QualType Other, const ASTContext &Ctx) const
Determine whether this type is at least as qualified as the other given type, requiring exact equalit...
friend class QualifierCollector
bool hasStrongOrWeakObjCLifetime() const
PrimitiveCopyKind isNonTrivialToPrimitiveDestructiveMove() const
Check if this is a non-trivial type that would cause a C struct transitively containing this type to ...
QualType withExactLocalFastQualifiers(unsigned TQs) const
@ NonConstNonReferenceType
@ PCK_Struct
The type is a struct containing a field whose type is neither PCK_Trivial nor PCK_VolatileTrivial.
@ PCK_Trivial
The type does not fall into any of the following categories.
@ PCK_ARCStrong
The type is an Objective-C retainable pointer type that is qualified with the ARC __strong qualifier.
@ PCK_VolatileTrivial
The type would be trivial except that it is volatile-qualified.
@ PCK_PtrAuth
The type is an address-discriminated signed pointer type.
@ PCK_ARCWeak
The type is an Objective-C retainable pointer type that is qualified with the ARC __weak qualifier.
const Type & operator*() const
Qualifiers getLocalQualifiers() const
Retrieve the set of qualifiers local to this particular QualType instance, not including any qualifie...
bool hasNonTrivialToPrimitiveDefaultInitializeCUnion() const
Check if this is or contains a C union that is non-trivial to default-initialize, which is a union th...
const Type * strip(QualType type)
Collect any qualifiers on the given type and return an unqualified type.
QualifierCollector(Qualifiers Qs=Qualifiers())
QualifiersAndAtomic & operator+=(Qualifiers RHS)
QualifiersAndAtomic withVolatile()
QualifiersAndAtomic withAtomic()
QualifiersAndAtomic withConst()
QualifiersAndAtomic(Qualifiers Quals, bool HasAtomic)
QualifiersAndAtomic withRestrict()
The collection of all-type qualifiers we support.
unsigned getCVRQualifiers() const
void removeCVRQualifiers(unsigned mask)
friend Qualifiers operator-(Qualifiers L, Qualifiers R)
Compute the difference between two qualifier sets.
static Qualifiers fromFastMask(unsigned Mask)
void setFastQualifiers(unsigned mask)
void addAddressSpace(LangAS space)
static Qualifiers removeCommonQualifiers(Qualifiers &L, Qualifiers &R)
Returns the common set of qualifiers while removing them from the given sets.
bool hasOnlyConst() const
@ 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()
bool hasTargetSpecificAddressSpace() const
bool isStrictSupersetOf(Qualifiers Other) const
Determine whether this set of qualifiers is a strict superset of another set of qualifiers,...
bool hasNonFastQualifiers() const
Return true if the set contains any qualifiers which require an ExtQuals node to be allocated.
void Profile(llvm::FoldingSetNodeID &ID) const
bool operator!=(Qualifiers Other) const
bool hasNonTrivialObjCLifetime() const
True if the lifetime is neither None or ExplicitNone.
void addCVRQualifiers(unsigned mask)
bool hasCVRQualifiers() const
void addConsistentQualifiers(Qualifiers qs)
Add the qualifiers from the given set to this set, given that they don't conflict.
void removeFastQualifiers(unsigned mask)
static bool isTargetAddressSpaceSupersetOf(LangAS A, LangAS B, const ASTContext &Ctx)
Qualifiers & operator+=(Qualifiers R)
void removeFastQualifiers()
bool hasQualifiers() const
Return true if the set contains any qualifiers.
void removeCVRQualifiers()
Qualifiers withVolatile() const
void addCVRUQualifiers(unsigned mask)
Qualifiers & operator-=(Qualifiers R)
bool compatiblyIncludes(Qualifiers other, const ASTContext &Ctx) const
Determines if these qualifiers compatibly include another set.
bool hasUnaligned() const
unsigned getAddressSpaceAttributePrintValue() const
Get the address space attribute value to be printed by diagnostics.
bool hasAddressSpace() const
static bool isAddressSpaceSupersetOf(LangAS A, LangAS B, const ASTContext &Ctx)
Returns true if address space A is equal to or a superset of B.
Qualifiers withoutAddressSpace() const
unsigned getFastQualifiers() const
void print(raw_ostream &OS, const PrintingPolicy &Policy, bool appendSpaceIfNonEmpty=false) const
void removeAddressSpace()
void addQualifiers(Qualifiers Q)
Add the qualifiers from the given set to this set.
static Qualifiers fromCVRMask(unsigned CVR)
void setAddressSpace(LangAS space)
unsigned getCVRUQualifiers() const
bool isEmptyWhenPrinted(const PrintingPolicy &Policy) const
PointerAuthQualifier getPointerAuth() const
void setObjCGCAttr(GC type)
Qualifiers withConst() const
bool hasObjCGCAttr() const
uint64_t getAsOpaqueValue() const
void setCVRQualifiers(unsigned mask)
bool hasObjCLifetime() const
ObjCLifetime getObjCLifetime() const
Qualifiers withoutObjCLifetime() const
Qualifiers withoutObjCGCAttr() const
static Qualifiers fromCVRUMask(unsigned CVRU)
friend Qualifiers operator+(Qualifiers L, Qualifiers R)
void setUnaligned(bool flag)
void addFastQualifiers(unsigned mask)
std::string getAsString() const
Qualifiers withRestrict() const
void addPointerAuth(PointerAuthQualifier Q)
void addObjCGCAttr(GC type)
bool hasPointerAuth() const
bool operator==(Qualifiers Other) const
void removeQualifiers(Qualifiers Q)
Remove the qualifiers from the given set from this set.
LangAS getAddressSpace() const
bool hasOnlyVolatile() const
void setPointerAuth(PointerAuthQualifier Q)
bool compatiblyIncludesObjCLifetime(Qualifiers other) const
Determines if these qualifiers compatibly include another set of qualifiers from the narrow perspecti...
Qualifiers getNonFastQualifiers() const
static Qualifiers fromOpaqueValue(uint64_t opaque)
bool hasStrongOrWeakObjCLifetime() const
True if the lifetime is either strong or weak.
static std::string getAddrSpaceAsString(LangAS AS)
@ FastWidth
The width of the "fast" qualifier mask.
@ MaxAddressSpace
The maximum supported address space number.
@ FastMask
The fast qualifier mask.
bool hasFastQualifiers() const
bool hasOnlyRestrict() const
bool isAddressSpaceSupersetOf(Qualifiers other, const ASTContext &Ctx) const
Returns true if the address space in these qualifiers is equal to or a superset of the address space ...
void addObjCLifetime(ObjCLifetime type)
void setObjCLifetime(ObjCLifetime type)
static bool classof(const Type *T)
Represents a struct/union/class.
Base for LValueReferenceType and RValueReferenceType.
QualType getPointeeType() const
ReferenceType(TypeClass tc, QualType Referencee, QualType CanonicalRef, bool SpelledAsLValue)
static bool classof(const Type *T)
QualType getPointeeTypeAsWritten() const
bool isSpelledAsLValue() const
void Profile(llvm::FoldingSetNodeID &ID)
static void Profile(llvm::FoldingSetNodeID &ID, QualType Referencee, bool SpelledAsLValue)
Encodes a location in the source.
Stmt - This represents one statement.
The streaming interface shared between DiagnosticBuilder and PartialDiagnostic.
void AddTaggedVal(uint64_t V, DiagnosticsEngine::ArgumentKind Kind) const
Represents the declaration of a struct/union/class/enum.
Stores a list of template parameters for a TemplateDecl and its derived classes.
[BoundsSafety] Represents information of declarations referenced by the arguments of the counted_by a...
TypeCoupledDeclRefInfo(ValueDecl *D=nullptr, bool Deref=false)
D is to a declaration referenced by the argument of attribute.
llvm::PointerIntPair< ValueDecl *, 1, unsigned > BaseTy
Base wrapper for a particular "section" of type source info.
static bool classof(const Type *T)
TypeOfKind getKind() const
Returns the kind of 'typeof' type this is.
TypeOfExprType(const ASTContext &Context, Expr *E, TypeOfKind Kind, QualType Can=QualType())
Expr * getUnderlyingExpr() const
QualType getType() const
Return the type wrapped by this type source info.
void overrideType(QualType T)
Override the type stored in this TypeSourceInfo. Use with caution!
TypeWithKeyword(ElaboratedTypeKeyword Keyword, TypeClass tc, QualType Canonical, TypeDependence Dependence)
friend class AttributedType
friend class ConstantArrayType
friend class CountAttributedType
FunctionTypeBitfields store various bits belonging to FunctionProtoType.
friend class FunctionProtoType
friend class FunctionType
friend class KeywordWrapper
friend class ObjCObjectType
friend class PackExpansionType
friend class PredefinedSugarType
friend class ReferenceType
friend class SubstTemplateTypeParmPackType
friend class SubstPackType
friend class SubstTemplateTypeParmType
friend class TemplateSpecializationType
friend class TemplateTypeParmType
friend class TypeOfExprType
friend class UnresolvedUsingType
friend class DependentVectorType
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 isDecltypeType() const
bool isDependentSizedArrayType() const
bool isFixedPointOrIntegerType() const
Return true if this is a fixed point or integer type.
bool isBlockPointerType() const
TypedefBitfields TypedefBits
bool isBooleanType() const
bool isFunctionReferenceType() const
bool isSignableType(const ASTContext &Ctx) const
Type(const Type &)=delete
bool isObjCBuiltinType() const
const TemplateSpecializationType * getAsNonAliasTemplateSpecializationType() const
Look through sugar for an instance of TemplateSpecializationType which is not a type alias,...
bool isMFloat8Type() const
const Type * getPointeeOrArrayElementType() const
If this is a pointer type, return the pointee type.
bool isIncompleteArrayType() const
bool isPlaceholderType() const
Test for a type which does not represent an actual type-system type but is instead used as a placehol...
bool isFloat16Type() const
ReferenceTypeBitfields ReferenceTypeBits
bool isSignablePointerType() const
ArrayTypeBitfields ArrayTypeBits
const ArrayType * castAsArrayTypeUnsafe() const
A variant of castAs<> for array type which silently discards qualifiers from the outermost type.
static constexpr int NumDeducedTypeBits
bool isDependentAddressSpaceType() const
bool isUndeducedAutoType() const
bool isRValueReferenceType() const
bool isFundamentalType() const
Tests whether the type is categorized as a fundamental type.
VectorTypeBitfields VectorTypeBits
SubstPackTypeBitfields SubstPackTypeBits
bool isConstantArrayType() const
bool canDecayToPointerType() const
Determines whether this type can decay to a pointer type.
bool isFunctionPointerType() const
bool isHLSLInlineSpirvType() const
bool isConvertibleToFixedPointType() const
Return true if this can be converted to (or from) a fixed point type.
bool isArithmeticType() const
PredefinedSugarTypeBitfields PredefinedSugarTypeBits
bool isConstantMatrixType() const
bool isHLSLBuiltinIntangibleType() const
bool isPointerType() const
const TemplateSpecializationType * castAsNonAliasTemplateSpecializationType() const
bool isArrayParameterType() const
TypeOfBitfields TypeOfBits
static constexpr int FunctionTypeNumParamsLimit
bool isIntegerType() const
isIntegerType() does not include complex integers (a GCC extension).
bool isObjCSelType() const
const T * castAs() const
Member-template castAs<specific type>.
BuiltinTypeBitfields BuiltinTypeBits
bool isSpecificPlaceholderType(unsigned K) const
Test for a specific placeholder type.
bool isReferenceType() const
bool isSignedFixedPointType() const
Return true if this is a fixed point type that is signed according to ISO/IEC JTC1 SC22 WG14 N1169.
bool isObjectPointerType() const
bool isEnumeralType() const
bool isVisibilityExplicit() const
Return true if the visibility was explicitly set is the code.
void addDependence(TypeDependence D)
ConstantArrayTypeBitfields ConstantArrayTypeBits
Type(TypeClass tc, QualType canon, TypeDependence Dependence)
bool isScalarType() const
bool isVariableArrayType() const
bool isFloat128Type() const
bool isSveVLSBuiltinType() const
Determines if this is a sizeless type supported by the 'arm_sve_vector_bits' type attribute,...
CountAttributedTypeBitfields CountAttributedTypeBits
bool isObjCQualifiedIdType() const
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
LinkageInfo getLinkageAndVisibility() const
Determine the linkage and visibility of this type.
bool isIntegralOrEnumerationType() const
Determine whether this type is an integral or enumeration type.
bool isExtVectorType() const
bool isExtVectorBoolType() const
Type & operator=(const Type &)=delete
bool isObjCObjectOrInterfaceType() const
bool isNonOverloadPlaceholderType() const
Test for a placeholder type other than Overload; see BuiltinType::isNonOverloadPlaceholderType.
bool isOCLIntelSubgroupAVCType() const
AutoType * getContainedAutoType() const
Get the AutoType whose type will be deduced for a variable with an initializer of this type.
bool isInstantiationDependentType() const
Determine whether this type is an instantiation-dependent type, meaning that the type involves a temp...
bool isMemberDataPointerType() const
bool isLValueReferenceType() const
bool isBitIntType() const
bool isSpecificBuiltinType(unsigned K) const
Test for a particular builtin type.
bool isBuiltinType() const
Helper methods to distinguish type categories.
bool isOpenCLSpecificType() const
bool isConstantMatrixBoolType() const
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
bool isSignableIntegerType(const ASTContext &Ctx) const
bool isFloat32Type() const
bool isAnyComplexType() const
bool isFixedPointType() const
Return true if this is a fixed point type according to ISO/IEC JTC1 SC22 WG14 N1169.
friend class TypePropertyCache
DeducedType * getContainedDeducedType() const
Get the DeducedType whose type will be deduced for a variable with an initializer of this type.
bool isSaturatedFixedPointType() const
Return true if this is a saturated fixed point type according to ISO/IEC JTC1 SC22 WG14 N1169.
bool containsUnexpandedParameterPack() const
Whether this type is or contains an unexpanded parameter pack, used to support C++0x variadic templat...
bool hasPointeeToCFIUncheckedCalleeFunctionType() const
const BuiltinType * getAsPlaceholderType() const
QualType getCanonicalTypeInternal() const
bool isHLSLSpecificType() const
bool isTemplateTypeParmType() const
static constexpr unsigned TemplateTypeParmTypeDepthBits
@ PtrdiffT
The "ptrdiff_t" type.
@ SizeT
The "size_t" type.
@ SignedSizeT
The signed integer type corresponding to "size_t".
bool isCompoundType() const
Tests whether the type is categorized as a compound type.
bool containsErrors() const
Whether this type is an error type.
const Type * getBaseElementTypeUnsafe() const
Get the base element type of this type, potentially discarding type qualifiers.
bool isMemberPointerType() const
bool isAtomicType() const
AttributedTypeBitfields AttributedTypeBits
bool isFunctionProtoType() const
bool isIbm128Type() const
bool isOverloadableType() const
Determines whether this is a type for which one can define an overloaded operator.
bool isObjCIdType() const
bool isMatrixType() const
TagTypeBitfields TagTypeBits
bool isOverflowBehaviorType() const
PackExpansionTypeBitfields PackExpansionTypeBits
bool isVariablyModifiedType() const
Whether this type is a variably-modified type (C99 6.7.5).
bool isUnsaturatedFixedPointType() const
Return true if this is a saturated fixed point type according to ISO/IEC JTC1 SC22 WG14 N1169.
UnresolvedUsingBitfields UnresolvedUsingBits
bool isObjCObjectType() const
bool isFromAST() const
Whether this type comes from an AST file.
const ArrayType * getAsArrayTypeUnsafe() const
A variant of getAs<> for array types which silently discards qualifiers from the outermost type.
bool isUndeducedType() const
Determine whether this type is an undeduced type, meaning that it somehow involves a C++11 'auto' typ...
bool isObjectType() const
Determine whether this type is an object type.
bool isDoubleType() const
bool isPointerOrReferenceType() const
KeywordWrapperBitfields KeywordWrapperBits
FunctionTypeBitfields FunctionTypeBits
bool isBFloat16Type() const
void setDependence(TypeDependence D)
const T * getAsAdjusted() const
Member-template getAsAdjusted<specific type>.
bool isFunctionType() const
bool isObjCObjectPointerType() const
SubstTemplateTypeParmTypeBitfields SubstTemplateTypeParmTypeBits
TypeDependence getDependence() const
Visibility getVisibility() const
Determine the visibility of this type.
bool isMemberFunctionPointerType() const
bool isUnsignedFixedPointType() const
Return true if this is a fixed point type that is unsigned according to ISO/IEC JTC1 SC22 WG14 N1169.
bool isVectorType() const
bool isObjCQualifiedClassType() const
bool isObjCClassType() const
bool isObjCInertUnsafeUnretainedType() const
Was this type written with the special inert-in-ARC __unsafe_unretained qualifier?
bool isRealFloatingType() const
Floating point categories.
const T * getAsCanonical() const
If this type is canonically the specified type, return its canonical type cast to that specified type...
bool isHLSLAttributedResourceType() const
ObjCObjectTypeBitfields ObjCObjectTypeBits
TemplateTypeParmTypeBitfields TemplateTypeParmTypeBits
bool isOCLExtOpaqueType() const
const T * castAsCanonical() const
Return this type's canonical type cast to the specified type.
bool isAnyPointerType() const
TypeClass getTypeClass() const
bool isCanonicalUnqualified() const
Determines if this type would be canonical if it had no further qualification.
static constexpr unsigned TemplateTypeParmTypeIndexBits
bool isSubscriptableVectorType() 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 isNullPtrType() const
bool isRecordType() const
TemplateSpecializationTypeBitfields TemplateSpecializationTypeBits
bool isTypedefNameType() const
Determines whether this type is written as a typedef-name.
static constexpr int FunctionTypeNumParamsWidth
bool isFunctionNoProtoType() const
bool isReserveIDT() const
bool hasObjCPointerRepresentation() const
Whether this type can represent an objective pointer type for the purpose of GC'ability.
bool hasPointerRepresentation() const
Whether this type is represented natively as a pointer.
DeducedTypeBitfields DeducedTypeBits
AutoTypeBitfields AutoTypeBits
bool isCFIUncheckedCalleeFunctionType() const
Type & operator=(Type &&)=delete
Base class for declarations which introduce a typedef-name.
TypedefNameDecl * getDecl() const
NestedNameSpecifier getQualifier() const
static void Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier Qualifier, const TypedefNameDecl *Decl, QualType Underlying)
static bool classof(const Type *T)
bool typeMatchesDecl() const
void Profile(llvm::FoldingSetNodeID &ID) const
void Profile(llvm::FoldingSetNodeID &ID) const
NestedNameSpecifier getQualifier() const
UnresolvedUsingTypenameDecl * getDecl() const
static void Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier Qualifier, const UnresolvedUsingTypenameDecl *D)
static bool classof(const Type *T)
Represents a dependent using declaration which was marked with typename.
Represents a shadow declaration implicitly introduced into a scope by a (resolved) using-declaration ...
UsingShadowDecl * getDecl() const
void Profile(llvm::FoldingSetNodeID &ID) const
NestedNameSpecifier getQualifier() const
static void Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier Qualifier, const UsingShadowDecl *D, QualType UnderlyingType)
static bool classof(const Type *T)
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
static bool classof(const Type *T)
friend class StmtIteratorBase
void Profile(llvm::FoldingSetNodeID &ID)
Expr * getSizeExpr() const
unsigned getNumElements() const
VectorType(QualType vecType, unsigned nElements, QualType canonType, VectorKind vecKind)
void Profile(llvm::FoldingSetNodeID &ID)
static void Profile(llvm::FoldingSetNodeID &ID, QualType ElementType, unsigned NumElements, TypeClass TypeClass, VectorKind VecKind)
VectorKind getVectorKind() const
QualType ElementType
The element type of the vector.
QualType getElementType() const
static bool classof(const Type *T)
Defines the Linkage enumeration and various utility functions.
mlir::Type getBaseType(mlir::Value varPtr)
@ AttributedType
The l-value was considered opaque, so the alignment was determined from a type, but that type was an ...
bool operator!=(const CommonEntityInfo &LHS, const CommonEntityInfo &RHS)
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
const AstTypeMatcher< ArrayType > arrayType
const internal::VariadicAllOfMatcher< Decl > decl
Matches declarations.
uint32_t Literal
Literals are represented as positive integers.
std::variant< struct RequiresDecl, struct HeaderDecl, struct UmbrellaDirDecl, struct ModuleDecl, struct ExcludeDecl, struct ExportDecl, struct ExportAsDecl, struct ExternModuleDecl, struct UseDecl, struct LinkDecl, struct ConfigMacrosDecl, struct ConflictDecl > Decl
All declarations that can appear in a module declaration.
bool operator==(const ValueType &a, const ValueType &b)
bool isLiteral(TokenKind K)
Return true if this is a "literal" kind, like a numeric constant, string, etc.
Top level wrappers for InstallAPI frontend operations.
CanQual< Type > CanQualType
Represents a canonical, potentially-qualified type.
@ Overload
This is a legitimate overload: the existing declarations are functions or function templates with dif...
bool isa(CodeGen::Address addr)
AutoTypeKeyword
Which keyword(s) were used to create an AutoType.
@ GNUAutoType
__auto_type (GNU extension)
@ DecltypeAuto
decltype(auto)
bool isTargetAddressSpace(LangAS AS)
CanThrowResult
Possible results from evaluation of a noexcept expression.
FunctionType::ExtInfo getFunctionExtInfo(const Type &t)
bool isDynamicExceptionSpec(ExceptionSpecificationType ESpecType)
TypeDependenceScope::TypeDependence TypeDependence
@ Nullable
Values of this type can be null.
RefQualifierKind
The kind of C++11 ref-qualifier associated with a function type.
@ RQ_None
No ref-qualifier was provided.
@ RQ_LValue
An lvalue ref-qualifier was provided (&).
@ RQ_RValue
An rvalue ref-qualifier was provided (&&).
@ TemplateName
The identifier is a template name. FIXME: Add an annotation for that.
bool IsEnumDeclComplete(EnumDecl *ED)
Check if the given decl is complete.
ExprDependence computeDependence(FullExpr *E)
@ Vector
'vector' clause, allowed on 'loop', Combined, and 'routine' directives.
@ Self
'self' clause, allowed on Compute and Combined Constructs, plus 'update'.
TypeOfKind
The kind of 'typeof' expression we're after.
bool operator==(const CallGraphNode::CallRecord &LHS, const CallGraphNode::CallRecord &RHS)
nullptr
This class represents a compute construct, representing a 'Kind' of ‘parallel’, 'serial',...
TypeDependence toTypeDependence(ExprDependence D)
@ Dependent
Parse the block as a dependent block, which may be used in some template instantiations but not other...
unsigned toTargetAddressSpace(LangAS AS)
Linkage
Describes the different kinds of linkage (C++ [basic.link], C99 6.2.2) that an entity may have.
ObjCSubstitutionContext
The kind of type we are substituting Objective-C type arguments into.
@ Superclass
The superclass of a type.
@ Property
The type of a property.
@ Parameter
The parameter type of a method or function.
@ Result
The result type of a method or function.
ArraySizeModifier
Capture whether this is a normal array (e.g.
ParameterABI
Kinds of parameter ABI.
@ Ordinary
This parameter uses ordinary ABI rules for its type.
OptionalUnsigned< unsigned > UnsignedOrNone
const FunctionProtoType * T
bool isComputedNoexcept(ExceptionSpecificationType ESpecType)
@ Template
We are parsing a template declaration.
bool isNoexceptExceptionSpec(ExceptionSpecificationType ESpecType)
TagTypeKind
The kind of a tag type.
constexpr unsigned PointerAuthKeyNone
bool IsEnumDeclScoped(EnumDecl *ED)
Check if the given decl is scoped.
std::is_base_of< ArrayType, T > TypeIsArrayType
@ Keyword
The name has been typo-corrected to a keyword.
LangAS
Defines the address space values used by the address space qualifier of QualType.
void FixedPointValueToString(SmallVectorImpl< char > &Str, llvm::APSInt Val, unsigned Scale)
bool operator!=(CanQual< T > x, CanQual< U > y)
@ Deduced
The normal deduced case.
@ Undeduced
Not deduced yet. This is for example an 'auto' which was just parsed.
@ DeducedAsPack
Same as above, but additionally this represents a case where the deduced entity itself is a pack.
@ DeducedAsDependent
This is a special case where the initializer is dependent, so we can't deduce a type yet.
PointerAuthenticationMode
const StreamingDiagnostic & operator<<(const StreamingDiagnostic &DB, const ConceptReference *C)
Insertion operator for diagnostics.
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)
@ None
The alignment was not explicit in code.
ElaboratedTypeKeyword
The elaboration keyword that precedes a qualified type name or introduces an elaborated-type-specifie...
@ Interface
The "__interface" keyword introduces the elaborated-type-specifier.
@ None
No keyword precedes the qualified type name.
@ Struct
The "struct" keyword introduces the elaborated-type-specifier.
@ Class
The "class" keyword introduces the elaborated-type-specifier.
@ Union
The "union" keyword introduces the elaborated-type-specifier.
@ Enum
The "enum" keyword introduces the elaborated-type-specifier.
@ Typename
The "typename" keyword precedes the qualified type name, e.g., typename T::type.
TypeDependence toSyntacticDependence(TypeDependence D)
@ Other
Other implicit parameter.
ExceptionSpecificationType
The various types of exception specifications that exist in C++11.
@ 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)
OptionalUnsigned< NullabilityKind > NullabilityKindOrNone
Visibility
Describes the different kinds of visibility that a declaration may have.
Diagnostic wrappers for TextAPI types for error reporting.
__UINTPTR_TYPE__ uintptr_t
An unsigned integer type with the property that any valid pointer to void can be converted to this ty...
__packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 __packed_splat2 uint8_t
__packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 __packed_splat2 __packed_splat4 uint16_t
__packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 __packed_splat2 __packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 uint32_t
void Profile(llvm::FoldingSetNodeID &ID)
const T * getType() const
FunctionEffectWithCondition Rejected
FunctionEffectWithCondition Kept
A FunctionEffect plus a potential boolean expression determining whether the effect is declared (e....
FunctionEffectWithCondition(FunctionEffect E, const EffectConditionExpr &C)
Holds information about the various types of exception specification.
FunctionDecl * SourceDecl
The function whose exception specification this is, for EST_Unevaluated and EST_Uninstantiated.
ExceptionSpecInfo(ExceptionSpecificationType EST)
FunctionDecl * SourceTemplate
The function template whose exception specification this is instantiated from, for EST_Uninstantiated...
ExceptionSpecificationType Type
The kind of exception specification this is.
ArrayRef< QualType > Exceptions
Explicitly-specified list of exception types.
Expr * NoexceptExpr
Noexcept expression, if this is a computed noexcept specification.
ExceptionSpecInfo()=default
Extra information about a function prototype.
ExceptionSpecInfo ExceptionSpec
FunctionTypeExtraAttributeInfo ExtraAttributeInfo
bool requiresFunctionProtoTypeArmAttributes() const
unsigned AArch64SMEAttributes
SourceLocation EllipsisLoc
FunctionEffectsRef FunctionEffects
unsigned CFIUncheckedCallee
const ExtParameterInfo * ExtParameterInfos
RefQualifierKind RefQualifier
bool requiresFunctionProtoTypeExtraAttributeInfo() const
ExtProtoInfo withCFIUncheckedCallee(bool CFIUncheckedCallee)
ExtProtoInfo(CallingConv CC)
unsigned HasTrailingReturn
bool requiresFunctionProtoTypeExtraBitfields() const
void setArmSMEAttribute(AArch64SMETypeAttributes Kind, bool Enable=true)
ExtProtoInfo withExceptionSpec(const ExceptionSpecInfo &ESI)
FunctionType::ExtInfo ExtInfo
A simple holder for a QualType representing a type in an exception specification.
FunctionTypeArmAttributes()
unsigned AArch64SMEAttributes
Any AArch64 SME ACLE type attributes that need to be propagated on declarations and function pointers...
Provides a few static helpers for converting and printing elaborated type keyword and tag type kind e...
static StringRef getTagTypeKindName(TagTypeKind Kind)
static StringRef getKeywordName(ElaboratedTypeKeyword Keyword)
static ElaboratedTypeKeyword getKeywordForTagTypeKind(TagTypeKind Tag)
Converts a TagTypeKind into an elaborated type keyword.
static TagTypeKind getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword)
Converts an elaborated type keyword into a TagTypeKind.
static TagTypeKind getTagTypeKindForTypeSpec(unsigned TypeSpec)
Converts a type specifier (DeclSpec::TST) into a tag type kind.
static bool KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword)
static ElaboratedTypeKeyword getKeywordForTypeSpec(unsigned TypeSpec)
Converts a type specifier (DeclSpec::TST) into an elaborated type keyword.
A late-parsed attribute that will be applied as a type attribute.
Describes how types, statements, expressions, and declarations should be printed.
A std::pair-like structure for storing a qualified type split into its local qualifiers and its local...
SplitQualType(const Type *ty, Qualifiers qs)
SplitQualType getSingleStepDesugaredType() const
friend bool operator==(SplitQualType a, SplitQualType b)
const Type * Ty
The locally-unqualified type.
friend bool operator!=(SplitQualType a, SplitQualType b)
std::pair< const Type *, Qualifiers > asPair() const
Qualifiers Quals
The local qualifiers.
static inline ::clang::ExtQuals * getFromVoidPointer(void *P)
static void * getAsVoidPointer(::clang::ExtQuals *P)
static constexpr int NumLowBitsAvailable
static void * getAsVoidPointer(::clang::Type *P)
static constexpr int NumLowBitsAvailable
static inline ::clang::Type * getFromVoidPointer(void *P)
static void * getAsVoidPointer(clang::QualType P)
static clang::QualType getFromVoidPointer(void *P)
static constexpr int NumLowBitsAvailable
static SimpleType getSimplifiedValue(::clang::QualType Val)
const ::clang::Type * SimpleType