1 //===--- Type.cpp - Type representation and manipulation ------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements type-related functionality. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/AST/ASTContext.h" 15 #include "clang/AST/Attr.h" 16 #include "clang/AST/CharUnits.h" 17 #include "clang/AST/DeclCXX.h" 18 #include "clang/AST/DeclObjC.h" 19 #include "clang/AST/DeclTemplate.h" 20 #include "clang/AST/Expr.h" 21 #include "clang/AST/PrettyPrinter.h" 22 #include "clang/AST/Type.h" 23 #include "clang/AST/TypeVisitor.h" 24 #include "clang/Basic/Specifiers.h" 25 #include "llvm/ADT/APSInt.h" 26 #include "llvm/ADT/StringExtras.h" 27 #include "llvm/Support/raw_ostream.h" 28 #include <algorithm> 29 using namespace clang; 30 31 bool Qualifiers::isStrictSupersetOf(Qualifiers Other) const { 32 return (*this != Other) && 33 // CVR qualifiers superset 34 (((Mask & CVRMask) | (Other.Mask & CVRMask)) == (Mask & CVRMask)) && 35 // ObjC GC qualifiers superset 36 ((getObjCGCAttr() == Other.getObjCGCAttr()) || 37 (hasObjCGCAttr() && !Other.hasObjCGCAttr())) && 38 // Address space superset. 39 ((getAddressSpace() == Other.getAddressSpace()) || 40 (hasAddressSpace()&& !Other.hasAddressSpace())) && 41 // Lifetime qualifier superset. 42 ((getObjCLifetime() == Other.getObjCLifetime()) || 43 (hasObjCLifetime() && !Other.hasObjCLifetime())); 44 } 45 46 const IdentifierInfo* QualType::getBaseTypeIdentifier() const { 47 const Type* ty = getTypePtr(); 48 NamedDecl *ND = nullptr; 49 if (ty->isPointerType() || ty->isReferenceType()) 50 return ty->getPointeeType().getBaseTypeIdentifier(); 51 else if (ty->isRecordType()) 52 ND = ty->getAs<RecordType>()->getDecl(); 53 else if (ty->isEnumeralType()) 54 ND = ty->getAs<EnumType>()->getDecl(); 55 else if (ty->getTypeClass() == Type::Typedef) 56 ND = ty->getAs<TypedefType>()->getDecl(); 57 else if (ty->isArrayType()) 58 return ty->castAsArrayTypeUnsafe()-> 59 getElementType().getBaseTypeIdentifier(); 60 61 if (ND) 62 return ND->getIdentifier(); 63 return nullptr; 64 } 65 66 bool QualType::isConstant(QualType T, ASTContext &Ctx) { 67 if (T.isConstQualified()) 68 return true; 69 70 if (const ArrayType *AT = Ctx.getAsArrayType(T)) 71 return AT->getElementType().isConstant(Ctx); 72 73 return T.getAddressSpace() == LangAS::opencl_constant; 74 } 75 76 unsigned ConstantArrayType::getNumAddressingBits(ASTContext &Context, 77 QualType ElementType, 78 const llvm::APInt &NumElements) { 79 uint64_t ElementSize = Context.getTypeSizeInChars(ElementType).getQuantity(); 80 81 // Fast path the common cases so we can avoid the conservative computation 82 // below, which in common cases allocates "large" APSInt values, which are 83 // slow. 84 85 // If the element size is a power of 2, we can directly compute the additional 86 // number of addressing bits beyond those required for the element count. 87 if (llvm::isPowerOf2_64(ElementSize)) { 88 return NumElements.getActiveBits() + llvm::Log2_64(ElementSize); 89 } 90 91 // If both the element count and element size fit in 32-bits, we can do the 92 // computation directly in 64-bits. 93 if ((ElementSize >> 32) == 0 && NumElements.getBitWidth() <= 64 && 94 (NumElements.getZExtValue() >> 32) == 0) { 95 uint64_t TotalSize = NumElements.getZExtValue() * ElementSize; 96 return 64 - llvm::countLeadingZeros(TotalSize); 97 } 98 99 // Otherwise, use APSInt to handle arbitrary sized values. 100 llvm::APSInt SizeExtended(NumElements, true); 101 unsigned SizeTypeBits = Context.getTypeSize(Context.getSizeType()); 102 SizeExtended = SizeExtended.extend(std::max(SizeTypeBits, 103 SizeExtended.getBitWidth()) * 2); 104 105 llvm::APSInt TotalSize(llvm::APInt(SizeExtended.getBitWidth(), ElementSize)); 106 TotalSize *= SizeExtended; 107 108 return TotalSize.getActiveBits(); 109 } 110 111 unsigned ConstantArrayType::getMaxSizeBits(ASTContext &Context) { 112 unsigned Bits = Context.getTypeSize(Context.getSizeType()); 113 114 // Limit the number of bits in size_t so that maximal bit size fits 64 bit 115 // integer (see PR8256). We can do this as currently there is no hardware 116 // that supports full 64-bit virtual space. 117 if (Bits > 61) 118 Bits = 61; 119 120 return Bits; 121 } 122 123 DependentSizedArrayType::DependentSizedArrayType(const ASTContext &Context, 124 QualType et, QualType can, 125 Expr *e, ArraySizeModifier sm, 126 unsigned tq, 127 SourceRange brackets) 128 : ArrayType(DependentSizedArray, et, can, sm, tq, 129 (et->containsUnexpandedParameterPack() || 130 (e && e->containsUnexpandedParameterPack()))), 131 Context(Context), SizeExpr((Stmt*) e), Brackets(brackets) 132 { 133 } 134 135 void DependentSizedArrayType::Profile(llvm::FoldingSetNodeID &ID, 136 const ASTContext &Context, 137 QualType ET, 138 ArraySizeModifier SizeMod, 139 unsigned TypeQuals, 140 Expr *E) { 141 ID.AddPointer(ET.getAsOpaquePtr()); 142 ID.AddInteger(SizeMod); 143 ID.AddInteger(TypeQuals); 144 E->Profile(ID, Context, true); 145 } 146 147 DependentSizedExtVectorType::DependentSizedExtVectorType(const 148 ASTContext &Context, 149 QualType ElementType, 150 QualType can, 151 Expr *SizeExpr, 152 SourceLocation loc) 153 : Type(DependentSizedExtVector, can, /*Dependent=*/true, 154 /*InstantiationDependent=*/true, 155 ElementType->isVariablyModifiedType(), 156 (ElementType->containsUnexpandedParameterPack() || 157 (SizeExpr && SizeExpr->containsUnexpandedParameterPack()))), 158 Context(Context), SizeExpr(SizeExpr), ElementType(ElementType), 159 loc(loc) 160 { 161 } 162 163 void 164 DependentSizedExtVectorType::Profile(llvm::FoldingSetNodeID &ID, 165 const ASTContext &Context, 166 QualType ElementType, Expr *SizeExpr) { 167 ID.AddPointer(ElementType.getAsOpaquePtr()); 168 SizeExpr->Profile(ID, Context, true); 169 } 170 171 VectorType::VectorType(QualType vecType, unsigned nElements, QualType canonType, 172 VectorKind vecKind) 173 : VectorType(Vector, vecType, nElements, canonType, vecKind) {} 174 175 VectorType::VectorType(TypeClass tc, QualType vecType, unsigned nElements, 176 QualType canonType, VectorKind vecKind) 177 : Type(tc, canonType, vecType->isDependentType(), 178 vecType->isInstantiationDependentType(), 179 vecType->isVariablyModifiedType(), 180 vecType->containsUnexpandedParameterPack()), 181 ElementType(vecType) 182 { 183 VectorTypeBits.VecKind = vecKind; 184 VectorTypeBits.NumElements = nElements; 185 } 186 187 /// getArrayElementTypeNoTypeQual - If this is an array type, return the 188 /// element type of the array, potentially with type qualifiers missing. 189 /// This method should never be used when type qualifiers are meaningful. 190 const Type *Type::getArrayElementTypeNoTypeQual() const { 191 // If this is directly an array type, return it. 192 if (const ArrayType *ATy = dyn_cast<ArrayType>(this)) 193 return ATy->getElementType().getTypePtr(); 194 195 // If the canonical form of this type isn't the right kind, reject it. 196 if (!isa<ArrayType>(CanonicalType)) 197 return nullptr; 198 199 // If this is a typedef for an array type, strip the typedef off without 200 // losing all typedef information. 201 return cast<ArrayType>(getUnqualifiedDesugaredType()) 202 ->getElementType().getTypePtr(); 203 } 204 205 /// getDesugaredType - Return the specified type with any "sugar" removed from 206 /// the type. This takes off typedefs, typeof's etc. If the outer level of 207 /// the type is already concrete, it returns it unmodified. This is similar 208 /// to getting the canonical type, but it doesn't remove *all* typedefs. For 209 /// example, it returns "T*" as "T*", (not as "int*"), because the pointer is 210 /// concrete. 211 QualType QualType::getDesugaredType(QualType T, const ASTContext &Context) { 212 SplitQualType split = getSplitDesugaredType(T); 213 return Context.getQualifiedType(split.Ty, split.Quals); 214 } 215 216 QualType QualType::getSingleStepDesugaredTypeImpl(QualType type, 217 const ASTContext &Context) { 218 SplitQualType split = type.split(); 219 QualType desugar = split.Ty->getLocallyUnqualifiedSingleStepDesugaredType(); 220 return Context.getQualifiedType(desugar, split.Quals); 221 } 222 223 QualType Type::getLocallyUnqualifiedSingleStepDesugaredType() const { 224 switch (getTypeClass()) { 225 #define ABSTRACT_TYPE(Class, Parent) 226 #define TYPE(Class, Parent) \ 227 case Type::Class: { \ 228 const Class##Type *ty = cast<Class##Type>(this); \ 229 if (!ty->isSugared()) return QualType(ty, 0); \ 230 return ty->desugar(); \ 231 } 232 #include "clang/AST/TypeNodes.def" 233 } 234 llvm_unreachable("bad type kind!"); 235 } 236 237 SplitQualType QualType::getSplitDesugaredType(QualType T) { 238 QualifierCollector Qs; 239 240 QualType Cur = T; 241 while (true) { 242 const Type *CurTy = Qs.strip(Cur); 243 switch (CurTy->getTypeClass()) { 244 #define ABSTRACT_TYPE(Class, Parent) 245 #define TYPE(Class, Parent) \ 246 case Type::Class: { \ 247 const Class##Type *Ty = cast<Class##Type>(CurTy); \ 248 if (!Ty->isSugared()) \ 249 return SplitQualType(Ty, Qs); \ 250 Cur = Ty->desugar(); \ 251 break; \ 252 } 253 #include "clang/AST/TypeNodes.def" 254 } 255 } 256 } 257 258 SplitQualType QualType::getSplitUnqualifiedTypeImpl(QualType type) { 259 SplitQualType split = type.split(); 260 261 // All the qualifiers we've seen so far. 262 Qualifiers quals = split.Quals; 263 264 // The last type node we saw with any nodes inside it. 265 const Type *lastTypeWithQuals = split.Ty; 266 267 while (true) { 268 QualType next; 269 270 // Do a single-step desugar, aborting the loop if the type isn't 271 // sugared. 272 switch (split.Ty->getTypeClass()) { 273 #define ABSTRACT_TYPE(Class, Parent) 274 #define TYPE(Class, Parent) \ 275 case Type::Class: { \ 276 const Class##Type *ty = cast<Class##Type>(split.Ty); \ 277 if (!ty->isSugared()) goto done; \ 278 next = ty->desugar(); \ 279 break; \ 280 } 281 #include "clang/AST/TypeNodes.def" 282 } 283 284 // Otherwise, split the underlying type. If that yields qualifiers, 285 // update the information. 286 split = next.split(); 287 if (!split.Quals.empty()) { 288 lastTypeWithQuals = split.Ty; 289 quals.addConsistentQualifiers(split.Quals); 290 } 291 } 292 293 done: 294 return SplitQualType(lastTypeWithQuals, quals); 295 } 296 297 QualType QualType::IgnoreParens(QualType T) { 298 // FIXME: this seems inherently un-qualifiers-safe. 299 while (const ParenType *PT = T->getAs<ParenType>()) 300 T = PT->getInnerType(); 301 return T; 302 } 303 304 /// \brief This will check for a T (which should be a Type which can act as 305 /// sugar, such as a TypedefType) by removing any existing sugar until it 306 /// reaches a T or a non-sugared type. 307 template<typename T> static const T *getAsSugar(const Type *Cur) { 308 while (true) { 309 if (const T *Sugar = dyn_cast<T>(Cur)) 310 return Sugar; 311 switch (Cur->getTypeClass()) { 312 #define ABSTRACT_TYPE(Class, Parent) 313 #define TYPE(Class, Parent) \ 314 case Type::Class: { \ 315 const Class##Type *Ty = cast<Class##Type>(Cur); \ 316 if (!Ty->isSugared()) return 0; \ 317 Cur = Ty->desugar().getTypePtr(); \ 318 break; \ 319 } 320 #include "clang/AST/TypeNodes.def" 321 } 322 } 323 } 324 325 template <> const TypedefType *Type::getAs() const { 326 return getAsSugar<TypedefType>(this); 327 } 328 329 template <> const TemplateSpecializationType *Type::getAs() const { 330 return getAsSugar<TemplateSpecializationType>(this); 331 } 332 333 template <> const AttributedType *Type::getAs() const { 334 return getAsSugar<AttributedType>(this); 335 } 336 337 /// getUnqualifiedDesugaredType - Pull any qualifiers and syntactic 338 /// sugar off the given type. This should produce an object of the 339 /// same dynamic type as the canonical type. 340 const Type *Type::getUnqualifiedDesugaredType() const { 341 const Type *Cur = this; 342 343 while (true) { 344 switch (Cur->getTypeClass()) { 345 #define ABSTRACT_TYPE(Class, Parent) 346 #define TYPE(Class, Parent) \ 347 case Class: { \ 348 const Class##Type *Ty = cast<Class##Type>(Cur); \ 349 if (!Ty->isSugared()) return Cur; \ 350 Cur = Ty->desugar().getTypePtr(); \ 351 break; \ 352 } 353 #include "clang/AST/TypeNodes.def" 354 } 355 } 356 } 357 bool Type::isClassType() const { 358 if (const RecordType *RT = getAs<RecordType>()) 359 return RT->getDecl()->isClass(); 360 return false; 361 } 362 bool Type::isStructureType() const { 363 if (const RecordType *RT = getAs<RecordType>()) 364 return RT->getDecl()->isStruct(); 365 return false; 366 } 367 bool Type::isInterfaceType() const { 368 if (const RecordType *RT = getAs<RecordType>()) 369 return RT->getDecl()->isInterface(); 370 return false; 371 } 372 bool Type::isStructureOrClassType() const { 373 if (const RecordType *RT = getAs<RecordType>()) { 374 RecordDecl *RD = RT->getDecl(); 375 return RD->isStruct() || RD->isClass() || RD->isInterface(); 376 } 377 return false; 378 } 379 bool Type::isVoidPointerType() const { 380 if (const PointerType *PT = getAs<PointerType>()) 381 return PT->getPointeeType()->isVoidType(); 382 return false; 383 } 384 385 bool Type::isUnionType() const { 386 if (const RecordType *RT = getAs<RecordType>()) 387 return RT->getDecl()->isUnion(); 388 return false; 389 } 390 391 bool Type::isComplexType() const { 392 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType)) 393 return CT->getElementType()->isFloatingType(); 394 return false; 395 } 396 397 bool Type::isComplexIntegerType() const { 398 // Check for GCC complex integer extension. 399 return getAsComplexIntegerType(); 400 } 401 402 const ComplexType *Type::getAsComplexIntegerType() const { 403 if (const ComplexType *Complex = getAs<ComplexType>()) 404 if (Complex->getElementType()->isIntegerType()) 405 return Complex; 406 return nullptr; 407 } 408 409 QualType Type::getPointeeType() const { 410 if (const PointerType *PT = getAs<PointerType>()) 411 return PT->getPointeeType(); 412 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) 413 return OPT->getPointeeType(); 414 if (const BlockPointerType *BPT = getAs<BlockPointerType>()) 415 return BPT->getPointeeType(); 416 if (const ReferenceType *RT = getAs<ReferenceType>()) 417 return RT->getPointeeType(); 418 if (const MemberPointerType *MPT = getAs<MemberPointerType>()) 419 return MPT->getPointeeType(); 420 if (const DecayedType *DT = getAs<DecayedType>()) 421 return DT->getPointeeType(); 422 return QualType(); 423 } 424 425 const RecordType *Type::getAsStructureType() const { 426 // If this is directly a structure type, return it. 427 if (const RecordType *RT = dyn_cast<RecordType>(this)) { 428 if (RT->getDecl()->isStruct()) 429 return RT; 430 } 431 432 // If the canonical form of this type isn't the right kind, reject it. 433 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) { 434 if (!RT->getDecl()->isStruct()) 435 return nullptr; 436 437 // If this is a typedef for a structure type, strip the typedef off without 438 // losing all typedef information. 439 return cast<RecordType>(getUnqualifiedDesugaredType()); 440 } 441 return nullptr; 442 } 443 444 const RecordType *Type::getAsUnionType() const { 445 // If this is directly a union type, return it. 446 if (const RecordType *RT = dyn_cast<RecordType>(this)) { 447 if (RT->getDecl()->isUnion()) 448 return RT; 449 } 450 451 // If the canonical form of this type isn't the right kind, reject it. 452 if (const RecordType *RT = dyn_cast<RecordType>(CanonicalType)) { 453 if (!RT->getDecl()->isUnion()) 454 return nullptr; 455 456 // If this is a typedef for a union type, strip the typedef off without 457 // losing all typedef information. 458 return cast<RecordType>(getUnqualifiedDesugaredType()); 459 } 460 461 return nullptr; 462 } 463 464 ObjCObjectType::ObjCObjectType(QualType Canonical, QualType Base, 465 ObjCProtocolDecl * const *Protocols, 466 unsigned NumProtocols) 467 : Type(ObjCObject, Canonical, false, false, false, false), 468 BaseType(Base) 469 { 470 ObjCObjectTypeBits.NumProtocols = NumProtocols; 471 assert(getNumProtocols() == NumProtocols && 472 "bitfield overflow in protocol count"); 473 if (NumProtocols) 474 memcpy(getProtocolStorage(), Protocols, 475 NumProtocols * sizeof(ObjCProtocolDecl*)); 476 } 477 478 const ObjCObjectType *Type::getAsObjCQualifiedInterfaceType() const { 479 // There is no sugar for ObjCObjectType's, just return the canonical 480 // type pointer if it is the right class. There is no typedef information to 481 // return and these cannot be Address-space qualified. 482 if (const ObjCObjectType *T = getAs<ObjCObjectType>()) 483 if (T->getNumProtocols() && T->getInterface()) 484 return T; 485 return nullptr; 486 } 487 488 bool Type::isObjCQualifiedInterfaceType() const { 489 return getAsObjCQualifiedInterfaceType() != nullptr; 490 } 491 492 const ObjCObjectPointerType *Type::getAsObjCQualifiedIdType() const { 493 // There is no sugar for ObjCQualifiedIdType's, just return the canonical 494 // type pointer if it is the right class. 495 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) { 496 if (OPT->isObjCQualifiedIdType()) 497 return OPT; 498 } 499 return nullptr; 500 } 501 502 const ObjCObjectPointerType *Type::getAsObjCQualifiedClassType() const { 503 // There is no sugar for ObjCQualifiedClassType's, just return the canonical 504 // type pointer if it is the right class. 505 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) { 506 if (OPT->isObjCQualifiedClassType()) 507 return OPT; 508 } 509 return nullptr; 510 } 511 512 const ObjCObjectPointerType *Type::getAsObjCInterfacePointerType() const { 513 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) { 514 if (OPT->getInterfaceType()) 515 return OPT; 516 } 517 return nullptr; 518 } 519 520 const CXXRecordDecl *Type::getPointeeCXXRecordDecl() const { 521 QualType PointeeType; 522 if (const PointerType *PT = getAs<PointerType>()) 523 PointeeType = PT->getPointeeType(); 524 else if (const ReferenceType *RT = getAs<ReferenceType>()) 525 PointeeType = RT->getPointeeType(); 526 else 527 return nullptr; 528 529 if (const RecordType *RT = PointeeType->getAs<RecordType>()) 530 return dyn_cast<CXXRecordDecl>(RT->getDecl()); 531 532 return nullptr; 533 } 534 535 CXXRecordDecl *Type::getAsCXXRecordDecl() const { 536 return dyn_cast_or_null<CXXRecordDecl>(getAsTagDecl()); 537 } 538 539 TagDecl *Type::getAsTagDecl() const { 540 if (const auto *TT = getAs<TagType>()) 541 return cast<TagDecl>(TT->getDecl()); 542 if (const auto *Injected = getAs<InjectedClassNameType>()) 543 return Injected->getDecl(); 544 545 return nullptr; 546 } 547 548 namespace { 549 class GetContainedAutoVisitor : 550 public TypeVisitor<GetContainedAutoVisitor, AutoType*> { 551 public: 552 using TypeVisitor<GetContainedAutoVisitor, AutoType*>::Visit; 553 AutoType *Visit(QualType T) { 554 if (T.isNull()) 555 return nullptr; 556 return Visit(T.getTypePtr()); 557 } 558 559 // The 'auto' type itself. 560 AutoType *VisitAutoType(const AutoType *AT) { 561 return const_cast<AutoType*>(AT); 562 } 563 564 // Only these types can contain the desired 'auto' type. 565 AutoType *VisitPointerType(const PointerType *T) { 566 return Visit(T->getPointeeType()); 567 } 568 AutoType *VisitBlockPointerType(const BlockPointerType *T) { 569 return Visit(T->getPointeeType()); 570 } 571 AutoType *VisitReferenceType(const ReferenceType *T) { 572 return Visit(T->getPointeeTypeAsWritten()); 573 } 574 AutoType *VisitMemberPointerType(const MemberPointerType *T) { 575 return Visit(T->getPointeeType()); 576 } 577 AutoType *VisitArrayType(const ArrayType *T) { 578 return Visit(T->getElementType()); 579 } 580 AutoType *VisitDependentSizedExtVectorType( 581 const DependentSizedExtVectorType *T) { 582 return Visit(T->getElementType()); 583 } 584 AutoType *VisitVectorType(const VectorType *T) { 585 return Visit(T->getElementType()); 586 } 587 AutoType *VisitFunctionType(const FunctionType *T) { 588 return Visit(T->getReturnType()); 589 } 590 AutoType *VisitParenType(const ParenType *T) { 591 return Visit(T->getInnerType()); 592 } 593 AutoType *VisitAttributedType(const AttributedType *T) { 594 return Visit(T->getModifiedType()); 595 } 596 AutoType *VisitAdjustedType(const AdjustedType *T) { 597 return Visit(T->getOriginalType()); 598 } 599 }; 600 } 601 602 AutoType *Type::getContainedAutoType() const { 603 return GetContainedAutoVisitor().Visit(this); 604 } 605 606 bool Type::hasIntegerRepresentation() const { 607 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType)) 608 return VT->getElementType()->isIntegerType(); 609 else 610 return isIntegerType(); 611 } 612 613 /// \brief Determine whether this type is an integral type. 614 /// 615 /// This routine determines whether the given type is an integral type per 616 /// C++ [basic.fundamental]p7. Although the C standard does not define the 617 /// term "integral type", it has a similar term "integer type", and in C++ 618 /// the two terms are equivalent. However, C's "integer type" includes 619 /// enumeration types, while C++'s "integer type" does not. The \c ASTContext 620 /// parameter is used to determine whether we should be following the C or 621 /// C++ rules when determining whether this type is an integral/integer type. 622 /// 623 /// For cases where C permits "an integer type" and C++ permits "an integral 624 /// type", use this routine. 625 /// 626 /// For cases where C permits "an integer type" and C++ permits "an integral 627 /// or enumeration type", use \c isIntegralOrEnumerationType() instead. 628 /// 629 /// \param Ctx The context in which this type occurs. 630 /// 631 /// \returns true if the type is considered an integral type, false otherwise. 632 bool Type::isIntegralType(ASTContext &Ctx) const { 633 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) 634 return BT->getKind() >= BuiltinType::Bool && 635 BT->getKind() <= BuiltinType::Int128; 636 637 if (!Ctx.getLangOpts().CPlusPlus) 638 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) 639 return ET->getDecl()->isComplete(); // Complete enum types are integral in C. 640 641 return false; 642 } 643 644 645 bool Type::isIntegralOrUnscopedEnumerationType() const { 646 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) 647 return BT->getKind() >= BuiltinType::Bool && 648 BT->getKind() <= BuiltinType::Int128; 649 650 // Check for a complete enum type; incomplete enum types are not properly an 651 // enumeration type in the sense required here. 652 // C++0x: However, if the underlying type of the enum is fixed, it is 653 // considered complete. 654 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) 655 return ET->getDecl()->isComplete() && !ET->getDecl()->isScoped(); 656 657 return false; 658 } 659 660 661 662 bool Type::isCharType() const { 663 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) 664 return BT->getKind() == BuiltinType::Char_U || 665 BT->getKind() == BuiltinType::UChar || 666 BT->getKind() == BuiltinType::Char_S || 667 BT->getKind() == BuiltinType::SChar; 668 return false; 669 } 670 671 bool Type::isWideCharType() const { 672 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) 673 return BT->getKind() == BuiltinType::WChar_S || 674 BT->getKind() == BuiltinType::WChar_U; 675 return false; 676 } 677 678 bool Type::isChar16Type() const { 679 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) 680 return BT->getKind() == BuiltinType::Char16; 681 return false; 682 } 683 684 bool Type::isChar32Type() const { 685 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) 686 return BT->getKind() == BuiltinType::Char32; 687 return false; 688 } 689 690 /// \brief Determine whether this type is any of the built-in character 691 /// types. 692 bool Type::isAnyCharacterType() const { 693 const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType); 694 if (!BT) return false; 695 switch (BT->getKind()) { 696 default: return false; 697 case BuiltinType::Char_U: 698 case BuiltinType::UChar: 699 case BuiltinType::WChar_U: 700 case BuiltinType::Char16: 701 case BuiltinType::Char32: 702 case BuiltinType::Char_S: 703 case BuiltinType::SChar: 704 case BuiltinType::WChar_S: 705 return true; 706 } 707 } 708 709 /// isSignedIntegerType - Return true if this is an integer type that is 710 /// signed, according to C99 6.2.5p4 [char, signed char, short, int, long..], 711 /// an enum decl which has a signed representation 712 bool Type::isSignedIntegerType() const { 713 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) { 714 return BT->getKind() >= BuiltinType::Char_S && 715 BT->getKind() <= BuiltinType::Int128; 716 } 717 718 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) { 719 // Incomplete enum types are not treated as integer types. 720 // FIXME: In C++, enum types are never integer types. 721 if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped()) 722 return ET->getDecl()->getIntegerType()->isSignedIntegerType(); 723 } 724 725 return false; 726 } 727 728 bool Type::isSignedIntegerOrEnumerationType() const { 729 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) { 730 return BT->getKind() >= BuiltinType::Char_S && 731 BT->getKind() <= BuiltinType::Int128; 732 } 733 734 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) { 735 if (ET->getDecl()->isComplete()) 736 return ET->getDecl()->getIntegerType()->isSignedIntegerType(); 737 } 738 739 return false; 740 } 741 742 bool Type::hasSignedIntegerRepresentation() const { 743 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType)) 744 return VT->getElementType()->isSignedIntegerOrEnumerationType(); 745 else 746 return isSignedIntegerOrEnumerationType(); 747 } 748 749 /// isUnsignedIntegerType - Return true if this is an integer type that is 750 /// unsigned, according to C99 6.2.5p6 [which returns true for _Bool], an enum 751 /// decl which has an unsigned representation 752 bool Type::isUnsignedIntegerType() const { 753 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) { 754 return BT->getKind() >= BuiltinType::Bool && 755 BT->getKind() <= BuiltinType::UInt128; 756 } 757 758 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) { 759 // Incomplete enum types are not treated as integer types. 760 // FIXME: In C++, enum types are never integer types. 761 if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped()) 762 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); 763 } 764 765 return false; 766 } 767 768 bool Type::isUnsignedIntegerOrEnumerationType() const { 769 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) { 770 return BT->getKind() >= BuiltinType::Bool && 771 BT->getKind() <= BuiltinType::UInt128; 772 } 773 774 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) { 775 if (ET->getDecl()->isComplete()) 776 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); 777 } 778 779 return false; 780 } 781 782 bool Type::hasUnsignedIntegerRepresentation() const { 783 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType)) 784 return VT->getElementType()->isUnsignedIntegerOrEnumerationType(); 785 else 786 return isUnsignedIntegerOrEnumerationType(); 787 } 788 789 bool Type::isFloatingType() const { 790 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) 791 return BT->getKind() >= BuiltinType::Half && 792 BT->getKind() <= BuiltinType::LongDouble; 793 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType)) 794 return CT->getElementType()->isFloatingType(); 795 return false; 796 } 797 798 bool Type::hasFloatingRepresentation() const { 799 if (const VectorType *VT = dyn_cast<VectorType>(CanonicalType)) 800 return VT->getElementType()->isFloatingType(); 801 else 802 return isFloatingType(); 803 } 804 805 bool Type::isRealFloatingType() const { 806 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) 807 return BT->isFloatingPoint(); 808 return false; 809 } 810 811 bool Type::isRealType() const { 812 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) 813 return BT->getKind() >= BuiltinType::Bool && 814 BT->getKind() <= BuiltinType::LongDouble; 815 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) 816 return ET->getDecl()->isComplete() && !ET->getDecl()->isScoped(); 817 return false; 818 } 819 820 bool Type::isArithmeticType() const { 821 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) 822 return BT->getKind() >= BuiltinType::Bool && 823 BT->getKind() <= BuiltinType::LongDouble; 824 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) 825 // GCC allows forward declaration of enum types (forbid by C99 6.7.2.3p2). 826 // If a body isn't seen by the time we get here, return false. 827 // 828 // C++0x: Enumerations are not arithmetic types. For now, just return 829 // false for scoped enumerations since that will disable any 830 // unwanted implicit conversions. 831 return !ET->getDecl()->isScoped() && ET->getDecl()->isComplete(); 832 return isa<ComplexType>(CanonicalType); 833 } 834 835 Type::ScalarTypeKind Type::getScalarTypeKind() const { 836 assert(isScalarType()); 837 838 const Type *T = CanonicalType.getTypePtr(); 839 if (const BuiltinType *BT = dyn_cast<BuiltinType>(T)) { 840 if (BT->getKind() == BuiltinType::Bool) return STK_Bool; 841 if (BT->getKind() == BuiltinType::NullPtr) return STK_CPointer; 842 if (BT->isInteger()) return STK_Integral; 843 if (BT->isFloatingPoint()) return STK_Floating; 844 llvm_unreachable("unknown scalar builtin type"); 845 } else if (isa<PointerType>(T)) { 846 return STK_CPointer; 847 } else if (isa<BlockPointerType>(T)) { 848 return STK_BlockPointer; 849 } else if (isa<ObjCObjectPointerType>(T)) { 850 return STK_ObjCObjectPointer; 851 } else if (isa<MemberPointerType>(T)) { 852 return STK_MemberPointer; 853 } else if (isa<EnumType>(T)) { 854 assert(cast<EnumType>(T)->getDecl()->isComplete()); 855 return STK_Integral; 856 } else if (const ComplexType *CT = dyn_cast<ComplexType>(T)) { 857 if (CT->getElementType()->isRealFloatingType()) 858 return STK_FloatingComplex; 859 return STK_IntegralComplex; 860 } 861 862 llvm_unreachable("unknown scalar type"); 863 } 864 865 /// \brief Determines whether the type is a C++ aggregate type or C 866 /// aggregate or union type. 867 /// 868 /// An aggregate type is an array or a class type (struct, union, or 869 /// class) that has no user-declared constructors, no private or 870 /// protected non-static data members, no base classes, and no virtual 871 /// functions (C++ [dcl.init.aggr]p1). The notion of an aggregate type 872 /// subsumes the notion of C aggregates (C99 6.2.5p21) because it also 873 /// includes union types. 874 bool Type::isAggregateType() const { 875 if (const RecordType *Record = dyn_cast<RecordType>(CanonicalType)) { 876 if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(Record->getDecl())) 877 return ClassDecl->isAggregate(); 878 879 return true; 880 } 881 882 return isa<ArrayType>(CanonicalType); 883 } 884 885 /// isConstantSizeType - Return true if this is not a variable sized type, 886 /// according to the rules of C99 6.7.5p3. It is not legal to call this on 887 /// incomplete types or dependent types. 888 bool Type::isConstantSizeType() const { 889 assert(!isIncompleteType() && "This doesn't make sense for incomplete types"); 890 assert(!isDependentType() && "This doesn't make sense for dependent types"); 891 // The VAT must have a size, as it is known to be complete. 892 return !isa<VariableArrayType>(CanonicalType); 893 } 894 895 /// isIncompleteType - Return true if this is an incomplete type (C99 6.2.5p1) 896 /// - a type that can describe objects, but which lacks information needed to 897 /// determine its size. 898 bool Type::isIncompleteType(NamedDecl **Def) const { 899 if (Def) 900 *Def = nullptr; 901 902 switch (CanonicalType->getTypeClass()) { 903 default: return false; 904 case Builtin: 905 // Void is the only incomplete builtin type. Per C99 6.2.5p19, it can never 906 // be completed. 907 return isVoidType(); 908 case Enum: { 909 EnumDecl *EnumD = cast<EnumType>(CanonicalType)->getDecl(); 910 if (Def) 911 *Def = EnumD; 912 913 // An enumeration with fixed underlying type is complete (C++0x 7.2p3). 914 if (EnumD->isFixed()) 915 return false; 916 917 return !EnumD->isCompleteDefinition(); 918 } 919 case Record: { 920 // A tagged type (struct/union/enum/class) is incomplete if the decl is a 921 // forward declaration, but not a full definition (C99 6.2.5p22). 922 RecordDecl *Rec = cast<RecordType>(CanonicalType)->getDecl(); 923 if (Def) 924 *Def = Rec; 925 return !Rec->isCompleteDefinition(); 926 } 927 case ConstantArray: 928 // An array is incomplete if its element type is incomplete 929 // (C++ [dcl.array]p1). 930 // We don't handle variable arrays (they're not allowed in C++) or 931 // dependent-sized arrays (dependent types are never treated as incomplete). 932 return cast<ArrayType>(CanonicalType)->getElementType() 933 ->isIncompleteType(Def); 934 case IncompleteArray: 935 // An array of unknown size is an incomplete type (C99 6.2.5p22). 936 return true; 937 case ObjCObject: 938 return cast<ObjCObjectType>(CanonicalType)->getBaseType() 939 ->isIncompleteType(Def); 940 case ObjCInterface: { 941 // ObjC interfaces are incomplete if they are @class, not @interface. 942 ObjCInterfaceDecl *Interface 943 = cast<ObjCInterfaceType>(CanonicalType)->getDecl(); 944 if (Def) 945 *Def = Interface; 946 return !Interface->hasDefinition(); 947 } 948 } 949 } 950 951 bool QualType::isPODType(ASTContext &Context) const { 952 // C++11 has a more relaxed definition of POD. 953 if (Context.getLangOpts().CPlusPlus11) 954 return isCXX11PODType(Context); 955 956 return isCXX98PODType(Context); 957 } 958 959 bool QualType::isCXX98PODType(ASTContext &Context) const { 960 // The compiler shouldn't query this for incomplete types, but the user might. 961 // We return false for that case. Except for incomplete arrays of PODs, which 962 // are PODs according to the standard. 963 if (isNull()) 964 return 0; 965 966 if ((*this)->isIncompleteArrayType()) 967 return Context.getBaseElementType(*this).isCXX98PODType(Context); 968 969 if ((*this)->isIncompleteType()) 970 return false; 971 972 if (Context.getLangOpts().ObjCAutoRefCount) { 973 switch (getObjCLifetime()) { 974 case Qualifiers::OCL_ExplicitNone: 975 return true; 976 977 case Qualifiers::OCL_Strong: 978 case Qualifiers::OCL_Weak: 979 case Qualifiers::OCL_Autoreleasing: 980 return false; 981 982 case Qualifiers::OCL_None: 983 break; 984 } 985 } 986 987 QualType CanonicalType = getTypePtr()->CanonicalType; 988 switch (CanonicalType->getTypeClass()) { 989 // Everything not explicitly mentioned is not POD. 990 default: return false; 991 case Type::VariableArray: 992 case Type::ConstantArray: 993 // IncompleteArray is handled above. 994 return Context.getBaseElementType(*this).isCXX98PODType(Context); 995 996 case Type::ObjCObjectPointer: 997 case Type::BlockPointer: 998 case Type::Builtin: 999 case Type::Complex: 1000 case Type::Pointer: 1001 case Type::MemberPointer: 1002 case Type::Vector: 1003 case Type::ExtVector: 1004 return true; 1005 1006 case Type::Enum: 1007 return true; 1008 1009 case Type::Record: 1010 if (CXXRecordDecl *ClassDecl 1011 = dyn_cast<CXXRecordDecl>(cast<RecordType>(CanonicalType)->getDecl())) 1012 return ClassDecl->isPOD(); 1013 1014 // C struct/union is POD. 1015 return true; 1016 } 1017 } 1018 1019 bool QualType::isTrivialType(ASTContext &Context) const { 1020 // The compiler shouldn't query this for incomplete types, but the user might. 1021 // We return false for that case. Except for incomplete arrays of PODs, which 1022 // are PODs according to the standard. 1023 if (isNull()) 1024 return 0; 1025 1026 if ((*this)->isArrayType()) 1027 return Context.getBaseElementType(*this).isTrivialType(Context); 1028 1029 // Return false for incomplete types after skipping any incomplete array 1030 // types which are expressly allowed by the standard and thus our API. 1031 if ((*this)->isIncompleteType()) 1032 return false; 1033 1034 if (Context.getLangOpts().ObjCAutoRefCount) { 1035 switch (getObjCLifetime()) { 1036 case Qualifiers::OCL_ExplicitNone: 1037 return true; 1038 1039 case Qualifiers::OCL_Strong: 1040 case Qualifiers::OCL_Weak: 1041 case Qualifiers::OCL_Autoreleasing: 1042 return false; 1043 1044 case Qualifiers::OCL_None: 1045 if ((*this)->isObjCLifetimeType()) 1046 return false; 1047 break; 1048 } 1049 } 1050 1051 QualType CanonicalType = getTypePtr()->CanonicalType; 1052 if (CanonicalType->isDependentType()) 1053 return false; 1054 1055 // C++0x [basic.types]p9: 1056 // Scalar types, trivial class types, arrays of such types, and 1057 // cv-qualified versions of these types are collectively called trivial 1058 // types. 1059 1060 // As an extension, Clang treats vector types as Scalar types. 1061 if (CanonicalType->isScalarType() || CanonicalType->isVectorType()) 1062 return true; 1063 if (const RecordType *RT = CanonicalType->getAs<RecordType>()) { 1064 if (const CXXRecordDecl *ClassDecl = 1065 dyn_cast<CXXRecordDecl>(RT->getDecl())) { 1066 // C++11 [class]p6: 1067 // A trivial class is a class that has a default constructor, 1068 // has no non-trivial default constructors, and is trivially 1069 // copyable. 1070 return ClassDecl->hasDefaultConstructor() && 1071 !ClassDecl->hasNonTrivialDefaultConstructor() && 1072 ClassDecl->isTriviallyCopyable(); 1073 } 1074 1075 return true; 1076 } 1077 1078 // No other types can match. 1079 return false; 1080 } 1081 1082 bool QualType::isTriviallyCopyableType(ASTContext &Context) const { 1083 if ((*this)->isArrayType()) 1084 return Context.getBaseElementType(*this).isTriviallyCopyableType(Context); 1085 1086 if (Context.getLangOpts().ObjCAutoRefCount) { 1087 switch (getObjCLifetime()) { 1088 case Qualifiers::OCL_ExplicitNone: 1089 return true; 1090 1091 case Qualifiers::OCL_Strong: 1092 case Qualifiers::OCL_Weak: 1093 case Qualifiers::OCL_Autoreleasing: 1094 return false; 1095 1096 case Qualifiers::OCL_None: 1097 if ((*this)->isObjCLifetimeType()) 1098 return false; 1099 break; 1100 } 1101 } 1102 1103 // C++11 [basic.types]p9 1104 // Scalar types, trivially copyable class types, arrays of such types, and 1105 // non-volatile const-qualified versions of these types are collectively 1106 // called trivially copyable types. 1107 1108 QualType CanonicalType = getCanonicalType(); 1109 if (CanonicalType->isDependentType()) 1110 return false; 1111 1112 if (CanonicalType.isVolatileQualified()) 1113 return false; 1114 1115 // Return false for incomplete types after skipping any incomplete array types 1116 // which are expressly allowed by the standard and thus our API. 1117 if (CanonicalType->isIncompleteType()) 1118 return false; 1119 1120 // As an extension, Clang treats vector types as Scalar types. 1121 if (CanonicalType->isScalarType() || CanonicalType->isVectorType()) 1122 return true; 1123 1124 if (const RecordType *RT = CanonicalType->getAs<RecordType>()) { 1125 if (const CXXRecordDecl *ClassDecl = 1126 dyn_cast<CXXRecordDecl>(RT->getDecl())) { 1127 if (!ClassDecl->isTriviallyCopyable()) return false; 1128 } 1129 1130 return true; 1131 } 1132 1133 // No other types can match. 1134 return false; 1135 } 1136 1137 1138 1139 bool Type::isLiteralType(const ASTContext &Ctx) const { 1140 if (isDependentType()) 1141 return false; 1142 1143 // C++1y [basic.types]p10: 1144 // A type is a literal type if it is: 1145 // -- cv void; or 1146 if (Ctx.getLangOpts().CPlusPlus14 && isVoidType()) 1147 return true; 1148 1149 // C++11 [basic.types]p10: 1150 // A type is a literal type if it is: 1151 // [...] 1152 // -- an array of literal type other than an array of runtime bound; or 1153 if (isVariableArrayType()) 1154 return false; 1155 const Type *BaseTy = getBaseElementTypeUnsafe(); 1156 assert(BaseTy && "NULL element type"); 1157 1158 // Return false for incomplete types after skipping any incomplete array 1159 // types; those are expressly allowed by the standard and thus our API. 1160 if (BaseTy->isIncompleteType()) 1161 return false; 1162 1163 // C++11 [basic.types]p10: 1164 // A type is a literal type if it is: 1165 // -- a scalar type; or 1166 // As an extension, Clang treats vector types and complex types as 1167 // literal types. 1168 if (BaseTy->isScalarType() || BaseTy->isVectorType() || 1169 BaseTy->isAnyComplexType()) 1170 return true; 1171 // -- a reference type; or 1172 if (BaseTy->isReferenceType()) 1173 return true; 1174 // -- a class type that has all of the following properties: 1175 if (const RecordType *RT = BaseTy->getAs<RecordType>()) { 1176 // -- a trivial destructor, 1177 // -- every constructor call and full-expression in the 1178 // brace-or-equal-initializers for non-static data members (if any) 1179 // is a constant expression, 1180 // -- it is an aggregate type or has at least one constexpr 1181 // constructor or constructor template that is not a copy or move 1182 // constructor, and 1183 // -- all non-static data members and base classes of literal types 1184 // 1185 // We resolve DR1361 by ignoring the second bullet. 1186 if (const CXXRecordDecl *ClassDecl = 1187 dyn_cast<CXXRecordDecl>(RT->getDecl())) 1188 return ClassDecl->isLiteral(); 1189 1190 return true; 1191 } 1192 1193 // We treat _Atomic T as a literal type if T is a literal type. 1194 if (const AtomicType *AT = BaseTy->getAs<AtomicType>()) 1195 return AT->getValueType()->isLiteralType(Ctx); 1196 1197 // If this type hasn't been deduced yet, then conservatively assume that 1198 // it'll work out to be a literal type. 1199 if (isa<AutoType>(BaseTy->getCanonicalTypeInternal())) 1200 return true; 1201 1202 return false; 1203 } 1204 1205 bool Type::isStandardLayoutType() const { 1206 if (isDependentType()) 1207 return false; 1208 1209 // C++0x [basic.types]p9: 1210 // Scalar types, standard-layout class types, arrays of such types, and 1211 // cv-qualified versions of these types are collectively called 1212 // standard-layout types. 1213 const Type *BaseTy = getBaseElementTypeUnsafe(); 1214 assert(BaseTy && "NULL element type"); 1215 1216 // Return false for incomplete types after skipping any incomplete array 1217 // types which are expressly allowed by the standard and thus our API. 1218 if (BaseTy->isIncompleteType()) 1219 return false; 1220 1221 // As an extension, Clang treats vector types as Scalar types. 1222 if (BaseTy->isScalarType() || BaseTy->isVectorType()) return true; 1223 if (const RecordType *RT = BaseTy->getAs<RecordType>()) { 1224 if (const CXXRecordDecl *ClassDecl = 1225 dyn_cast<CXXRecordDecl>(RT->getDecl())) 1226 if (!ClassDecl->isStandardLayout()) 1227 return false; 1228 1229 // Default to 'true' for non-C++ class types. 1230 // FIXME: This is a bit dubious, but plain C structs should trivially meet 1231 // all the requirements of standard layout classes. 1232 return true; 1233 } 1234 1235 // No other types can match. 1236 return false; 1237 } 1238 1239 // This is effectively the intersection of isTrivialType and 1240 // isStandardLayoutType. We implement it directly to avoid redundant 1241 // conversions from a type to a CXXRecordDecl. 1242 bool QualType::isCXX11PODType(ASTContext &Context) const { 1243 const Type *ty = getTypePtr(); 1244 if (ty->isDependentType()) 1245 return false; 1246 1247 if (Context.getLangOpts().ObjCAutoRefCount) { 1248 switch (getObjCLifetime()) { 1249 case Qualifiers::OCL_ExplicitNone: 1250 return true; 1251 1252 case Qualifiers::OCL_Strong: 1253 case Qualifiers::OCL_Weak: 1254 case Qualifiers::OCL_Autoreleasing: 1255 return false; 1256 1257 case Qualifiers::OCL_None: 1258 break; 1259 } 1260 } 1261 1262 // C++11 [basic.types]p9: 1263 // Scalar types, POD classes, arrays of such types, and cv-qualified 1264 // versions of these types are collectively called trivial types. 1265 const Type *BaseTy = ty->getBaseElementTypeUnsafe(); 1266 assert(BaseTy && "NULL element type"); 1267 1268 // Return false for incomplete types after skipping any incomplete array 1269 // types which are expressly allowed by the standard and thus our API. 1270 if (BaseTy->isIncompleteType()) 1271 return false; 1272 1273 // As an extension, Clang treats vector types as Scalar types. 1274 if (BaseTy->isScalarType() || BaseTy->isVectorType()) return true; 1275 if (const RecordType *RT = BaseTy->getAs<RecordType>()) { 1276 if (const CXXRecordDecl *ClassDecl = 1277 dyn_cast<CXXRecordDecl>(RT->getDecl())) { 1278 // C++11 [class]p10: 1279 // A POD struct is a non-union class that is both a trivial class [...] 1280 if (!ClassDecl->isTrivial()) return false; 1281 1282 // C++11 [class]p10: 1283 // A POD struct is a non-union class that is both a trivial class and 1284 // a standard-layout class [...] 1285 if (!ClassDecl->isStandardLayout()) return false; 1286 1287 // C++11 [class]p10: 1288 // A POD struct is a non-union class that is both a trivial class and 1289 // a standard-layout class, and has no non-static data members of type 1290 // non-POD struct, non-POD union (or array of such types). [...] 1291 // 1292 // We don't directly query the recursive aspect as the requiremets for 1293 // both standard-layout classes and trivial classes apply recursively 1294 // already. 1295 } 1296 1297 return true; 1298 } 1299 1300 // No other types can match. 1301 return false; 1302 } 1303 1304 bool Type::isPromotableIntegerType() const { 1305 if (const BuiltinType *BT = getAs<BuiltinType>()) 1306 switch (BT->getKind()) { 1307 case BuiltinType::Bool: 1308 case BuiltinType::Char_S: 1309 case BuiltinType::Char_U: 1310 case BuiltinType::SChar: 1311 case BuiltinType::UChar: 1312 case BuiltinType::Short: 1313 case BuiltinType::UShort: 1314 case BuiltinType::WChar_S: 1315 case BuiltinType::WChar_U: 1316 case BuiltinType::Char16: 1317 case BuiltinType::Char32: 1318 return true; 1319 default: 1320 return false; 1321 } 1322 1323 // Enumerated types are promotable to their compatible integer types 1324 // (C99 6.3.1.1) a.k.a. its underlying type (C++ [conv.prom]p2). 1325 if (const EnumType *ET = getAs<EnumType>()){ 1326 if (this->isDependentType() || ET->getDecl()->getPromotionType().isNull() 1327 || ET->getDecl()->isScoped()) 1328 return false; 1329 1330 return true; 1331 } 1332 1333 return false; 1334 } 1335 1336 bool Type::isSpecifierType() const { 1337 // Note that this intentionally does not use the canonical type. 1338 switch (getTypeClass()) { 1339 case Builtin: 1340 case Record: 1341 case Enum: 1342 case Typedef: 1343 case Complex: 1344 case TypeOfExpr: 1345 case TypeOf: 1346 case TemplateTypeParm: 1347 case SubstTemplateTypeParm: 1348 case TemplateSpecialization: 1349 case Elaborated: 1350 case DependentName: 1351 case DependentTemplateSpecialization: 1352 case ObjCInterface: 1353 case ObjCObject: 1354 case ObjCObjectPointer: // FIXME: object pointers aren't really specifiers 1355 return true; 1356 default: 1357 return false; 1358 } 1359 } 1360 1361 ElaboratedTypeKeyword 1362 TypeWithKeyword::getKeywordForTypeSpec(unsigned TypeSpec) { 1363 switch (TypeSpec) { 1364 default: return ETK_None; 1365 case TST_typename: return ETK_Typename; 1366 case TST_class: return ETK_Class; 1367 case TST_struct: return ETK_Struct; 1368 case TST_interface: return ETK_Interface; 1369 case TST_union: return ETK_Union; 1370 case TST_enum: return ETK_Enum; 1371 } 1372 } 1373 1374 TagTypeKind 1375 TypeWithKeyword::getTagTypeKindForTypeSpec(unsigned TypeSpec) { 1376 switch(TypeSpec) { 1377 case TST_class: return TTK_Class; 1378 case TST_struct: return TTK_Struct; 1379 case TST_interface: return TTK_Interface; 1380 case TST_union: return TTK_Union; 1381 case TST_enum: return TTK_Enum; 1382 } 1383 1384 llvm_unreachable("Type specifier is not a tag type kind."); 1385 } 1386 1387 ElaboratedTypeKeyword 1388 TypeWithKeyword::getKeywordForTagTypeKind(TagTypeKind Kind) { 1389 switch (Kind) { 1390 case TTK_Class: return ETK_Class; 1391 case TTK_Struct: return ETK_Struct; 1392 case TTK_Interface: return ETK_Interface; 1393 case TTK_Union: return ETK_Union; 1394 case TTK_Enum: return ETK_Enum; 1395 } 1396 llvm_unreachable("Unknown tag type kind."); 1397 } 1398 1399 TagTypeKind 1400 TypeWithKeyword::getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword) { 1401 switch (Keyword) { 1402 case ETK_Class: return TTK_Class; 1403 case ETK_Struct: return TTK_Struct; 1404 case ETK_Interface: return TTK_Interface; 1405 case ETK_Union: return TTK_Union; 1406 case ETK_Enum: return TTK_Enum; 1407 case ETK_None: // Fall through. 1408 case ETK_Typename: 1409 llvm_unreachable("Elaborated type keyword is not a tag type kind."); 1410 } 1411 llvm_unreachable("Unknown elaborated type keyword."); 1412 } 1413 1414 bool 1415 TypeWithKeyword::KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword) { 1416 switch (Keyword) { 1417 case ETK_None: 1418 case ETK_Typename: 1419 return false; 1420 case ETK_Class: 1421 case ETK_Struct: 1422 case ETK_Interface: 1423 case ETK_Union: 1424 case ETK_Enum: 1425 return true; 1426 } 1427 llvm_unreachable("Unknown elaborated type keyword."); 1428 } 1429 1430 StringRef TypeWithKeyword::getKeywordName(ElaboratedTypeKeyword Keyword) { 1431 switch (Keyword) { 1432 case ETK_None: return ""; 1433 case ETK_Typename: return "typename"; 1434 case ETK_Class: return "class"; 1435 case ETK_Struct: return "struct"; 1436 case ETK_Interface: return "__interface"; 1437 case ETK_Union: return "union"; 1438 case ETK_Enum: return "enum"; 1439 } 1440 1441 llvm_unreachable("Unknown elaborated type keyword."); 1442 } 1443 1444 DependentTemplateSpecializationType::DependentTemplateSpecializationType( 1445 ElaboratedTypeKeyword Keyword, 1446 NestedNameSpecifier *NNS, const IdentifierInfo *Name, 1447 unsigned NumArgs, const TemplateArgument *Args, 1448 QualType Canon) 1449 : TypeWithKeyword(Keyword, DependentTemplateSpecialization, Canon, true, true, 1450 /*VariablyModified=*/false, 1451 NNS && NNS->containsUnexpandedParameterPack()), 1452 NNS(NNS), Name(Name), NumArgs(NumArgs) { 1453 assert((!NNS || NNS->isDependent()) && 1454 "DependentTemplateSpecializatonType requires dependent qualifier"); 1455 for (unsigned I = 0; I != NumArgs; ++I) { 1456 if (Args[I].containsUnexpandedParameterPack()) 1457 setContainsUnexpandedParameterPack(); 1458 1459 new (&getArgBuffer()[I]) TemplateArgument(Args[I]); 1460 } 1461 } 1462 1463 void 1464 DependentTemplateSpecializationType::Profile(llvm::FoldingSetNodeID &ID, 1465 const ASTContext &Context, 1466 ElaboratedTypeKeyword Keyword, 1467 NestedNameSpecifier *Qualifier, 1468 const IdentifierInfo *Name, 1469 unsigned NumArgs, 1470 const TemplateArgument *Args) { 1471 ID.AddInteger(Keyword); 1472 ID.AddPointer(Qualifier); 1473 ID.AddPointer(Name); 1474 for (unsigned Idx = 0; Idx < NumArgs; ++Idx) 1475 Args[Idx].Profile(ID, Context); 1476 } 1477 1478 bool Type::isElaboratedTypeSpecifier() const { 1479 ElaboratedTypeKeyword Keyword; 1480 if (const ElaboratedType *Elab = dyn_cast<ElaboratedType>(this)) 1481 Keyword = Elab->getKeyword(); 1482 else if (const DependentNameType *DepName = dyn_cast<DependentNameType>(this)) 1483 Keyword = DepName->getKeyword(); 1484 else if (const DependentTemplateSpecializationType *DepTST = 1485 dyn_cast<DependentTemplateSpecializationType>(this)) 1486 Keyword = DepTST->getKeyword(); 1487 else 1488 return false; 1489 1490 return TypeWithKeyword::KeywordIsTagTypeKind(Keyword); 1491 } 1492 1493 const char *Type::getTypeClassName() const { 1494 switch (TypeBits.TC) { 1495 #define ABSTRACT_TYPE(Derived, Base) 1496 #define TYPE(Derived, Base) case Derived: return #Derived; 1497 #include "clang/AST/TypeNodes.def" 1498 } 1499 1500 llvm_unreachable("Invalid type class."); 1501 } 1502 1503 StringRef BuiltinType::getName(const PrintingPolicy &Policy) const { 1504 switch (getKind()) { 1505 case Void: return "void"; 1506 case Bool: return Policy.Bool ? "bool" : "_Bool"; 1507 case Char_S: return "char"; 1508 case Char_U: return "char"; 1509 case SChar: return "signed char"; 1510 case Short: return "short"; 1511 case Int: return "int"; 1512 case Long: return "long"; 1513 case LongLong: return "long long"; 1514 case Int128: return "__int128"; 1515 case UChar: return "unsigned char"; 1516 case UShort: return "unsigned short"; 1517 case UInt: return "unsigned int"; 1518 case ULong: return "unsigned long"; 1519 case ULongLong: return "unsigned long long"; 1520 case UInt128: return "unsigned __int128"; 1521 case Half: return Policy.Half ? "half" : "__fp16"; 1522 case Float: return "float"; 1523 case Double: return "double"; 1524 case LongDouble: return "long double"; 1525 case WChar_S: 1526 case WChar_U: return Policy.MSWChar ? "__wchar_t" : "wchar_t"; 1527 case Char16: return "char16_t"; 1528 case Char32: return "char32_t"; 1529 case NullPtr: return "nullptr_t"; 1530 case Overload: return "<overloaded function type>"; 1531 case BoundMember: return "<bound member function type>"; 1532 case PseudoObject: return "<pseudo-object type>"; 1533 case Dependent: return "<dependent type>"; 1534 case UnknownAny: return "<unknown type>"; 1535 case ARCUnbridgedCast: return "<ARC unbridged cast type>"; 1536 case BuiltinFn: return "<builtin fn type>"; 1537 case ObjCId: return "id"; 1538 case ObjCClass: return "Class"; 1539 case ObjCSel: return "SEL"; 1540 case OCLImage1d: return "image1d_t"; 1541 case OCLImage1dArray: return "image1d_array_t"; 1542 case OCLImage1dBuffer: return "image1d_buffer_t"; 1543 case OCLImage2d: return "image2d_t"; 1544 case OCLImage2dArray: return "image2d_array_t"; 1545 case OCLImage3d: return "image3d_t"; 1546 case OCLSampler: return "sampler_t"; 1547 case OCLEvent: return "event_t"; 1548 } 1549 1550 llvm_unreachable("Invalid builtin type."); 1551 } 1552 1553 QualType QualType::getNonLValueExprType(const ASTContext &Context) const { 1554 if (const ReferenceType *RefType = getTypePtr()->getAs<ReferenceType>()) 1555 return RefType->getPointeeType(); 1556 1557 // C++0x [basic.lval]: 1558 // Class prvalues can have cv-qualified types; non-class prvalues always 1559 // have cv-unqualified types. 1560 // 1561 // See also C99 6.3.2.1p2. 1562 if (!Context.getLangOpts().CPlusPlus || 1563 (!getTypePtr()->isDependentType() && !getTypePtr()->isRecordType())) 1564 return getUnqualifiedType(); 1565 1566 return *this; 1567 } 1568 1569 StringRef FunctionType::getNameForCallConv(CallingConv CC) { 1570 switch (CC) { 1571 case CC_C: return "cdecl"; 1572 case CC_X86StdCall: return "stdcall"; 1573 case CC_X86FastCall: return "fastcall"; 1574 case CC_X86ThisCall: return "thiscall"; 1575 case CC_X86Pascal: return "pascal"; 1576 case CC_X86VectorCall: return "vectorcall"; 1577 case CC_X86_64Win64: return "ms_abi"; 1578 case CC_X86_64SysV: return "sysv_abi"; 1579 case CC_AAPCS: return "aapcs"; 1580 case CC_AAPCS_VFP: return "aapcs-vfp"; 1581 case CC_IntelOclBicc: return "intel_ocl_bicc"; 1582 case CC_SpirFunction: return "spir_function"; 1583 case CC_SpirKernel: return "spir_kernel"; 1584 } 1585 1586 llvm_unreachable("Invalid calling convention."); 1587 } 1588 1589 FunctionProtoType::FunctionProtoType(QualType result, ArrayRef<QualType> params, 1590 QualType canonical, 1591 const ExtProtoInfo &epi) 1592 : FunctionType(FunctionProto, result, canonical, 1593 result->isDependentType(), 1594 result->isInstantiationDependentType(), 1595 result->isVariablyModifiedType(), 1596 result->containsUnexpandedParameterPack(), epi.ExtInfo), 1597 NumParams(params.size()), 1598 NumExceptions(epi.ExceptionSpec.Exceptions.size()), 1599 ExceptionSpecType(epi.ExceptionSpec.Type), 1600 HasAnyConsumedParams(epi.ConsumedParameters != nullptr), 1601 Variadic(epi.Variadic), HasTrailingReturn(epi.HasTrailingReturn) { 1602 assert(NumParams == params.size() && "function has too many parameters"); 1603 1604 FunctionTypeBits.TypeQuals = epi.TypeQuals; 1605 FunctionTypeBits.RefQualifier = epi.RefQualifier; 1606 1607 // Fill in the trailing argument array. 1608 QualType *argSlot = reinterpret_cast<QualType*>(this+1); 1609 for (unsigned i = 0; i != NumParams; ++i) { 1610 if (params[i]->isDependentType()) 1611 setDependent(); 1612 else if (params[i]->isInstantiationDependentType()) 1613 setInstantiationDependent(); 1614 1615 if (params[i]->containsUnexpandedParameterPack()) 1616 setContainsUnexpandedParameterPack(); 1617 1618 argSlot[i] = params[i]; 1619 } 1620 1621 if (getExceptionSpecType() == EST_Dynamic) { 1622 // Fill in the exception array. 1623 QualType *exnSlot = argSlot + NumParams; 1624 unsigned I = 0; 1625 for (QualType ExceptionType : epi.ExceptionSpec.Exceptions) { 1626 // Note that a dependent exception specification does *not* make 1627 // a type dependent; it's not even part of the C++ type system. 1628 if (ExceptionType->isInstantiationDependentType()) 1629 setInstantiationDependent(); 1630 1631 if (ExceptionType->containsUnexpandedParameterPack()) 1632 setContainsUnexpandedParameterPack(); 1633 1634 exnSlot[I++] = ExceptionType; 1635 } 1636 } else if (getExceptionSpecType() == EST_ComputedNoexcept) { 1637 // Store the noexcept expression and context. 1638 Expr **noexSlot = reinterpret_cast<Expr **>(argSlot + NumParams); 1639 *noexSlot = epi.ExceptionSpec.NoexceptExpr; 1640 1641 if (epi.ExceptionSpec.NoexceptExpr) { 1642 if (epi.ExceptionSpec.NoexceptExpr->isValueDependent() || 1643 epi.ExceptionSpec.NoexceptExpr->isInstantiationDependent()) 1644 setInstantiationDependent(); 1645 1646 if (epi.ExceptionSpec.NoexceptExpr->containsUnexpandedParameterPack()) 1647 setContainsUnexpandedParameterPack(); 1648 } 1649 } else if (getExceptionSpecType() == EST_Uninstantiated) { 1650 // Store the function decl from which we will resolve our 1651 // exception specification. 1652 FunctionDecl **slot = 1653 reinterpret_cast<FunctionDecl **>(argSlot + NumParams); 1654 slot[0] = epi.ExceptionSpec.SourceDecl; 1655 slot[1] = epi.ExceptionSpec.SourceTemplate; 1656 // This exception specification doesn't make the type dependent, because 1657 // it's not instantiated as part of instantiating the type. 1658 } else if (getExceptionSpecType() == EST_Unevaluated) { 1659 // Store the function decl from which we will resolve our 1660 // exception specification. 1661 FunctionDecl **slot = 1662 reinterpret_cast<FunctionDecl **>(argSlot + NumParams); 1663 slot[0] = epi.ExceptionSpec.SourceDecl; 1664 } 1665 1666 if (epi.ConsumedParameters) { 1667 bool *consumedParams = const_cast<bool *>(getConsumedParamsBuffer()); 1668 for (unsigned i = 0; i != NumParams; ++i) 1669 consumedParams[i] = epi.ConsumedParameters[i]; 1670 } 1671 } 1672 1673 bool FunctionProtoType::hasDependentExceptionSpec() const { 1674 if (Expr *NE = getNoexceptExpr()) 1675 return NE->isValueDependent(); 1676 for (QualType ET : exceptions()) 1677 // A pack expansion with a non-dependent pattern is still dependent, 1678 // because we don't know whether the pattern is in the exception spec 1679 // or not (that depends on whether the pack has 0 expansions). 1680 if (ET->isDependentType() || ET->getAs<PackExpansionType>()) 1681 return true; 1682 return false; 1683 } 1684 1685 FunctionProtoType::NoexceptResult 1686 FunctionProtoType::getNoexceptSpec(const ASTContext &ctx) const { 1687 ExceptionSpecificationType est = getExceptionSpecType(); 1688 if (est == EST_BasicNoexcept) 1689 return NR_Nothrow; 1690 1691 if (est != EST_ComputedNoexcept) 1692 return NR_NoNoexcept; 1693 1694 Expr *noexceptExpr = getNoexceptExpr(); 1695 if (!noexceptExpr) 1696 return NR_BadNoexcept; 1697 if (noexceptExpr->isValueDependent()) 1698 return NR_Dependent; 1699 1700 llvm::APSInt value; 1701 bool isICE = noexceptExpr->isIntegerConstantExpr(value, ctx, nullptr, 1702 /*evaluated*/false); 1703 (void)isICE; 1704 assert(isICE && "AST should not contain bad noexcept expressions."); 1705 1706 return value.getBoolValue() ? NR_Nothrow : NR_Throw; 1707 } 1708 1709 bool FunctionProtoType::isNothrow(const ASTContext &Ctx, 1710 bool ResultIfDependent) const { 1711 ExceptionSpecificationType EST = getExceptionSpecType(); 1712 assert(EST != EST_Unevaluated && EST != EST_Uninstantiated); 1713 if (EST == EST_DynamicNone || EST == EST_BasicNoexcept) 1714 return true; 1715 1716 if (EST == EST_Dynamic && ResultIfDependent) { 1717 // A dynamic exception specification is throwing unless every exception 1718 // type is an (unexpanded) pack expansion type. 1719 for (unsigned I = 0, N = NumExceptions; I != N; ++I) 1720 if (!getExceptionType(I)->getAs<PackExpansionType>()) 1721 return false; 1722 return ResultIfDependent; 1723 } 1724 1725 if (EST != EST_ComputedNoexcept) 1726 return false; 1727 1728 NoexceptResult NR = getNoexceptSpec(Ctx); 1729 if (NR == NR_Dependent) 1730 return ResultIfDependent; 1731 return NR == NR_Nothrow; 1732 } 1733 1734 bool FunctionProtoType::isTemplateVariadic() const { 1735 for (unsigned ArgIdx = getNumParams(); ArgIdx; --ArgIdx) 1736 if (isa<PackExpansionType>(getParamType(ArgIdx - 1))) 1737 return true; 1738 1739 return false; 1740 } 1741 1742 void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID, QualType Result, 1743 const QualType *ArgTys, unsigned NumParams, 1744 const ExtProtoInfo &epi, 1745 const ASTContext &Context) { 1746 1747 // We have to be careful not to get ambiguous profile encodings. 1748 // Note that valid type pointers are never ambiguous with anything else. 1749 // 1750 // The encoding grammar begins: 1751 // type type* bool int bool 1752 // If that final bool is true, then there is a section for the EH spec: 1753 // bool type* 1754 // This is followed by an optional "consumed argument" section of the 1755 // same length as the first type sequence: 1756 // bool* 1757 // Finally, we have the ext info and trailing return type flag: 1758 // int bool 1759 // 1760 // There is no ambiguity between the consumed arguments and an empty EH 1761 // spec because of the leading 'bool' which unambiguously indicates 1762 // whether the following bool is the EH spec or part of the arguments. 1763 1764 ID.AddPointer(Result.getAsOpaquePtr()); 1765 for (unsigned i = 0; i != NumParams; ++i) 1766 ID.AddPointer(ArgTys[i].getAsOpaquePtr()); 1767 // This method is relatively performance sensitive, so as a performance 1768 // shortcut, use one AddInteger call instead of four for the next four 1769 // fields. 1770 assert(!(unsigned(epi.Variadic) & ~1) && 1771 !(unsigned(epi.TypeQuals) & ~255) && 1772 !(unsigned(epi.RefQualifier) & ~3) && 1773 !(unsigned(epi.ExceptionSpec.Type) & ~15) && 1774 "Values larger than expected."); 1775 ID.AddInteger(unsigned(epi.Variadic) + 1776 (epi.TypeQuals << 1) + 1777 (epi.RefQualifier << 9) + 1778 (epi.ExceptionSpec.Type << 11)); 1779 if (epi.ExceptionSpec.Type == EST_Dynamic) { 1780 for (QualType Ex : epi.ExceptionSpec.Exceptions) 1781 ID.AddPointer(Ex.getAsOpaquePtr()); 1782 } else if (epi.ExceptionSpec.Type == EST_ComputedNoexcept && 1783 epi.ExceptionSpec.NoexceptExpr) { 1784 epi.ExceptionSpec.NoexceptExpr->Profile(ID, Context, false); 1785 } else if (epi.ExceptionSpec.Type == EST_Uninstantiated || 1786 epi.ExceptionSpec.Type == EST_Unevaluated) { 1787 ID.AddPointer(epi.ExceptionSpec.SourceDecl->getCanonicalDecl()); 1788 } 1789 if (epi.ConsumedParameters) { 1790 for (unsigned i = 0; i != NumParams; ++i) 1791 ID.AddBoolean(epi.ConsumedParameters[i]); 1792 } 1793 epi.ExtInfo.Profile(ID); 1794 ID.AddBoolean(epi.HasTrailingReturn); 1795 } 1796 1797 void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID, 1798 const ASTContext &Ctx) { 1799 Profile(ID, getReturnType(), param_type_begin(), NumParams, getExtProtoInfo(), 1800 Ctx); 1801 } 1802 1803 QualType TypedefType::desugar() const { 1804 return getDecl()->getUnderlyingType(); 1805 } 1806 1807 TypeOfExprType::TypeOfExprType(Expr *E, QualType can) 1808 : Type(TypeOfExpr, can, E->isTypeDependent(), 1809 E->isInstantiationDependent(), 1810 E->getType()->isVariablyModifiedType(), 1811 E->containsUnexpandedParameterPack()), 1812 TOExpr(E) { 1813 } 1814 1815 bool TypeOfExprType::isSugared() const { 1816 return !TOExpr->isTypeDependent(); 1817 } 1818 1819 QualType TypeOfExprType::desugar() const { 1820 if (isSugared()) 1821 return getUnderlyingExpr()->getType(); 1822 1823 return QualType(this, 0); 1824 } 1825 1826 void DependentTypeOfExprType::Profile(llvm::FoldingSetNodeID &ID, 1827 const ASTContext &Context, Expr *E) { 1828 E->Profile(ID, Context, true); 1829 } 1830 1831 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) 1832 // C++11 [temp.type]p2: "If an expression e involves a template parameter, 1833 // decltype(e) denotes a unique dependent type." Hence a decltype type is 1834 // type-dependent even if its expression is only instantiation-dependent. 1835 : Type(Decltype, can, E->isInstantiationDependent(), 1836 E->isInstantiationDependent(), 1837 E->getType()->isVariablyModifiedType(), 1838 E->containsUnexpandedParameterPack()), 1839 E(E), 1840 UnderlyingType(underlyingType) { 1841 } 1842 1843 bool DecltypeType::isSugared() const { return !E->isInstantiationDependent(); } 1844 1845 QualType DecltypeType::desugar() const { 1846 if (isSugared()) 1847 return getUnderlyingType(); 1848 1849 return QualType(this, 0); 1850 } 1851 1852 DependentDecltypeType::DependentDecltypeType(const ASTContext &Context, Expr *E) 1853 : DecltypeType(E, Context.DependentTy), Context(Context) { } 1854 1855 void DependentDecltypeType::Profile(llvm::FoldingSetNodeID &ID, 1856 const ASTContext &Context, Expr *E) { 1857 E->Profile(ID, Context, true); 1858 } 1859 1860 TagType::TagType(TypeClass TC, const TagDecl *D, QualType can) 1861 : Type(TC, can, D->isDependentType(), 1862 /*InstantiationDependent=*/D->isDependentType(), 1863 /*VariablyModified=*/false, 1864 /*ContainsUnexpandedParameterPack=*/false), 1865 decl(const_cast<TagDecl*>(D)) {} 1866 1867 static TagDecl *getInterestingTagDecl(TagDecl *decl) { 1868 for (auto I : decl->redecls()) { 1869 if (I->isCompleteDefinition() || I->isBeingDefined()) 1870 return I; 1871 } 1872 // If there's no definition (not even in progress), return what we have. 1873 return decl; 1874 } 1875 1876 UnaryTransformType::UnaryTransformType(QualType BaseType, 1877 QualType UnderlyingType, 1878 UTTKind UKind, 1879 QualType CanonicalType) 1880 : Type(UnaryTransform, CanonicalType, UnderlyingType->isDependentType(), 1881 UnderlyingType->isInstantiationDependentType(), 1882 UnderlyingType->isVariablyModifiedType(), 1883 BaseType->containsUnexpandedParameterPack()) 1884 , BaseType(BaseType), UnderlyingType(UnderlyingType), UKind(UKind) 1885 {} 1886 1887 TagDecl *TagType::getDecl() const { 1888 return getInterestingTagDecl(decl); 1889 } 1890 1891 bool TagType::isBeingDefined() const { 1892 return getDecl()->isBeingDefined(); 1893 } 1894 1895 bool AttributedType::isMSTypeSpec() const { 1896 switch (getAttrKind()) { 1897 default: return false; 1898 case attr_ptr32: 1899 case attr_ptr64: 1900 case attr_sptr: 1901 case attr_uptr: 1902 return true; 1903 } 1904 llvm_unreachable("invalid attr kind"); 1905 } 1906 1907 bool AttributedType::isCallingConv() const { 1908 switch (getAttrKind()) { 1909 case attr_ptr32: 1910 case attr_ptr64: 1911 case attr_sptr: 1912 case attr_uptr: 1913 case attr_address_space: 1914 case attr_regparm: 1915 case attr_vector_size: 1916 case attr_neon_vector_type: 1917 case attr_neon_polyvector_type: 1918 case attr_objc_gc: 1919 case attr_objc_ownership: 1920 case attr_noreturn: 1921 return false; 1922 case attr_pcs: 1923 case attr_pcs_vfp: 1924 case attr_cdecl: 1925 case attr_fastcall: 1926 case attr_stdcall: 1927 case attr_thiscall: 1928 case attr_vectorcall: 1929 case attr_pascal: 1930 case attr_ms_abi: 1931 case attr_sysv_abi: 1932 case attr_inteloclbicc: 1933 return true; 1934 } 1935 llvm_unreachable("invalid attr kind"); 1936 } 1937 1938 CXXRecordDecl *InjectedClassNameType::getDecl() const { 1939 return cast<CXXRecordDecl>(getInterestingTagDecl(Decl)); 1940 } 1941 1942 IdentifierInfo *TemplateTypeParmType::getIdentifier() const { 1943 return isCanonicalUnqualified() ? nullptr : getDecl()->getIdentifier(); 1944 } 1945 1946 SubstTemplateTypeParmPackType:: 1947 SubstTemplateTypeParmPackType(const TemplateTypeParmType *Param, 1948 QualType Canon, 1949 const TemplateArgument &ArgPack) 1950 : Type(SubstTemplateTypeParmPack, Canon, true, true, false, true), 1951 Replaced(Param), 1952 Arguments(ArgPack.pack_begin()), NumArguments(ArgPack.pack_size()) 1953 { 1954 } 1955 1956 TemplateArgument SubstTemplateTypeParmPackType::getArgumentPack() const { 1957 return TemplateArgument(Arguments, NumArguments); 1958 } 1959 1960 void SubstTemplateTypeParmPackType::Profile(llvm::FoldingSetNodeID &ID) { 1961 Profile(ID, getReplacedParameter(), getArgumentPack()); 1962 } 1963 1964 void SubstTemplateTypeParmPackType::Profile(llvm::FoldingSetNodeID &ID, 1965 const TemplateTypeParmType *Replaced, 1966 const TemplateArgument &ArgPack) { 1967 ID.AddPointer(Replaced); 1968 ID.AddInteger(ArgPack.pack_size()); 1969 for (const auto &P : ArgPack.pack_elements()) 1970 ID.AddPointer(P.getAsType().getAsOpaquePtr()); 1971 } 1972 1973 bool TemplateSpecializationType:: 1974 anyDependentTemplateArguments(const TemplateArgumentListInfo &Args, 1975 bool &InstantiationDependent) { 1976 return anyDependentTemplateArguments(Args.getArgumentArray(), Args.size(), 1977 InstantiationDependent); 1978 } 1979 1980 bool TemplateSpecializationType:: 1981 anyDependentTemplateArguments(const TemplateArgumentLoc *Args, unsigned N, 1982 bool &InstantiationDependent) { 1983 for (unsigned i = 0; i != N; ++i) { 1984 if (Args[i].getArgument().isDependent()) { 1985 InstantiationDependent = true; 1986 return true; 1987 } 1988 1989 if (Args[i].getArgument().isInstantiationDependent()) 1990 InstantiationDependent = true; 1991 } 1992 return false; 1993 } 1994 1995 TemplateSpecializationType:: 1996 TemplateSpecializationType(TemplateName T, 1997 const TemplateArgument *Args, unsigned NumArgs, 1998 QualType Canon, QualType AliasedType) 1999 : Type(TemplateSpecialization, 2000 Canon.isNull()? QualType(this, 0) : Canon, 2001 Canon.isNull()? true : Canon->isDependentType(), 2002 Canon.isNull()? true : Canon->isInstantiationDependentType(), 2003 false, 2004 T.containsUnexpandedParameterPack()), 2005 Template(T), NumArgs(NumArgs), TypeAlias(!AliasedType.isNull()) { 2006 assert(!T.getAsDependentTemplateName() && 2007 "Use DependentTemplateSpecializationType for dependent template-name"); 2008 assert((T.getKind() == TemplateName::Template || 2009 T.getKind() == TemplateName::SubstTemplateTemplateParm || 2010 T.getKind() == TemplateName::SubstTemplateTemplateParmPack) && 2011 "Unexpected template name for TemplateSpecializationType"); 2012 2013 TemplateArgument *TemplateArgs 2014 = reinterpret_cast<TemplateArgument *>(this + 1); 2015 for (unsigned Arg = 0; Arg < NumArgs; ++Arg) { 2016 // Update instantiation-dependent and variably-modified bits. 2017 // If the canonical type exists and is non-dependent, the template 2018 // specialization type can be non-dependent even if one of the type 2019 // arguments is. Given: 2020 // template<typename T> using U = int; 2021 // U<T> is always non-dependent, irrespective of the type T. 2022 // However, U<Ts> contains an unexpanded parameter pack, even though 2023 // its expansion (and thus its desugared type) doesn't. 2024 if (Args[Arg].isInstantiationDependent()) 2025 setInstantiationDependent(); 2026 if (Args[Arg].getKind() == TemplateArgument::Type && 2027 Args[Arg].getAsType()->isVariablyModifiedType()) 2028 setVariablyModified(); 2029 if (Args[Arg].containsUnexpandedParameterPack()) 2030 setContainsUnexpandedParameterPack(); 2031 new (&TemplateArgs[Arg]) TemplateArgument(Args[Arg]); 2032 } 2033 2034 // Store the aliased type if this is a type alias template specialization. 2035 if (TypeAlias) { 2036 TemplateArgument *Begin = reinterpret_cast<TemplateArgument *>(this + 1); 2037 *reinterpret_cast<QualType*>(Begin + getNumArgs()) = AliasedType; 2038 } 2039 } 2040 2041 void 2042 TemplateSpecializationType::Profile(llvm::FoldingSetNodeID &ID, 2043 TemplateName T, 2044 const TemplateArgument *Args, 2045 unsigned NumArgs, 2046 const ASTContext &Context) { 2047 T.Profile(ID); 2048 for (unsigned Idx = 0; Idx < NumArgs; ++Idx) 2049 Args[Idx].Profile(ID, Context); 2050 } 2051 2052 QualType 2053 QualifierCollector::apply(const ASTContext &Context, QualType QT) const { 2054 if (!hasNonFastQualifiers()) 2055 return QT.withFastQualifiers(getFastQualifiers()); 2056 2057 return Context.getQualifiedType(QT, *this); 2058 } 2059 2060 QualType 2061 QualifierCollector::apply(const ASTContext &Context, const Type *T) const { 2062 if (!hasNonFastQualifiers()) 2063 return QualType(T, getFastQualifiers()); 2064 2065 return Context.getQualifiedType(T, *this); 2066 } 2067 2068 void ObjCObjectTypeImpl::Profile(llvm::FoldingSetNodeID &ID, 2069 QualType BaseType, 2070 ObjCProtocolDecl * const *Protocols, 2071 unsigned NumProtocols) { 2072 ID.AddPointer(BaseType.getAsOpaquePtr()); 2073 for (unsigned i = 0; i != NumProtocols; i++) 2074 ID.AddPointer(Protocols[i]); 2075 } 2076 2077 void ObjCObjectTypeImpl::Profile(llvm::FoldingSetNodeID &ID) { 2078 Profile(ID, getBaseType(), qual_begin(), getNumProtocols()); 2079 } 2080 2081 namespace { 2082 2083 /// \brief The cached properties of a type. 2084 class CachedProperties { 2085 Linkage L; 2086 bool local; 2087 2088 public: 2089 CachedProperties(Linkage L, bool local) : L(L), local(local) {} 2090 2091 Linkage getLinkage() const { return L; } 2092 bool hasLocalOrUnnamedType() const { return local; } 2093 2094 friend CachedProperties merge(CachedProperties L, CachedProperties R) { 2095 Linkage MergedLinkage = minLinkage(L.L, R.L); 2096 return CachedProperties(MergedLinkage, 2097 L.hasLocalOrUnnamedType() | R.hasLocalOrUnnamedType()); 2098 } 2099 }; 2100 } 2101 2102 static CachedProperties computeCachedProperties(const Type *T); 2103 2104 namespace clang { 2105 /// The type-property cache. This is templated so as to be 2106 /// instantiated at an internal type to prevent unnecessary symbol 2107 /// leakage. 2108 template <class Private> class TypePropertyCache { 2109 public: 2110 static CachedProperties get(QualType T) { 2111 return get(T.getTypePtr()); 2112 } 2113 2114 static CachedProperties get(const Type *T) { 2115 ensure(T); 2116 return CachedProperties(T->TypeBits.getLinkage(), 2117 T->TypeBits.hasLocalOrUnnamedType()); 2118 } 2119 2120 static void ensure(const Type *T) { 2121 // If the cache is valid, we're okay. 2122 if (T->TypeBits.isCacheValid()) return; 2123 2124 // If this type is non-canonical, ask its canonical type for the 2125 // relevant information. 2126 if (!T->isCanonicalUnqualified()) { 2127 const Type *CT = T->getCanonicalTypeInternal().getTypePtr(); 2128 ensure(CT); 2129 T->TypeBits.CacheValid = true; 2130 T->TypeBits.CachedLinkage = CT->TypeBits.CachedLinkage; 2131 T->TypeBits.CachedLocalOrUnnamed = CT->TypeBits.CachedLocalOrUnnamed; 2132 return; 2133 } 2134 2135 // Compute the cached properties and then set the cache. 2136 CachedProperties Result = computeCachedProperties(T); 2137 T->TypeBits.CacheValid = true; 2138 T->TypeBits.CachedLinkage = Result.getLinkage(); 2139 T->TypeBits.CachedLocalOrUnnamed = Result.hasLocalOrUnnamedType(); 2140 } 2141 }; 2142 } 2143 2144 // Instantiate the friend template at a private class. In a 2145 // reasonable implementation, these symbols will be internal. 2146 // It is terrible that this is the best way to accomplish this. 2147 namespace { class Private {}; } 2148 typedef TypePropertyCache<Private> Cache; 2149 2150 static CachedProperties computeCachedProperties(const Type *T) { 2151 switch (T->getTypeClass()) { 2152 #define TYPE(Class,Base) 2153 #define NON_CANONICAL_TYPE(Class,Base) case Type::Class: 2154 #include "clang/AST/TypeNodes.def" 2155 llvm_unreachable("didn't expect a non-canonical type here"); 2156 2157 #define TYPE(Class,Base) 2158 #define DEPENDENT_TYPE(Class,Base) case Type::Class: 2159 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class,Base) case Type::Class: 2160 #include "clang/AST/TypeNodes.def" 2161 // Treat instantiation-dependent types as external. 2162 assert(T->isInstantiationDependentType()); 2163 return CachedProperties(ExternalLinkage, false); 2164 2165 case Type::Auto: 2166 // Give non-deduced 'auto' types external linkage. We should only see them 2167 // here in error recovery. 2168 return CachedProperties(ExternalLinkage, false); 2169 2170 case Type::Builtin: 2171 // C++ [basic.link]p8: 2172 // A type is said to have linkage if and only if: 2173 // - it is a fundamental type (3.9.1); or 2174 return CachedProperties(ExternalLinkage, false); 2175 2176 case Type::Record: 2177 case Type::Enum: { 2178 const TagDecl *Tag = cast<TagType>(T)->getDecl(); 2179 2180 // C++ [basic.link]p8: 2181 // - it is a class or enumeration type that is named (or has a name 2182 // for linkage purposes (7.1.3)) and the name has linkage; or 2183 // - it is a specialization of a class template (14); or 2184 Linkage L = Tag->getLinkageInternal(); 2185 bool IsLocalOrUnnamed = 2186 Tag->getDeclContext()->isFunctionOrMethod() || 2187 !Tag->hasNameForLinkage(); 2188 return CachedProperties(L, IsLocalOrUnnamed); 2189 } 2190 2191 // C++ [basic.link]p8: 2192 // - it is a compound type (3.9.2) other than a class or enumeration, 2193 // compounded exclusively from types that have linkage; or 2194 case Type::Complex: 2195 return Cache::get(cast<ComplexType>(T)->getElementType()); 2196 case Type::Pointer: 2197 return Cache::get(cast<PointerType>(T)->getPointeeType()); 2198 case Type::BlockPointer: 2199 return Cache::get(cast<BlockPointerType>(T)->getPointeeType()); 2200 case Type::LValueReference: 2201 case Type::RValueReference: 2202 return Cache::get(cast<ReferenceType>(T)->getPointeeType()); 2203 case Type::MemberPointer: { 2204 const MemberPointerType *MPT = cast<MemberPointerType>(T); 2205 return merge(Cache::get(MPT->getClass()), 2206 Cache::get(MPT->getPointeeType())); 2207 } 2208 case Type::ConstantArray: 2209 case Type::IncompleteArray: 2210 case Type::VariableArray: 2211 return Cache::get(cast<ArrayType>(T)->getElementType()); 2212 case Type::Vector: 2213 case Type::ExtVector: 2214 return Cache::get(cast<VectorType>(T)->getElementType()); 2215 case Type::FunctionNoProto: 2216 return Cache::get(cast<FunctionType>(T)->getReturnType()); 2217 case Type::FunctionProto: { 2218 const FunctionProtoType *FPT = cast<FunctionProtoType>(T); 2219 CachedProperties result = Cache::get(FPT->getReturnType()); 2220 for (const auto &ai : FPT->param_types()) 2221 result = merge(result, Cache::get(ai)); 2222 return result; 2223 } 2224 case Type::ObjCInterface: { 2225 Linkage L = cast<ObjCInterfaceType>(T)->getDecl()->getLinkageInternal(); 2226 return CachedProperties(L, false); 2227 } 2228 case Type::ObjCObject: 2229 return Cache::get(cast<ObjCObjectType>(T)->getBaseType()); 2230 case Type::ObjCObjectPointer: 2231 return Cache::get(cast<ObjCObjectPointerType>(T)->getPointeeType()); 2232 case Type::Atomic: 2233 return Cache::get(cast<AtomicType>(T)->getValueType()); 2234 } 2235 2236 llvm_unreachable("unhandled type class"); 2237 } 2238 2239 /// \brief Determine the linkage of this type. 2240 Linkage Type::getLinkage() const { 2241 Cache::ensure(this); 2242 return TypeBits.getLinkage(); 2243 } 2244 2245 bool Type::hasUnnamedOrLocalType() const { 2246 Cache::ensure(this); 2247 return TypeBits.hasLocalOrUnnamedType(); 2248 } 2249 2250 static LinkageInfo computeLinkageInfo(QualType T); 2251 2252 static LinkageInfo computeLinkageInfo(const Type *T) { 2253 switch (T->getTypeClass()) { 2254 #define TYPE(Class,Base) 2255 #define NON_CANONICAL_TYPE(Class,Base) case Type::Class: 2256 #include "clang/AST/TypeNodes.def" 2257 llvm_unreachable("didn't expect a non-canonical type here"); 2258 2259 #define TYPE(Class,Base) 2260 #define DEPENDENT_TYPE(Class,Base) case Type::Class: 2261 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class,Base) case Type::Class: 2262 #include "clang/AST/TypeNodes.def" 2263 // Treat instantiation-dependent types as external. 2264 assert(T->isInstantiationDependentType()); 2265 return LinkageInfo::external(); 2266 2267 case Type::Builtin: 2268 return LinkageInfo::external(); 2269 2270 case Type::Auto: 2271 return LinkageInfo::external(); 2272 2273 case Type::Record: 2274 case Type::Enum: 2275 return cast<TagType>(T)->getDecl()->getLinkageAndVisibility(); 2276 2277 case Type::Complex: 2278 return computeLinkageInfo(cast<ComplexType>(T)->getElementType()); 2279 case Type::Pointer: 2280 return computeLinkageInfo(cast<PointerType>(T)->getPointeeType()); 2281 case Type::BlockPointer: 2282 return computeLinkageInfo(cast<BlockPointerType>(T)->getPointeeType()); 2283 case Type::LValueReference: 2284 case Type::RValueReference: 2285 return computeLinkageInfo(cast<ReferenceType>(T)->getPointeeType()); 2286 case Type::MemberPointer: { 2287 const MemberPointerType *MPT = cast<MemberPointerType>(T); 2288 LinkageInfo LV = computeLinkageInfo(MPT->getClass()); 2289 LV.merge(computeLinkageInfo(MPT->getPointeeType())); 2290 return LV; 2291 } 2292 case Type::ConstantArray: 2293 case Type::IncompleteArray: 2294 case Type::VariableArray: 2295 return computeLinkageInfo(cast<ArrayType>(T)->getElementType()); 2296 case Type::Vector: 2297 case Type::ExtVector: 2298 return computeLinkageInfo(cast<VectorType>(T)->getElementType()); 2299 case Type::FunctionNoProto: 2300 return computeLinkageInfo(cast<FunctionType>(T)->getReturnType()); 2301 case Type::FunctionProto: { 2302 const FunctionProtoType *FPT = cast<FunctionProtoType>(T); 2303 LinkageInfo LV = computeLinkageInfo(FPT->getReturnType()); 2304 for (const auto &ai : FPT->param_types()) 2305 LV.merge(computeLinkageInfo(ai)); 2306 return LV; 2307 } 2308 case Type::ObjCInterface: 2309 return cast<ObjCInterfaceType>(T)->getDecl()->getLinkageAndVisibility(); 2310 case Type::ObjCObject: 2311 return computeLinkageInfo(cast<ObjCObjectType>(T)->getBaseType()); 2312 case Type::ObjCObjectPointer: 2313 return computeLinkageInfo(cast<ObjCObjectPointerType>(T)->getPointeeType()); 2314 case Type::Atomic: 2315 return computeLinkageInfo(cast<AtomicType>(T)->getValueType()); 2316 } 2317 2318 llvm_unreachable("unhandled type class"); 2319 } 2320 2321 static LinkageInfo computeLinkageInfo(QualType T) { 2322 return computeLinkageInfo(T.getTypePtr()); 2323 } 2324 2325 bool Type::isLinkageValid() const { 2326 if (!TypeBits.isCacheValid()) 2327 return true; 2328 2329 return computeLinkageInfo(getCanonicalTypeInternal()).getLinkage() == 2330 TypeBits.getLinkage(); 2331 } 2332 2333 LinkageInfo Type::getLinkageAndVisibility() const { 2334 if (!isCanonicalUnqualified()) 2335 return computeLinkageInfo(getCanonicalTypeInternal()); 2336 2337 LinkageInfo LV = computeLinkageInfo(this); 2338 assert(LV.getLinkage() == getLinkage()); 2339 return LV; 2340 } 2341 2342 Qualifiers::ObjCLifetime Type::getObjCARCImplicitLifetime() const { 2343 if (isObjCARCImplicitlyUnretainedType()) 2344 return Qualifiers::OCL_ExplicitNone; 2345 return Qualifiers::OCL_Strong; 2346 } 2347 2348 bool Type::isObjCARCImplicitlyUnretainedType() const { 2349 assert(isObjCLifetimeType() && 2350 "cannot query implicit lifetime for non-inferrable type"); 2351 2352 const Type *canon = getCanonicalTypeInternal().getTypePtr(); 2353 2354 // Walk down to the base type. We don't care about qualifiers for this. 2355 while (const ArrayType *array = dyn_cast<ArrayType>(canon)) 2356 canon = array->getElementType().getTypePtr(); 2357 2358 if (const ObjCObjectPointerType *opt 2359 = dyn_cast<ObjCObjectPointerType>(canon)) { 2360 // Class and Class<Protocol> don't require retension. 2361 if (opt->getObjectType()->isObjCClass()) 2362 return true; 2363 } 2364 2365 return false; 2366 } 2367 2368 bool Type::isObjCNSObjectType() const { 2369 if (const TypedefType *typedefType = dyn_cast<TypedefType>(this)) 2370 return typedefType->getDecl()->hasAttr<ObjCNSObjectAttr>(); 2371 return false; 2372 } 2373 bool Type::isObjCRetainableType() const { 2374 return isObjCObjectPointerType() || 2375 isBlockPointerType() || 2376 isObjCNSObjectType(); 2377 } 2378 bool Type::isObjCIndirectLifetimeType() const { 2379 if (isObjCLifetimeType()) 2380 return true; 2381 if (const PointerType *OPT = getAs<PointerType>()) 2382 return OPT->getPointeeType()->isObjCIndirectLifetimeType(); 2383 if (const ReferenceType *Ref = getAs<ReferenceType>()) 2384 return Ref->getPointeeType()->isObjCIndirectLifetimeType(); 2385 if (const MemberPointerType *MemPtr = getAs<MemberPointerType>()) 2386 return MemPtr->getPointeeType()->isObjCIndirectLifetimeType(); 2387 return false; 2388 } 2389 2390 /// Returns true if objects of this type have lifetime semantics under 2391 /// ARC. 2392 bool Type::isObjCLifetimeType() const { 2393 const Type *type = this; 2394 while (const ArrayType *array = type->getAsArrayTypeUnsafe()) 2395 type = array->getElementType().getTypePtr(); 2396 return type->isObjCRetainableType(); 2397 } 2398 2399 /// \brief Determine whether the given type T is a "bridgable" Objective-C type, 2400 /// which is either an Objective-C object pointer type or an 2401 bool Type::isObjCARCBridgableType() const { 2402 return isObjCObjectPointerType() || isBlockPointerType(); 2403 } 2404 2405 /// \brief Determine whether the given type T is a "bridgeable" C type. 2406 bool Type::isCARCBridgableType() const { 2407 const PointerType *Pointer = getAs<PointerType>(); 2408 if (!Pointer) 2409 return false; 2410 2411 QualType Pointee = Pointer->getPointeeType(); 2412 return Pointee->isVoidType() || Pointee->isRecordType(); 2413 } 2414 2415 bool Type::hasSizedVLAType() const { 2416 if (!isVariablyModifiedType()) return false; 2417 2418 if (const PointerType *ptr = getAs<PointerType>()) 2419 return ptr->getPointeeType()->hasSizedVLAType(); 2420 if (const ReferenceType *ref = getAs<ReferenceType>()) 2421 return ref->getPointeeType()->hasSizedVLAType(); 2422 if (const ArrayType *arr = getAsArrayTypeUnsafe()) { 2423 if (isa<VariableArrayType>(arr) && 2424 cast<VariableArrayType>(arr)->getSizeExpr()) 2425 return true; 2426 2427 return arr->getElementType()->hasSizedVLAType(); 2428 } 2429 2430 return false; 2431 } 2432 2433 QualType::DestructionKind QualType::isDestructedTypeImpl(QualType type) { 2434 switch (type.getObjCLifetime()) { 2435 case Qualifiers::OCL_None: 2436 case Qualifiers::OCL_ExplicitNone: 2437 case Qualifiers::OCL_Autoreleasing: 2438 break; 2439 2440 case Qualifiers::OCL_Strong: 2441 return DK_objc_strong_lifetime; 2442 case Qualifiers::OCL_Weak: 2443 return DK_objc_weak_lifetime; 2444 } 2445 2446 /// Currently, the only destruction kind we recognize is C++ objects 2447 /// with non-trivial destructors. 2448 const CXXRecordDecl *record = 2449 type->getBaseElementTypeUnsafe()->getAsCXXRecordDecl(); 2450 if (record && record->hasDefinition() && !record->hasTrivialDestructor()) 2451 return DK_cxx_destructor; 2452 2453 return DK_none; 2454 } 2455 2456 CXXRecordDecl *MemberPointerType::getMostRecentCXXRecordDecl() const { 2457 return getClass()->getAsCXXRecordDecl()->getMostRecentDecl(); 2458 } 2459