1 //===- Type.cpp - Type representation and manipulation --------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements type-related functionality. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "clang/AST/Type.h" 14 #include "Linkage.h" 15 #include "clang/AST/ASTContext.h" 16 #include "clang/AST/Attr.h" 17 #include "clang/AST/CharUnits.h" 18 #include "clang/AST/Decl.h" 19 #include "clang/AST/DeclBase.h" 20 #include "clang/AST/DeclCXX.h" 21 #include "clang/AST/DeclObjC.h" 22 #include "clang/AST/DeclTemplate.h" 23 #include "clang/AST/DependenceFlags.h" 24 #include "clang/AST/Expr.h" 25 #include "clang/AST/NestedNameSpecifier.h" 26 #include "clang/AST/NonTrivialTypeVisitor.h" 27 #include "clang/AST/PrettyPrinter.h" 28 #include "clang/AST/TemplateBase.h" 29 #include "clang/AST/TemplateName.h" 30 #include "clang/AST/TypeVisitor.h" 31 #include "clang/Basic/AddressSpaces.h" 32 #include "clang/Basic/ExceptionSpecificationType.h" 33 #include "clang/Basic/IdentifierTable.h" 34 #include "clang/Basic/LLVM.h" 35 #include "clang/Basic/LangOptions.h" 36 #include "clang/Basic/Linkage.h" 37 #include "clang/Basic/Specifiers.h" 38 #include "clang/Basic/TargetCXXABI.h" 39 #include "clang/Basic/TargetInfo.h" 40 #include "clang/Basic/Visibility.h" 41 #include "llvm/ADT/APInt.h" 42 #include "llvm/ADT/APSInt.h" 43 #include "llvm/ADT/ArrayRef.h" 44 #include "llvm/ADT/FoldingSet.h" 45 #include "llvm/ADT/None.h" 46 #include "llvm/ADT/SmallVector.h" 47 #include "llvm/Support/Casting.h" 48 #include "llvm/Support/ErrorHandling.h" 49 #include "llvm/Support/MathExtras.h" 50 #include <algorithm> 51 #include <cassert> 52 #include <cstdint> 53 #include <cstring> 54 #include <type_traits> 55 56 using namespace clang; 57 58 bool Qualifiers::isStrictSupersetOf(Qualifiers Other) const { 59 return (*this != Other) && 60 // CVR qualifiers superset 61 (((Mask & CVRMask) | (Other.Mask & CVRMask)) == (Mask & CVRMask)) && 62 // ObjC GC qualifiers superset 63 ((getObjCGCAttr() == Other.getObjCGCAttr()) || 64 (hasObjCGCAttr() && !Other.hasObjCGCAttr())) && 65 // Address space superset. 66 ((getAddressSpace() == Other.getAddressSpace()) || 67 (hasAddressSpace()&& !Other.hasAddressSpace())) && 68 // Lifetime qualifier superset. 69 ((getObjCLifetime() == Other.getObjCLifetime()) || 70 (hasObjCLifetime() && !Other.hasObjCLifetime())); 71 } 72 73 const IdentifierInfo* QualType::getBaseTypeIdentifier() const { 74 const Type* ty = getTypePtr(); 75 NamedDecl *ND = nullptr; 76 if (ty->isPointerType() || ty->isReferenceType()) 77 return ty->getPointeeType().getBaseTypeIdentifier(); 78 else if (ty->isRecordType()) 79 ND = ty->castAs<RecordType>()->getDecl(); 80 else if (ty->isEnumeralType()) 81 ND = ty->castAs<EnumType>()->getDecl(); 82 else if (ty->getTypeClass() == Type::Typedef) 83 ND = ty->castAs<TypedefType>()->getDecl(); 84 else if (ty->isArrayType()) 85 return ty->castAsArrayTypeUnsafe()-> 86 getElementType().getBaseTypeIdentifier(); 87 88 if (ND) 89 return ND->getIdentifier(); 90 return nullptr; 91 } 92 93 bool QualType::mayBeDynamicClass() const { 94 const auto *ClassDecl = getTypePtr()->getPointeeCXXRecordDecl(); 95 return ClassDecl && ClassDecl->mayBeDynamicClass(); 96 } 97 98 bool QualType::mayBeNotDynamicClass() const { 99 const auto *ClassDecl = getTypePtr()->getPointeeCXXRecordDecl(); 100 return !ClassDecl || ClassDecl->mayBeNonDynamicClass(); 101 } 102 103 bool QualType::isConstant(QualType T, const ASTContext &Ctx) { 104 if (T.isConstQualified()) 105 return true; 106 107 if (const ArrayType *AT = Ctx.getAsArrayType(T)) 108 return AT->getElementType().isConstant(Ctx); 109 110 return T.getAddressSpace() == LangAS::opencl_constant; 111 } 112 113 // C++ [temp.dep.type]p1: 114 // A type is dependent if it is... 115 // - an array type constructed from any dependent type or whose 116 // size is specified by a constant expression that is 117 // value-dependent, 118 ArrayType::ArrayType(TypeClass tc, QualType et, QualType can, 119 ArraySizeModifier sm, unsigned tq, const Expr *sz) 120 // Note, we need to check for DependentSizedArrayType explicitly here 121 // because we use a DependentSizedArrayType with no size expression as the 122 // type of a dependent array of unknown bound with a dependent braced 123 // initializer: 124 // 125 // template<int ...N> int arr[] = {N...}; 126 : Type(tc, can, 127 et->getDependence() | 128 (sz ? toTypeDependence( 129 turnValueToTypeDependence(sz->getDependence())) 130 : TypeDependence::None) | 131 (tc == VariableArray ? TypeDependence::VariablyModified 132 : TypeDependence::None) | 133 (tc == DependentSizedArray 134 ? TypeDependence::DependentInstantiation 135 : TypeDependence::None)), 136 ElementType(et) { 137 ArrayTypeBits.IndexTypeQuals = tq; 138 ArrayTypeBits.SizeModifier = sm; 139 } 140 141 unsigned ConstantArrayType::getNumAddressingBits(const ASTContext &Context, 142 QualType ElementType, 143 const llvm::APInt &NumElements) { 144 uint64_t ElementSize = Context.getTypeSizeInChars(ElementType).getQuantity(); 145 146 // Fast path the common cases so we can avoid the conservative computation 147 // below, which in common cases allocates "large" APSInt values, which are 148 // slow. 149 150 // If the element size is a power of 2, we can directly compute the additional 151 // number of addressing bits beyond those required for the element count. 152 if (llvm::isPowerOf2_64(ElementSize)) { 153 return NumElements.getActiveBits() + llvm::Log2_64(ElementSize); 154 } 155 156 // If both the element count and element size fit in 32-bits, we can do the 157 // computation directly in 64-bits. 158 if ((ElementSize >> 32) == 0 && NumElements.getBitWidth() <= 64 && 159 (NumElements.getZExtValue() >> 32) == 0) { 160 uint64_t TotalSize = NumElements.getZExtValue() * ElementSize; 161 return 64 - llvm::countLeadingZeros(TotalSize); 162 } 163 164 // Otherwise, use APSInt to handle arbitrary sized values. 165 llvm::APSInt SizeExtended(NumElements, true); 166 unsigned SizeTypeBits = Context.getTypeSize(Context.getSizeType()); 167 SizeExtended = SizeExtended.extend(std::max(SizeTypeBits, 168 SizeExtended.getBitWidth()) * 2); 169 170 llvm::APSInt TotalSize(llvm::APInt(SizeExtended.getBitWidth(), ElementSize)); 171 TotalSize *= SizeExtended; 172 173 return TotalSize.getActiveBits(); 174 } 175 176 unsigned ConstantArrayType::getMaxSizeBits(const ASTContext &Context) { 177 unsigned Bits = Context.getTypeSize(Context.getSizeType()); 178 179 // Limit the number of bits in size_t so that maximal bit size fits 64 bit 180 // integer (see PR8256). We can do this as currently there is no hardware 181 // that supports full 64-bit virtual space. 182 if (Bits > 61) 183 Bits = 61; 184 185 return Bits; 186 } 187 188 void ConstantArrayType::Profile(llvm::FoldingSetNodeID &ID, 189 const ASTContext &Context, QualType ET, 190 const llvm::APInt &ArraySize, 191 const Expr *SizeExpr, ArraySizeModifier SizeMod, 192 unsigned TypeQuals) { 193 ID.AddPointer(ET.getAsOpaquePtr()); 194 ID.AddInteger(ArraySize.getZExtValue()); 195 ID.AddInteger(SizeMod); 196 ID.AddInteger(TypeQuals); 197 ID.AddBoolean(SizeExpr != 0); 198 if (SizeExpr) 199 SizeExpr->Profile(ID, Context, true); 200 } 201 202 DependentSizedArrayType::DependentSizedArrayType(const ASTContext &Context, 203 QualType et, QualType can, 204 Expr *e, ArraySizeModifier sm, 205 unsigned tq, 206 SourceRange brackets) 207 : ArrayType(DependentSizedArray, et, can, sm, tq, e), 208 Context(Context), SizeExpr((Stmt*) e), Brackets(brackets) {} 209 210 void DependentSizedArrayType::Profile(llvm::FoldingSetNodeID &ID, 211 const ASTContext &Context, 212 QualType ET, 213 ArraySizeModifier SizeMod, 214 unsigned TypeQuals, 215 Expr *E) { 216 ID.AddPointer(ET.getAsOpaquePtr()); 217 ID.AddInteger(SizeMod); 218 ID.AddInteger(TypeQuals); 219 E->Profile(ID, Context, true); 220 } 221 222 DependentVectorType::DependentVectorType(const ASTContext &Context, 223 QualType ElementType, 224 QualType CanonType, Expr *SizeExpr, 225 SourceLocation Loc, 226 VectorType::VectorKind VecKind) 227 : Type(DependentVector, CanonType, 228 TypeDependence::DependentInstantiation | 229 ElementType->getDependence() | 230 (SizeExpr ? toTypeDependence(SizeExpr->getDependence()) 231 : TypeDependence::None)), 232 Context(Context), ElementType(ElementType), SizeExpr(SizeExpr), Loc(Loc) { 233 VectorTypeBits.VecKind = VecKind; 234 } 235 236 void DependentVectorType::Profile(llvm::FoldingSetNodeID &ID, 237 const ASTContext &Context, 238 QualType ElementType, const Expr *SizeExpr, 239 VectorType::VectorKind VecKind) { 240 ID.AddPointer(ElementType.getAsOpaquePtr()); 241 ID.AddInteger(VecKind); 242 SizeExpr->Profile(ID, Context, true); 243 } 244 245 DependentSizedExtVectorType::DependentSizedExtVectorType( 246 const ASTContext &Context, QualType ElementType, QualType can, 247 Expr *SizeExpr, SourceLocation loc) 248 : Type(DependentSizedExtVector, can, 249 TypeDependence::DependentInstantiation | 250 ElementType->getDependence() | 251 (SizeExpr ? toTypeDependence(SizeExpr->getDependence()) 252 : TypeDependence::None)), 253 Context(Context), SizeExpr(SizeExpr), ElementType(ElementType), loc(loc) { 254 } 255 256 void 257 DependentSizedExtVectorType::Profile(llvm::FoldingSetNodeID &ID, 258 const ASTContext &Context, 259 QualType ElementType, Expr *SizeExpr) { 260 ID.AddPointer(ElementType.getAsOpaquePtr()); 261 SizeExpr->Profile(ID, Context, true); 262 } 263 264 DependentAddressSpaceType::DependentAddressSpaceType(const ASTContext &Context, 265 QualType PointeeType, 266 QualType can, 267 Expr *AddrSpaceExpr, 268 SourceLocation loc) 269 : Type(DependentAddressSpace, can, 270 TypeDependence::DependentInstantiation | 271 PointeeType->getDependence() | 272 (AddrSpaceExpr ? toTypeDependence(AddrSpaceExpr->getDependence()) 273 : TypeDependence::None)), 274 Context(Context), AddrSpaceExpr(AddrSpaceExpr), PointeeType(PointeeType), 275 loc(loc) {} 276 277 void DependentAddressSpaceType::Profile(llvm::FoldingSetNodeID &ID, 278 const ASTContext &Context, 279 QualType PointeeType, 280 Expr *AddrSpaceExpr) { 281 ID.AddPointer(PointeeType.getAsOpaquePtr()); 282 AddrSpaceExpr->Profile(ID, Context, true); 283 } 284 285 MatrixType::MatrixType(TypeClass tc, QualType matrixType, QualType canonType, 286 const Expr *RowExpr, const Expr *ColumnExpr) 287 : Type(tc, canonType, 288 (RowExpr ? (matrixType->getDependence() | TypeDependence::Dependent | 289 TypeDependence::Instantiation | 290 (matrixType->isVariablyModifiedType() 291 ? TypeDependence::VariablyModified 292 : TypeDependence::None) | 293 (matrixType->containsUnexpandedParameterPack() || 294 (RowExpr && 295 RowExpr->containsUnexpandedParameterPack()) || 296 (ColumnExpr && 297 ColumnExpr->containsUnexpandedParameterPack()) 298 ? TypeDependence::UnexpandedPack 299 : TypeDependence::None)) 300 : matrixType->getDependence())), 301 ElementType(matrixType) {} 302 303 ConstantMatrixType::ConstantMatrixType(QualType matrixType, unsigned nRows, 304 unsigned nColumns, QualType canonType) 305 : ConstantMatrixType(ConstantMatrix, matrixType, nRows, nColumns, 306 canonType) {} 307 308 ConstantMatrixType::ConstantMatrixType(TypeClass tc, QualType matrixType, 309 unsigned nRows, unsigned nColumns, 310 QualType canonType) 311 : MatrixType(tc, matrixType, canonType), NumRows(nRows), 312 NumColumns(nColumns) {} 313 314 DependentSizedMatrixType::DependentSizedMatrixType( 315 const ASTContext &CTX, QualType ElementType, QualType CanonicalType, 316 Expr *RowExpr, Expr *ColumnExpr, SourceLocation loc) 317 : MatrixType(DependentSizedMatrix, ElementType, CanonicalType, RowExpr, 318 ColumnExpr), 319 Context(CTX), RowExpr(RowExpr), ColumnExpr(ColumnExpr), loc(loc) {} 320 321 void DependentSizedMatrixType::Profile(llvm::FoldingSetNodeID &ID, 322 const ASTContext &CTX, 323 QualType ElementType, Expr *RowExpr, 324 Expr *ColumnExpr) { 325 ID.AddPointer(ElementType.getAsOpaquePtr()); 326 RowExpr->Profile(ID, CTX, true); 327 ColumnExpr->Profile(ID, CTX, true); 328 } 329 330 VectorType::VectorType(QualType vecType, unsigned nElements, QualType canonType, 331 VectorKind vecKind) 332 : VectorType(Vector, vecType, nElements, canonType, vecKind) {} 333 334 VectorType::VectorType(TypeClass tc, QualType vecType, unsigned nElements, 335 QualType canonType, VectorKind vecKind) 336 : Type(tc, canonType, vecType->getDependence()), ElementType(vecType) { 337 VectorTypeBits.VecKind = vecKind; 338 VectorTypeBits.NumElements = nElements; 339 } 340 341 ExtIntType::ExtIntType(bool IsUnsigned, unsigned NumBits) 342 : Type(ExtInt, QualType{}, TypeDependence::None), IsUnsigned(IsUnsigned), 343 NumBits(NumBits) {} 344 345 DependentExtIntType::DependentExtIntType(const ASTContext &Context, 346 bool IsUnsigned, Expr *NumBitsExpr) 347 : Type(DependentExtInt, QualType{}, 348 toTypeDependence(NumBitsExpr->getDependence())), 349 Context(Context), ExprAndUnsigned(NumBitsExpr, IsUnsigned) {} 350 351 bool DependentExtIntType::isUnsigned() const { 352 return ExprAndUnsigned.getInt(); 353 } 354 355 clang::Expr *DependentExtIntType::getNumBitsExpr() const { 356 return ExprAndUnsigned.getPointer(); 357 } 358 359 void DependentExtIntType::Profile(llvm::FoldingSetNodeID &ID, 360 const ASTContext &Context, bool IsUnsigned, 361 Expr *NumBitsExpr) { 362 ID.AddBoolean(IsUnsigned); 363 NumBitsExpr->Profile(ID, Context, true); 364 } 365 366 /// getArrayElementTypeNoTypeQual - If this is an array type, return the 367 /// element type of the array, potentially with type qualifiers missing. 368 /// This method should never be used when type qualifiers are meaningful. 369 const Type *Type::getArrayElementTypeNoTypeQual() const { 370 // If this is directly an array type, return it. 371 if (const auto *ATy = dyn_cast<ArrayType>(this)) 372 return ATy->getElementType().getTypePtr(); 373 374 // If the canonical form of this type isn't the right kind, reject it. 375 if (!isa<ArrayType>(CanonicalType)) 376 return nullptr; 377 378 // If this is a typedef for an array type, strip the typedef off without 379 // losing all typedef information. 380 return cast<ArrayType>(getUnqualifiedDesugaredType()) 381 ->getElementType().getTypePtr(); 382 } 383 384 /// getDesugaredType - Return the specified type with any "sugar" removed from 385 /// the type. This takes off typedefs, typeof's etc. If the outer level of 386 /// the type is already concrete, it returns it unmodified. This is similar 387 /// to getting the canonical type, but it doesn't remove *all* typedefs. For 388 /// example, it returns "T*" as "T*", (not as "int*"), because the pointer is 389 /// concrete. 390 QualType QualType::getDesugaredType(QualType T, const ASTContext &Context) { 391 SplitQualType split = getSplitDesugaredType(T); 392 return Context.getQualifiedType(split.Ty, split.Quals); 393 } 394 395 QualType QualType::getSingleStepDesugaredTypeImpl(QualType type, 396 const ASTContext &Context) { 397 SplitQualType split = type.split(); 398 QualType desugar = split.Ty->getLocallyUnqualifiedSingleStepDesugaredType(); 399 return Context.getQualifiedType(desugar, split.Quals); 400 } 401 402 // Check that no type class is polymorphic. LLVM style RTTI should be used 403 // instead. If absolutely needed an exception can still be added here by 404 // defining the appropriate macro (but please don't do this). 405 #define TYPE(CLASS, BASE) \ 406 static_assert(!std::is_polymorphic<CLASS##Type>::value, \ 407 #CLASS "Type should not be polymorphic!"); 408 #include "clang/AST/TypeNodes.inc" 409 410 // Check that no type class has a non-trival destructor. Types are 411 // allocated with the BumpPtrAllocator from ASTContext and therefore 412 // their destructor is not executed. 413 // 414 // FIXME: ConstantArrayType is not trivially destructible because of its 415 // APInt member. It should be replaced in favor of ASTContext allocation. 416 #define TYPE(CLASS, BASE) \ 417 static_assert(std::is_trivially_destructible<CLASS##Type>::value || \ 418 std::is_same<CLASS##Type, ConstantArrayType>::value, \ 419 #CLASS "Type should be trivially destructible!"); 420 #include "clang/AST/TypeNodes.inc" 421 422 QualType Type::getLocallyUnqualifiedSingleStepDesugaredType() const { 423 switch (getTypeClass()) { 424 #define ABSTRACT_TYPE(Class, Parent) 425 #define TYPE(Class, Parent) \ 426 case Type::Class: { \ 427 const auto *ty = cast<Class##Type>(this); \ 428 if (!ty->isSugared()) return QualType(ty, 0); \ 429 return ty->desugar(); \ 430 } 431 #include "clang/AST/TypeNodes.inc" 432 } 433 llvm_unreachable("bad type kind!"); 434 } 435 436 SplitQualType QualType::getSplitDesugaredType(QualType T) { 437 QualifierCollector Qs; 438 439 QualType Cur = T; 440 while (true) { 441 const Type *CurTy = Qs.strip(Cur); 442 switch (CurTy->getTypeClass()) { 443 #define ABSTRACT_TYPE(Class, Parent) 444 #define TYPE(Class, Parent) \ 445 case Type::Class: { \ 446 const auto *Ty = cast<Class##Type>(CurTy); \ 447 if (!Ty->isSugared()) \ 448 return SplitQualType(Ty, Qs); \ 449 Cur = Ty->desugar(); \ 450 break; \ 451 } 452 #include "clang/AST/TypeNodes.inc" 453 } 454 } 455 } 456 457 SplitQualType QualType::getSplitUnqualifiedTypeImpl(QualType type) { 458 SplitQualType split = type.split(); 459 460 // All the qualifiers we've seen so far. 461 Qualifiers quals = split.Quals; 462 463 // The last type node we saw with any nodes inside it. 464 const Type *lastTypeWithQuals = split.Ty; 465 466 while (true) { 467 QualType next; 468 469 // Do a single-step desugar, aborting the loop if the type isn't 470 // sugared. 471 switch (split.Ty->getTypeClass()) { 472 #define ABSTRACT_TYPE(Class, Parent) 473 #define TYPE(Class, Parent) \ 474 case Type::Class: { \ 475 const auto *ty = cast<Class##Type>(split.Ty); \ 476 if (!ty->isSugared()) goto done; \ 477 next = ty->desugar(); \ 478 break; \ 479 } 480 #include "clang/AST/TypeNodes.inc" 481 } 482 483 // Otherwise, split the underlying type. If that yields qualifiers, 484 // update the information. 485 split = next.split(); 486 if (!split.Quals.empty()) { 487 lastTypeWithQuals = split.Ty; 488 quals.addConsistentQualifiers(split.Quals); 489 } 490 } 491 492 done: 493 return SplitQualType(lastTypeWithQuals, quals); 494 } 495 496 QualType QualType::IgnoreParens(QualType T) { 497 // FIXME: this seems inherently un-qualifiers-safe. 498 while (const auto *PT = T->getAs<ParenType>()) 499 T = PT->getInnerType(); 500 return T; 501 } 502 503 /// This will check for a T (which should be a Type which can act as 504 /// sugar, such as a TypedefType) by removing any existing sugar until it 505 /// reaches a T or a non-sugared type. 506 template<typename T> static const T *getAsSugar(const Type *Cur) { 507 while (true) { 508 if (const auto *Sugar = dyn_cast<T>(Cur)) 509 return Sugar; 510 switch (Cur->getTypeClass()) { 511 #define ABSTRACT_TYPE(Class, Parent) 512 #define TYPE(Class, Parent) \ 513 case Type::Class: { \ 514 const auto *Ty = cast<Class##Type>(Cur); \ 515 if (!Ty->isSugared()) return 0; \ 516 Cur = Ty->desugar().getTypePtr(); \ 517 break; \ 518 } 519 #include "clang/AST/TypeNodes.inc" 520 } 521 } 522 } 523 524 template <> const TypedefType *Type::getAs() const { 525 return getAsSugar<TypedefType>(this); 526 } 527 528 template <> const TemplateSpecializationType *Type::getAs() const { 529 return getAsSugar<TemplateSpecializationType>(this); 530 } 531 532 template <> const AttributedType *Type::getAs() const { 533 return getAsSugar<AttributedType>(this); 534 } 535 536 /// getUnqualifiedDesugaredType - Pull any qualifiers and syntactic 537 /// sugar off the given type. This should produce an object of the 538 /// same dynamic type as the canonical type. 539 const Type *Type::getUnqualifiedDesugaredType() const { 540 const Type *Cur = this; 541 542 while (true) { 543 switch (Cur->getTypeClass()) { 544 #define ABSTRACT_TYPE(Class, Parent) 545 #define TYPE(Class, Parent) \ 546 case Class: { \ 547 const auto *Ty = cast<Class##Type>(Cur); \ 548 if (!Ty->isSugared()) return Cur; \ 549 Cur = Ty->desugar().getTypePtr(); \ 550 break; \ 551 } 552 #include "clang/AST/TypeNodes.inc" 553 } 554 } 555 } 556 557 bool Type::isClassType() const { 558 if (const auto *RT = getAs<RecordType>()) 559 return RT->getDecl()->isClass(); 560 return false; 561 } 562 563 bool Type::isStructureType() const { 564 if (const auto *RT = getAs<RecordType>()) 565 return RT->getDecl()->isStruct(); 566 return false; 567 } 568 569 bool Type::isObjCBoxableRecordType() const { 570 if (const auto *RT = getAs<RecordType>()) 571 return RT->getDecl()->hasAttr<ObjCBoxableAttr>(); 572 return false; 573 } 574 575 bool Type::isInterfaceType() const { 576 if (const auto *RT = getAs<RecordType>()) 577 return RT->getDecl()->isInterface(); 578 return false; 579 } 580 581 bool Type::isStructureOrClassType() const { 582 if (const auto *RT = getAs<RecordType>()) { 583 RecordDecl *RD = RT->getDecl(); 584 return RD->isStruct() || RD->isClass() || RD->isInterface(); 585 } 586 return false; 587 } 588 589 bool Type::isVoidPointerType() const { 590 if (const auto *PT = getAs<PointerType>()) 591 return PT->getPointeeType()->isVoidType(); 592 return false; 593 } 594 595 bool Type::isUnionType() const { 596 if (const auto *RT = getAs<RecordType>()) 597 return RT->getDecl()->isUnion(); 598 return false; 599 } 600 601 bool Type::isComplexType() const { 602 if (const auto *CT = dyn_cast<ComplexType>(CanonicalType)) 603 return CT->getElementType()->isFloatingType(); 604 return false; 605 } 606 607 bool Type::isComplexIntegerType() const { 608 // Check for GCC complex integer extension. 609 return getAsComplexIntegerType(); 610 } 611 612 bool Type::isScopedEnumeralType() const { 613 if (const auto *ET = getAs<EnumType>()) 614 return ET->getDecl()->isScoped(); 615 return false; 616 } 617 618 const ComplexType *Type::getAsComplexIntegerType() const { 619 if (const auto *Complex = getAs<ComplexType>()) 620 if (Complex->getElementType()->isIntegerType()) 621 return Complex; 622 return nullptr; 623 } 624 625 QualType Type::getPointeeType() const { 626 if (const auto *PT = getAs<PointerType>()) 627 return PT->getPointeeType(); 628 if (const auto *OPT = getAs<ObjCObjectPointerType>()) 629 return OPT->getPointeeType(); 630 if (const auto *BPT = getAs<BlockPointerType>()) 631 return BPT->getPointeeType(); 632 if (const auto *RT = getAs<ReferenceType>()) 633 return RT->getPointeeType(); 634 if (const auto *MPT = getAs<MemberPointerType>()) 635 return MPT->getPointeeType(); 636 if (const auto *DT = getAs<DecayedType>()) 637 return DT->getPointeeType(); 638 return {}; 639 } 640 641 const RecordType *Type::getAsStructureType() const { 642 // If this is directly a structure type, return it. 643 if (const auto *RT = dyn_cast<RecordType>(this)) { 644 if (RT->getDecl()->isStruct()) 645 return RT; 646 } 647 648 // If the canonical form of this type isn't the right kind, reject it. 649 if (const auto *RT = dyn_cast<RecordType>(CanonicalType)) { 650 if (!RT->getDecl()->isStruct()) 651 return nullptr; 652 653 // If this is a typedef for a structure type, strip the typedef off without 654 // losing all typedef information. 655 return cast<RecordType>(getUnqualifiedDesugaredType()); 656 } 657 return nullptr; 658 } 659 660 const RecordType *Type::getAsUnionType() const { 661 // If this is directly a union type, return it. 662 if (const auto *RT = dyn_cast<RecordType>(this)) { 663 if (RT->getDecl()->isUnion()) 664 return RT; 665 } 666 667 // If the canonical form of this type isn't the right kind, reject it. 668 if (const auto *RT = dyn_cast<RecordType>(CanonicalType)) { 669 if (!RT->getDecl()->isUnion()) 670 return nullptr; 671 672 // If this is a typedef for a union type, strip the typedef off without 673 // losing all typedef information. 674 return cast<RecordType>(getUnqualifiedDesugaredType()); 675 } 676 677 return nullptr; 678 } 679 680 bool Type::isObjCIdOrObjectKindOfType(const ASTContext &ctx, 681 const ObjCObjectType *&bound) const { 682 bound = nullptr; 683 684 const auto *OPT = getAs<ObjCObjectPointerType>(); 685 if (!OPT) 686 return false; 687 688 // Easy case: id. 689 if (OPT->isObjCIdType()) 690 return true; 691 692 // If it's not a __kindof type, reject it now. 693 if (!OPT->isKindOfType()) 694 return false; 695 696 // If it's Class or qualified Class, it's not an object type. 697 if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType()) 698 return false; 699 700 // Figure out the type bound for the __kindof type. 701 bound = OPT->getObjectType()->stripObjCKindOfTypeAndQuals(ctx) 702 ->getAs<ObjCObjectType>(); 703 return true; 704 } 705 706 bool Type::isObjCClassOrClassKindOfType() const { 707 const auto *OPT = getAs<ObjCObjectPointerType>(); 708 if (!OPT) 709 return false; 710 711 // Easy case: Class. 712 if (OPT->isObjCClassType()) 713 return true; 714 715 // If it's not a __kindof type, reject it now. 716 if (!OPT->isKindOfType()) 717 return false; 718 719 // If it's Class or qualified Class, it's a class __kindof type. 720 return OPT->isObjCClassType() || OPT->isObjCQualifiedClassType(); 721 } 722 723 ObjCTypeParamType::ObjCTypeParamType(const ObjCTypeParamDecl *D, QualType can, 724 ArrayRef<ObjCProtocolDecl *> protocols) 725 : Type(ObjCTypeParam, can, 726 can->getDependence() & ~TypeDependence::UnexpandedPack), 727 OTPDecl(const_cast<ObjCTypeParamDecl *>(D)) { 728 initialize(protocols); 729 } 730 731 ObjCObjectType::ObjCObjectType(QualType Canonical, QualType Base, 732 ArrayRef<QualType> typeArgs, 733 ArrayRef<ObjCProtocolDecl *> protocols, 734 bool isKindOf) 735 : Type(ObjCObject, Canonical, Base->getDependence()), BaseType(Base) { 736 ObjCObjectTypeBits.IsKindOf = isKindOf; 737 738 ObjCObjectTypeBits.NumTypeArgs = typeArgs.size(); 739 assert(getTypeArgsAsWritten().size() == typeArgs.size() && 740 "bitfield overflow in type argument count"); 741 if (!typeArgs.empty()) 742 memcpy(getTypeArgStorage(), typeArgs.data(), 743 typeArgs.size() * sizeof(QualType)); 744 745 for (auto typeArg : typeArgs) { 746 addDependence(typeArg->getDependence() & ~TypeDependence::VariablyModified); 747 } 748 // Initialize the protocol qualifiers. The protocol storage is known 749 // after we set number of type arguments. 750 initialize(protocols); 751 } 752 753 bool ObjCObjectType::isSpecialized() const { 754 // If we have type arguments written here, the type is specialized. 755 if (ObjCObjectTypeBits.NumTypeArgs > 0) 756 return true; 757 758 // Otherwise, check whether the base type is specialized. 759 if (const auto objcObject = getBaseType()->getAs<ObjCObjectType>()) { 760 // Terminate when we reach an interface type. 761 if (isa<ObjCInterfaceType>(objcObject)) 762 return false; 763 764 return objcObject->isSpecialized(); 765 } 766 767 // Not specialized. 768 return false; 769 } 770 771 ArrayRef<QualType> ObjCObjectType::getTypeArgs() const { 772 // We have type arguments written on this type. 773 if (isSpecializedAsWritten()) 774 return getTypeArgsAsWritten(); 775 776 // Look at the base type, which might have type arguments. 777 if (const auto objcObject = getBaseType()->getAs<ObjCObjectType>()) { 778 // Terminate when we reach an interface type. 779 if (isa<ObjCInterfaceType>(objcObject)) 780 return {}; 781 782 return objcObject->getTypeArgs(); 783 } 784 785 // No type arguments. 786 return {}; 787 } 788 789 bool ObjCObjectType::isKindOfType() const { 790 if (isKindOfTypeAsWritten()) 791 return true; 792 793 // Look at the base type, which might have type arguments. 794 if (const auto objcObject = getBaseType()->getAs<ObjCObjectType>()) { 795 // Terminate when we reach an interface type. 796 if (isa<ObjCInterfaceType>(objcObject)) 797 return false; 798 799 return objcObject->isKindOfType(); 800 } 801 802 // Not a "__kindof" type. 803 return false; 804 } 805 806 QualType ObjCObjectType::stripObjCKindOfTypeAndQuals( 807 const ASTContext &ctx) const { 808 if (!isKindOfType() && qual_empty()) 809 return QualType(this, 0); 810 811 // Recursively strip __kindof. 812 SplitQualType splitBaseType = getBaseType().split(); 813 QualType baseType(splitBaseType.Ty, 0); 814 if (const auto *baseObj = splitBaseType.Ty->getAs<ObjCObjectType>()) 815 baseType = baseObj->stripObjCKindOfTypeAndQuals(ctx); 816 817 return ctx.getObjCObjectType(ctx.getQualifiedType(baseType, 818 splitBaseType.Quals), 819 getTypeArgsAsWritten(), 820 /*protocols=*/{}, 821 /*isKindOf=*/false); 822 } 823 824 const ObjCObjectPointerType *ObjCObjectPointerType::stripObjCKindOfTypeAndQuals( 825 const ASTContext &ctx) const { 826 if (!isKindOfType() && qual_empty()) 827 return this; 828 829 QualType obj = getObjectType()->stripObjCKindOfTypeAndQuals(ctx); 830 return ctx.getObjCObjectPointerType(obj)->castAs<ObjCObjectPointerType>(); 831 } 832 833 namespace { 834 835 /// Visitor used to perform a simple type transformation that does not change 836 /// the semantics of the type. 837 template <typename Derived> 838 struct SimpleTransformVisitor : public TypeVisitor<Derived, QualType> { 839 ASTContext &Ctx; 840 841 QualType recurse(QualType type) { 842 // Split out the qualifiers from the type. 843 SplitQualType splitType = type.split(); 844 845 // Visit the type itself. 846 QualType result = static_cast<Derived *>(this)->Visit(splitType.Ty); 847 if (result.isNull()) 848 return result; 849 850 // Reconstruct the transformed type by applying the local qualifiers 851 // from the split type. 852 return Ctx.getQualifiedType(result, splitType.Quals); 853 } 854 855 public: 856 explicit SimpleTransformVisitor(ASTContext &ctx) : Ctx(ctx) {} 857 858 // None of the clients of this transformation can occur where 859 // there are dependent types, so skip dependent types. 860 #define TYPE(Class, Base) 861 #define DEPENDENT_TYPE(Class, Base) \ 862 QualType Visit##Class##Type(const Class##Type *T) { return QualType(T, 0); } 863 #include "clang/AST/TypeNodes.inc" 864 865 #define TRIVIAL_TYPE_CLASS(Class) \ 866 QualType Visit##Class##Type(const Class##Type *T) { return QualType(T, 0); } 867 #define SUGARED_TYPE_CLASS(Class) \ 868 QualType Visit##Class##Type(const Class##Type *T) { \ 869 if (!T->isSugared()) \ 870 return QualType(T, 0); \ 871 QualType desugaredType = recurse(T->desugar()); \ 872 if (desugaredType.isNull()) \ 873 return {}; \ 874 if (desugaredType.getAsOpaquePtr() == T->desugar().getAsOpaquePtr()) \ 875 return QualType(T, 0); \ 876 return desugaredType; \ 877 } 878 879 TRIVIAL_TYPE_CLASS(Builtin) 880 881 QualType VisitComplexType(const ComplexType *T) { 882 QualType elementType = recurse(T->getElementType()); 883 if (elementType.isNull()) 884 return {}; 885 886 if (elementType.getAsOpaquePtr() == T->getElementType().getAsOpaquePtr()) 887 return QualType(T, 0); 888 889 return Ctx.getComplexType(elementType); 890 } 891 892 QualType VisitPointerType(const PointerType *T) { 893 QualType pointeeType = recurse(T->getPointeeType()); 894 if (pointeeType.isNull()) 895 return {}; 896 897 if (pointeeType.getAsOpaquePtr() == T->getPointeeType().getAsOpaquePtr()) 898 return QualType(T, 0); 899 900 return Ctx.getPointerType(pointeeType); 901 } 902 903 QualType VisitBlockPointerType(const BlockPointerType *T) { 904 QualType pointeeType = recurse(T->getPointeeType()); 905 if (pointeeType.isNull()) 906 return {}; 907 908 if (pointeeType.getAsOpaquePtr() == T->getPointeeType().getAsOpaquePtr()) 909 return QualType(T, 0); 910 911 return Ctx.getBlockPointerType(pointeeType); 912 } 913 914 QualType VisitLValueReferenceType(const LValueReferenceType *T) { 915 QualType pointeeType = recurse(T->getPointeeTypeAsWritten()); 916 if (pointeeType.isNull()) 917 return {}; 918 919 if (pointeeType.getAsOpaquePtr() 920 == T->getPointeeTypeAsWritten().getAsOpaquePtr()) 921 return QualType(T, 0); 922 923 return Ctx.getLValueReferenceType(pointeeType, T->isSpelledAsLValue()); 924 } 925 926 QualType VisitRValueReferenceType(const RValueReferenceType *T) { 927 QualType pointeeType = recurse(T->getPointeeTypeAsWritten()); 928 if (pointeeType.isNull()) 929 return {}; 930 931 if (pointeeType.getAsOpaquePtr() 932 == T->getPointeeTypeAsWritten().getAsOpaquePtr()) 933 return QualType(T, 0); 934 935 return Ctx.getRValueReferenceType(pointeeType); 936 } 937 938 QualType VisitMemberPointerType(const MemberPointerType *T) { 939 QualType pointeeType = recurse(T->getPointeeType()); 940 if (pointeeType.isNull()) 941 return {}; 942 943 if (pointeeType.getAsOpaquePtr() == T->getPointeeType().getAsOpaquePtr()) 944 return QualType(T, 0); 945 946 return Ctx.getMemberPointerType(pointeeType, T->getClass()); 947 } 948 949 QualType VisitConstantArrayType(const ConstantArrayType *T) { 950 QualType elementType = recurse(T->getElementType()); 951 if (elementType.isNull()) 952 return {}; 953 954 if (elementType.getAsOpaquePtr() == T->getElementType().getAsOpaquePtr()) 955 return QualType(T, 0); 956 957 return Ctx.getConstantArrayType(elementType, T->getSize(), T->getSizeExpr(), 958 T->getSizeModifier(), 959 T->getIndexTypeCVRQualifiers()); 960 } 961 962 QualType VisitVariableArrayType(const VariableArrayType *T) { 963 QualType elementType = recurse(T->getElementType()); 964 if (elementType.isNull()) 965 return {}; 966 967 if (elementType.getAsOpaquePtr() == T->getElementType().getAsOpaquePtr()) 968 return QualType(T, 0); 969 970 return Ctx.getVariableArrayType(elementType, T->getSizeExpr(), 971 T->getSizeModifier(), 972 T->getIndexTypeCVRQualifiers(), 973 T->getBracketsRange()); 974 } 975 976 QualType VisitIncompleteArrayType(const IncompleteArrayType *T) { 977 QualType elementType = recurse(T->getElementType()); 978 if (elementType.isNull()) 979 return {}; 980 981 if (elementType.getAsOpaquePtr() == T->getElementType().getAsOpaquePtr()) 982 return QualType(T, 0); 983 984 return Ctx.getIncompleteArrayType(elementType, T->getSizeModifier(), 985 T->getIndexTypeCVRQualifiers()); 986 } 987 988 QualType VisitVectorType(const VectorType *T) { 989 QualType elementType = recurse(T->getElementType()); 990 if (elementType.isNull()) 991 return {}; 992 993 if (elementType.getAsOpaquePtr() == T->getElementType().getAsOpaquePtr()) 994 return QualType(T, 0); 995 996 return Ctx.getVectorType(elementType, T->getNumElements(), 997 T->getVectorKind()); 998 } 999 1000 QualType VisitExtVectorType(const ExtVectorType *T) { 1001 QualType elementType = recurse(T->getElementType()); 1002 if (elementType.isNull()) 1003 return {}; 1004 1005 if (elementType.getAsOpaquePtr() == T->getElementType().getAsOpaquePtr()) 1006 return QualType(T, 0); 1007 1008 return Ctx.getExtVectorType(elementType, T->getNumElements()); 1009 } 1010 1011 QualType VisitConstantMatrixType(const ConstantMatrixType *T) { 1012 QualType elementType = recurse(T->getElementType()); 1013 if (elementType.isNull()) 1014 return {}; 1015 if (elementType.getAsOpaquePtr() == T->getElementType().getAsOpaquePtr()) 1016 return QualType(T, 0); 1017 1018 return Ctx.getConstantMatrixType(elementType, T->getNumRows(), 1019 T->getNumColumns()); 1020 } 1021 1022 QualType VisitFunctionNoProtoType(const FunctionNoProtoType *T) { 1023 QualType returnType = recurse(T->getReturnType()); 1024 if (returnType.isNull()) 1025 return {}; 1026 1027 if (returnType.getAsOpaquePtr() == T->getReturnType().getAsOpaquePtr()) 1028 return QualType(T, 0); 1029 1030 return Ctx.getFunctionNoProtoType(returnType, T->getExtInfo()); 1031 } 1032 1033 QualType VisitFunctionProtoType(const FunctionProtoType *T) { 1034 QualType returnType = recurse(T->getReturnType()); 1035 if (returnType.isNull()) 1036 return {}; 1037 1038 // Transform parameter types. 1039 SmallVector<QualType, 4> paramTypes; 1040 bool paramChanged = false; 1041 for (auto paramType : T->getParamTypes()) { 1042 QualType newParamType = recurse(paramType); 1043 if (newParamType.isNull()) 1044 return {}; 1045 1046 if (newParamType.getAsOpaquePtr() != paramType.getAsOpaquePtr()) 1047 paramChanged = true; 1048 1049 paramTypes.push_back(newParamType); 1050 } 1051 1052 // Transform extended info. 1053 FunctionProtoType::ExtProtoInfo info = T->getExtProtoInfo(); 1054 bool exceptionChanged = false; 1055 if (info.ExceptionSpec.Type == EST_Dynamic) { 1056 SmallVector<QualType, 4> exceptionTypes; 1057 for (auto exceptionType : info.ExceptionSpec.Exceptions) { 1058 QualType newExceptionType = recurse(exceptionType); 1059 if (newExceptionType.isNull()) 1060 return {}; 1061 1062 if (newExceptionType.getAsOpaquePtr() != exceptionType.getAsOpaquePtr()) 1063 exceptionChanged = true; 1064 1065 exceptionTypes.push_back(newExceptionType); 1066 } 1067 1068 if (exceptionChanged) { 1069 info.ExceptionSpec.Exceptions = 1070 llvm::makeArrayRef(exceptionTypes).copy(Ctx); 1071 } 1072 } 1073 1074 if (returnType.getAsOpaquePtr() == T->getReturnType().getAsOpaquePtr() && 1075 !paramChanged && !exceptionChanged) 1076 return QualType(T, 0); 1077 1078 return Ctx.getFunctionType(returnType, paramTypes, info); 1079 } 1080 1081 QualType VisitParenType(const ParenType *T) { 1082 QualType innerType = recurse(T->getInnerType()); 1083 if (innerType.isNull()) 1084 return {}; 1085 1086 if (innerType.getAsOpaquePtr() == T->getInnerType().getAsOpaquePtr()) 1087 return QualType(T, 0); 1088 1089 return Ctx.getParenType(innerType); 1090 } 1091 1092 SUGARED_TYPE_CLASS(Typedef) 1093 SUGARED_TYPE_CLASS(ObjCTypeParam) 1094 SUGARED_TYPE_CLASS(MacroQualified) 1095 1096 QualType VisitAdjustedType(const AdjustedType *T) { 1097 QualType originalType = recurse(T->getOriginalType()); 1098 if (originalType.isNull()) 1099 return {}; 1100 1101 QualType adjustedType = recurse(T->getAdjustedType()); 1102 if (adjustedType.isNull()) 1103 return {}; 1104 1105 if (originalType.getAsOpaquePtr() 1106 == T->getOriginalType().getAsOpaquePtr() && 1107 adjustedType.getAsOpaquePtr() == T->getAdjustedType().getAsOpaquePtr()) 1108 return QualType(T, 0); 1109 1110 return Ctx.getAdjustedType(originalType, adjustedType); 1111 } 1112 1113 QualType VisitDecayedType(const DecayedType *T) { 1114 QualType originalType = recurse(T->getOriginalType()); 1115 if (originalType.isNull()) 1116 return {}; 1117 1118 if (originalType.getAsOpaquePtr() 1119 == T->getOriginalType().getAsOpaquePtr()) 1120 return QualType(T, 0); 1121 1122 return Ctx.getDecayedType(originalType); 1123 } 1124 1125 SUGARED_TYPE_CLASS(TypeOfExpr) 1126 SUGARED_TYPE_CLASS(TypeOf) 1127 SUGARED_TYPE_CLASS(Decltype) 1128 SUGARED_TYPE_CLASS(UnaryTransform) 1129 TRIVIAL_TYPE_CLASS(Record) 1130 TRIVIAL_TYPE_CLASS(Enum) 1131 1132 // FIXME: Non-trivial to implement, but important for C++ 1133 SUGARED_TYPE_CLASS(Elaborated) 1134 1135 QualType VisitAttributedType(const AttributedType *T) { 1136 QualType modifiedType = recurse(T->getModifiedType()); 1137 if (modifiedType.isNull()) 1138 return {}; 1139 1140 QualType equivalentType = recurse(T->getEquivalentType()); 1141 if (equivalentType.isNull()) 1142 return {}; 1143 1144 if (modifiedType.getAsOpaquePtr() 1145 == T->getModifiedType().getAsOpaquePtr() && 1146 equivalentType.getAsOpaquePtr() 1147 == T->getEquivalentType().getAsOpaquePtr()) 1148 return QualType(T, 0); 1149 1150 return Ctx.getAttributedType(T->getAttrKind(), modifiedType, 1151 equivalentType); 1152 } 1153 1154 QualType VisitSubstTemplateTypeParmType(const SubstTemplateTypeParmType *T) { 1155 QualType replacementType = recurse(T->getReplacementType()); 1156 if (replacementType.isNull()) 1157 return {}; 1158 1159 if (replacementType.getAsOpaquePtr() 1160 == T->getReplacementType().getAsOpaquePtr()) 1161 return QualType(T, 0); 1162 1163 return Ctx.getSubstTemplateTypeParmType(T->getReplacedParameter(), 1164 replacementType); 1165 } 1166 1167 // FIXME: Non-trivial to implement, but important for C++ 1168 SUGARED_TYPE_CLASS(TemplateSpecialization) 1169 1170 QualType VisitAutoType(const AutoType *T) { 1171 if (!T->isDeduced()) 1172 return QualType(T, 0); 1173 1174 QualType deducedType = recurse(T->getDeducedType()); 1175 if (deducedType.isNull()) 1176 return {}; 1177 1178 if (deducedType.getAsOpaquePtr() 1179 == T->getDeducedType().getAsOpaquePtr()) 1180 return QualType(T, 0); 1181 1182 return Ctx.getAutoType(deducedType, T->getKeyword(), 1183 T->isDependentType(), /*IsPack=*/false, 1184 T->getTypeConstraintConcept(), 1185 T->getTypeConstraintArguments()); 1186 } 1187 1188 QualType VisitObjCObjectType(const ObjCObjectType *T) { 1189 QualType baseType = recurse(T->getBaseType()); 1190 if (baseType.isNull()) 1191 return {}; 1192 1193 // Transform type arguments. 1194 bool typeArgChanged = false; 1195 SmallVector<QualType, 4> typeArgs; 1196 for (auto typeArg : T->getTypeArgsAsWritten()) { 1197 QualType newTypeArg = recurse(typeArg); 1198 if (newTypeArg.isNull()) 1199 return {}; 1200 1201 if (newTypeArg.getAsOpaquePtr() != typeArg.getAsOpaquePtr()) 1202 typeArgChanged = true; 1203 1204 typeArgs.push_back(newTypeArg); 1205 } 1206 1207 if (baseType.getAsOpaquePtr() == T->getBaseType().getAsOpaquePtr() && 1208 !typeArgChanged) 1209 return QualType(T, 0); 1210 1211 return Ctx.getObjCObjectType(baseType, typeArgs, 1212 llvm::makeArrayRef(T->qual_begin(), 1213 T->getNumProtocols()), 1214 T->isKindOfTypeAsWritten()); 1215 } 1216 1217 TRIVIAL_TYPE_CLASS(ObjCInterface) 1218 1219 QualType VisitObjCObjectPointerType(const ObjCObjectPointerType *T) { 1220 QualType pointeeType = recurse(T->getPointeeType()); 1221 if (pointeeType.isNull()) 1222 return {}; 1223 1224 if (pointeeType.getAsOpaquePtr() 1225 == T->getPointeeType().getAsOpaquePtr()) 1226 return QualType(T, 0); 1227 1228 return Ctx.getObjCObjectPointerType(pointeeType); 1229 } 1230 1231 QualType VisitAtomicType(const AtomicType *T) { 1232 QualType valueType = recurse(T->getValueType()); 1233 if (valueType.isNull()) 1234 return {}; 1235 1236 if (valueType.getAsOpaquePtr() 1237 == T->getValueType().getAsOpaquePtr()) 1238 return QualType(T, 0); 1239 1240 return Ctx.getAtomicType(valueType); 1241 } 1242 1243 #undef TRIVIAL_TYPE_CLASS 1244 #undef SUGARED_TYPE_CLASS 1245 }; 1246 1247 struct SubstObjCTypeArgsVisitor 1248 : public SimpleTransformVisitor<SubstObjCTypeArgsVisitor> { 1249 using BaseType = SimpleTransformVisitor<SubstObjCTypeArgsVisitor>; 1250 1251 ArrayRef<QualType> TypeArgs; 1252 ObjCSubstitutionContext SubstContext; 1253 1254 SubstObjCTypeArgsVisitor(ASTContext &ctx, ArrayRef<QualType> typeArgs, 1255 ObjCSubstitutionContext context) 1256 : BaseType(ctx), TypeArgs(typeArgs), SubstContext(context) {} 1257 1258 QualType VisitObjCTypeParamType(const ObjCTypeParamType *OTPTy) { 1259 // Replace an Objective-C type parameter reference with the corresponding 1260 // type argument. 1261 ObjCTypeParamDecl *typeParam = OTPTy->getDecl(); 1262 // If we have type arguments, use them. 1263 if (!TypeArgs.empty()) { 1264 QualType argType = TypeArgs[typeParam->getIndex()]; 1265 if (OTPTy->qual_empty()) 1266 return argType; 1267 1268 // Apply protocol lists if exists. 1269 bool hasError; 1270 SmallVector<ObjCProtocolDecl *, 8> protocolsVec; 1271 protocolsVec.append(OTPTy->qual_begin(), OTPTy->qual_end()); 1272 ArrayRef<ObjCProtocolDecl *> protocolsToApply = protocolsVec; 1273 return Ctx.applyObjCProtocolQualifiers( 1274 argType, protocolsToApply, hasError, true/*allowOnPointerType*/); 1275 } 1276 1277 switch (SubstContext) { 1278 case ObjCSubstitutionContext::Ordinary: 1279 case ObjCSubstitutionContext::Parameter: 1280 case ObjCSubstitutionContext::Superclass: 1281 // Substitute the bound. 1282 return typeParam->getUnderlyingType(); 1283 1284 case ObjCSubstitutionContext::Result: 1285 case ObjCSubstitutionContext::Property: { 1286 // Substitute the __kindof form of the underlying type. 1287 const auto *objPtr = 1288 typeParam->getUnderlyingType()->castAs<ObjCObjectPointerType>(); 1289 1290 // __kindof types, id, and Class don't need an additional 1291 // __kindof. 1292 if (objPtr->isKindOfType() || objPtr->isObjCIdOrClassType()) 1293 return typeParam->getUnderlyingType(); 1294 1295 // Add __kindof. 1296 const auto *obj = objPtr->getObjectType(); 1297 QualType resultTy = Ctx.getObjCObjectType( 1298 obj->getBaseType(), obj->getTypeArgsAsWritten(), obj->getProtocols(), 1299 /*isKindOf=*/true); 1300 1301 // Rebuild object pointer type. 1302 return Ctx.getObjCObjectPointerType(resultTy); 1303 } 1304 } 1305 llvm_unreachable("Unexpected ObjCSubstitutionContext!"); 1306 } 1307 1308 QualType VisitFunctionType(const FunctionType *funcType) { 1309 // If we have a function type, update the substitution context 1310 // appropriately. 1311 1312 //Substitute result type. 1313 QualType returnType = funcType->getReturnType().substObjCTypeArgs( 1314 Ctx, TypeArgs, ObjCSubstitutionContext::Result); 1315 if (returnType.isNull()) 1316 return {}; 1317 1318 // Handle non-prototyped functions, which only substitute into the result 1319 // type. 1320 if (isa<FunctionNoProtoType>(funcType)) { 1321 // If the return type was unchanged, do nothing. 1322 if (returnType.getAsOpaquePtr() == 1323 funcType->getReturnType().getAsOpaquePtr()) 1324 return BaseType::VisitFunctionType(funcType); 1325 1326 // Otherwise, build a new type. 1327 return Ctx.getFunctionNoProtoType(returnType, funcType->getExtInfo()); 1328 } 1329 1330 const auto *funcProtoType = cast<FunctionProtoType>(funcType); 1331 1332 // Transform parameter types. 1333 SmallVector<QualType, 4> paramTypes; 1334 bool paramChanged = false; 1335 for (auto paramType : funcProtoType->getParamTypes()) { 1336 QualType newParamType = paramType.substObjCTypeArgs( 1337 Ctx, TypeArgs, ObjCSubstitutionContext::Parameter); 1338 if (newParamType.isNull()) 1339 return {}; 1340 1341 if (newParamType.getAsOpaquePtr() != paramType.getAsOpaquePtr()) 1342 paramChanged = true; 1343 1344 paramTypes.push_back(newParamType); 1345 } 1346 1347 // Transform extended info. 1348 FunctionProtoType::ExtProtoInfo info = funcProtoType->getExtProtoInfo(); 1349 bool exceptionChanged = false; 1350 if (info.ExceptionSpec.Type == EST_Dynamic) { 1351 SmallVector<QualType, 4> exceptionTypes; 1352 for (auto exceptionType : info.ExceptionSpec.Exceptions) { 1353 QualType newExceptionType = exceptionType.substObjCTypeArgs( 1354 Ctx, TypeArgs, ObjCSubstitutionContext::Ordinary); 1355 if (newExceptionType.isNull()) 1356 return {}; 1357 1358 if (newExceptionType.getAsOpaquePtr() != exceptionType.getAsOpaquePtr()) 1359 exceptionChanged = true; 1360 1361 exceptionTypes.push_back(newExceptionType); 1362 } 1363 1364 if (exceptionChanged) { 1365 info.ExceptionSpec.Exceptions = 1366 llvm::makeArrayRef(exceptionTypes).copy(Ctx); 1367 } 1368 } 1369 1370 if (returnType.getAsOpaquePtr() == 1371 funcProtoType->getReturnType().getAsOpaquePtr() && 1372 !paramChanged && !exceptionChanged) 1373 return BaseType::VisitFunctionType(funcType); 1374 1375 return Ctx.getFunctionType(returnType, paramTypes, info); 1376 } 1377 1378 QualType VisitObjCObjectType(const ObjCObjectType *objcObjectType) { 1379 // Substitute into the type arguments of a specialized Objective-C object 1380 // type. 1381 if (objcObjectType->isSpecializedAsWritten()) { 1382 SmallVector<QualType, 4> newTypeArgs; 1383 bool anyChanged = false; 1384 for (auto typeArg : objcObjectType->getTypeArgsAsWritten()) { 1385 QualType newTypeArg = typeArg.substObjCTypeArgs( 1386 Ctx, TypeArgs, ObjCSubstitutionContext::Ordinary); 1387 if (newTypeArg.isNull()) 1388 return {}; 1389 1390 if (newTypeArg.getAsOpaquePtr() != typeArg.getAsOpaquePtr()) { 1391 // If we're substituting based on an unspecialized context type, 1392 // produce an unspecialized type. 1393 ArrayRef<ObjCProtocolDecl *> protocols( 1394 objcObjectType->qual_begin(), objcObjectType->getNumProtocols()); 1395 if (TypeArgs.empty() && 1396 SubstContext != ObjCSubstitutionContext::Superclass) { 1397 return Ctx.getObjCObjectType( 1398 objcObjectType->getBaseType(), {}, protocols, 1399 objcObjectType->isKindOfTypeAsWritten()); 1400 } 1401 1402 anyChanged = true; 1403 } 1404 1405 newTypeArgs.push_back(newTypeArg); 1406 } 1407 1408 if (anyChanged) { 1409 ArrayRef<ObjCProtocolDecl *> protocols( 1410 objcObjectType->qual_begin(), objcObjectType->getNumProtocols()); 1411 return Ctx.getObjCObjectType(objcObjectType->getBaseType(), newTypeArgs, 1412 protocols, 1413 objcObjectType->isKindOfTypeAsWritten()); 1414 } 1415 } 1416 1417 return BaseType::VisitObjCObjectType(objcObjectType); 1418 } 1419 1420 QualType VisitAttributedType(const AttributedType *attrType) { 1421 QualType newType = BaseType::VisitAttributedType(attrType); 1422 if (newType.isNull()) 1423 return {}; 1424 1425 const auto *newAttrType = dyn_cast<AttributedType>(newType.getTypePtr()); 1426 if (!newAttrType || newAttrType->getAttrKind() != attr::ObjCKindOf) 1427 return newType; 1428 1429 // Find out if it's an Objective-C object or object pointer type; 1430 QualType newEquivType = newAttrType->getEquivalentType(); 1431 const ObjCObjectPointerType *ptrType = 1432 newEquivType->getAs<ObjCObjectPointerType>(); 1433 const ObjCObjectType *objType = ptrType 1434 ? ptrType->getObjectType() 1435 : newEquivType->getAs<ObjCObjectType>(); 1436 if (!objType) 1437 return newType; 1438 1439 // Rebuild the "equivalent" type, which pushes __kindof down into 1440 // the object type. 1441 newEquivType = Ctx.getObjCObjectType( 1442 objType->getBaseType(), objType->getTypeArgsAsWritten(), 1443 objType->getProtocols(), 1444 // There is no need to apply kindof on an unqualified id type. 1445 /*isKindOf=*/objType->isObjCUnqualifiedId() ? false : true); 1446 1447 // If we started with an object pointer type, rebuild it. 1448 if (ptrType) 1449 newEquivType = Ctx.getObjCObjectPointerType(newEquivType); 1450 1451 // Rebuild the attributed type. 1452 return Ctx.getAttributedType(newAttrType->getAttrKind(), 1453 newAttrType->getModifiedType(), newEquivType); 1454 } 1455 }; 1456 1457 struct StripObjCKindOfTypeVisitor 1458 : public SimpleTransformVisitor<StripObjCKindOfTypeVisitor> { 1459 using BaseType = SimpleTransformVisitor<StripObjCKindOfTypeVisitor>; 1460 1461 explicit StripObjCKindOfTypeVisitor(ASTContext &ctx) : BaseType(ctx) {} 1462 1463 QualType VisitObjCObjectType(const ObjCObjectType *objType) { 1464 if (!objType->isKindOfType()) 1465 return BaseType::VisitObjCObjectType(objType); 1466 1467 QualType baseType = objType->getBaseType().stripObjCKindOfType(Ctx); 1468 return Ctx.getObjCObjectType(baseType, objType->getTypeArgsAsWritten(), 1469 objType->getProtocols(), 1470 /*isKindOf=*/false); 1471 } 1472 }; 1473 1474 } // namespace 1475 1476 /// Substitute the given type arguments for Objective-C type 1477 /// parameters within the given type, recursively. 1478 QualType QualType::substObjCTypeArgs(ASTContext &ctx, 1479 ArrayRef<QualType> typeArgs, 1480 ObjCSubstitutionContext context) const { 1481 SubstObjCTypeArgsVisitor visitor(ctx, typeArgs, context); 1482 return visitor.recurse(*this); 1483 } 1484 1485 QualType QualType::substObjCMemberType(QualType objectType, 1486 const DeclContext *dc, 1487 ObjCSubstitutionContext context) const { 1488 if (auto subs = objectType->getObjCSubstitutions(dc)) 1489 return substObjCTypeArgs(dc->getParentASTContext(), *subs, context); 1490 1491 return *this; 1492 } 1493 1494 QualType QualType::stripObjCKindOfType(const ASTContext &constCtx) const { 1495 // FIXME: Because ASTContext::getAttributedType() is non-const. 1496 auto &ctx = const_cast<ASTContext &>(constCtx); 1497 StripObjCKindOfTypeVisitor visitor(ctx); 1498 return visitor.recurse(*this); 1499 } 1500 1501 QualType QualType::getAtomicUnqualifiedType() const { 1502 if (const auto AT = getTypePtr()->getAs<AtomicType>()) 1503 return AT->getValueType().getUnqualifiedType(); 1504 return getUnqualifiedType(); 1505 } 1506 1507 Optional<ArrayRef<QualType>> Type::getObjCSubstitutions( 1508 const DeclContext *dc) const { 1509 // Look through method scopes. 1510 if (const auto method = dyn_cast<ObjCMethodDecl>(dc)) 1511 dc = method->getDeclContext(); 1512 1513 // Find the class or category in which the type we're substituting 1514 // was declared. 1515 const auto *dcClassDecl = dyn_cast<ObjCInterfaceDecl>(dc); 1516 const ObjCCategoryDecl *dcCategoryDecl = nullptr; 1517 ObjCTypeParamList *dcTypeParams = nullptr; 1518 if (dcClassDecl) { 1519 // If the class does not have any type parameters, there's no 1520 // substitution to do. 1521 dcTypeParams = dcClassDecl->getTypeParamList(); 1522 if (!dcTypeParams) 1523 return None; 1524 } else { 1525 // If we are in neither a class nor a category, there's no 1526 // substitution to perform. 1527 dcCategoryDecl = dyn_cast<ObjCCategoryDecl>(dc); 1528 if (!dcCategoryDecl) 1529 return None; 1530 1531 // If the category does not have any type parameters, there's no 1532 // substitution to do. 1533 dcTypeParams = dcCategoryDecl->getTypeParamList(); 1534 if (!dcTypeParams) 1535 return None; 1536 1537 dcClassDecl = dcCategoryDecl->getClassInterface(); 1538 if (!dcClassDecl) 1539 return None; 1540 } 1541 assert(dcTypeParams && "No substitutions to perform"); 1542 assert(dcClassDecl && "No class context"); 1543 1544 // Find the underlying object type. 1545 const ObjCObjectType *objectType; 1546 if (const auto *objectPointerType = getAs<ObjCObjectPointerType>()) { 1547 objectType = objectPointerType->getObjectType(); 1548 } else if (getAs<BlockPointerType>()) { 1549 ASTContext &ctx = dc->getParentASTContext(); 1550 objectType = ctx.getObjCObjectType(ctx.ObjCBuiltinIdTy, {}, {}) 1551 ->castAs<ObjCObjectType>(); 1552 } else { 1553 objectType = getAs<ObjCObjectType>(); 1554 } 1555 1556 /// Extract the class from the receiver object type. 1557 ObjCInterfaceDecl *curClassDecl = objectType ? objectType->getInterface() 1558 : nullptr; 1559 if (!curClassDecl) { 1560 // If we don't have a context type (e.g., this is "id" or some 1561 // variant thereof), substitute the bounds. 1562 return llvm::ArrayRef<QualType>(); 1563 } 1564 1565 // Follow the superclass chain until we've mapped the receiver type 1566 // to the same class as the context. 1567 while (curClassDecl != dcClassDecl) { 1568 // Map to the superclass type. 1569 QualType superType = objectType->getSuperClassType(); 1570 if (superType.isNull()) { 1571 objectType = nullptr; 1572 break; 1573 } 1574 1575 objectType = superType->castAs<ObjCObjectType>(); 1576 curClassDecl = objectType->getInterface(); 1577 } 1578 1579 // If we don't have a receiver type, or the receiver type does not 1580 // have type arguments, substitute in the defaults. 1581 if (!objectType || objectType->isUnspecialized()) { 1582 return llvm::ArrayRef<QualType>(); 1583 } 1584 1585 // The receiver type has the type arguments we want. 1586 return objectType->getTypeArgs(); 1587 } 1588 1589 bool Type::acceptsObjCTypeParams() const { 1590 if (auto *IfaceT = getAsObjCInterfaceType()) { 1591 if (auto *ID = IfaceT->getInterface()) { 1592 if (ID->getTypeParamList()) 1593 return true; 1594 } 1595 } 1596 1597 return false; 1598 } 1599 1600 void ObjCObjectType::computeSuperClassTypeSlow() const { 1601 // Retrieve the class declaration for this type. If there isn't one 1602 // (e.g., this is some variant of "id" or "Class"), then there is no 1603 // superclass type. 1604 ObjCInterfaceDecl *classDecl = getInterface(); 1605 if (!classDecl) { 1606 CachedSuperClassType.setInt(true); 1607 return; 1608 } 1609 1610 // Extract the superclass type. 1611 const ObjCObjectType *superClassObjTy = classDecl->getSuperClassType(); 1612 if (!superClassObjTy) { 1613 CachedSuperClassType.setInt(true); 1614 return; 1615 } 1616 1617 ObjCInterfaceDecl *superClassDecl = superClassObjTy->getInterface(); 1618 if (!superClassDecl) { 1619 CachedSuperClassType.setInt(true); 1620 return; 1621 } 1622 1623 // If the superclass doesn't have type parameters, then there is no 1624 // substitution to perform. 1625 QualType superClassType(superClassObjTy, 0); 1626 ObjCTypeParamList *superClassTypeParams = superClassDecl->getTypeParamList(); 1627 if (!superClassTypeParams) { 1628 CachedSuperClassType.setPointerAndInt( 1629 superClassType->castAs<ObjCObjectType>(), true); 1630 return; 1631 } 1632 1633 // If the superclass reference is unspecialized, return it. 1634 if (superClassObjTy->isUnspecialized()) { 1635 CachedSuperClassType.setPointerAndInt(superClassObjTy, true); 1636 return; 1637 } 1638 1639 // If the subclass is not parameterized, there aren't any type 1640 // parameters in the superclass reference to substitute. 1641 ObjCTypeParamList *typeParams = classDecl->getTypeParamList(); 1642 if (!typeParams) { 1643 CachedSuperClassType.setPointerAndInt( 1644 superClassType->castAs<ObjCObjectType>(), true); 1645 return; 1646 } 1647 1648 // If the subclass type isn't specialized, return the unspecialized 1649 // superclass. 1650 if (isUnspecialized()) { 1651 QualType unspecializedSuper 1652 = classDecl->getASTContext().getObjCInterfaceType( 1653 superClassObjTy->getInterface()); 1654 CachedSuperClassType.setPointerAndInt( 1655 unspecializedSuper->castAs<ObjCObjectType>(), 1656 true); 1657 return; 1658 } 1659 1660 // Substitute the provided type arguments into the superclass type. 1661 ArrayRef<QualType> typeArgs = getTypeArgs(); 1662 assert(typeArgs.size() == typeParams->size()); 1663 CachedSuperClassType.setPointerAndInt( 1664 superClassType.substObjCTypeArgs(classDecl->getASTContext(), typeArgs, 1665 ObjCSubstitutionContext::Superclass) 1666 ->castAs<ObjCObjectType>(), 1667 true); 1668 } 1669 1670 const ObjCInterfaceType *ObjCObjectPointerType::getInterfaceType() const { 1671 if (auto interfaceDecl = getObjectType()->getInterface()) { 1672 return interfaceDecl->getASTContext().getObjCInterfaceType(interfaceDecl) 1673 ->castAs<ObjCInterfaceType>(); 1674 } 1675 1676 return nullptr; 1677 } 1678 1679 QualType ObjCObjectPointerType::getSuperClassType() const { 1680 QualType superObjectType = getObjectType()->getSuperClassType(); 1681 if (superObjectType.isNull()) 1682 return superObjectType; 1683 1684 ASTContext &ctx = getInterfaceDecl()->getASTContext(); 1685 return ctx.getObjCObjectPointerType(superObjectType); 1686 } 1687 1688 const ObjCObjectType *Type::getAsObjCQualifiedInterfaceType() const { 1689 // There is no sugar for ObjCObjectType's, just return the canonical 1690 // type pointer if it is the right class. There is no typedef information to 1691 // return and these cannot be Address-space qualified. 1692 if (const auto *T = getAs<ObjCObjectType>()) 1693 if (T->getNumProtocols() && T->getInterface()) 1694 return T; 1695 return nullptr; 1696 } 1697 1698 bool Type::isObjCQualifiedInterfaceType() const { 1699 return getAsObjCQualifiedInterfaceType() != nullptr; 1700 } 1701 1702 const ObjCObjectPointerType *Type::getAsObjCQualifiedIdType() const { 1703 // There is no sugar for ObjCQualifiedIdType's, just return the canonical 1704 // type pointer if it is the right class. 1705 if (const auto *OPT = getAs<ObjCObjectPointerType>()) { 1706 if (OPT->isObjCQualifiedIdType()) 1707 return OPT; 1708 } 1709 return nullptr; 1710 } 1711 1712 const ObjCObjectPointerType *Type::getAsObjCQualifiedClassType() const { 1713 // There is no sugar for ObjCQualifiedClassType's, just return the canonical 1714 // type pointer if it is the right class. 1715 if (const auto *OPT = getAs<ObjCObjectPointerType>()) { 1716 if (OPT->isObjCQualifiedClassType()) 1717 return OPT; 1718 } 1719 return nullptr; 1720 } 1721 1722 const ObjCObjectType *Type::getAsObjCInterfaceType() const { 1723 if (const auto *OT = getAs<ObjCObjectType>()) { 1724 if (OT->getInterface()) 1725 return OT; 1726 } 1727 return nullptr; 1728 } 1729 1730 const ObjCObjectPointerType *Type::getAsObjCInterfacePointerType() const { 1731 if (const auto *OPT = getAs<ObjCObjectPointerType>()) { 1732 if (OPT->getInterfaceType()) 1733 return OPT; 1734 } 1735 return nullptr; 1736 } 1737 1738 const CXXRecordDecl *Type::getPointeeCXXRecordDecl() const { 1739 QualType PointeeType; 1740 if (const auto *PT = getAs<PointerType>()) 1741 PointeeType = PT->getPointeeType(); 1742 else if (const auto *RT = getAs<ReferenceType>()) 1743 PointeeType = RT->getPointeeType(); 1744 else 1745 return nullptr; 1746 1747 if (const auto *RT = PointeeType->getAs<RecordType>()) 1748 return dyn_cast<CXXRecordDecl>(RT->getDecl()); 1749 1750 return nullptr; 1751 } 1752 1753 CXXRecordDecl *Type::getAsCXXRecordDecl() const { 1754 return dyn_cast_or_null<CXXRecordDecl>(getAsTagDecl()); 1755 } 1756 1757 RecordDecl *Type::getAsRecordDecl() const { 1758 return dyn_cast_or_null<RecordDecl>(getAsTagDecl()); 1759 } 1760 1761 TagDecl *Type::getAsTagDecl() const { 1762 if (const auto *TT = getAs<TagType>()) 1763 return TT->getDecl(); 1764 if (const auto *Injected = getAs<InjectedClassNameType>()) 1765 return Injected->getDecl(); 1766 1767 return nullptr; 1768 } 1769 1770 bool Type::hasAttr(attr::Kind AK) const { 1771 const Type *Cur = this; 1772 while (const auto *AT = Cur->getAs<AttributedType>()) { 1773 if (AT->getAttrKind() == AK) 1774 return true; 1775 Cur = AT->getEquivalentType().getTypePtr(); 1776 } 1777 return false; 1778 } 1779 1780 namespace { 1781 1782 class GetContainedDeducedTypeVisitor : 1783 public TypeVisitor<GetContainedDeducedTypeVisitor, Type*> { 1784 bool Syntactic; 1785 1786 public: 1787 GetContainedDeducedTypeVisitor(bool Syntactic = false) 1788 : Syntactic(Syntactic) {} 1789 1790 using TypeVisitor<GetContainedDeducedTypeVisitor, Type*>::Visit; 1791 1792 Type *Visit(QualType T) { 1793 if (T.isNull()) 1794 return nullptr; 1795 return Visit(T.getTypePtr()); 1796 } 1797 1798 // The deduced type itself. 1799 Type *VisitDeducedType(const DeducedType *AT) { 1800 return const_cast<DeducedType*>(AT); 1801 } 1802 1803 // Only these types can contain the desired 'auto' type. 1804 1805 Type *VisitElaboratedType(const ElaboratedType *T) { 1806 return Visit(T->getNamedType()); 1807 } 1808 1809 Type *VisitPointerType(const PointerType *T) { 1810 return Visit(T->getPointeeType()); 1811 } 1812 1813 Type *VisitBlockPointerType(const BlockPointerType *T) { 1814 return Visit(T->getPointeeType()); 1815 } 1816 1817 Type *VisitReferenceType(const ReferenceType *T) { 1818 return Visit(T->getPointeeTypeAsWritten()); 1819 } 1820 1821 Type *VisitMemberPointerType(const MemberPointerType *T) { 1822 return Visit(T->getPointeeType()); 1823 } 1824 1825 Type *VisitArrayType(const ArrayType *T) { 1826 return Visit(T->getElementType()); 1827 } 1828 1829 Type *VisitDependentSizedExtVectorType( 1830 const DependentSizedExtVectorType *T) { 1831 return Visit(T->getElementType()); 1832 } 1833 1834 Type *VisitVectorType(const VectorType *T) { 1835 return Visit(T->getElementType()); 1836 } 1837 1838 Type *VisitDependentSizedMatrixType(const DependentSizedMatrixType *T) { 1839 return Visit(T->getElementType()); 1840 } 1841 1842 Type *VisitConstantMatrixType(const ConstantMatrixType *T) { 1843 return Visit(T->getElementType()); 1844 } 1845 1846 Type *VisitFunctionProtoType(const FunctionProtoType *T) { 1847 if (Syntactic && T->hasTrailingReturn()) 1848 return const_cast<FunctionProtoType*>(T); 1849 return VisitFunctionType(T); 1850 } 1851 1852 Type *VisitFunctionType(const FunctionType *T) { 1853 return Visit(T->getReturnType()); 1854 } 1855 1856 Type *VisitParenType(const ParenType *T) { 1857 return Visit(T->getInnerType()); 1858 } 1859 1860 Type *VisitAttributedType(const AttributedType *T) { 1861 return Visit(T->getModifiedType()); 1862 } 1863 1864 Type *VisitMacroQualifiedType(const MacroQualifiedType *T) { 1865 return Visit(T->getUnderlyingType()); 1866 } 1867 1868 Type *VisitAdjustedType(const AdjustedType *T) { 1869 return Visit(T->getOriginalType()); 1870 } 1871 1872 Type *VisitPackExpansionType(const PackExpansionType *T) { 1873 return Visit(T->getPattern()); 1874 } 1875 }; 1876 1877 } // namespace 1878 1879 DeducedType *Type::getContainedDeducedType() const { 1880 return cast_or_null<DeducedType>( 1881 GetContainedDeducedTypeVisitor().Visit(this)); 1882 } 1883 1884 bool Type::hasAutoForTrailingReturnType() const { 1885 return dyn_cast_or_null<FunctionType>( 1886 GetContainedDeducedTypeVisitor(true).Visit(this)); 1887 } 1888 1889 bool Type::hasIntegerRepresentation() const { 1890 if (const auto *VT = dyn_cast<VectorType>(CanonicalType)) 1891 return VT->getElementType()->isIntegerType(); 1892 else 1893 return isIntegerType(); 1894 } 1895 1896 /// Determine whether this type is an integral type. 1897 /// 1898 /// This routine determines whether the given type is an integral type per 1899 /// C++ [basic.fundamental]p7. Although the C standard does not define the 1900 /// term "integral type", it has a similar term "integer type", and in C++ 1901 /// the two terms are equivalent. However, C's "integer type" includes 1902 /// enumeration types, while C++'s "integer type" does not. The \c ASTContext 1903 /// parameter is used to determine whether we should be following the C or 1904 /// C++ rules when determining whether this type is an integral/integer type. 1905 /// 1906 /// For cases where C permits "an integer type" and C++ permits "an integral 1907 /// type", use this routine. 1908 /// 1909 /// For cases where C permits "an integer type" and C++ permits "an integral 1910 /// or enumeration type", use \c isIntegralOrEnumerationType() instead. 1911 /// 1912 /// \param Ctx The context in which this type occurs. 1913 /// 1914 /// \returns true if the type is considered an integral type, false otherwise. 1915 bool Type::isIntegralType(const ASTContext &Ctx) const { 1916 if (const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) 1917 return BT->getKind() >= BuiltinType::Bool && 1918 BT->getKind() <= BuiltinType::Int128; 1919 1920 // Complete enum types are integral in C. 1921 if (!Ctx.getLangOpts().CPlusPlus) 1922 if (const auto *ET = dyn_cast<EnumType>(CanonicalType)) 1923 return ET->getDecl()->isComplete(); 1924 1925 return isExtIntType(); 1926 } 1927 1928 bool Type::isIntegralOrUnscopedEnumerationType() const { 1929 if (const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) 1930 return BT->getKind() >= BuiltinType::Bool && 1931 BT->getKind() <= BuiltinType::Int128; 1932 1933 if (isExtIntType()) 1934 return true; 1935 1936 return isUnscopedEnumerationType(); 1937 } 1938 1939 bool Type::isUnscopedEnumerationType() const { 1940 if (const auto *ET = dyn_cast<EnumType>(CanonicalType)) 1941 return !ET->getDecl()->isScoped(); 1942 1943 return false; 1944 } 1945 1946 bool Type::isCharType() const { 1947 if (const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) 1948 return BT->getKind() == BuiltinType::Char_U || 1949 BT->getKind() == BuiltinType::UChar || 1950 BT->getKind() == BuiltinType::Char_S || 1951 BT->getKind() == BuiltinType::SChar; 1952 return false; 1953 } 1954 1955 bool Type::isWideCharType() const { 1956 if (const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) 1957 return BT->getKind() == BuiltinType::WChar_S || 1958 BT->getKind() == BuiltinType::WChar_U; 1959 return false; 1960 } 1961 1962 bool Type::isChar8Type() const { 1963 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) 1964 return BT->getKind() == BuiltinType::Char8; 1965 return false; 1966 } 1967 1968 bool Type::isChar16Type() const { 1969 if (const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) 1970 return BT->getKind() == BuiltinType::Char16; 1971 return false; 1972 } 1973 1974 bool Type::isChar32Type() const { 1975 if (const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) 1976 return BT->getKind() == BuiltinType::Char32; 1977 return false; 1978 } 1979 1980 /// Determine whether this type is any of the built-in character 1981 /// types. 1982 bool Type::isAnyCharacterType() const { 1983 const auto *BT = dyn_cast<BuiltinType>(CanonicalType); 1984 if (!BT) return false; 1985 switch (BT->getKind()) { 1986 default: return false; 1987 case BuiltinType::Char_U: 1988 case BuiltinType::UChar: 1989 case BuiltinType::WChar_U: 1990 case BuiltinType::Char8: 1991 case BuiltinType::Char16: 1992 case BuiltinType::Char32: 1993 case BuiltinType::Char_S: 1994 case BuiltinType::SChar: 1995 case BuiltinType::WChar_S: 1996 return true; 1997 } 1998 } 1999 2000 /// isSignedIntegerType - Return true if this is an integer type that is 2001 /// signed, according to C99 6.2.5p4 [char, signed char, short, int, long..], 2002 /// an enum decl which has a signed representation 2003 bool Type::isSignedIntegerType() const { 2004 if (const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) { 2005 return BT->getKind() >= BuiltinType::Char_S && 2006 BT->getKind() <= BuiltinType::Int128; 2007 } 2008 2009 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) { 2010 // Incomplete enum types are not treated as integer types. 2011 // FIXME: In C++, enum types are never integer types. 2012 if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped()) 2013 return ET->getDecl()->getIntegerType()->isSignedIntegerType(); 2014 } 2015 2016 if (const ExtIntType *IT = dyn_cast<ExtIntType>(CanonicalType)) 2017 return IT->isSigned(); 2018 2019 return false; 2020 } 2021 2022 bool Type::isSignedIntegerOrEnumerationType() const { 2023 if (const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) { 2024 return BT->getKind() >= BuiltinType::Char_S && 2025 BT->getKind() <= BuiltinType::Int128; 2026 } 2027 2028 if (const auto *ET = dyn_cast<EnumType>(CanonicalType)) { 2029 if (ET->getDecl()->isComplete()) 2030 return ET->getDecl()->getIntegerType()->isSignedIntegerType(); 2031 } 2032 2033 if (const ExtIntType *IT = dyn_cast<ExtIntType>(CanonicalType)) 2034 return IT->isSigned(); 2035 2036 2037 return false; 2038 } 2039 2040 bool Type::hasSignedIntegerRepresentation() const { 2041 if (const auto *VT = dyn_cast<VectorType>(CanonicalType)) 2042 return VT->getElementType()->isSignedIntegerOrEnumerationType(); 2043 else 2044 return isSignedIntegerOrEnumerationType(); 2045 } 2046 2047 /// isUnsignedIntegerType - Return true if this is an integer type that is 2048 /// unsigned, according to C99 6.2.5p6 [which returns true for _Bool], an enum 2049 /// decl which has an unsigned representation 2050 bool Type::isUnsignedIntegerType() const { 2051 if (const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) { 2052 return BT->getKind() >= BuiltinType::Bool && 2053 BT->getKind() <= BuiltinType::UInt128; 2054 } 2055 2056 if (const auto *ET = dyn_cast<EnumType>(CanonicalType)) { 2057 // Incomplete enum types are not treated as integer types. 2058 // FIXME: In C++, enum types are never integer types. 2059 if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped()) 2060 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); 2061 } 2062 2063 if (const ExtIntType *IT = dyn_cast<ExtIntType>(CanonicalType)) 2064 return IT->isUnsigned(); 2065 2066 return false; 2067 } 2068 2069 bool Type::isUnsignedIntegerOrEnumerationType() const { 2070 if (const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) { 2071 return BT->getKind() >= BuiltinType::Bool && 2072 BT->getKind() <= BuiltinType::UInt128; 2073 } 2074 2075 if (const auto *ET = dyn_cast<EnumType>(CanonicalType)) { 2076 if (ET->getDecl()->isComplete()) 2077 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); 2078 } 2079 2080 if (const ExtIntType *IT = dyn_cast<ExtIntType>(CanonicalType)) 2081 return IT->isUnsigned(); 2082 2083 return false; 2084 } 2085 2086 bool Type::hasUnsignedIntegerRepresentation() const { 2087 if (const auto *VT = dyn_cast<VectorType>(CanonicalType)) 2088 return VT->getElementType()->isUnsignedIntegerOrEnumerationType(); 2089 else 2090 return isUnsignedIntegerOrEnumerationType(); 2091 } 2092 2093 bool Type::isFloatingType() const { 2094 if (const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) 2095 return BT->getKind() >= BuiltinType::Half && 2096 BT->getKind() <= BuiltinType::Float128; 2097 if (const auto *CT = dyn_cast<ComplexType>(CanonicalType)) 2098 return CT->getElementType()->isFloatingType(); 2099 return false; 2100 } 2101 2102 bool Type::hasFloatingRepresentation() const { 2103 if (const auto *VT = dyn_cast<VectorType>(CanonicalType)) 2104 return VT->getElementType()->isFloatingType(); 2105 else 2106 return isFloatingType(); 2107 } 2108 2109 bool Type::isRealFloatingType() const { 2110 if (const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) 2111 return BT->isFloatingPoint(); 2112 return false; 2113 } 2114 2115 bool Type::isRealType() const { 2116 if (const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) 2117 return BT->getKind() >= BuiltinType::Bool && 2118 BT->getKind() <= BuiltinType::Float128; 2119 if (const auto *ET = dyn_cast<EnumType>(CanonicalType)) 2120 return ET->getDecl()->isComplete() && !ET->getDecl()->isScoped(); 2121 return isExtIntType(); 2122 } 2123 2124 bool Type::isArithmeticType() const { 2125 if (const auto *BT = dyn_cast<BuiltinType>(CanonicalType)) 2126 return BT->getKind() >= BuiltinType::Bool && 2127 BT->getKind() <= BuiltinType::Float128 && 2128 BT->getKind() != BuiltinType::BFloat16; 2129 if (const auto *ET = dyn_cast<EnumType>(CanonicalType)) 2130 // GCC allows forward declaration of enum types (forbid by C99 6.7.2.3p2). 2131 // If a body isn't seen by the time we get here, return false. 2132 // 2133 // C++0x: Enumerations are not arithmetic types. For now, just return 2134 // false for scoped enumerations since that will disable any 2135 // unwanted implicit conversions. 2136 return !ET->getDecl()->isScoped() && ET->getDecl()->isComplete(); 2137 return isa<ComplexType>(CanonicalType) || isExtIntType(); 2138 } 2139 2140 Type::ScalarTypeKind Type::getScalarTypeKind() const { 2141 assert(isScalarType()); 2142 2143 const Type *T = CanonicalType.getTypePtr(); 2144 if (const auto *BT = dyn_cast<BuiltinType>(T)) { 2145 if (BT->getKind() == BuiltinType::Bool) return STK_Bool; 2146 if (BT->getKind() == BuiltinType::NullPtr) return STK_CPointer; 2147 if (BT->isInteger()) return STK_Integral; 2148 if (BT->isFloatingPoint()) return STK_Floating; 2149 if (BT->isFixedPointType()) return STK_FixedPoint; 2150 llvm_unreachable("unknown scalar builtin type"); 2151 } else if (isa<PointerType>(T)) { 2152 return STK_CPointer; 2153 } else if (isa<BlockPointerType>(T)) { 2154 return STK_BlockPointer; 2155 } else if (isa<ObjCObjectPointerType>(T)) { 2156 return STK_ObjCObjectPointer; 2157 } else if (isa<MemberPointerType>(T)) { 2158 return STK_MemberPointer; 2159 } else if (isa<EnumType>(T)) { 2160 assert(cast<EnumType>(T)->getDecl()->isComplete()); 2161 return STK_Integral; 2162 } else if (const auto *CT = dyn_cast<ComplexType>(T)) { 2163 if (CT->getElementType()->isRealFloatingType()) 2164 return STK_FloatingComplex; 2165 return STK_IntegralComplex; 2166 } else if (isExtIntType()) { 2167 return STK_Integral; 2168 } 2169 2170 llvm_unreachable("unknown scalar type"); 2171 } 2172 2173 /// Determines whether the type is a C++ aggregate type or C 2174 /// aggregate or union type. 2175 /// 2176 /// An aggregate type is an array or a class type (struct, union, or 2177 /// class) that has no user-declared constructors, no private or 2178 /// protected non-static data members, no base classes, and no virtual 2179 /// functions (C++ [dcl.init.aggr]p1). The notion of an aggregate type 2180 /// subsumes the notion of C aggregates (C99 6.2.5p21) because it also 2181 /// includes union types. 2182 bool Type::isAggregateType() const { 2183 if (const auto *Record = dyn_cast<RecordType>(CanonicalType)) { 2184 if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(Record->getDecl())) 2185 return ClassDecl->isAggregate(); 2186 2187 return true; 2188 } 2189 2190 return isa<ArrayType>(CanonicalType); 2191 } 2192 2193 /// isConstantSizeType - Return true if this is not a variable sized type, 2194 /// according to the rules of C99 6.7.5p3. It is not legal to call this on 2195 /// incomplete types or dependent types. 2196 bool Type::isConstantSizeType() const { 2197 assert(!isIncompleteType() && "This doesn't make sense for incomplete types"); 2198 assert(!isDependentType() && "This doesn't make sense for dependent types"); 2199 // The VAT must have a size, as it is known to be complete. 2200 return !isa<VariableArrayType>(CanonicalType); 2201 } 2202 2203 /// isIncompleteType - Return true if this is an incomplete type (C99 6.2.5p1) 2204 /// - a type that can describe objects, but which lacks information needed to 2205 /// determine its size. 2206 bool Type::isIncompleteType(NamedDecl **Def) const { 2207 if (Def) 2208 *Def = nullptr; 2209 2210 switch (CanonicalType->getTypeClass()) { 2211 default: return false; 2212 case Builtin: 2213 // Void is the only incomplete builtin type. Per C99 6.2.5p19, it can never 2214 // be completed. 2215 return isVoidType(); 2216 case Enum: { 2217 EnumDecl *EnumD = cast<EnumType>(CanonicalType)->getDecl(); 2218 if (Def) 2219 *Def = EnumD; 2220 return !EnumD->isComplete(); 2221 } 2222 case Record: { 2223 // A tagged type (struct/union/enum/class) is incomplete if the decl is a 2224 // forward declaration, but not a full definition (C99 6.2.5p22). 2225 RecordDecl *Rec = cast<RecordType>(CanonicalType)->getDecl(); 2226 if (Def) 2227 *Def = Rec; 2228 return !Rec->isCompleteDefinition(); 2229 } 2230 case ConstantArray: 2231 // An array is incomplete if its element type is incomplete 2232 // (C++ [dcl.array]p1). 2233 // We don't handle variable arrays (they're not allowed in C++) or 2234 // dependent-sized arrays (dependent types are never treated as incomplete). 2235 return cast<ArrayType>(CanonicalType)->getElementType() 2236 ->isIncompleteType(Def); 2237 case IncompleteArray: 2238 // An array of unknown size is an incomplete type (C99 6.2.5p22). 2239 return true; 2240 case MemberPointer: { 2241 // Member pointers in the MS ABI have special behavior in 2242 // RequireCompleteType: they attach a MSInheritanceAttr to the CXXRecordDecl 2243 // to indicate which inheritance model to use. 2244 auto *MPTy = cast<MemberPointerType>(CanonicalType); 2245 const Type *ClassTy = MPTy->getClass(); 2246 // Member pointers with dependent class types don't get special treatment. 2247 if (ClassTy->isDependentType()) 2248 return false; 2249 const CXXRecordDecl *RD = ClassTy->getAsCXXRecordDecl(); 2250 ASTContext &Context = RD->getASTContext(); 2251 // Member pointers not in the MS ABI don't get special treatment. 2252 if (!Context.getTargetInfo().getCXXABI().isMicrosoft()) 2253 return false; 2254 // The inheritance attribute might only be present on the most recent 2255 // CXXRecordDecl, use that one. 2256 RD = RD->getMostRecentNonInjectedDecl(); 2257 // Nothing interesting to do if the inheritance attribute is already set. 2258 if (RD->hasAttr<MSInheritanceAttr>()) 2259 return false; 2260 return true; 2261 } 2262 case ObjCObject: 2263 return cast<ObjCObjectType>(CanonicalType)->getBaseType() 2264 ->isIncompleteType(Def); 2265 case ObjCInterface: { 2266 // ObjC interfaces are incomplete if they are @class, not @interface. 2267 ObjCInterfaceDecl *Interface 2268 = cast<ObjCInterfaceType>(CanonicalType)->getDecl(); 2269 if (Def) 2270 *Def = Interface; 2271 return !Interface->hasDefinition(); 2272 } 2273 } 2274 } 2275 2276 bool Type::isSizelessBuiltinType() const { 2277 if (const BuiltinType *BT = getAs<BuiltinType>()) { 2278 switch (BT->getKind()) { 2279 // SVE Types 2280 #define SVE_TYPE(Name, Id, SingletonId) case BuiltinType::Id: 2281 #include "clang/Basic/AArch64SVEACLETypes.def" 2282 return true; 2283 default: 2284 return false; 2285 } 2286 } 2287 return false; 2288 } 2289 2290 bool Type::isSizelessType() const { return isSizelessBuiltinType(); } 2291 2292 bool Type::isVLSTBuiltinType() const { 2293 if (const BuiltinType *BT = getAs<BuiltinType>()) { 2294 switch (BT->getKind()) { 2295 case BuiltinType::SveInt8: 2296 case BuiltinType::SveInt16: 2297 case BuiltinType::SveInt32: 2298 case BuiltinType::SveInt64: 2299 case BuiltinType::SveUint8: 2300 case BuiltinType::SveUint16: 2301 case BuiltinType::SveUint32: 2302 case BuiltinType::SveUint64: 2303 case BuiltinType::SveFloat16: 2304 case BuiltinType::SveFloat32: 2305 case BuiltinType::SveFloat64: 2306 case BuiltinType::SveBFloat16: 2307 case BuiltinType::SveBool: 2308 return true; 2309 default: 2310 return false; 2311 } 2312 } 2313 return false; 2314 } 2315 2316 QualType Type::getSveEltType(const ASTContext &Ctx) const { 2317 assert(isVLSTBuiltinType() && "unsupported type!"); 2318 2319 const BuiltinType *BTy = getAs<BuiltinType>(); 2320 if (BTy->getKind() == BuiltinType::SveBool) 2321 // Represent predicates as i8 rather than i1 to avoid any layout issues. 2322 // The type is bitcasted to a scalable predicate type when casting between 2323 // scalable and fixed-length vectors. 2324 return Ctx.UnsignedCharTy; 2325 else 2326 return Ctx.getBuiltinVectorTypeInfo(BTy).ElementType; 2327 } 2328 2329 bool QualType::isPODType(const ASTContext &Context) const { 2330 // C++11 has a more relaxed definition of POD. 2331 if (Context.getLangOpts().CPlusPlus11) 2332 return isCXX11PODType(Context); 2333 2334 return isCXX98PODType(Context); 2335 } 2336 2337 bool QualType::isCXX98PODType(const ASTContext &Context) const { 2338 // The compiler shouldn't query this for incomplete types, but the user might. 2339 // We return false for that case. Except for incomplete arrays of PODs, which 2340 // are PODs according to the standard. 2341 if (isNull()) 2342 return false; 2343 2344 if ((*this)->isIncompleteArrayType()) 2345 return Context.getBaseElementType(*this).isCXX98PODType(Context); 2346 2347 if ((*this)->isIncompleteType()) 2348 return false; 2349 2350 if (hasNonTrivialObjCLifetime()) 2351 return false; 2352 2353 QualType CanonicalType = getTypePtr()->CanonicalType; 2354 switch (CanonicalType->getTypeClass()) { 2355 // Everything not explicitly mentioned is not POD. 2356 default: return false; 2357 case Type::VariableArray: 2358 case Type::ConstantArray: 2359 // IncompleteArray is handled above. 2360 return Context.getBaseElementType(*this).isCXX98PODType(Context); 2361 2362 case Type::ObjCObjectPointer: 2363 case Type::BlockPointer: 2364 case Type::Builtin: 2365 case Type::Complex: 2366 case Type::Pointer: 2367 case Type::MemberPointer: 2368 case Type::Vector: 2369 case Type::ExtVector: 2370 case Type::ExtInt: 2371 return true; 2372 2373 case Type::Enum: 2374 return true; 2375 2376 case Type::Record: 2377 if (const auto *ClassDecl = 2378 dyn_cast<CXXRecordDecl>(cast<RecordType>(CanonicalType)->getDecl())) 2379 return ClassDecl->isPOD(); 2380 2381 // C struct/union is POD. 2382 return true; 2383 } 2384 } 2385 2386 bool QualType::isTrivialType(const ASTContext &Context) const { 2387 // The compiler shouldn't query this for incomplete types, but the user might. 2388 // We return false for that case. Except for incomplete arrays of PODs, which 2389 // are PODs according to the standard. 2390 if (isNull()) 2391 return false; 2392 2393 if ((*this)->isArrayType()) 2394 return Context.getBaseElementType(*this).isTrivialType(Context); 2395 2396 if ((*this)->isSizelessBuiltinType()) 2397 return true; 2398 2399 // Return false for incomplete types after skipping any incomplete array 2400 // types which are expressly allowed by the standard and thus our API. 2401 if ((*this)->isIncompleteType()) 2402 return false; 2403 2404 if (hasNonTrivialObjCLifetime()) 2405 return false; 2406 2407 QualType CanonicalType = getTypePtr()->CanonicalType; 2408 if (CanonicalType->isDependentType()) 2409 return false; 2410 2411 // C++0x [basic.types]p9: 2412 // Scalar types, trivial class types, arrays of such types, and 2413 // cv-qualified versions of these types are collectively called trivial 2414 // types. 2415 2416 // As an extension, Clang treats vector types as Scalar types. 2417 if (CanonicalType->isScalarType() || CanonicalType->isVectorType()) 2418 return true; 2419 if (const auto *RT = CanonicalType->getAs<RecordType>()) { 2420 if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) { 2421 // C++11 [class]p6: 2422 // A trivial class is a class that has a default constructor, 2423 // has no non-trivial default constructors, and is trivially 2424 // copyable. 2425 return ClassDecl->hasDefaultConstructor() && 2426 !ClassDecl->hasNonTrivialDefaultConstructor() && 2427 ClassDecl->isTriviallyCopyable(); 2428 } 2429 2430 return true; 2431 } 2432 2433 // No other types can match. 2434 return false; 2435 } 2436 2437 bool QualType::isTriviallyCopyableType(const ASTContext &Context) const { 2438 if ((*this)->isArrayType()) 2439 return Context.getBaseElementType(*this).isTriviallyCopyableType(Context); 2440 2441 if (hasNonTrivialObjCLifetime()) 2442 return false; 2443 2444 // C++11 [basic.types]p9 - See Core 2094 2445 // Scalar types, trivially copyable class types, arrays of such types, and 2446 // cv-qualified versions of these types are collectively 2447 // called trivially copyable types. 2448 2449 QualType CanonicalType = getCanonicalType(); 2450 if (CanonicalType->isDependentType()) 2451 return false; 2452 2453 if (CanonicalType->isSizelessBuiltinType()) 2454 return true; 2455 2456 // Return false for incomplete types after skipping any incomplete array types 2457 // which are expressly allowed by the standard and thus our API. 2458 if (CanonicalType->isIncompleteType()) 2459 return false; 2460 2461 // As an extension, Clang treats vector types as Scalar types. 2462 if (CanonicalType->isScalarType() || CanonicalType->isVectorType()) 2463 return true; 2464 2465 if (const auto *RT = CanonicalType->getAs<RecordType>()) { 2466 if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) { 2467 if (!ClassDecl->isTriviallyCopyable()) return false; 2468 } 2469 2470 return true; 2471 } 2472 2473 // No other types can match. 2474 return false; 2475 } 2476 2477 bool QualType::isNonWeakInMRRWithObjCWeak(const ASTContext &Context) const { 2478 return !Context.getLangOpts().ObjCAutoRefCount && 2479 Context.getLangOpts().ObjCWeak && 2480 getObjCLifetime() != Qualifiers::OCL_Weak; 2481 } 2482 2483 bool QualType::hasNonTrivialToPrimitiveDefaultInitializeCUnion(const RecordDecl *RD) { 2484 return RD->hasNonTrivialToPrimitiveDefaultInitializeCUnion(); 2485 } 2486 2487 bool QualType::hasNonTrivialToPrimitiveDestructCUnion(const RecordDecl *RD) { 2488 return RD->hasNonTrivialToPrimitiveDestructCUnion(); 2489 } 2490 2491 bool QualType::hasNonTrivialToPrimitiveCopyCUnion(const RecordDecl *RD) { 2492 return RD->hasNonTrivialToPrimitiveCopyCUnion(); 2493 } 2494 2495 QualType::PrimitiveDefaultInitializeKind 2496 QualType::isNonTrivialToPrimitiveDefaultInitialize() const { 2497 if (const auto *RT = 2498 getTypePtr()->getBaseElementTypeUnsafe()->getAs<RecordType>()) 2499 if (RT->getDecl()->isNonTrivialToPrimitiveDefaultInitialize()) 2500 return PDIK_Struct; 2501 2502 switch (getQualifiers().getObjCLifetime()) { 2503 case Qualifiers::OCL_Strong: 2504 return PDIK_ARCStrong; 2505 case Qualifiers::OCL_Weak: 2506 return PDIK_ARCWeak; 2507 default: 2508 return PDIK_Trivial; 2509 } 2510 } 2511 2512 QualType::PrimitiveCopyKind QualType::isNonTrivialToPrimitiveCopy() const { 2513 if (const auto *RT = 2514 getTypePtr()->getBaseElementTypeUnsafe()->getAs<RecordType>()) 2515 if (RT->getDecl()->isNonTrivialToPrimitiveCopy()) 2516 return PCK_Struct; 2517 2518 Qualifiers Qs = getQualifiers(); 2519 switch (Qs.getObjCLifetime()) { 2520 case Qualifiers::OCL_Strong: 2521 return PCK_ARCStrong; 2522 case Qualifiers::OCL_Weak: 2523 return PCK_ARCWeak; 2524 default: 2525 return Qs.hasVolatile() ? PCK_VolatileTrivial : PCK_Trivial; 2526 } 2527 } 2528 2529 QualType::PrimitiveCopyKind 2530 QualType::isNonTrivialToPrimitiveDestructiveMove() const { 2531 return isNonTrivialToPrimitiveCopy(); 2532 } 2533 2534 bool Type::isLiteralType(const ASTContext &Ctx) const { 2535 if (isDependentType()) 2536 return false; 2537 2538 // C++1y [basic.types]p10: 2539 // A type is a literal type if it is: 2540 // -- cv void; or 2541 if (Ctx.getLangOpts().CPlusPlus14 && isVoidType()) 2542 return true; 2543 2544 // C++11 [basic.types]p10: 2545 // A type is a literal type if it is: 2546 // [...] 2547 // -- an array of literal type other than an array of runtime bound; or 2548 if (isVariableArrayType()) 2549 return false; 2550 const Type *BaseTy = getBaseElementTypeUnsafe(); 2551 assert(BaseTy && "NULL element type"); 2552 2553 // Return false for incomplete types after skipping any incomplete array 2554 // types; those are expressly allowed by the standard and thus our API. 2555 if (BaseTy->isIncompleteType()) 2556 return false; 2557 2558 // C++11 [basic.types]p10: 2559 // A type is a literal type if it is: 2560 // -- a scalar type; or 2561 // As an extension, Clang treats vector types and complex types as 2562 // literal types. 2563 if (BaseTy->isScalarType() || BaseTy->isVectorType() || 2564 BaseTy->isAnyComplexType()) 2565 return true; 2566 // -- a reference type; or 2567 if (BaseTy->isReferenceType()) 2568 return true; 2569 // -- a class type that has all of the following properties: 2570 if (const auto *RT = BaseTy->getAs<RecordType>()) { 2571 // -- a trivial destructor, 2572 // -- every constructor call and full-expression in the 2573 // brace-or-equal-initializers for non-static data members (if any) 2574 // is a constant expression, 2575 // -- it is an aggregate type or has at least one constexpr 2576 // constructor or constructor template that is not a copy or move 2577 // constructor, and 2578 // -- all non-static data members and base classes of literal types 2579 // 2580 // We resolve DR1361 by ignoring the second bullet. 2581 if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) 2582 return ClassDecl->isLiteral(); 2583 2584 return true; 2585 } 2586 2587 // We treat _Atomic T as a literal type if T is a literal type. 2588 if (const auto *AT = BaseTy->getAs<AtomicType>()) 2589 return AT->getValueType()->isLiteralType(Ctx); 2590 2591 // If this type hasn't been deduced yet, then conservatively assume that 2592 // it'll work out to be a literal type. 2593 if (isa<AutoType>(BaseTy->getCanonicalTypeInternal())) 2594 return true; 2595 2596 return false; 2597 } 2598 2599 bool Type::isStandardLayoutType() const { 2600 if (isDependentType()) 2601 return false; 2602 2603 // C++0x [basic.types]p9: 2604 // Scalar types, standard-layout class types, arrays of such types, and 2605 // cv-qualified versions of these types are collectively called 2606 // standard-layout types. 2607 const Type *BaseTy = getBaseElementTypeUnsafe(); 2608 assert(BaseTy && "NULL element type"); 2609 2610 // Return false for incomplete types after skipping any incomplete array 2611 // types which are expressly allowed by the standard and thus our API. 2612 if (BaseTy->isIncompleteType()) 2613 return false; 2614 2615 // As an extension, Clang treats vector types as Scalar types. 2616 if (BaseTy->isScalarType() || BaseTy->isVectorType()) return true; 2617 if (const auto *RT = BaseTy->getAs<RecordType>()) { 2618 if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) 2619 if (!ClassDecl->isStandardLayout()) 2620 return false; 2621 2622 // Default to 'true' for non-C++ class types. 2623 // FIXME: This is a bit dubious, but plain C structs should trivially meet 2624 // all the requirements of standard layout classes. 2625 return true; 2626 } 2627 2628 // No other types can match. 2629 return false; 2630 } 2631 2632 // This is effectively the intersection of isTrivialType and 2633 // isStandardLayoutType. We implement it directly to avoid redundant 2634 // conversions from a type to a CXXRecordDecl. 2635 bool QualType::isCXX11PODType(const ASTContext &Context) const { 2636 const Type *ty = getTypePtr(); 2637 if (ty->isDependentType()) 2638 return false; 2639 2640 if (hasNonTrivialObjCLifetime()) 2641 return false; 2642 2643 // C++11 [basic.types]p9: 2644 // Scalar types, POD classes, arrays of such types, and cv-qualified 2645 // versions of these types are collectively called trivial types. 2646 const Type *BaseTy = ty->getBaseElementTypeUnsafe(); 2647 assert(BaseTy && "NULL element type"); 2648 2649 if (BaseTy->isSizelessBuiltinType()) 2650 return true; 2651 2652 // Return false for incomplete types after skipping any incomplete array 2653 // types which are expressly allowed by the standard and thus our API. 2654 if (BaseTy->isIncompleteType()) 2655 return false; 2656 2657 // As an extension, Clang treats vector types as Scalar types. 2658 if (BaseTy->isScalarType() || BaseTy->isVectorType()) return true; 2659 if (const auto *RT = BaseTy->getAs<RecordType>()) { 2660 if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) { 2661 // C++11 [class]p10: 2662 // A POD struct is a non-union class that is both a trivial class [...] 2663 if (!ClassDecl->isTrivial()) return false; 2664 2665 // C++11 [class]p10: 2666 // A POD struct is a non-union class that is both a trivial class and 2667 // a standard-layout class [...] 2668 if (!ClassDecl->isStandardLayout()) return false; 2669 2670 // C++11 [class]p10: 2671 // A POD struct is a non-union class that is both a trivial class and 2672 // a standard-layout class, and has no non-static data members of type 2673 // non-POD struct, non-POD union (or array of such types). [...] 2674 // 2675 // We don't directly query the recursive aspect as the requirements for 2676 // both standard-layout classes and trivial classes apply recursively 2677 // already. 2678 } 2679 2680 return true; 2681 } 2682 2683 // No other types can match. 2684 return false; 2685 } 2686 2687 bool Type::isNothrowT() const { 2688 if (const auto *RD = getAsCXXRecordDecl()) { 2689 IdentifierInfo *II = RD->getIdentifier(); 2690 if (II && II->isStr("nothrow_t") && RD->isInStdNamespace()) 2691 return true; 2692 } 2693 return false; 2694 } 2695 2696 bool Type::isAlignValT() const { 2697 if (const auto *ET = getAs<EnumType>()) { 2698 IdentifierInfo *II = ET->getDecl()->getIdentifier(); 2699 if (II && II->isStr("align_val_t") && ET->getDecl()->isInStdNamespace()) 2700 return true; 2701 } 2702 return false; 2703 } 2704 2705 bool Type::isStdByteType() const { 2706 if (const auto *ET = getAs<EnumType>()) { 2707 IdentifierInfo *II = ET->getDecl()->getIdentifier(); 2708 if (II && II->isStr("byte") && ET->getDecl()->isInStdNamespace()) 2709 return true; 2710 } 2711 return false; 2712 } 2713 2714 bool Type::isPromotableIntegerType() const { 2715 if (const auto *BT = getAs<BuiltinType>()) 2716 switch (BT->getKind()) { 2717 case BuiltinType::Bool: 2718 case BuiltinType::Char_S: 2719 case BuiltinType::Char_U: 2720 case BuiltinType::SChar: 2721 case BuiltinType::UChar: 2722 case BuiltinType::Short: 2723 case BuiltinType::UShort: 2724 case BuiltinType::WChar_S: 2725 case BuiltinType::WChar_U: 2726 case BuiltinType::Char8: 2727 case BuiltinType::Char16: 2728 case BuiltinType::Char32: 2729 return true; 2730 default: 2731 return false; 2732 } 2733 2734 // Enumerated types are promotable to their compatible integer types 2735 // (C99 6.3.1.1) a.k.a. its underlying type (C++ [conv.prom]p2). 2736 if (const auto *ET = getAs<EnumType>()){ 2737 if (this->isDependentType() || ET->getDecl()->getPromotionType().isNull() 2738 || ET->getDecl()->isScoped()) 2739 return false; 2740 2741 return true; 2742 } 2743 2744 return false; 2745 } 2746 2747 bool Type::isSpecifierType() const { 2748 // Note that this intentionally does not use the canonical type. 2749 switch (getTypeClass()) { 2750 case Builtin: 2751 case Record: 2752 case Enum: 2753 case Typedef: 2754 case Complex: 2755 case TypeOfExpr: 2756 case TypeOf: 2757 case TemplateTypeParm: 2758 case SubstTemplateTypeParm: 2759 case TemplateSpecialization: 2760 case Elaborated: 2761 case DependentName: 2762 case DependentTemplateSpecialization: 2763 case ObjCInterface: 2764 case ObjCObject: 2765 case ObjCObjectPointer: // FIXME: object pointers aren't really specifiers 2766 return true; 2767 default: 2768 return false; 2769 } 2770 } 2771 2772 ElaboratedTypeKeyword 2773 TypeWithKeyword::getKeywordForTypeSpec(unsigned TypeSpec) { 2774 switch (TypeSpec) { 2775 default: return ETK_None; 2776 case TST_typename: return ETK_Typename; 2777 case TST_class: return ETK_Class; 2778 case TST_struct: return ETK_Struct; 2779 case TST_interface: return ETK_Interface; 2780 case TST_union: return ETK_Union; 2781 case TST_enum: return ETK_Enum; 2782 } 2783 } 2784 2785 TagTypeKind 2786 TypeWithKeyword::getTagTypeKindForTypeSpec(unsigned TypeSpec) { 2787 switch(TypeSpec) { 2788 case TST_class: return TTK_Class; 2789 case TST_struct: return TTK_Struct; 2790 case TST_interface: return TTK_Interface; 2791 case TST_union: return TTK_Union; 2792 case TST_enum: return TTK_Enum; 2793 } 2794 2795 llvm_unreachable("Type specifier is not a tag type kind."); 2796 } 2797 2798 ElaboratedTypeKeyword 2799 TypeWithKeyword::getKeywordForTagTypeKind(TagTypeKind Kind) { 2800 switch (Kind) { 2801 case TTK_Class: return ETK_Class; 2802 case TTK_Struct: return ETK_Struct; 2803 case TTK_Interface: return ETK_Interface; 2804 case TTK_Union: return ETK_Union; 2805 case TTK_Enum: return ETK_Enum; 2806 } 2807 llvm_unreachable("Unknown tag type kind."); 2808 } 2809 2810 TagTypeKind 2811 TypeWithKeyword::getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword) { 2812 switch (Keyword) { 2813 case ETK_Class: return TTK_Class; 2814 case ETK_Struct: return TTK_Struct; 2815 case ETK_Interface: return TTK_Interface; 2816 case ETK_Union: return TTK_Union; 2817 case ETK_Enum: return TTK_Enum; 2818 case ETK_None: // Fall through. 2819 case ETK_Typename: 2820 llvm_unreachable("Elaborated type keyword is not a tag type kind."); 2821 } 2822 llvm_unreachable("Unknown elaborated type keyword."); 2823 } 2824 2825 bool 2826 TypeWithKeyword::KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword) { 2827 switch (Keyword) { 2828 case ETK_None: 2829 case ETK_Typename: 2830 return false; 2831 case ETK_Class: 2832 case ETK_Struct: 2833 case ETK_Interface: 2834 case ETK_Union: 2835 case ETK_Enum: 2836 return true; 2837 } 2838 llvm_unreachable("Unknown elaborated type keyword."); 2839 } 2840 2841 StringRef TypeWithKeyword::getKeywordName(ElaboratedTypeKeyword Keyword) { 2842 switch (Keyword) { 2843 case ETK_None: return {}; 2844 case ETK_Typename: return "typename"; 2845 case ETK_Class: return "class"; 2846 case ETK_Struct: return "struct"; 2847 case ETK_Interface: return "__interface"; 2848 case ETK_Union: return "union"; 2849 case ETK_Enum: return "enum"; 2850 } 2851 2852 llvm_unreachable("Unknown elaborated type keyword."); 2853 } 2854 2855 DependentTemplateSpecializationType::DependentTemplateSpecializationType( 2856 ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, 2857 const IdentifierInfo *Name, ArrayRef<TemplateArgument> Args, QualType Canon) 2858 : TypeWithKeyword(Keyword, DependentTemplateSpecialization, Canon, 2859 TypeDependence::DependentInstantiation | 2860 (NNS ? toTypeDependence(NNS->getDependence()) 2861 : TypeDependence::None)), 2862 NNS(NNS), Name(Name) { 2863 DependentTemplateSpecializationTypeBits.NumArgs = Args.size(); 2864 assert((!NNS || NNS->isDependent()) && 2865 "DependentTemplateSpecializatonType requires dependent qualifier"); 2866 TemplateArgument *ArgBuffer = getArgBuffer(); 2867 for (const TemplateArgument &Arg : Args) { 2868 addDependence(toTypeDependence(Arg.getDependence() & 2869 TemplateArgumentDependence::UnexpandedPack)); 2870 2871 new (ArgBuffer++) TemplateArgument(Arg); 2872 } 2873 } 2874 2875 void 2876 DependentTemplateSpecializationType::Profile(llvm::FoldingSetNodeID &ID, 2877 const ASTContext &Context, 2878 ElaboratedTypeKeyword Keyword, 2879 NestedNameSpecifier *Qualifier, 2880 const IdentifierInfo *Name, 2881 ArrayRef<TemplateArgument> Args) { 2882 ID.AddInteger(Keyword); 2883 ID.AddPointer(Qualifier); 2884 ID.AddPointer(Name); 2885 for (const TemplateArgument &Arg : Args) 2886 Arg.Profile(ID, Context); 2887 } 2888 2889 bool Type::isElaboratedTypeSpecifier() const { 2890 ElaboratedTypeKeyword Keyword; 2891 if (const auto *Elab = dyn_cast<ElaboratedType>(this)) 2892 Keyword = Elab->getKeyword(); 2893 else if (const auto *DepName = dyn_cast<DependentNameType>(this)) 2894 Keyword = DepName->getKeyword(); 2895 else if (const auto *DepTST = 2896 dyn_cast<DependentTemplateSpecializationType>(this)) 2897 Keyword = DepTST->getKeyword(); 2898 else 2899 return false; 2900 2901 return TypeWithKeyword::KeywordIsTagTypeKind(Keyword); 2902 } 2903 2904 const char *Type::getTypeClassName() const { 2905 switch (TypeBits.TC) { 2906 #define ABSTRACT_TYPE(Derived, Base) 2907 #define TYPE(Derived, Base) case Derived: return #Derived; 2908 #include "clang/AST/TypeNodes.inc" 2909 } 2910 2911 llvm_unreachable("Invalid type class."); 2912 } 2913 2914 StringRef BuiltinType::getName(const PrintingPolicy &Policy) const { 2915 switch (getKind()) { 2916 case Void: 2917 return "void"; 2918 case Bool: 2919 return Policy.Bool ? "bool" : "_Bool"; 2920 case Char_S: 2921 return "char"; 2922 case Char_U: 2923 return "char"; 2924 case SChar: 2925 return "signed char"; 2926 case Short: 2927 return "short"; 2928 case Int: 2929 return "int"; 2930 case Long: 2931 return "long"; 2932 case LongLong: 2933 return "long long"; 2934 case Int128: 2935 return "__int128"; 2936 case UChar: 2937 return "unsigned char"; 2938 case UShort: 2939 return "unsigned short"; 2940 case UInt: 2941 return "unsigned int"; 2942 case ULong: 2943 return "unsigned long"; 2944 case ULongLong: 2945 return "unsigned long long"; 2946 case UInt128: 2947 return "unsigned __int128"; 2948 case Half: 2949 return Policy.Half ? "half" : "__fp16"; 2950 case BFloat16: 2951 return "__bf16"; 2952 case Float: 2953 return "float"; 2954 case Double: 2955 return "double"; 2956 case LongDouble: 2957 return "long double"; 2958 case ShortAccum: 2959 return "short _Accum"; 2960 case Accum: 2961 return "_Accum"; 2962 case LongAccum: 2963 return "long _Accum"; 2964 case UShortAccum: 2965 return "unsigned short _Accum"; 2966 case UAccum: 2967 return "unsigned _Accum"; 2968 case ULongAccum: 2969 return "unsigned long _Accum"; 2970 case BuiltinType::ShortFract: 2971 return "short _Fract"; 2972 case BuiltinType::Fract: 2973 return "_Fract"; 2974 case BuiltinType::LongFract: 2975 return "long _Fract"; 2976 case BuiltinType::UShortFract: 2977 return "unsigned short _Fract"; 2978 case BuiltinType::UFract: 2979 return "unsigned _Fract"; 2980 case BuiltinType::ULongFract: 2981 return "unsigned long _Fract"; 2982 case BuiltinType::SatShortAccum: 2983 return "_Sat short _Accum"; 2984 case BuiltinType::SatAccum: 2985 return "_Sat _Accum"; 2986 case BuiltinType::SatLongAccum: 2987 return "_Sat long _Accum"; 2988 case BuiltinType::SatUShortAccum: 2989 return "_Sat unsigned short _Accum"; 2990 case BuiltinType::SatUAccum: 2991 return "_Sat unsigned _Accum"; 2992 case BuiltinType::SatULongAccum: 2993 return "_Sat unsigned long _Accum"; 2994 case BuiltinType::SatShortFract: 2995 return "_Sat short _Fract"; 2996 case BuiltinType::SatFract: 2997 return "_Sat _Fract"; 2998 case BuiltinType::SatLongFract: 2999 return "_Sat long _Fract"; 3000 case BuiltinType::SatUShortFract: 3001 return "_Sat unsigned short _Fract"; 3002 case BuiltinType::SatUFract: 3003 return "_Sat unsigned _Fract"; 3004 case BuiltinType::SatULongFract: 3005 return "_Sat unsigned long _Fract"; 3006 case Float16: 3007 return "_Float16"; 3008 case Float128: 3009 return "__float128"; 3010 case WChar_S: 3011 case WChar_U: 3012 return Policy.MSWChar ? "__wchar_t" : "wchar_t"; 3013 case Char8: 3014 return "char8_t"; 3015 case Char16: 3016 return "char16_t"; 3017 case Char32: 3018 return "char32_t"; 3019 case NullPtr: 3020 return "nullptr_t"; 3021 case Overload: 3022 return "<overloaded function type>"; 3023 case BoundMember: 3024 return "<bound member function type>"; 3025 case PseudoObject: 3026 return "<pseudo-object type>"; 3027 case Dependent: 3028 return "<dependent type>"; 3029 case UnknownAny: 3030 return "<unknown type>"; 3031 case ARCUnbridgedCast: 3032 return "<ARC unbridged cast type>"; 3033 case BuiltinFn: 3034 return "<builtin fn type>"; 3035 case ObjCId: 3036 return "id"; 3037 case ObjCClass: 3038 return "Class"; 3039 case ObjCSel: 3040 return "SEL"; 3041 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 3042 case Id: \ 3043 return "__" #Access " " #ImgType "_t"; 3044 #include "clang/Basic/OpenCLImageTypes.def" 3045 case OCLSampler: 3046 return "sampler_t"; 3047 case OCLEvent: 3048 return "event_t"; 3049 case OCLClkEvent: 3050 return "clk_event_t"; 3051 case OCLQueue: 3052 return "queue_t"; 3053 case OCLReserveID: 3054 return "reserve_id_t"; 3055 case IncompleteMatrixIdx: 3056 return "<incomplete matrix index type>"; 3057 case OMPArraySection: 3058 return "<OpenMP array section type>"; 3059 case OMPArrayShaping: 3060 return "<OpenMP array shaping type>"; 3061 case OMPIterator: 3062 return "<OpenMP iterator type>"; 3063 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \ 3064 case Id: \ 3065 return #ExtType; 3066 #include "clang/Basic/OpenCLExtensionTypes.def" 3067 #define SVE_TYPE(Name, Id, SingletonId) \ 3068 case Id: \ 3069 return Name; 3070 #include "clang/Basic/AArch64SVEACLETypes.def" 3071 } 3072 3073 llvm_unreachable("Invalid builtin type."); 3074 } 3075 3076 QualType QualType::getNonPackExpansionType() const { 3077 // We never wrap type sugar around a PackExpansionType. 3078 if (auto *PET = dyn_cast<PackExpansionType>(getTypePtr())) 3079 return PET->getPattern(); 3080 return *this; 3081 } 3082 3083 QualType QualType::getNonLValueExprType(const ASTContext &Context) const { 3084 if (const auto *RefType = getTypePtr()->getAs<ReferenceType>()) 3085 return RefType->getPointeeType(); 3086 3087 // C++0x [basic.lval]: 3088 // Class prvalues can have cv-qualified types; non-class prvalues always 3089 // have cv-unqualified types. 3090 // 3091 // See also C99 6.3.2.1p2. 3092 if (!Context.getLangOpts().CPlusPlus || 3093 (!getTypePtr()->isDependentType() && !getTypePtr()->isRecordType())) 3094 return getUnqualifiedType(); 3095 3096 return *this; 3097 } 3098 3099 StringRef FunctionType::getNameForCallConv(CallingConv CC) { 3100 switch (CC) { 3101 case CC_C: return "cdecl"; 3102 case CC_X86StdCall: return "stdcall"; 3103 case CC_X86FastCall: return "fastcall"; 3104 case CC_X86ThisCall: return "thiscall"; 3105 case CC_X86Pascal: return "pascal"; 3106 case CC_X86VectorCall: return "vectorcall"; 3107 case CC_Win64: return "ms_abi"; 3108 case CC_X86_64SysV: return "sysv_abi"; 3109 case CC_X86RegCall : return "regcall"; 3110 case CC_AAPCS: return "aapcs"; 3111 case CC_AAPCS_VFP: return "aapcs-vfp"; 3112 case CC_AArch64VectorCall: return "aarch64_vector_pcs"; 3113 case CC_IntelOclBicc: return "intel_ocl_bicc"; 3114 case CC_SpirFunction: return "spir_function"; 3115 case CC_OpenCLKernel: return "opencl_kernel"; 3116 case CC_Swift: return "swiftcall"; 3117 case CC_PreserveMost: return "preserve_most"; 3118 case CC_PreserveAll: return "preserve_all"; 3119 } 3120 3121 llvm_unreachable("Invalid calling convention."); 3122 } 3123 3124 FunctionProtoType::FunctionProtoType(QualType result, ArrayRef<QualType> params, 3125 QualType canonical, 3126 const ExtProtoInfo &epi) 3127 : FunctionType(FunctionProto, result, canonical, result->getDependence(), 3128 epi.ExtInfo) { 3129 FunctionTypeBits.FastTypeQuals = epi.TypeQuals.getFastQualifiers(); 3130 FunctionTypeBits.RefQualifier = epi.RefQualifier; 3131 FunctionTypeBits.NumParams = params.size(); 3132 assert(getNumParams() == params.size() && "NumParams overflow!"); 3133 FunctionTypeBits.ExceptionSpecType = epi.ExceptionSpec.Type; 3134 FunctionTypeBits.HasExtParameterInfos = !!epi.ExtParameterInfos; 3135 FunctionTypeBits.Variadic = epi.Variadic; 3136 FunctionTypeBits.HasTrailingReturn = epi.HasTrailingReturn; 3137 3138 // Fill in the extra trailing bitfields if present. 3139 if (hasExtraBitfields(epi.ExceptionSpec.Type)) { 3140 auto &ExtraBits = *getTrailingObjects<FunctionTypeExtraBitfields>(); 3141 ExtraBits.NumExceptionType = epi.ExceptionSpec.Exceptions.size(); 3142 } 3143 3144 // Fill in the trailing argument array. 3145 auto *argSlot = getTrailingObjects<QualType>(); 3146 for (unsigned i = 0; i != getNumParams(); ++i) { 3147 addDependence(params[i]->getDependence() & 3148 ~TypeDependence::VariablyModified); 3149 argSlot[i] = params[i]; 3150 } 3151 3152 // Fill in the exception type array if present. 3153 if (getExceptionSpecType() == EST_Dynamic) { 3154 assert(hasExtraBitfields() && "missing trailing extra bitfields!"); 3155 auto *exnSlot = 3156 reinterpret_cast<QualType *>(getTrailingObjects<ExceptionType>()); 3157 unsigned I = 0; 3158 for (QualType ExceptionType : epi.ExceptionSpec.Exceptions) { 3159 // Note that, before C++17, a dependent exception specification does 3160 // *not* make a type dependent; it's not even part of the C++ type 3161 // system. 3162 addDependence( 3163 ExceptionType->getDependence() & 3164 (TypeDependence::Instantiation | TypeDependence::UnexpandedPack)); 3165 3166 exnSlot[I++] = ExceptionType; 3167 } 3168 } 3169 // Fill in the Expr * in the exception specification if present. 3170 else if (isComputedNoexcept(getExceptionSpecType())) { 3171 assert(epi.ExceptionSpec.NoexceptExpr && "computed noexcept with no expr"); 3172 assert((getExceptionSpecType() == EST_DependentNoexcept) == 3173 epi.ExceptionSpec.NoexceptExpr->isValueDependent()); 3174 3175 // Store the noexcept expression and context. 3176 *getTrailingObjects<Expr *>() = epi.ExceptionSpec.NoexceptExpr; 3177 3178 addDependence( 3179 toTypeDependence(epi.ExceptionSpec.NoexceptExpr->getDependence()) & 3180 (TypeDependence::Instantiation | TypeDependence::UnexpandedPack)); 3181 } 3182 // Fill in the FunctionDecl * in the exception specification if present. 3183 else if (getExceptionSpecType() == EST_Uninstantiated) { 3184 // Store the function decl from which we will resolve our 3185 // exception specification. 3186 auto **slot = getTrailingObjects<FunctionDecl *>(); 3187 slot[0] = epi.ExceptionSpec.SourceDecl; 3188 slot[1] = epi.ExceptionSpec.SourceTemplate; 3189 // This exception specification doesn't make the type dependent, because 3190 // it's not instantiated as part of instantiating the type. 3191 } else if (getExceptionSpecType() == EST_Unevaluated) { 3192 // Store the function decl from which we will resolve our 3193 // exception specification. 3194 auto **slot = getTrailingObjects<FunctionDecl *>(); 3195 slot[0] = epi.ExceptionSpec.SourceDecl; 3196 } 3197 3198 // If this is a canonical type, and its exception specification is dependent, 3199 // then it's a dependent type. This only happens in C++17 onwards. 3200 if (isCanonicalUnqualified()) { 3201 if (getExceptionSpecType() == EST_Dynamic || 3202 getExceptionSpecType() == EST_DependentNoexcept) { 3203 assert(hasDependentExceptionSpec() && "type should not be canonical"); 3204 addDependence(TypeDependence::DependentInstantiation); 3205 } 3206 } else if (getCanonicalTypeInternal()->isDependentType()) { 3207 // Ask our canonical type whether our exception specification was dependent. 3208 addDependence(TypeDependence::DependentInstantiation); 3209 } 3210 3211 // Fill in the extra parameter info if present. 3212 if (epi.ExtParameterInfos) { 3213 auto *extParamInfos = getTrailingObjects<ExtParameterInfo>(); 3214 for (unsigned i = 0; i != getNumParams(); ++i) 3215 extParamInfos[i] = epi.ExtParameterInfos[i]; 3216 } 3217 3218 if (epi.TypeQuals.hasNonFastQualifiers()) { 3219 FunctionTypeBits.HasExtQuals = 1; 3220 *getTrailingObjects<Qualifiers>() = epi.TypeQuals; 3221 } else { 3222 FunctionTypeBits.HasExtQuals = 0; 3223 } 3224 3225 // Fill in the Ellipsis location info if present. 3226 if (epi.Variadic) { 3227 auto &EllipsisLoc = *getTrailingObjects<SourceLocation>(); 3228 EllipsisLoc = epi.EllipsisLoc; 3229 } 3230 } 3231 3232 bool FunctionProtoType::hasDependentExceptionSpec() const { 3233 if (Expr *NE = getNoexceptExpr()) 3234 return NE->isValueDependent(); 3235 for (QualType ET : exceptions()) 3236 // A pack expansion with a non-dependent pattern is still dependent, 3237 // because we don't know whether the pattern is in the exception spec 3238 // or not (that depends on whether the pack has 0 expansions). 3239 if (ET->isDependentType() || ET->getAs<PackExpansionType>()) 3240 return true; 3241 return false; 3242 } 3243 3244 bool FunctionProtoType::hasInstantiationDependentExceptionSpec() const { 3245 if (Expr *NE = getNoexceptExpr()) 3246 return NE->isInstantiationDependent(); 3247 for (QualType ET : exceptions()) 3248 if (ET->isInstantiationDependentType()) 3249 return true; 3250 return false; 3251 } 3252 3253 CanThrowResult FunctionProtoType::canThrow() const { 3254 switch (getExceptionSpecType()) { 3255 case EST_Unparsed: 3256 case EST_Unevaluated: 3257 case EST_Uninstantiated: 3258 llvm_unreachable("should not call this with unresolved exception specs"); 3259 3260 case EST_DynamicNone: 3261 case EST_BasicNoexcept: 3262 case EST_NoexceptTrue: 3263 case EST_NoThrow: 3264 return CT_Cannot; 3265 3266 case EST_None: 3267 case EST_MSAny: 3268 case EST_NoexceptFalse: 3269 return CT_Can; 3270 3271 case EST_Dynamic: 3272 // A dynamic exception specification is throwing unless every exception 3273 // type is an (unexpanded) pack expansion type. 3274 for (unsigned I = 0; I != getNumExceptions(); ++I) 3275 if (!getExceptionType(I)->getAs<PackExpansionType>()) 3276 return CT_Can; 3277 return CT_Dependent; 3278 3279 case EST_DependentNoexcept: 3280 return CT_Dependent; 3281 } 3282 3283 llvm_unreachable("unexpected exception specification kind"); 3284 } 3285 3286 bool FunctionProtoType::isTemplateVariadic() const { 3287 for (unsigned ArgIdx = getNumParams(); ArgIdx; --ArgIdx) 3288 if (isa<PackExpansionType>(getParamType(ArgIdx - 1))) 3289 return true; 3290 3291 return false; 3292 } 3293 3294 void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID, QualType Result, 3295 const QualType *ArgTys, unsigned NumParams, 3296 const ExtProtoInfo &epi, 3297 const ASTContext &Context, bool Canonical) { 3298 // We have to be careful not to get ambiguous profile encodings. 3299 // Note that valid type pointers are never ambiguous with anything else. 3300 // 3301 // The encoding grammar begins: 3302 // type type* bool int bool 3303 // If that final bool is true, then there is a section for the EH spec: 3304 // bool type* 3305 // This is followed by an optional "consumed argument" section of the 3306 // same length as the first type sequence: 3307 // bool* 3308 // Finally, we have the ext info and trailing return type flag: 3309 // int bool 3310 // 3311 // There is no ambiguity between the consumed arguments and an empty EH 3312 // spec because of the leading 'bool' which unambiguously indicates 3313 // whether the following bool is the EH spec or part of the arguments. 3314 3315 ID.AddPointer(Result.getAsOpaquePtr()); 3316 for (unsigned i = 0; i != NumParams; ++i) 3317 ID.AddPointer(ArgTys[i].getAsOpaquePtr()); 3318 // This method is relatively performance sensitive, so as a performance 3319 // shortcut, use one AddInteger call instead of four for the next four 3320 // fields. 3321 assert(!(unsigned(epi.Variadic) & ~1) && 3322 !(unsigned(epi.RefQualifier) & ~3) && 3323 !(unsigned(epi.ExceptionSpec.Type) & ~15) && 3324 "Values larger than expected."); 3325 ID.AddInteger(unsigned(epi.Variadic) + 3326 (epi.RefQualifier << 1) + 3327 (epi.ExceptionSpec.Type << 3)); 3328 ID.Add(epi.TypeQuals); 3329 if (epi.ExceptionSpec.Type == EST_Dynamic) { 3330 for (QualType Ex : epi.ExceptionSpec.Exceptions) 3331 ID.AddPointer(Ex.getAsOpaquePtr()); 3332 } else if (isComputedNoexcept(epi.ExceptionSpec.Type)) { 3333 epi.ExceptionSpec.NoexceptExpr->Profile(ID, Context, Canonical); 3334 } else if (epi.ExceptionSpec.Type == EST_Uninstantiated || 3335 epi.ExceptionSpec.Type == EST_Unevaluated) { 3336 ID.AddPointer(epi.ExceptionSpec.SourceDecl->getCanonicalDecl()); 3337 } 3338 if (epi.ExtParameterInfos) { 3339 for (unsigned i = 0; i != NumParams; ++i) 3340 ID.AddInteger(epi.ExtParameterInfos[i].getOpaqueValue()); 3341 } 3342 epi.ExtInfo.Profile(ID); 3343 ID.AddBoolean(epi.HasTrailingReturn); 3344 } 3345 3346 void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID, 3347 const ASTContext &Ctx) { 3348 Profile(ID, getReturnType(), param_type_begin(), getNumParams(), 3349 getExtProtoInfo(), Ctx, isCanonicalUnqualified()); 3350 } 3351 3352 TypedefType::TypedefType(TypeClass tc, const TypedefNameDecl *D, QualType can) 3353 : Type(tc, can, D->getUnderlyingType()->getDependence()), 3354 Decl(const_cast<TypedefNameDecl *>(D)) { 3355 assert(!isa<TypedefType>(can) && "Invalid canonical type"); 3356 } 3357 3358 QualType TypedefType::desugar() const { 3359 return getDecl()->getUnderlyingType(); 3360 } 3361 3362 QualType MacroQualifiedType::desugar() const { return getUnderlyingType(); } 3363 3364 QualType MacroQualifiedType::getModifiedType() const { 3365 // Step over MacroQualifiedTypes from the same macro to find the type 3366 // ultimately qualified by the macro qualifier. 3367 QualType Inner = cast<AttributedType>(getUnderlyingType())->getModifiedType(); 3368 while (auto *InnerMQT = dyn_cast<MacroQualifiedType>(Inner)) { 3369 if (InnerMQT->getMacroIdentifier() != getMacroIdentifier()) 3370 break; 3371 Inner = InnerMQT->getModifiedType(); 3372 } 3373 return Inner; 3374 } 3375 3376 TypeOfExprType::TypeOfExprType(Expr *E, QualType can) 3377 : Type(TypeOfExpr, can, 3378 toTypeDependence(E->getDependence()) | 3379 (E->getType()->getDependence() & 3380 TypeDependence::VariablyModified)), 3381 TOExpr(E) {} 3382 3383 bool TypeOfExprType::isSugared() const { 3384 return !TOExpr->isTypeDependent(); 3385 } 3386 3387 QualType TypeOfExprType::desugar() const { 3388 if (isSugared()) 3389 return getUnderlyingExpr()->getType(); 3390 3391 return QualType(this, 0); 3392 } 3393 3394 void DependentTypeOfExprType::Profile(llvm::FoldingSetNodeID &ID, 3395 const ASTContext &Context, Expr *E) { 3396 E->Profile(ID, Context, true); 3397 } 3398 3399 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) 3400 // C++11 [temp.type]p2: "If an expression e involves a template parameter, 3401 // decltype(e) denotes a unique dependent type." Hence a decltype type is 3402 // type-dependent even if its expression is only instantiation-dependent. 3403 : Type(Decltype, can, 3404 toTypeDependence(E->getDependence()) | 3405 (E->isInstantiationDependent() ? TypeDependence::Dependent 3406 : TypeDependence::None) | 3407 (E->getType()->getDependence() & 3408 TypeDependence::VariablyModified)), 3409 E(E), UnderlyingType(underlyingType) {} 3410 3411 bool DecltypeType::isSugared() const { return !E->isInstantiationDependent(); } 3412 3413 QualType DecltypeType::desugar() const { 3414 if (isSugared()) 3415 return getUnderlyingType(); 3416 3417 return QualType(this, 0); 3418 } 3419 3420 DependentDecltypeType::DependentDecltypeType(const ASTContext &Context, Expr *E) 3421 : DecltypeType(E, Context.DependentTy), Context(Context) {} 3422 3423 void DependentDecltypeType::Profile(llvm::FoldingSetNodeID &ID, 3424 const ASTContext &Context, Expr *E) { 3425 E->Profile(ID, Context, true); 3426 } 3427 3428 UnaryTransformType::UnaryTransformType(QualType BaseType, 3429 QualType UnderlyingType, UTTKind UKind, 3430 QualType CanonicalType) 3431 : Type(UnaryTransform, CanonicalType, BaseType->getDependence()), 3432 BaseType(BaseType), UnderlyingType(UnderlyingType), UKind(UKind) {} 3433 3434 DependentUnaryTransformType::DependentUnaryTransformType(const ASTContext &C, 3435 QualType BaseType, 3436 UTTKind UKind) 3437 : UnaryTransformType(BaseType, C.DependentTy, UKind, QualType()) {} 3438 3439 TagType::TagType(TypeClass TC, const TagDecl *D, QualType can) 3440 : Type(TC, can, 3441 D->isDependentType() ? TypeDependence::DependentInstantiation 3442 : TypeDependence::None), 3443 decl(const_cast<TagDecl *>(D)) {} 3444 3445 static TagDecl *getInterestingTagDecl(TagDecl *decl) { 3446 for (auto I : decl->redecls()) { 3447 if (I->isCompleteDefinition() || I->isBeingDefined()) 3448 return I; 3449 } 3450 // If there's no definition (not even in progress), return what we have. 3451 return decl; 3452 } 3453 3454 TagDecl *TagType::getDecl() const { 3455 return getInterestingTagDecl(decl); 3456 } 3457 3458 bool TagType::isBeingDefined() const { 3459 return getDecl()->isBeingDefined(); 3460 } 3461 3462 bool RecordType::hasConstFields() const { 3463 std::vector<const RecordType*> RecordTypeList; 3464 RecordTypeList.push_back(this); 3465 unsigned NextToCheckIndex = 0; 3466 3467 while (RecordTypeList.size() > NextToCheckIndex) { 3468 for (FieldDecl *FD : 3469 RecordTypeList[NextToCheckIndex]->getDecl()->fields()) { 3470 QualType FieldTy = FD->getType(); 3471 if (FieldTy.isConstQualified()) 3472 return true; 3473 FieldTy = FieldTy.getCanonicalType(); 3474 if (const auto *FieldRecTy = FieldTy->getAs<RecordType>()) { 3475 if (llvm::find(RecordTypeList, FieldRecTy) == RecordTypeList.end()) 3476 RecordTypeList.push_back(FieldRecTy); 3477 } 3478 } 3479 ++NextToCheckIndex; 3480 } 3481 return false; 3482 } 3483 3484 bool AttributedType::isQualifier() const { 3485 // FIXME: Generate this with TableGen. 3486 switch (getAttrKind()) { 3487 // These are type qualifiers in the traditional C sense: they annotate 3488 // something about a specific value/variable of a type. (They aren't 3489 // always part of the canonical type, though.) 3490 case attr::ObjCGC: 3491 case attr::ObjCOwnership: 3492 case attr::ObjCInertUnsafeUnretained: 3493 case attr::TypeNonNull: 3494 case attr::TypeNullable: 3495 case attr::TypeNullUnspecified: 3496 case attr::LifetimeBound: 3497 case attr::AddressSpace: 3498 return true; 3499 3500 // All other type attributes aren't qualifiers; they rewrite the modified 3501 // type to be a semantically different type. 3502 default: 3503 return false; 3504 } 3505 } 3506 3507 bool AttributedType::isMSTypeSpec() const { 3508 // FIXME: Generate this with TableGen? 3509 switch (getAttrKind()) { 3510 default: return false; 3511 case attr::Ptr32: 3512 case attr::Ptr64: 3513 case attr::SPtr: 3514 case attr::UPtr: 3515 return true; 3516 } 3517 llvm_unreachable("invalid attr kind"); 3518 } 3519 3520 bool AttributedType::isCallingConv() const { 3521 // FIXME: Generate this with TableGen. 3522 switch (getAttrKind()) { 3523 default: return false; 3524 case attr::Pcs: 3525 case attr::CDecl: 3526 case attr::FastCall: 3527 case attr::StdCall: 3528 case attr::ThisCall: 3529 case attr::RegCall: 3530 case attr::SwiftCall: 3531 case attr::VectorCall: 3532 case attr::AArch64VectorPcs: 3533 case attr::Pascal: 3534 case attr::MSABI: 3535 case attr::SysVABI: 3536 case attr::IntelOclBicc: 3537 case attr::PreserveMost: 3538 case attr::PreserveAll: 3539 return true; 3540 } 3541 llvm_unreachable("invalid attr kind"); 3542 } 3543 3544 CXXRecordDecl *InjectedClassNameType::getDecl() const { 3545 return cast<CXXRecordDecl>(getInterestingTagDecl(Decl)); 3546 } 3547 3548 IdentifierInfo *TemplateTypeParmType::getIdentifier() const { 3549 return isCanonicalUnqualified() ? nullptr : getDecl()->getIdentifier(); 3550 } 3551 3552 SubstTemplateTypeParmPackType::SubstTemplateTypeParmPackType( 3553 const TemplateTypeParmType *Param, QualType Canon, 3554 const TemplateArgument &ArgPack) 3555 : Type(SubstTemplateTypeParmPack, Canon, 3556 TypeDependence::DependentInstantiation | 3557 TypeDependence::UnexpandedPack), 3558 Replaced(Param), Arguments(ArgPack.pack_begin()) { 3559 SubstTemplateTypeParmPackTypeBits.NumArgs = ArgPack.pack_size(); 3560 } 3561 3562 TemplateArgument SubstTemplateTypeParmPackType::getArgumentPack() const { 3563 return TemplateArgument(llvm::makeArrayRef(Arguments, getNumArgs())); 3564 } 3565 3566 void SubstTemplateTypeParmPackType::Profile(llvm::FoldingSetNodeID &ID) { 3567 Profile(ID, getReplacedParameter(), getArgumentPack()); 3568 } 3569 3570 void SubstTemplateTypeParmPackType::Profile(llvm::FoldingSetNodeID &ID, 3571 const TemplateTypeParmType *Replaced, 3572 const TemplateArgument &ArgPack) { 3573 ID.AddPointer(Replaced); 3574 ID.AddInteger(ArgPack.pack_size()); 3575 for (const auto &P : ArgPack.pack_elements()) 3576 ID.AddPointer(P.getAsType().getAsOpaquePtr()); 3577 } 3578 3579 bool TemplateSpecializationType:: 3580 anyDependentTemplateArguments(const TemplateArgumentListInfo &Args, 3581 bool &InstantiationDependent) { 3582 return anyDependentTemplateArguments(Args.arguments(), 3583 InstantiationDependent); 3584 } 3585 3586 bool TemplateSpecializationType:: 3587 anyDependentTemplateArguments(ArrayRef<TemplateArgumentLoc> Args, 3588 bool &InstantiationDependent) { 3589 for (const TemplateArgumentLoc &ArgLoc : Args) { 3590 if (ArgLoc.getArgument().isDependent()) { 3591 InstantiationDependent = true; 3592 return true; 3593 } 3594 3595 if (ArgLoc.getArgument().isInstantiationDependent()) 3596 InstantiationDependent = true; 3597 } 3598 return false; 3599 } 3600 3601 TemplateSpecializationType::TemplateSpecializationType( 3602 TemplateName T, ArrayRef<TemplateArgument> Args, QualType Canon, 3603 QualType AliasedType) 3604 : Type(TemplateSpecialization, Canon.isNull() ? QualType(this, 0) : Canon, 3605 (Canon.isNull() 3606 ? TypeDependence::DependentInstantiation 3607 : Canon->getDependence() & ~(TypeDependence::VariablyModified | 3608 TypeDependence::UnexpandedPack)) | 3609 (toTypeDependence(T.getDependence()) & 3610 TypeDependence::UnexpandedPack)), 3611 Template(T) { 3612 TemplateSpecializationTypeBits.NumArgs = Args.size(); 3613 TemplateSpecializationTypeBits.TypeAlias = !AliasedType.isNull(); 3614 3615 assert(!T.getAsDependentTemplateName() && 3616 "Use DependentTemplateSpecializationType for dependent template-name"); 3617 assert((T.getKind() == TemplateName::Template || 3618 T.getKind() == TemplateName::SubstTemplateTemplateParm || 3619 T.getKind() == TemplateName::SubstTemplateTemplateParmPack) && 3620 "Unexpected template name for TemplateSpecializationType"); 3621 3622 auto *TemplateArgs = reinterpret_cast<TemplateArgument *>(this + 1); 3623 for (const TemplateArgument &Arg : Args) { 3624 // Update instantiation-dependent, variably-modified, and error bits. 3625 // If the canonical type exists and is non-dependent, the template 3626 // specialization type can be non-dependent even if one of the type 3627 // arguments is. Given: 3628 // template<typename T> using U = int; 3629 // U<T> is always non-dependent, irrespective of the type T. 3630 // However, U<Ts> contains an unexpanded parameter pack, even though 3631 // its expansion (and thus its desugared type) doesn't. 3632 addDependence(toTypeDependence(Arg.getDependence()) & 3633 ~TypeDependence::Dependent); 3634 if (Arg.getKind() == TemplateArgument::Type) 3635 addDependence(Arg.getAsType()->getDependence() & 3636 TypeDependence::VariablyModified); 3637 new (TemplateArgs++) TemplateArgument(Arg); 3638 } 3639 3640 // Store the aliased type if this is a type alias template specialization. 3641 if (isTypeAlias()) { 3642 auto *Begin = reinterpret_cast<TemplateArgument *>(this + 1); 3643 *reinterpret_cast<QualType*>(Begin + getNumArgs()) = AliasedType; 3644 } 3645 } 3646 3647 void 3648 TemplateSpecializationType::Profile(llvm::FoldingSetNodeID &ID, 3649 TemplateName T, 3650 ArrayRef<TemplateArgument> Args, 3651 const ASTContext &Context) { 3652 T.Profile(ID); 3653 for (const TemplateArgument &Arg : Args) 3654 Arg.Profile(ID, Context); 3655 } 3656 3657 QualType 3658 QualifierCollector::apply(const ASTContext &Context, QualType QT) const { 3659 if (!hasNonFastQualifiers()) 3660 return QT.withFastQualifiers(getFastQualifiers()); 3661 3662 return Context.getQualifiedType(QT, *this); 3663 } 3664 3665 QualType 3666 QualifierCollector::apply(const ASTContext &Context, const Type *T) const { 3667 if (!hasNonFastQualifiers()) 3668 return QualType(T, getFastQualifiers()); 3669 3670 return Context.getQualifiedType(T, *this); 3671 } 3672 3673 void ObjCObjectTypeImpl::Profile(llvm::FoldingSetNodeID &ID, 3674 QualType BaseType, 3675 ArrayRef<QualType> typeArgs, 3676 ArrayRef<ObjCProtocolDecl *> protocols, 3677 bool isKindOf) { 3678 ID.AddPointer(BaseType.getAsOpaquePtr()); 3679 ID.AddInteger(typeArgs.size()); 3680 for (auto typeArg : typeArgs) 3681 ID.AddPointer(typeArg.getAsOpaquePtr()); 3682 ID.AddInteger(protocols.size()); 3683 for (auto proto : protocols) 3684 ID.AddPointer(proto); 3685 ID.AddBoolean(isKindOf); 3686 } 3687 3688 void ObjCObjectTypeImpl::Profile(llvm::FoldingSetNodeID &ID) { 3689 Profile(ID, getBaseType(), getTypeArgsAsWritten(), 3690 llvm::makeArrayRef(qual_begin(), getNumProtocols()), 3691 isKindOfTypeAsWritten()); 3692 } 3693 3694 void ObjCTypeParamType::Profile(llvm::FoldingSetNodeID &ID, 3695 const ObjCTypeParamDecl *OTPDecl, 3696 QualType CanonicalType, 3697 ArrayRef<ObjCProtocolDecl *> protocols) { 3698 ID.AddPointer(OTPDecl); 3699 ID.AddPointer(CanonicalType.getAsOpaquePtr()); 3700 ID.AddInteger(protocols.size()); 3701 for (auto proto : protocols) 3702 ID.AddPointer(proto); 3703 } 3704 3705 void ObjCTypeParamType::Profile(llvm::FoldingSetNodeID &ID) { 3706 Profile(ID, getDecl(), getCanonicalTypeInternal(), 3707 llvm::makeArrayRef(qual_begin(), getNumProtocols())); 3708 } 3709 3710 namespace { 3711 3712 /// The cached properties of a type. 3713 class CachedProperties { 3714 Linkage L; 3715 bool local; 3716 3717 public: 3718 CachedProperties(Linkage L, bool local) : L(L), local(local) {} 3719 3720 Linkage getLinkage() const { return L; } 3721 bool hasLocalOrUnnamedType() const { return local; } 3722 3723 friend CachedProperties merge(CachedProperties L, CachedProperties R) { 3724 Linkage MergedLinkage = minLinkage(L.L, R.L); 3725 return CachedProperties(MergedLinkage, 3726 L.hasLocalOrUnnamedType() | R.hasLocalOrUnnamedType()); 3727 } 3728 }; 3729 3730 } // namespace 3731 3732 static CachedProperties computeCachedProperties(const Type *T); 3733 3734 namespace clang { 3735 3736 /// The type-property cache. This is templated so as to be 3737 /// instantiated at an internal type to prevent unnecessary symbol 3738 /// leakage. 3739 template <class Private> class TypePropertyCache { 3740 public: 3741 static CachedProperties get(QualType T) { 3742 return get(T.getTypePtr()); 3743 } 3744 3745 static CachedProperties get(const Type *T) { 3746 ensure(T); 3747 return CachedProperties(T->TypeBits.getLinkage(), 3748 T->TypeBits.hasLocalOrUnnamedType()); 3749 } 3750 3751 static void ensure(const Type *T) { 3752 // If the cache is valid, we're okay. 3753 if (T->TypeBits.isCacheValid()) return; 3754 3755 // If this type is non-canonical, ask its canonical type for the 3756 // relevant information. 3757 if (!T->isCanonicalUnqualified()) { 3758 const Type *CT = T->getCanonicalTypeInternal().getTypePtr(); 3759 ensure(CT); 3760 T->TypeBits.CacheValid = true; 3761 T->TypeBits.CachedLinkage = CT->TypeBits.CachedLinkage; 3762 T->TypeBits.CachedLocalOrUnnamed = CT->TypeBits.CachedLocalOrUnnamed; 3763 return; 3764 } 3765 3766 // Compute the cached properties and then set the cache. 3767 CachedProperties Result = computeCachedProperties(T); 3768 T->TypeBits.CacheValid = true; 3769 T->TypeBits.CachedLinkage = Result.getLinkage(); 3770 T->TypeBits.CachedLocalOrUnnamed = Result.hasLocalOrUnnamedType(); 3771 } 3772 }; 3773 3774 } // namespace clang 3775 3776 // Instantiate the friend template at a private class. In a 3777 // reasonable implementation, these symbols will be internal. 3778 // It is terrible that this is the best way to accomplish this. 3779 namespace { 3780 3781 class Private {}; 3782 3783 } // namespace 3784 3785 using Cache = TypePropertyCache<Private>; 3786 3787 static CachedProperties computeCachedProperties(const Type *T) { 3788 switch (T->getTypeClass()) { 3789 #define TYPE(Class,Base) 3790 #define NON_CANONICAL_TYPE(Class,Base) case Type::Class: 3791 #include "clang/AST/TypeNodes.inc" 3792 llvm_unreachable("didn't expect a non-canonical type here"); 3793 3794 #define TYPE(Class,Base) 3795 #define DEPENDENT_TYPE(Class,Base) case Type::Class: 3796 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class,Base) case Type::Class: 3797 #include "clang/AST/TypeNodes.inc" 3798 // Treat instantiation-dependent types as external. 3799 if (!T->isInstantiationDependentType()) T->dump(); 3800 assert(T->isInstantiationDependentType()); 3801 return CachedProperties(ExternalLinkage, false); 3802 3803 case Type::Auto: 3804 case Type::DeducedTemplateSpecialization: 3805 // Give non-deduced 'auto' types external linkage. We should only see them 3806 // here in error recovery. 3807 return CachedProperties(ExternalLinkage, false); 3808 3809 case Type::ExtInt: 3810 case Type::Builtin: 3811 // C++ [basic.link]p8: 3812 // A type is said to have linkage if and only if: 3813 // - it is a fundamental type (3.9.1); or 3814 return CachedProperties(ExternalLinkage, false); 3815 3816 case Type::Record: 3817 case Type::Enum: { 3818 const TagDecl *Tag = cast<TagType>(T)->getDecl(); 3819 3820 // C++ [basic.link]p8: 3821 // - it is a class or enumeration type that is named (or has a name 3822 // for linkage purposes (7.1.3)) and the name has linkage; or 3823 // - it is a specialization of a class template (14); or 3824 Linkage L = Tag->getLinkageInternal(); 3825 bool IsLocalOrUnnamed = 3826 Tag->getDeclContext()->isFunctionOrMethod() || 3827 !Tag->hasNameForLinkage(); 3828 return CachedProperties(L, IsLocalOrUnnamed); 3829 } 3830 3831 // C++ [basic.link]p8: 3832 // - it is a compound type (3.9.2) other than a class or enumeration, 3833 // compounded exclusively from types that have linkage; or 3834 case Type::Complex: 3835 return Cache::get(cast<ComplexType>(T)->getElementType()); 3836 case Type::Pointer: 3837 return Cache::get(cast<PointerType>(T)->getPointeeType()); 3838 case Type::BlockPointer: 3839 return Cache::get(cast<BlockPointerType>(T)->getPointeeType()); 3840 case Type::LValueReference: 3841 case Type::RValueReference: 3842 return Cache::get(cast<ReferenceType>(T)->getPointeeType()); 3843 case Type::MemberPointer: { 3844 const auto *MPT = cast<MemberPointerType>(T); 3845 return merge(Cache::get(MPT->getClass()), 3846 Cache::get(MPT->getPointeeType())); 3847 } 3848 case Type::ConstantArray: 3849 case Type::IncompleteArray: 3850 case Type::VariableArray: 3851 return Cache::get(cast<ArrayType>(T)->getElementType()); 3852 case Type::Vector: 3853 case Type::ExtVector: 3854 return Cache::get(cast<VectorType>(T)->getElementType()); 3855 case Type::ConstantMatrix: 3856 return Cache::get(cast<ConstantMatrixType>(T)->getElementType()); 3857 case Type::FunctionNoProto: 3858 return Cache::get(cast<FunctionType>(T)->getReturnType()); 3859 case Type::FunctionProto: { 3860 const auto *FPT = cast<FunctionProtoType>(T); 3861 CachedProperties result = Cache::get(FPT->getReturnType()); 3862 for (const auto &ai : FPT->param_types()) 3863 result = merge(result, Cache::get(ai)); 3864 return result; 3865 } 3866 case Type::ObjCInterface: { 3867 Linkage L = cast<ObjCInterfaceType>(T)->getDecl()->getLinkageInternal(); 3868 return CachedProperties(L, false); 3869 } 3870 case Type::ObjCObject: 3871 return Cache::get(cast<ObjCObjectType>(T)->getBaseType()); 3872 case Type::ObjCObjectPointer: 3873 return Cache::get(cast<ObjCObjectPointerType>(T)->getPointeeType()); 3874 case Type::Atomic: 3875 return Cache::get(cast<AtomicType>(T)->getValueType()); 3876 case Type::Pipe: 3877 return Cache::get(cast<PipeType>(T)->getElementType()); 3878 } 3879 3880 llvm_unreachable("unhandled type class"); 3881 } 3882 3883 /// Determine the linkage of this type. 3884 Linkage Type::getLinkage() const { 3885 Cache::ensure(this); 3886 return TypeBits.getLinkage(); 3887 } 3888 3889 bool Type::hasUnnamedOrLocalType() const { 3890 Cache::ensure(this); 3891 return TypeBits.hasLocalOrUnnamedType(); 3892 } 3893 3894 LinkageInfo LinkageComputer::computeTypeLinkageInfo(const Type *T) { 3895 switch (T->getTypeClass()) { 3896 #define TYPE(Class,Base) 3897 #define NON_CANONICAL_TYPE(Class,Base) case Type::Class: 3898 #include "clang/AST/TypeNodes.inc" 3899 llvm_unreachable("didn't expect a non-canonical type here"); 3900 3901 #define TYPE(Class,Base) 3902 #define DEPENDENT_TYPE(Class,Base) case Type::Class: 3903 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class,Base) case Type::Class: 3904 #include "clang/AST/TypeNodes.inc" 3905 // Treat instantiation-dependent types as external. 3906 assert(T->isInstantiationDependentType()); 3907 return LinkageInfo::external(); 3908 3909 case Type::ExtInt: 3910 case Type::Builtin: 3911 return LinkageInfo::external(); 3912 3913 case Type::Auto: 3914 case Type::DeducedTemplateSpecialization: 3915 return LinkageInfo::external(); 3916 3917 case Type::Record: 3918 case Type::Enum: 3919 return getDeclLinkageAndVisibility(cast<TagType>(T)->getDecl()); 3920 3921 case Type::Complex: 3922 return computeTypeLinkageInfo(cast<ComplexType>(T)->getElementType()); 3923 case Type::Pointer: 3924 return computeTypeLinkageInfo(cast<PointerType>(T)->getPointeeType()); 3925 case Type::BlockPointer: 3926 return computeTypeLinkageInfo(cast<BlockPointerType>(T)->getPointeeType()); 3927 case Type::LValueReference: 3928 case Type::RValueReference: 3929 return computeTypeLinkageInfo(cast<ReferenceType>(T)->getPointeeType()); 3930 case Type::MemberPointer: { 3931 const auto *MPT = cast<MemberPointerType>(T); 3932 LinkageInfo LV = computeTypeLinkageInfo(MPT->getClass()); 3933 LV.merge(computeTypeLinkageInfo(MPT->getPointeeType())); 3934 return LV; 3935 } 3936 case Type::ConstantArray: 3937 case Type::IncompleteArray: 3938 case Type::VariableArray: 3939 return computeTypeLinkageInfo(cast<ArrayType>(T)->getElementType()); 3940 case Type::Vector: 3941 case Type::ExtVector: 3942 return computeTypeLinkageInfo(cast<VectorType>(T)->getElementType()); 3943 case Type::ConstantMatrix: 3944 return computeTypeLinkageInfo( 3945 cast<ConstantMatrixType>(T)->getElementType()); 3946 case Type::FunctionNoProto: 3947 return computeTypeLinkageInfo(cast<FunctionType>(T)->getReturnType()); 3948 case Type::FunctionProto: { 3949 const auto *FPT = cast<FunctionProtoType>(T); 3950 LinkageInfo LV = computeTypeLinkageInfo(FPT->getReturnType()); 3951 for (const auto &ai : FPT->param_types()) 3952 LV.merge(computeTypeLinkageInfo(ai)); 3953 return LV; 3954 } 3955 case Type::ObjCInterface: 3956 return getDeclLinkageAndVisibility(cast<ObjCInterfaceType>(T)->getDecl()); 3957 case Type::ObjCObject: 3958 return computeTypeLinkageInfo(cast<ObjCObjectType>(T)->getBaseType()); 3959 case Type::ObjCObjectPointer: 3960 return computeTypeLinkageInfo( 3961 cast<ObjCObjectPointerType>(T)->getPointeeType()); 3962 case Type::Atomic: 3963 return computeTypeLinkageInfo(cast<AtomicType>(T)->getValueType()); 3964 case Type::Pipe: 3965 return computeTypeLinkageInfo(cast<PipeType>(T)->getElementType()); 3966 } 3967 3968 llvm_unreachable("unhandled type class"); 3969 } 3970 3971 bool Type::isLinkageValid() const { 3972 if (!TypeBits.isCacheValid()) 3973 return true; 3974 3975 Linkage L = LinkageComputer{} 3976 .computeTypeLinkageInfo(getCanonicalTypeInternal()) 3977 .getLinkage(); 3978 return L == TypeBits.getLinkage(); 3979 } 3980 3981 LinkageInfo LinkageComputer::getTypeLinkageAndVisibility(const Type *T) { 3982 if (!T->isCanonicalUnqualified()) 3983 return computeTypeLinkageInfo(T->getCanonicalTypeInternal()); 3984 3985 LinkageInfo LV = computeTypeLinkageInfo(T); 3986 assert(LV.getLinkage() == T->getLinkage()); 3987 return LV; 3988 } 3989 3990 LinkageInfo Type::getLinkageAndVisibility() const { 3991 return LinkageComputer{}.getTypeLinkageAndVisibility(this); 3992 } 3993 3994 Optional<NullabilityKind> 3995 Type::getNullability(const ASTContext &Context) const { 3996 QualType Type(this, 0); 3997 while (const auto *AT = Type->getAs<AttributedType>()) { 3998 // Check whether this is an attributed type with nullability 3999 // information. 4000 if (auto Nullability = AT->getImmediateNullability()) 4001 return Nullability; 4002 4003 Type = AT->getEquivalentType(); 4004 } 4005 return None; 4006 } 4007 4008 bool Type::canHaveNullability(bool ResultIfUnknown) const { 4009 QualType type = getCanonicalTypeInternal(); 4010 4011 switch (type->getTypeClass()) { 4012 // We'll only see canonical types here. 4013 #define NON_CANONICAL_TYPE(Class, Parent) \ 4014 case Type::Class: \ 4015 llvm_unreachable("non-canonical type"); 4016 #define TYPE(Class, Parent) 4017 #include "clang/AST/TypeNodes.inc" 4018 4019 // Pointer types. 4020 case Type::Pointer: 4021 case Type::BlockPointer: 4022 case Type::MemberPointer: 4023 case Type::ObjCObjectPointer: 4024 return true; 4025 4026 // Dependent types that could instantiate to pointer types. 4027 case Type::UnresolvedUsing: 4028 case Type::TypeOfExpr: 4029 case Type::TypeOf: 4030 case Type::Decltype: 4031 case Type::UnaryTransform: 4032 case Type::TemplateTypeParm: 4033 case Type::SubstTemplateTypeParmPack: 4034 case Type::DependentName: 4035 case Type::DependentTemplateSpecialization: 4036 case Type::Auto: 4037 return ResultIfUnknown; 4038 4039 // Dependent template specializations can instantiate to pointer 4040 // types unless they're known to be specializations of a class 4041 // template. 4042 case Type::TemplateSpecialization: 4043 if (TemplateDecl *templateDecl 4044 = cast<TemplateSpecializationType>(type.getTypePtr()) 4045 ->getTemplateName().getAsTemplateDecl()) { 4046 if (isa<ClassTemplateDecl>(templateDecl)) 4047 return false; 4048 } 4049 return ResultIfUnknown; 4050 4051 case Type::Builtin: 4052 switch (cast<BuiltinType>(type.getTypePtr())->getKind()) { 4053 // Signed, unsigned, and floating-point types cannot have nullability. 4054 #define SIGNED_TYPE(Id, SingletonId) case BuiltinType::Id: 4055 #define UNSIGNED_TYPE(Id, SingletonId) case BuiltinType::Id: 4056 #define FLOATING_TYPE(Id, SingletonId) case BuiltinType::Id: 4057 #define BUILTIN_TYPE(Id, SingletonId) 4058 #include "clang/AST/BuiltinTypes.def" 4059 return false; 4060 4061 // Dependent types that could instantiate to a pointer type. 4062 case BuiltinType::Dependent: 4063 case BuiltinType::Overload: 4064 case BuiltinType::BoundMember: 4065 case BuiltinType::PseudoObject: 4066 case BuiltinType::UnknownAny: 4067 case BuiltinType::ARCUnbridgedCast: 4068 return ResultIfUnknown; 4069 4070 case BuiltinType::Void: 4071 case BuiltinType::ObjCId: 4072 case BuiltinType::ObjCClass: 4073 case BuiltinType::ObjCSel: 4074 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 4075 case BuiltinType::Id: 4076 #include "clang/Basic/OpenCLImageTypes.def" 4077 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \ 4078 case BuiltinType::Id: 4079 #include "clang/Basic/OpenCLExtensionTypes.def" 4080 case BuiltinType::OCLSampler: 4081 case BuiltinType::OCLEvent: 4082 case BuiltinType::OCLClkEvent: 4083 case BuiltinType::OCLQueue: 4084 case BuiltinType::OCLReserveID: 4085 #define SVE_TYPE(Name, Id, SingletonId) \ 4086 case BuiltinType::Id: 4087 #include "clang/Basic/AArch64SVEACLETypes.def" 4088 case BuiltinType::BuiltinFn: 4089 case BuiltinType::NullPtr: 4090 case BuiltinType::IncompleteMatrixIdx: 4091 case BuiltinType::OMPArraySection: 4092 case BuiltinType::OMPArrayShaping: 4093 case BuiltinType::OMPIterator: 4094 return false; 4095 } 4096 llvm_unreachable("unknown builtin type"); 4097 4098 // Non-pointer types. 4099 case Type::Complex: 4100 case Type::LValueReference: 4101 case Type::RValueReference: 4102 case Type::ConstantArray: 4103 case Type::IncompleteArray: 4104 case Type::VariableArray: 4105 case Type::DependentSizedArray: 4106 case Type::DependentVector: 4107 case Type::DependentSizedExtVector: 4108 case Type::Vector: 4109 case Type::ExtVector: 4110 case Type::ConstantMatrix: 4111 case Type::DependentSizedMatrix: 4112 case Type::DependentAddressSpace: 4113 case Type::FunctionProto: 4114 case Type::FunctionNoProto: 4115 case Type::Record: 4116 case Type::DeducedTemplateSpecialization: 4117 case Type::Enum: 4118 case Type::InjectedClassName: 4119 case Type::PackExpansion: 4120 case Type::ObjCObject: 4121 case Type::ObjCInterface: 4122 case Type::Atomic: 4123 case Type::Pipe: 4124 case Type::ExtInt: 4125 case Type::DependentExtInt: 4126 return false; 4127 } 4128 llvm_unreachable("bad type kind!"); 4129 } 4130 4131 llvm::Optional<NullabilityKind> 4132 AttributedType::getImmediateNullability() const { 4133 if (getAttrKind() == attr::TypeNonNull) 4134 return NullabilityKind::NonNull; 4135 if (getAttrKind() == attr::TypeNullable) 4136 return NullabilityKind::Nullable; 4137 if (getAttrKind() == attr::TypeNullUnspecified) 4138 return NullabilityKind::Unspecified; 4139 return None; 4140 } 4141 4142 Optional<NullabilityKind> AttributedType::stripOuterNullability(QualType &T) { 4143 QualType AttrTy = T; 4144 if (auto MacroTy = dyn_cast<MacroQualifiedType>(T)) 4145 AttrTy = MacroTy->getUnderlyingType(); 4146 4147 if (auto attributed = dyn_cast<AttributedType>(AttrTy)) { 4148 if (auto nullability = attributed->getImmediateNullability()) { 4149 T = attributed->getModifiedType(); 4150 return nullability; 4151 } 4152 } 4153 4154 return None; 4155 } 4156 4157 bool Type::isBlockCompatibleObjCPointerType(ASTContext &ctx) const { 4158 const auto *objcPtr = getAs<ObjCObjectPointerType>(); 4159 if (!objcPtr) 4160 return false; 4161 4162 if (objcPtr->isObjCIdType()) { 4163 // id is always okay. 4164 return true; 4165 } 4166 4167 // Blocks are NSObjects. 4168 if (ObjCInterfaceDecl *iface = objcPtr->getInterfaceDecl()) { 4169 if (iface->getIdentifier() != ctx.getNSObjectName()) 4170 return false; 4171 4172 // Continue to check qualifiers, below. 4173 } else if (objcPtr->isObjCQualifiedIdType()) { 4174 // Continue to check qualifiers, below. 4175 } else { 4176 return false; 4177 } 4178 4179 // Check protocol qualifiers. 4180 for (ObjCProtocolDecl *proto : objcPtr->quals()) { 4181 // Blocks conform to NSObject and NSCopying. 4182 if (proto->getIdentifier() != ctx.getNSObjectName() && 4183 proto->getIdentifier() != ctx.getNSCopyingName()) 4184 return false; 4185 } 4186 4187 return true; 4188 } 4189 4190 Qualifiers::ObjCLifetime Type::getObjCARCImplicitLifetime() const { 4191 if (isObjCARCImplicitlyUnretainedType()) 4192 return Qualifiers::OCL_ExplicitNone; 4193 return Qualifiers::OCL_Strong; 4194 } 4195 4196 bool Type::isObjCARCImplicitlyUnretainedType() const { 4197 assert(isObjCLifetimeType() && 4198 "cannot query implicit lifetime for non-inferrable type"); 4199 4200 const Type *canon = getCanonicalTypeInternal().getTypePtr(); 4201 4202 // Walk down to the base type. We don't care about qualifiers for this. 4203 while (const auto *array = dyn_cast<ArrayType>(canon)) 4204 canon = array->getElementType().getTypePtr(); 4205 4206 if (const auto *opt = dyn_cast<ObjCObjectPointerType>(canon)) { 4207 // Class and Class<Protocol> don't require retention. 4208 if (opt->getObjectType()->isObjCClass()) 4209 return true; 4210 } 4211 4212 return false; 4213 } 4214 4215 bool Type::isObjCNSObjectType() const { 4216 const Type *cur = this; 4217 while (true) { 4218 if (const auto *typedefType = dyn_cast<TypedefType>(cur)) 4219 return typedefType->getDecl()->hasAttr<ObjCNSObjectAttr>(); 4220 4221 // Single-step desugar until we run out of sugar. 4222 QualType next = cur->getLocallyUnqualifiedSingleStepDesugaredType(); 4223 if (next.getTypePtr() == cur) return false; 4224 cur = next.getTypePtr(); 4225 } 4226 } 4227 4228 bool Type::isObjCIndependentClassType() const { 4229 if (const auto *typedefType = dyn_cast<TypedefType>(this)) 4230 return typedefType->getDecl()->hasAttr<ObjCIndependentClassAttr>(); 4231 return false; 4232 } 4233 4234 bool Type::isObjCRetainableType() const { 4235 return isObjCObjectPointerType() || 4236 isBlockPointerType() || 4237 isObjCNSObjectType(); 4238 } 4239 4240 bool Type::isObjCIndirectLifetimeType() const { 4241 if (isObjCLifetimeType()) 4242 return true; 4243 if (const auto *OPT = getAs<PointerType>()) 4244 return OPT->getPointeeType()->isObjCIndirectLifetimeType(); 4245 if (const auto *Ref = getAs<ReferenceType>()) 4246 return Ref->getPointeeType()->isObjCIndirectLifetimeType(); 4247 if (const auto *MemPtr = getAs<MemberPointerType>()) 4248 return MemPtr->getPointeeType()->isObjCIndirectLifetimeType(); 4249 return false; 4250 } 4251 4252 /// Returns true if objects of this type have lifetime semantics under 4253 /// ARC. 4254 bool Type::isObjCLifetimeType() const { 4255 const Type *type = this; 4256 while (const ArrayType *array = type->getAsArrayTypeUnsafe()) 4257 type = array->getElementType().getTypePtr(); 4258 return type->isObjCRetainableType(); 4259 } 4260 4261 /// Determine whether the given type T is a "bridgable" Objective-C type, 4262 /// which is either an Objective-C object pointer type or an 4263 bool Type::isObjCARCBridgableType() const { 4264 return isObjCObjectPointerType() || isBlockPointerType(); 4265 } 4266 4267 /// Determine whether the given type T is a "bridgeable" C type. 4268 bool Type::isCARCBridgableType() const { 4269 const auto *Pointer = getAs<PointerType>(); 4270 if (!Pointer) 4271 return false; 4272 4273 QualType Pointee = Pointer->getPointeeType(); 4274 return Pointee->isVoidType() || Pointee->isRecordType(); 4275 } 4276 4277 /// Check if the specified type is the CUDA device builtin surface type. 4278 bool Type::isCUDADeviceBuiltinSurfaceType() const { 4279 if (const auto *RT = getAs<RecordType>()) 4280 return RT->getDecl()->hasAttr<CUDADeviceBuiltinSurfaceTypeAttr>(); 4281 return false; 4282 } 4283 4284 /// Check if the specified type is the CUDA device builtin texture type. 4285 bool Type::isCUDADeviceBuiltinTextureType() const { 4286 if (const auto *RT = getAs<RecordType>()) 4287 return RT->getDecl()->hasAttr<CUDADeviceBuiltinTextureTypeAttr>(); 4288 return false; 4289 } 4290 4291 bool Type::hasSizedVLAType() const { 4292 if (!isVariablyModifiedType()) return false; 4293 4294 if (const auto *ptr = getAs<PointerType>()) 4295 return ptr->getPointeeType()->hasSizedVLAType(); 4296 if (const auto *ref = getAs<ReferenceType>()) 4297 return ref->getPointeeType()->hasSizedVLAType(); 4298 if (const ArrayType *arr = getAsArrayTypeUnsafe()) { 4299 if (isa<VariableArrayType>(arr) && 4300 cast<VariableArrayType>(arr)->getSizeExpr()) 4301 return true; 4302 4303 return arr->getElementType()->hasSizedVLAType(); 4304 } 4305 4306 return false; 4307 } 4308 4309 QualType::DestructionKind QualType::isDestructedTypeImpl(QualType type) { 4310 switch (type.getObjCLifetime()) { 4311 case Qualifiers::OCL_None: 4312 case Qualifiers::OCL_ExplicitNone: 4313 case Qualifiers::OCL_Autoreleasing: 4314 break; 4315 4316 case Qualifiers::OCL_Strong: 4317 return DK_objc_strong_lifetime; 4318 case Qualifiers::OCL_Weak: 4319 return DK_objc_weak_lifetime; 4320 } 4321 4322 if (const auto *RT = 4323 type->getBaseElementTypeUnsafe()->getAs<RecordType>()) { 4324 const RecordDecl *RD = RT->getDecl(); 4325 if (const auto *CXXRD = dyn_cast<CXXRecordDecl>(RD)) { 4326 /// Check if this is a C++ object with a non-trivial destructor. 4327 if (CXXRD->hasDefinition() && !CXXRD->hasTrivialDestructor()) 4328 return DK_cxx_destructor; 4329 } else { 4330 /// Check if this is a C struct that is non-trivial to destroy or an array 4331 /// that contains such a struct. 4332 if (RD->isNonTrivialToPrimitiveDestroy()) 4333 return DK_nontrivial_c_struct; 4334 } 4335 } 4336 4337 return DK_none; 4338 } 4339 4340 CXXRecordDecl *MemberPointerType::getMostRecentCXXRecordDecl() const { 4341 return getClass()->getAsCXXRecordDecl()->getMostRecentNonInjectedDecl(); 4342 } 4343 4344 void clang::FixedPointValueToString(SmallVectorImpl<char> &Str, 4345 llvm::APSInt Val, unsigned Scale) { 4346 llvm::FixedPointSemantics FXSema(Val.getBitWidth(), Scale, Val.isSigned(), 4347 /*IsSaturated=*/false, 4348 /*HasUnsignedPadding=*/false); 4349 llvm::APFixedPoint(Val, FXSema).toString(Str); 4350 } 4351 4352 AutoType::AutoType(QualType DeducedAsType, AutoTypeKeyword Keyword, 4353 TypeDependence ExtraDependence, 4354 ConceptDecl *TypeConstraintConcept, 4355 ArrayRef<TemplateArgument> TypeConstraintArgs) 4356 : DeducedType(Auto, DeducedAsType, ExtraDependence) { 4357 AutoTypeBits.Keyword = (unsigned)Keyword; 4358 AutoTypeBits.NumArgs = TypeConstraintArgs.size(); 4359 this->TypeConstraintConcept = TypeConstraintConcept; 4360 if (TypeConstraintConcept) { 4361 TemplateArgument *ArgBuffer = getArgBuffer(); 4362 for (const TemplateArgument &Arg : TypeConstraintArgs) { 4363 addDependence(toTypeDependence( 4364 Arg.getDependence() & TemplateArgumentDependence::UnexpandedPack)); 4365 4366 new (ArgBuffer++) TemplateArgument(Arg); 4367 } 4368 } 4369 } 4370 4371 void AutoType::Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context, 4372 QualType Deduced, AutoTypeKeyword Keyword, 4373 bool IsDependent, ConceptDecl *CD, 4374 ArrayRef<TemplateArgument> Arguments) { 4375 ID.AddPointer(Deduced.getAsOpaquePtr()); 4376 ID.AddInteger((unsigned)Keyword); 4377 ID.AddBoolean(IsDependent); 4378 ID.AddPointer(CD); 4379 for (const TemplateArgument &Arg : Arguments) 4380 Arg.Profile(ID, Context); 4381 } 4382