1 //===- DeclCXX.cpp - C++ Declaration AST Node Implementation --------------===// 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 the C++ related Decl classes. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "clang/AST/DeclCXX.h" 14 #include "clang/AST/ASTContext.h" 15 #include "clang/AST/ASTLambda.h" 16 #include "clang/AST/ASTMutationListener.h" 17 #include "clang/AST/ASTUnresolvedSet.h" 18 #include "clang/AST/Attr.h" 19 #include "clang/AST/CXXInheritance.h" 20 #include "clang/AST/DeclBase.h" 21 #include "clang/AST/DeclTemplate.h" 22 #include "clang/AST/DeclarationName.h" 23 #include "clang/AST/Expr.h" 24 #include "clang/AST/ExprCXX.h" 25 #include "clang/AST/LambdaCapture.h" 26 #include "clang/AST/NestedNameSpecifier.h" 27 #include "clang/AST/ODRHash.h" 28 #include "clang/AST/Type.h" 29 #include "clang/AST/TypeLoc.h" 30 #include "clang/AST/UnresolvedSet.h" 31 #include "clang/Basic/Diagnostic.h" 32 #include "clang/Basic/IdentifierTable.h" 33 #include "clang/Basic/LLVM.h" 34 #include "clang/Basic/LangOptions.h" 35 #include "clang/Basic/OperatorKinds.h" 36 #include "clang/Basic/PartialDiagnostic.h" 37 #include "clang/Basic/SourceLocation.h" 38 #include "clang/Basic/Specifiers.h" 39 #include "clang/Basic/TargetInfo.h" 40 #include "llvm/ADT/SmallPtrSet.h" 41 #include "llvm/ADT/SmallVector.h" 42 #include "llvm/ADT/iterator_range.h" 43 #include "llvm/Support/Casting.h" 44 #include "llvm/Support/ErrorHandling.h" 45 #include "llvm/Support/Format.h" 46 #include "llvm/Support/raw_ostream.h" 47 #include <algorithm> 48 #include <cassert> 49 #include <cstddef> 50 #include <cstdint> 51 52 using namespace clang; 53 54 //===----------------------------------------------------------------------===// 55 // Decl Allocation/Deallocation Method Implementations 56 //===----------------------------------------------------------------------===// 57 58 void AccessSpecDecl::anchor() {} 59 60 AccessSpecDecl *AccessSpecDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 61 return new (C, ID) AccessSpecDecl(EmptyShell()); 62 } 63 64 void LazyASTUnresolvedSet::getFromExternalSource(ASTContext &C) const { 65 ExternalASTSource *Source = C.getExternalSource(); 66 assert(Impl.Decls.isLazy() && "getFromExternalSource for non-lazy set"); 67 assert(Source && "getFromExternalSource with no external source"); 68 69 for (ASTUnresolvedSet::iterator I = Impl.begin(); I != Impl.end(); ++I) 70 I.setDecl(cast<NamedDecl>(Source->GetExternalDecl( 71 reinterpret_cast<uintptr_t>(I.getDecl()) >> 2))); 72 Impl.Decls.setLazy(false); 73 } 74 75 CXXRecordDecl::DefinitionData::DefinitionData(CXXRecordDecl *D) 76 : UserDeclaredConstructor(false), UserDeclaredSpecialMembers(0), 77 Aggregate(true), PlainOldData(true), Empty(true), Polymorphic(false), 78 Abstract(false), IsStandardLayout(true), IsCXX11StandardLayout(true), 79 HasBasesWithFields(false), HasBasesWithNonStaticDataMembers(false), 80 HasPrivateFields(false), HasProtectedFields(false), 81 HasPublicFields(false), HasMutableFields(false), HasVariantMembers(false), 82 HasOnlyCMembers(true), HasInitMethod(false), HasInClassInitializer(false), 83 HasUninitializedReferenceMember(false), HasUninitializedFields(false), 84 HasInheritedConstructor(false), HasInheritedDefaultConstructor(false), 85 HasInheritedAssignment(false), 86 NeedOverloadResolutionForCopyConstructor(false), 87 NeedOverloadResolutionForMoveConstructor(false), 88 NeedOverloadResolutionForCopyAssignment(false), 89 NeedOverloadResolutionForMoveAssignment(false), 90 NeedOverloadResolutionForDestructor(false), 91 DefaultedCopyConstructorIsDeleted(false), 92 DefaultedMoveConstructorIsDeleted(false), 93 DefaultedCopyAssignmentIsDeleted(false), 94 DefaultedMoveAssignmentIsDeleted(false), 95 DefaultedDestructorIsDeleted(false), HasTrivialSpecialMembers(SMF_All), 96 HasTrivialSpecialMembersForCall(SMF_All), 97 DeclaredNonTrivialSpecialMembers(0), 98 DeclaredNonTrivialSpecialMembersForCall(0), HasIrrelevantDestructor(true), 99 HasConstexprNonCopyMoveConstructor(false), 100 HasDefaultedDefaultConstructor(false), 101 DefaultedDefaultConstructorIsConstexpr(true), 102 HasConstexprDefaultConstructor(false), 103 DefaultedDestructorIsConstexpr(true), 104 HasNonLiteralTypeFieldsOrBases(false), StructuralIfLiteral(true), 105 UserProvidedDefaultConstructor(false), DeclaredSpecialMembers(0), 106 ImplicitCopyConstructorCanHaveConstParamForVBase(true), 107 ImplicitCopyConstructorCanHaveConstParamForNonVBase(true), 108 ImplicitCopyAssignmentHasConstParam(true), 109 HasDeclaredCopyConstructorWithConstParam(false), 110 HasDeclaredCopyAssignmentWithConstParam(false), 111 IsAnyDestructorNoReturn(false), IsLambda(false), 112 IsParsingBaseSpecifiers(false), ComputedVisibleConversions(false), 113 HasODRHash(false), Definition(D) {} 114 115 CXXBaseSpecifier *CXXRecordDecl::DefinitionData::getBasesSlowCase() const { 116 return Bases.get(Definition->getASTContext().getExternalSource()); 117 } 118 119 CXXBaseSpecifier *CXXRecordDecl::DefinitionData::getVBasesSlowCase() const { 120 return VBases.get(Definition->getASTContext().getExternalSource()); 121 } 122 123 CXXRecordDecl::CXXRecordDecl(Kind K, TagKind TK, const ASTContext &C, 124 DeclContext *DC, SourceLocation StartLoc, 125 SourceLocation IdLoc, IdentifierInfo *Id, 126 CXXRecordDecl *PrevDecl) 127 : RecordDecl(K, TK, C, DC, StartLoc, IdLoc, Id, PrevDecl), 128 DefinitionData(PrevDecl ? PrevDecl->DefinitionData 129 : nullptr) {} 130 131 CXXRecordDecl *CXXRecordDecl::Create(const ASTContext &C, TagKind TK, 132 DeclContext *DC, SourceLocation StartLoc, 133 SourceLocation IdLoc, IdentifierInfo *Id, 134 CXXRecordDecl *PrevDecl, 135 bool DelayTypeCreation) { 136 auto *R = new (C, DC) CXXRecordDecl(CXXRecord, TK, C, DC, StartLoc, IdLoc, Id, 137 PrevDecl); 138 R->setMayHaveOutOfDateDef(C.getLangOpts().Modules); 139 140 // FIXME: DelayTypeCreation seems like such a hack 141 if (!DelayTypeCreation) 142 C.getTypeDeclType(R, PrevDecl); 143 return R; 144 } 145 146 CXXRecordDecl * 147 CXXRecordDecl::CreateLambda(const ASTContext &C, DeclContext *DC, 148 TypeSourceInfo *Info, SourceLocation Loc, 149 unsigned DependencyKind, bool IsGeneric, 150 LambdaCaptureDefault CaptureDefault) { 151 auto *R = new (C, DC) CXXRecordDecl(CXXRecord, TTK_Class, C, DC, Loc, Loc, 152 nullptr, nullptr); 153 R->setBeingDefined(true); 154 R->DefinitionData = new (C) struct LambdaDefinitionData( 155 R, Info, DependencyKind, IsGeneric, CaptureDefault); 156 R->setMayHaveOutOfDateDef(false); 157 R->setImplicit(true); 158 159 C.getTypeDeclType(R, /*PrevDecl=*/nullptr); 160 return R; 161 } 162 163 CXXRecordDecl * 164 CXXRecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) { 165 auto *R = new (C, ID) CXXRecordDecl( 166 CXXRecord, TTK_Struct, C, nullptr, SourceLocation(), SourceLocation(), 167 nullptr, nullptr); 168 R->setMayHaveOutOfDateDef(false); 169 return R; 170 } 171 172 /// Determine whether a class has a repeated base class. This is intended for 173 /// use when determining if a class is standard-layout, so makes no attempt to 174 /// handle virtual bases. 175 static bool hasRepeatedBaseClass(const CXXRecordDecl *StartRD) { 176 llvm::SmallPtrSet<const CXXRecordDecl*, 8> SeenBaseTypes; 177 SmallVector<const CXXRecordDecl*, 8> WorkList = {StartRD}; 178 while (!WorkList.empty()) { 179 const CXXRecordDecl *RD = WorkList.pop_back_val(); 180 if (RD->getTypeForDecl()->isDependentType()) 181 continue; 182 for (const CXXBaseSpecifier &BaseSpec : RD->bases()) { 183 if (const CXXRecordDecl *B = BaseSpec.getType()->getAsCXXRecordDecl()) { 184 if (!SeenBaseTypes.insert(B).second) 185 return true; 186 WorkList.push_back(B); 187 } 188 } 189 } 190 return false; 191 } 192 193 void 194 CXXRecordDecl::setBases(CXXBaseSpecifier const * const *Bases, 195 unsigned NumBases) { 196 ASTContext &C = getASTContext(); 197 198 if (!data().Bases.isOffset() && data().NumBases > 0) 199 C.Deallocate(data().getBases()); 200 201 if (NumBases) { 202 if (!C.getLangOpts().CPlusPlus17) { 203 // C++ [dcl.init.aggr]p1: 204 // An aggregate is [...] a class with [...] no base classes [...]. 205 data().Aggregate = false; 206 } 207 208 // C++ [class]p4: 209 // A POD-struct is an aggregate class... 210 data().PlainOldData = false; 211 } 212 213 // The set of seen virtual base types. 214 llvm::SmallPtrSet<CanQualType, 8> SeenVBaseTypes; 215 216 // The virtual bases of this class. 217 SmallVector<const CXXBaseSpecifier *, 8> VBases; 218 219 data().Bases = new(C) CXXBaseSpecifier [NumBases]; 220 data().NumBases = NumBases; 221 for (unsigned i = 0; i < NumBases; ++i) { 222 data().getBases()[i] = *Bases[i]; 223 // Keep track of inherited vbases for this base class. 224 const CXXBaseSpecifier *Base = Bases[i]; 225 QualType BaseType = Base->getType(); 226 // Skip dependent types; we can't do any checking on them now. 227 if (BaseType->isDependentType()) 228 continue; 229 auto *BaseClassDecl = 230 cast<CXXRecordDecl>(BaseType->castAs<RecordType>()->getDecl()); 231 232 // C++2a [class]p7: 233 // A standard-layout class is a class that: 234 // [...] 235 // -- has all non-static data members and bit-fields in the class and 236 // its base classes first declared in the same class 237 if (BaseClassDecl->data().HasBasesWithFields || 238 !BaseClassDecl->field_empty()) { 239 if (data().HasBasesWithFields) 240 // Two bases have members or bit-fields: not standard-layout. 241 data().IsStandardLayout = false; 242 data().HasBasesWithFields = true; 243 } 244 245 // C++11 [class]p7: 246 // A standard-layout class is a class that: 247 // -- [...] has [...] at most one base class with non-static data 248 // members 249 if (BaseClassDecl->data().HasBasesWithNonStaticDataMembers || 250 BaseClassDecl->hasDirectFields()) { 251 if (data().HasBasesWithNonStaticDataMembers) 252 data().IsCXX11StandardLayout = false; 253 data().HasBasesWithNonStaticDataMembers = true; 254 } 255 256 if (!BaseClassDecl->isEmpty()) { 257 // C++14 [meta.unary.prop]p4: 258 // T is a class type [...] with [...] no base class B for which 259 // is_empty<B>::value is false. 260 data().Empty = false; 261 } 262 263 // C++1z [dcl.init.agg]p1: 264 // An aggregate is a class with [...] no private or protected base classes 265 if (Base->getAccessSpecifier() != AS_public) { 266 data().Aggregate = false; 267 268 // C++20 [temp.param]p7: 269 // A structural type is [...] a literal class type with [...] all base 270 // classes [...] public 271 data().StructuralIfLiteral = false; 272 } 273 274 // C++ [class.virtual]p1: 275 // A class that declares or inherits a virtual function is called a 276 // polymorphic class. 277 if (BaseClassDecl->isPolymorphic()) { 278 data().Polymorphic = true; 279 280 // An aggregate is a class with [...] no virtual functions. 281 data().Aggregate = false; 282 } 283 284 // C++0x [class]p7: 285 // A standard-layout class is a class that: [...] 286 // -- has no non-standard-layout base classes 287 if (!BaseClassDecl->isStandardLayout()) 288 data().IsStandardLayout = false; 289 if (!BaseClassDecl->isCXX11StandardLayout()) 290 data().IsCXX11StandardLayout = false; 291 292 // Record if this base is the first non-literal field or base. 293 if (!hasNonLiteralTypeFieldsOrBases() && !BaseType->isLiteralType(C)) 294 data().HasNonLiteralTypeFieldsOrBases = true; 295 296 // Now go through all virtual bases of this base and add them. 297 for (const auto &VBase : BaseClassDecl->vbases()) { 298 // Add this base if it's not already in the list. 299 if (SeenVBaseTypes.insert(C.getCanonicalType(VBase.getType())).second) { 300 VBases.push_back(&VBase); 301 302 // C++11 [class.copy]p8: 303 // The implicitly-declared copy constructor for a class X will have 304 // the form 'X::X(const X&)' if each [...] virtual base class B of X 305 // has a copy constructor whose first parameter is of type 306 // 'const B&' or 'const volatile B&' [...] 307 if (CXXRecordDecl *VBaseDecl = VBase.getType()->getAsCXXRecordDecl()) 308 if (!VBaseDecl->hasCopyConstructorWithConstParam()) 309 data().ImplicitCopyConstructorCanHaveConstParamForVBase = false; 310 311 // C++1z [dcl.init.agg]p1: 312 // An aggregate is a class with [...] no virtual base classes 313 data().Aggregate = false; 314 } 315 } 316 317 if (Base->isVirtual()) { 318 // Add this base if it's not already in the list. 319 if (SeenVBaseTypes.insert(C.getCanonicalType(BaseType)).second) 320 VBases.push_back(Base); 321 322 // C++14 [meta.unary.prop] is_empty: 323 // T is a class type, but not a union type, with ... no virtual base 324 // classes 325 data().Empty = false; 326 327 // C++1z [dcl.init.agg]p1: 328 // An aggregate is a class with [...] no virtual base classes 329 data().Aggregate = false; 330 331 // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25: 332 // A [default constructor, copy/move constructor, or copy/move assignment 333 // operator for a class X] is trivial [...] if: 334 // -- class X has [...] no virtual base classes 335 data().HasTrivialSpecialMembers &= SMF_Destructor; 336 data().HasTrivialSpecialMembersForCall &= SMF_Destructor; 337 338 // C++0x [class]p7: 339 // A standard-layout class is a class that: [...] 340 // -- has [...] no virtual base classes 341 data().IsStandardLayout = false; 342 data().IsCXX11StandardLayout = false; 343 344 // C++20 [dcl.constexpr]p3: 345 // In the definition of a constexpr function [...] 346 // -- if the function is a constructor or destructor, 347 // its class shall not have any virtual base classes 348 data().DefaultedDefaultConstructorIsConstexpr = false; 349 data().DefaultedDestructorIsConstexpr = false; 350 351 // C++1z [class.copy]p8: 352 // The implicitly-declared copy constructor for a class X will have 353 // the form 'X::X(const X&)' if each potentially constructed subobject 354 // has a copy constructor whose first parameter is of type 355 // 'const B&' or 'const volatile B&' [...] 356 if (!BaseClassDecl->hasCopyConstructorWithConstParam()) 357 data().ImplicitCopyConstructorCanHaveConstParamForVBase = false; 358 } else { 359 // C++ [class.ctor]p5: 360 // A default constructor is trivial [...] if: 361 // -- all the direct base classes of its class have trivial default 362 // constructors. 363 if (!BaseClassDecl->hasTrivialDefaultConstructor()) 364 data().HasTrivialSpecialMembers &= ~SMF_DefaultConstructor; 365 366 // C++0x [class.copy]p13: 367 // A copy/move constructor for class X is trivial if [...] 368 // [...] 369 // -- the constructor selected to copy/move each direct base class 370 // subobject is trivial, and 371 if (!BaseClassDecl->hasTrivialCopyConstructor()) 372 data().HasTrivialSpecialMembers &= ~SMF_CopyConstructor; 373 374 if (!BaseClassDecl->hasTrivialCopyConstructorForCall()) 375 data().HasTrivialSpecialMembersForCall &= ~SMF_CopyConstructor; 376 377 // If the base class doesn't have a simple move constructor, we'll eagerly 378 // declare it and perform overload resolution to determine which function 379 // it actually calls. If it does have a simple move constructor, this 380 // check is correct. 381 if (!BaseClassDecl->hasTrivialMoveConstructor()) 382 data().HasTrivialSpecialMembers &= ~SMF_MoveConstructor; 383 384 if (!BaseClassDecl->hasTrivialMoveConstructorForCall()) 385 data().HasTrivialSpecialMembersForCall &= ~SMF_MoveConstructor; 386 387 // C++0x [class.copy]p27: 388 // A copy/move assignment operator for class X is trivial if [...] 389 // [...] 390 // -- the assignment operator selected to copy/move each direct base 391 // class subobject is trivial, and 392 if (!BaseClassDecl->hasTrivialCopyAssignment()) 393 data().HasTrivialSpecialMembers &= ~SMF_CopyAssignment; 394 // If the base class doesn't have a simple move assignment, we'll eagerly 395 // declare it and perform overload resolution to determine which function 396 // it actually calls. If it does have a simple move assignment, this 397 // check is correct. 398 if (!BaseClassDecl->hasTrivialMoveAssignment()) 399 data().HasTrivialSpecialMembers &= ~SMF_MoveAssignment; 400 401 // C++11 [class.ctor]p6: 402 // If that user-written default constructor would satisfy the 403 // requirements of a constexpr constructor, the implicitly-defined 404 // default constructor is constexpr. 405 if (!BaseClassDecl->hasConstexprDefaultConstructor()) 406 data().DefaultedDefaultConstructorIsConstexpr = false; 407 408 // C++1z [class.copy]p8: 409 // The implicitly-declared copy constructor for a class X will have 410 // the form 'X::X(const X&)' if each potentially constructed subobject 411 // has a copy constructor whose first parameter is of type 412 // 'const B&' or 'const volatile B&' [...] 413 if (!BaseClassDecl->hasCopyConstructorWithConstParam()) 414 data().ImplicitCopyConstructorCanHaveConstParamForNonVBase = false; 415 } 416 417 // C++ [class.ctor]p3: 418 // A destructor is trivial if all the direct base classes of its class 419 // have trivial destructors. 420 if (!BaseClassDecl->hasTrivialDestructor()) 421 data().HasTrivialSpecialMembers &= ~SMF_Destructor; 422 423 if (!BaseClassDecl->hasTrivialDestructorForCall()) 424 data().HasTrivialSpecialMembersForCall &= ~SMF_Destructor; 425 426 if (!BaseClassDecl->hasIrrelevantDestructor()) 427 data().HasIrrelevantDestructor = false; 428 429 if (BaseClassDecl->isAnyDestructorNoReturn()) 430 data().IsAnyDestructorNoReturn = true; 431 432 // C++11 [class.copy]p18: 433 // The implicitly-declared copy assignment operator for a class X will 434 // have the form 'X& X::operator=(const X&)' if each direct base class B 435 // of X has a copy assignment operator whose parameter is of type 'const 436 // B&', 'const volatile B&', or 'B' [...] 437 if (!BaseClassDecl->hasCopyAssignmentWithConstParam()) 438 data().ImplicitCopyAssignmentHasConstParam = false; 439 440 // A class has an Objective-C object member if... or any of its bases 441 // has an Objective-C object member. 442 if (BaseClassDecl->hasObjectMember()) 443 setHasObjectMember(true); 444 445 if (BaseClassDecl->hasVolatileMember()) 446 setHasVolatileMember(true); 447 448 if (BaseClassDecl->getArgPassingRestrictions() == 449 RecordDecl::APK_CanNeverPassInRegs) 450 setArgPassingRestrictions(RecordDecl::APK_CanNeverPassInRegs); 451 452 // Keep track of the presence of mutable fields. 453 if (BaseClassDecl->hasMutableFields()) 454 data().HasMutableFields = true; 455 456 if (BaseClassDecl->hasUninitializedReferenceMember()) 457 data().HasUninitializedReferenceMember = true; 458 459 if (!BaseClassDecl->allowConstDefaultInit()) 460 data().HasUninitializedFields = true; 461 462 addedClassSubobject(BaseClassDecl); 463 } 464 465 // C++2a [class]p7: 466 // A class S is a standard-layout class if it: 467 // -- has at most one base class subobject of any given type 468 // 469 // Note that we only need to check this for classes with more than one base 470 // class. If there's only one base class, and it's standard layout, then 471 // we know there are no repeated base classes. 472 if (data().IsStandardLayout && NumBases > 1 && hasRepeatedBaseClass(this)) 473 data().IsStandardLayout = false; 474 475 if (VBases.empty()) { 476 data().IsParsingBaseSpecifiers = false; 477 return; 478 } 479 480 // Create base specifier for any direct or indirect virtual bases. 481 data().VBases = new (C) CXXBaseSpecifier[VBases.size()]; 482 data().NumVBases = VBases.size(); 483 for (int I = 0, E = VBases.size(); I != E; ++I) { 484 QualType Type = VBases[I]->getType(); 485 if (!Type->isDependentType()) 486 addedClassSubobject(Type->getAsCXXRecordDecl()); 487 data().getVBases()[I] = *VBases[I]; 488 } 489 490 data().IsParsingBaseSpecifiers = false; 491 } 492 493 unsigned CXXRecordDecl::getODRHash() const { 494 assert(hasDefinition() && "ODRHash only for records with definitions"); 495 496 // Previously calculated hash is stored in DefinitionData. 497 if (DefinitionData->HasODRHash) 498 return DefinitionData->ODRHash; 499 500 // Only calculate hash on first call of getODRHash per record. 501 ODRHash Hash; 502 Hash.AddCXXRecordDecl(getDefinition()); 503 DefinitionData->HasODRHash = true; 504 DefinitionData->ODRHash = Hash.CalculateHash(); 505 506 return DefinitionData->ODRHash; 507 } 508 509 void CXXRecordDecl::addedClassSubobject(CXXRecordDecl *Subobj) { 510 // C++11 [class.copy]p11: 511 // A defaulted copy/move constructor for a class X is defined as 512 // deleted if X has: 513 // -- a direct or virtual base class B that cannot be copied/moved [...] 514 // -- a non-static data member of class type M (or array thereof) 515 // that cannot be copied or moved [...] 516 if (!Subobj->hasSimpleCopyConstructor()) 517 data().NeedOverloadResolutionForCopyConstructor = true; 518 if (!Subobj->hasSimpleMoveConstructor()) 519 data().NeedOverloadResolutionForMoveConstructor = true; 520 521 // C++11 [class.copy]p23: 522 // A defaulted copy/move assignment operator for a class X is defined as 523 // deleted if X has: 524 // -- a direct or virtual base class B that cannot be copied/moved [...] 525 // -- a non-static data member of class type M (or array thereof) 526 // that cannot be copied or moved [...] 527 if (!Subobj->hasSimpleCopyAssignment()) 528 data().NeedOverloadResolutionForCopyAssignment = true; 529 if (!Subobj->hasSimpleMoveAssignment()) 530 data().NeedOverloadResolutionForMoveAssignment = true; 531 532 // C++11 [class.ctor]p5, C++11 [class.copy]p11, C++11 [class.dtor]p5: 533 // A defaulted [ctor or dtor] for a class X is defined as 534 // deleted if X has: 535 // -- any direct or virtual base class [...] has a type with a destructor 536 // that is deleted or inaccessible from the defaulted [ctor or dtor]. 537 // -- any non-static data member has a type with a destructor 538 // that is deleted or inaccessible from the defaulted [ctor or dtor]. 539 if (!Subobj->hasSimpleDestructor()) { 540 data().NeedOverloadResolutionForCopyConstructor = true; 541 data().NeedOverloadResolutionForMoveConstructor = true; 542 data().NeedOverloadResolutionForDestructor = true; 543 } 544 545 // C++2a [dcl.constexpr]p4: 546 // The definition of a constexpr destructor [shall] satisfy the 547 // following requirement: 548 // -- for every subobject of class type or (possibly multi-dimensional) 549 // array thereof, that class type shall have a constexpr destructor 550 if (!Subobj->hasConstexprDestructor()) 551 data().DefaultedDestructorIsConstexpr = false; 552 553 // C++20 [temp.param]p7: 554 // A structural type is [...] a literal class type [for which] the types 555 // of all base classes and non-static data members are structural types or 556 // (possibly multi-dimensional) array thereof 557 if (!Subobj->data().StructuralIfLiteral) 558 data().StructuralIfLiteral = false; 559 } 560 561 bool CXXRecordDecl::hasConstexprDestructor() const { 562 auto *Dtor = getDestructor(); 563 return Dtor ? Dtor->isConstexpr() : defaultedDestructorIsConstexpr(); 564 } 565 566 bool CXXRecordDecl::hasAnyDependentBases() const { 567 if (!isDependentContext()) 568 return false; 569 570 return !forallBases([](const CXXRecordDecl *) { return true; }); 571 } 572 573 bool CXXRecordDecl::isTriviallyCopyable() const { 574 // C++0x [class]p5: 575 // A trivially copyable class is a class that: 576 // -- has no non-trivial copy constructors, 577 if (hasNonTrivialCopyConstructor()) return false; 578 // -- has no non-trivial move constructors, 579 if (hasNonTrivialMoveConstructor()) return false; 580 // -- has no non-trivial copy assignment operators, 581 if (hasNonTrivialCopyAssignment()) return false; 582 // -- has no non-trivial move assignment operators, and 583 if (hasNonTrivialMoveAssignment()) return false; 584 // -- has a trivial destructor. 585 if (!hasTrivialDestructor()) return false; 586 587 return true; 588 } 589 590 void CXXRecordDecl::markedVirtualFunctionPure() { 591 // C++ [class.abstract]p2: 592 // A class is abstract if it has at least one pure virtual function. 593 data().Abstract = true; 594 } 595 596 bool CXXRecordDecl::hasSubobjectAtOffsetZeroOfEmptyBaseType( 597 ASTContext &Ctx, const CXXRecordDecl *XFirst) { 598 if (!getNumBases()) 599 return false; 600 601 llvm::SmallPtrSet<const CXXRecordDecl*, 8> Bases; 602 llvm::SmallPtrSet<const CXXRecordDecl*, 8> M; 603 SmallVector<const CXXRecordDecl*, 8> WorkList; 604 605 // Visit a type that we have determined is an element of M(S). 606 auto Visit = [&](const CXXRecordDecl *RD) -> bool { 607 RD = RD->getCanonicalDecl(); 608 609 // C++2a [class]p8: 610 // A class S is a standard-layout class if it [...] has no element of the 611 // set M(S) of types as a base class. 612 // 613 // If we find a subobject of an empty type, it might also be a base class, 614 // so we'll need to walk the base classes to check. 615 if (!RD->data().HasBasesWithFields) { 616 // Walk the bases the first time, stopping if we find the type. Build a 617 // set of them so we don't need to walk them again. 618 if (Bases.empty()) { 619 bool RDIsBase = !forallBases([&](const CXXRecordDecl *Base) -> bool { 620 Base = Base->getCanonicalDecl(); 621 if (RD == Base) 622 return false; 623 Bases.insert(Base); 624 return true; 625 }); 626 if (RDIsBase) 627 return true; 628 } else { 629 if (Bases.count(RD)) 630 return true; 631 } 632 } 633 634 if (M.insert(RD).second) 635 WorkList.push_back(RD); 636 return false; 637 }; 638 639 if (Visit(XFirst)) 640 return true; 641 642 while (!WorkList.empty()) { 643 const CXXRecordDecl *X = WorkList.pop_back_val(); 644 645 // FIXME: We don't check the bases of X. That matches the standard, but 646 // that sure looks like a wording bug. 647 648 // -- If X is a non-union class type with a non-static data member 649 // [recurse to each field] that is either of zero size or is the 650 // first non-static data member of X 651 // -- If X is a union type, [recurse to union members] 652 bool IsFirstField = true; 653 for (auto *FD : X->fields()) { 654 // FIXME: Should we really care about the type of the first non-static 655 // data member of a non-union if there are preceding unnamed bit-fields? 656 if (FD->isUnnamedBitfield()) 657 continue; 658 659 if (!IsFirstField && !FD->isZeroSize(Ctx)) 660 continue; 661 662 // -- If X is n array type, [visit the element type] 663 QualType T = Ctx.getBaseElementType(FD->getType()); 664 if (auto *RD = T->getAsCXXRecordDecl()) 665 if (Visit(RD)) 666 return true; 667 668 if (!X->isUnion()) 669 IsFirstField = false; 670 } 671 } 672 673 return false; 674 } 675 676 bool CXXRecordDecl::lambdaIsDefaultConstructibleAndAssignable() const { 677 assert(isLambda() && "not a lambda"); 678 679 // C++2a [expr.prim.lambda.capture]p11: 680 // The closure type associated with a lambda-expression has no default 681 // constructor if the lambda-expression has a lambda-capture and a 682 // defaulted default constructor otherwise. It has a deleted copy 683 // assignment operator if the lambda-expression has a lambda-capture and 684 // defaulted copy and move assignment operators otherwise. 685 // 686 // C++17 [expr.prim.lambda]p21: 687 // The closure type associated with a lambda-expression has no default 688 // constructor and a deleted copy assignment operator. 689 if (getLambdaCaptureDefault() != LCD_None || capture_size() != 0) 690 return false; 691 return getASTContext().getLangOpts().CPlusPlus20; 692 } 693 694 void CXXRecordDecl::addedMember(Decl *D) { 695 if (!D->isImplicit() && 696 !isa<FieldDecl>(D) && 697 !isa<IndirectFieldDecl>(D) && 698 (!isa<TagDecl>(D) || cast<TagDecl>(D)->getTagKind() == TTK_Class || 699 cast<TagDecl>(D)->getTagKind() == TTK_Interface)) 700 data().HasOnlyCMembers = false; 701 702 // Ignore friends and invalid declarations. 703 if (D->getFriendObjectKind() || D->isInvalidDecl()) 704 return; 705 706 auto *FunTmpl = dyn_cast<FunctionTemplateDecl>(D); 707 if (FunTmpl) 708 D = FunTmpl->getTemplatedDecl(); 709 710 // FIXME: Pass NamedDecl* to addedMember? 711 Decl *DUnderlying = D; 712 if (auto *ND = dyn_cast<NamedDecl>(DUnderlying)) { 713 DUnderlying = ND->getUnderlyingDecl(); 714 if (auto *UnderlyingFunTmpl = dyn_cast<FunctionTemplateDecl>(DUnderlying)) 715 DUnderlying = UnderlyingFunTmpl->getTemplatedDecl(); 716 } 717 718 if (const auto *Method = dyn_cast<CXXMethodDecl>(D)) { 719 if (Method->isVirtual()) { 720 // C++ [dcl.init.aggr]p1: 721 // An aggregate is an array or a class with [...] no virtual functions. 722 data().Aggregate = false; 723 724 // C++ [class]p4: 725 // A POD-struct is an aggregate class... 726 data().PlainOldData = false; 727 728 // C++14 [meta.unary.prop]p4: 729 // T is a class type [...] with [...] no virtual member functions... 730 data().Empty = false; 731 732 // C++ [class.virtual]p1: 733 // A class that declares or inherits a virtual function is called a 734 // polymorphic class. 735 data().Polymorphic = true; 736 737 // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25: 738 // A [default constructor, copy/move constructor, or copy/move 739 // assignment operator for a class X] is trivial [...] if: 740 // -- class X has no virtual functions [...] 741 data().HasTrivialSpecialMembers &= SMF_Destructor; 742 data().HasTrivialSpecialMembersForCall &= SMF_Destructor; 743 744 // C++0x [class]p7: 745 // A standard-layout class is a class that: [...] 746 // -- has no virtual functions 747 data().IsStandardLayout = false; 748 data().IsCXX11StandardLayout = false; 749 } 750 } 751 752 // Notify the listener if an implicit member was added after the definition 753 // was completed. 754 if (!isBeingDefined() && D->isImplicit()) 755 if (ASTMutationListener *L = getASTMutationListener()) 756 L->AddedCXXImplicitMember(data().Definition, D); 757 758 // The kind of special member this declaration is, if any. 759 unsigned SMKind = 0; 760 761 // Handle constructors. 762 if (const auto *Constructor = dyn_cast<CXXConstructorDecl>(D)) { 763 if (Constructor->isInheritingConstructor()) { 764 // Ignore constructor shadow declarations. They are lazily created and 765 // so shouldn't affect any properties of the class. 766 } else { 767 if (!Constructor->isImplicit()) { 768 // Note that we have a user-declared constructor. 769 data().UserDeclaredConstructor = true; 770 771 const TargetInfo &TI = getASTContext().getTargetInfo(); 772 if ((!Constructor->isDeleted() && !Constructor->isDefaulted()) || 773 !TI.areDefaultedSMFStillPOD(getLangOpts())) { 774 // C++ [class]p4: 775 // A POD-struct is an aggregate class [...] 776 // Since the POD bit is meant to be C++03 POD-ness, clear it even if 777 // the type is technically an aggregate in C++0x since it wouldn't be 778 // in 03. 779 data().PlainOldData = false; 780 } 781 } 782 783 if (Constructor->isDefaultConstructor()) { 784 SMKind |= SMF_DefaultConstructor; 785 786 if (Constructor->isUserProvided()) 787 data().UserProvidedDefaultConstructor = true; 788 if (Constructor->isConstexpr()) 789 data().HasConstexprDefaultConstructor = true; 790 if (Constructor->isDefaulted()) 791 data().HasDefaultedDefaultConstructor = true; 792 } 793 794 if (!FunTmpl) { 795 unsigned Quals; 796 if (Constructor->isCopyConstructor(Quals)) { 797 SMKind |= SMF_CopyConstructor; 798 799 if (Quals & Qualifiers::Const) 800 data().HasDeclaredCopyConstructorWithConstParam = true; 801 } else if (Constructor->isMoveConstructor()) 802 SMKind |= SMF_MoveConstructor; 803 } 804 805 // C++11 [dcl.init.aggr]p1: DR1518 806 // An aggregate is an array or a class with no user-provided [or] 807 // explicit [...] constructors 808 // C++20 [dcl.init.aggr]p1: 809 // An aggregate is an array or a class with no user-declared [...] 810 // constructors 811 if (getASTContext().getLangOpts().CPlusPlus20 812 ? !Constructor->isImplicit() 813 : (Constructor->isUserProvided() || Constructor->isExplicit())) 814 data().Aggregate = false; 815 } 816 } 817 818 // Handle constructors, including those inherited from base classes. 819 if (const auto *Constructor = dyn_cast<CXXConstructorDecl>(DUnderlying)) { 820 // Record if we see any constexpr constructors which are neither copy 821 // nor move constructors. 822 // C++1z [basic.types]p10: 823 // [...] has at least one constexpr constructor or constructor template 824 // (possibly inherited from a base class) that is not a copy or move 825 // constructor [...] 826 if (Constructor->isConstexpr() && !Constructor->isCopyOrMoveConstructor()) 827 data().HasConstexprNonCopyMoveConstructor = true; 828 if (!isa<CXXConstructorDecl>(D) && Constructor->isDefaultConstructor()) 829 data().HasInheritedDefaultConstructor = true; 830 } 831 832 // Handle member functions. 833 if (const auto *Method = dyn_cast<CXXMethodDecl>(D)) { 834 if (isa<CXXDestructorDecl>(D)) 835 SMKind |= SMF_Destructor; 836 837 if (Method->isCopyAssignmentOperator()) { 838 SMKind |= SMF_CopyAssignment; 839 840 const auto *ParamTy = 841 Method->getParamDecl(0)->getType()->getAs<ReferenceType>(); 842 if (!ParamTy || ParamTy->getPointeeType().isConstQualified()) 843 data().HasDeclaredCopyAssignmentWithConstParam = true; 844 } 845 846 if (Method->isMoveAssignmentOperator()) 847 SMKind |= SMF_MoveAssignment; 848 849 // Keep the list of conversion functions up-to-date. 850 if (auto *Conversion = dyn_cast<CXXConversionDecl>(D)) { 851 // FIXME: We use the 'unsafe' accessor for the access specifier here, 852 // because Sema may not have set it yet. That's really just a misdesign 853 // in Sema. However, LLDB *will* have set the access specifier correctly, 854 // and adds declarations after the class is technically completed, 855 // so completeDefinition()'s overriding of the access specifiers doesn't 856 // work. 857 AccessSpecifier AS = Conversion->getAccessUnsafe(); 858 859 if (Conversion->getPrimaryTemplate()) { 860 // We don't record specializations. 861 } else { 862 ASTContext &Ctx = getASTContext(); 863 ASTUnresolvedSet &Conversions = data().Conversions.get(Ctx); 864 NamedDecl *Primary = 865 FunTmpl ? cast<NamedDecl>(FunTmpl) : cast<NamedDecl>(Conversion); 866 if (Primary->getPreviousDecl()) 867 Conversions.replace(cast<NamedDecl>(Primary->getPreviousDecl()), 868 Primary, AS); 869 else 870 Conversions.addDecl(Ctx, Primary, AS); 871 } 872 } 873 874 if (SMKind) { 875 // If this is the first declaration of a special member, we no longer have 876 // an implicit trivial special member. 877 data().HasTrivialSpecialMembers &= 878 data().DeclaredSpecialMembers | ~SMKind; 879 data().HasTrivialSpecialMembersForCall &= 880 data().DeclaredSpecialMembers | ~SMKind; 881 882 // Note when we have declared a declared special member, and suppress the 883 // implicit declaration of this special member. 884 data().DeclaredSpecialMembers |= SMKind; 885 if (!Method->isImplicit()) { 886 data().UserDeclaredSpecialMembers |= SMKind; 887 888 const TargetInfo &TI = getASTContext().getTargetInfo(); 889 if ((!Method->isDeleted() && !Method->isDefaulted() && 890 SMKind != SMF_MoveAssignment) || 891 !TI.areDefaultedSMFStillPOD(getLangOpts())) { 892 // C++03 [class]p4: 893 // A POD-struct is an aggregate class that has [...] no user-defined 894 // copy assignment operator and no user-defined destructor. 895 // 896 // Since the POD bit is meant to be C++03 POD-ness, and in C++03, 897 // aggregates could not have any constructors, clear it even for an 898 // explicitly defaulted or deleted constructor. 899 // type is technically an aggregate in C++0x since it wouldn't be in 900 // 03. 901 // 902 // Also, a user-declared move assignment operator makes a class 903 // non-POD. This is an extension in C++03. 904 data().PlainOldData = false; 905 } 906 } 907 // When instantiating a class, we delay updating the destructor and 908 // triviality properties of the class until selecting a destructor and 909 // computing the eligibility of its special member functions. This is 910 // because there might be function constraints that we need to evaluate 911 // and compare later in the instantiation. 912 if (!Method->isIneligibleOrNotSelected()) { 913 addedEligibleSpecialMemberFunction(Method, SMKind); 914 } 915 } 916 917 return; 918 } 919 920 // Handle non-static data members. 921 if (const auto *Field = dyn_cast<FieldDecl>(D)) { 922 ASTContext &Context = getASTContext(); 923 924 // C++2a [class]p7: 925 // A standard-layout class is a class that: 926 // [...] 927 // -- has all non-static data members and bit-fields in the class and 928 // its base classes first declared in the same class 929 if (data().HasBasesWithFields) 930 data().IsStandardLayout = false; 931 932 // C++ [class.bit]p2: 933 // A declaration for a bit-field that omits the identifier declares an 934 // unnamed bit-field. Unnamed bit-fields are not members and cannot be 935 // initialized. 936 if (Field->isUnnamedBitfield()) { 937 // C++ [meta.unary.prop]p4: [LWG2358] 938 // T is a class type [...] with [...] no unnamed bit-fields of non-zero 939 // length 940 if (data().Empty && !Field->isZeroLengthBitField(Context) && 941 Context.getLangOpts().getClangABICompat() > 942 LangOptions::ClangABI::Ver6) 943 data().Empty = false; 944 return; 945 } 946 947 // C++11 [class]p7: 948 // A standard-layout class is a class that: 949 // -- either has no non-static data members in the most derived class 950 // [...] or has no base classes with non-static data members 951 if (data().HasBasesWithNonStaticDataMembers) 952 data().IsCXX11StandardLayout = false; 953 954 // C++ [dcl.init.aggr]p1: 955 // An aggregate is an array or a class (clause 9) with [...] no 956 // private or protected non-static data members (clause 11). 957 // 958 // A POD must be an aggregate. 959 if (D->getAccess() == AS_private || D->getAccess() == AS_protected) { 960 data().Aggregate = false; 961 data().PlainOldData = false; 962 963 // C++20 [temp.param]p7: 964 // A structural type is [...] a literal class type [for which] all 965 // non-static data members are public 966 data().StructuralIfLiteral = false; 967 } 968 969 // Track whether this is the first field. We use this when checking 970 // whether the class is standard-layout below. 971 bool IsFirstField = !data().HasPrivateFields && 972 !data().HasProtectedFields && !data().HasPublicFields; 973 974 // C++0x [class]p7: 975 // A standard-layout class is a class that: 976 // [...] 977 // -- has the same access control for all non-static data members, 978 switch (D->getAccess()) { 979 case AS_private: data().HasPrivateFields = true; break; 980 case AS_protected: data().HasProtectedFields = true; break; 981 case AS_public: data().HasPublicFields = true; break; 982 case AS_none: llvm_unreachable("Invalid access specifier"); 983 }; 984 if ((data().HasPrivateFields + data().HasProtectedFields + 985 data().HasPublicFields) > 1) { 986 data().IsStandardLayout = false; 987 data().IsCXX11StandardLayout = false; 988 } 989 990 // Keep track of the presence of mutable fields. 991 if (Field->isMutable()) { 992 data().HasMutableFields = true; 993 994 // C++20 [temp.param]p7: 995 // A structural type is [...] a literal class type [for which] all 996 // non-static data members are public 997 data().StructuralIfLiteral = false; 998 } 999 1000 // C++11 [class.union]p8, DR1460: 1001 // If X is a union, a non-static data member of X that is not an anonymous 1002 // union is a variant member of X. 1003 if (isUnion() && !Field->isAnonymousStructOrUnion()) 1004 data().HasVariantMembers = true; 1005 1006 // C++0x [class]p9: 1007 // A POD struct is a class that is both a trivial class and a 1008 // standard-layout class, and has no non-static data members of type 1009 // non-POD struct, non-POD union (or array of such types). 1010 // 1011 // Automatic Reference Counting: the presence of a member of Objective-C pointer type 1012 // that does not explicitly have no lifetime makes the class a non-POD. 1013 QualType T = Context.getBaseElementType(Field->getType()); 1014 if (T->isObjCRetainableType() || T.isObjCGCStrong()) { 1015 if (T.hasNonTrivialObjCLifetime()) { 1016 // Objective-C Automatic Reference Counting: 1017 // If a class has a non-static data member of Objective-C pointer 1018 // type (or array thereof), it is a non-POD type and its 1019 // default constructor (if any), copy constructor, move constructor, 1020 // copy assignment operator, move assignment operator, and destructor are 1021 // non-trivial. 1022 setHasObjectMember(true); 1023 struct DefinitionData &Data = data(); 1024 Data.PlainOldData = false; 1025 Data.HasTrivialSpecialMembers = 0; 1026 1027 // __strong or __weak fields do not make special functions non-trivial 1028 // for the purpose of calls. 1029 Qualifiers::ObjCLifetime LT = T.getQualifiers().getObjCLifetime(); 1030 if (LT != Qualifiers::OCL_Strong && LT != Qualifiers::OCL_Weak) 1031 data().HasTrivialSpecialMembersForCall = 0; 1032 1033 // Structs with __weak fields should never be passed directly. 1034 if (LT == Qualifiers::OCL_Weak) 1035 setArgPassingRestrictions(RecordDecl::APK_CanNeverPassInRegs); 1036 1037 Data.HasIrrelevantDestructor = false; 1038 1039 if (isUnion()) { 1040 data().DefaultedCopyConstructorIsDeleted = true; 1041 data().DefaultedMoveConstructorIsDeleted = true; 1042 data().DefaultedCopyAssignmentIsDeleted = true; 1043 data().DefaultedMoveAssignmentIsDeleted = true; 1044 data().DefaultedDestructorIsDeleted = true; 1045 data().NeedOverloadResolutionForCopyConstructor = true; 1046 data().NeedOverloadResolutionForMoveConstructor = true; 1047 data().NeedOverloadResolutionForCopyAssignment = true; 1048 data().NeedOverloadResolutionForMoveAssignment = true; 1049 data().NeedOverloadResolutionForDestructor = true; 1050 } 1051 } else if (!Context.getLangOpts().ObjCAutoRefCount) { 1052 setHasObjectMember(true); 1053 } 1054 } else if (!T.isCXX98PODType(Context)) 1055 data().PlainOldData = false; 1056 1057 if (T->isReferenceType()) { 1058 if (!Field->hasInClassInitializer()) 1059 data().HasUninitializedReferenceMember = true; 1060 1061 // C++0x [class]p7: 1062 // A standard-layout class is a class that: 1063 // -- has no non-static data members of type [...] reference, 1064 data().IsStandardLayout = false; 1065 data().IsCXX11StandardLayout = false; 1066 1067 // C++1z [class.copy.ctor]p10: 1068 // A defaulted copy constructor for a class X is defined as deleted if X has: 1069 // -- a non-static data member of rvalue reference type 1070 if (T->isRValueReferenceType()) 1071 data().DefaultedCopyConstructorIsDeleted = true; 1072 } 1073 1074 if (!Field->hasInClassInitializer() && !Field->isMutable()) { 1075 if (CXXRecordDecl *FieldType = T->getAsCXXRecordDecl()) { 1076 if (FieldType->hasDefinition() && !FieldType->allowConstDefaultInit()) 1077 data().HasUninitializedFields = true; 1078 } else { 1079 data().HasUninitializedFields = true; 1080 } 1081 } 1082 1083 // Record if this field is the first non-literal or volatile field or base. 1084 if (!T->isLiteralType(Context) || T.isVolatileQualified()) 1085 data().HasNonLiteralTypeFieldsOrBases = true; 1086 1087 if (Field->hasInClassInitializer() || 1088 (Field->isAnonymousStructOrUnion() && 1089 Field->getType()->getAsCXXRecordDecl()->hasInClassInitializer())) { 1090 data().HasInClassInitializer = true; 1091 1092 // C++11 [class]p5: 1093 // A default constructor is trivial if [...] no non-static data member 1094 // of its class has a brace-or-equal-initializer. 1095 data().HasTrivialSpecialMembers &= ~SMF_DefaultConstructor; 1096 1097 // C++11 [dcl.init.aggr]p1: 1098 // An aggregate is a [...] class with [...] no 1099 // brace-or-equal-initializers for non-static data members. 1100 // 1101 // This rule was removed in C++14. 1102 if (!getASTContext().getLangOpts().CPlusPlus14) 1103 data().Aggregate = false; 1104 1105 // C++11 [class]p10: 1106 // A POD struct is [...] a trivial class. 1107 data().PlainOldData = false; 1108 } 1109 1110 // C++11 [class.copy]p23: 1111 // A defaulted copy/move assignment operator for a class X is defined 1112 // as deleted if X has: 1113 // -- a non-static data member of reference type 1114 if (T->isReferenceType()) { 1115 data().DefaultedCopyAssignmentIsDeleted = true; 1116 data().DefaultedMoveAssignmentIsDeleted = true; 1117 } 1118 1119 // Bitfields of length 0 are also zero-sized, but we already bailed out for 1120 // those because they are always unnamed. 1121 bool IsZeroSize = Field->isZeroSize(Context); 1122 1123 if (const auto *RecordTy = T->getAs<RecordType>()) { 1124 auto *FieldRec = cast<CXXRecordDecl>(RecordTy->getDecl()); 1125 if (FieldRec->getDefinition()) { 1126 addedClassSubobject(FieldRec); 1127 1128 // We may need to perform overload resolution to determine whether a 1129 // field can be moved if it's const or volatile qualified. 1130 if (T.getCVRQualifiers() & (Qualifiers::Const | Qualifiers::Volatile)) { 1131 // We need to care about 'const' for the copy constructor because an 1132 // implicit copy constructor might be declared with a non-const 1133 // parameter. 1134 data().NeedOverloadResolutionForCopyConstructor = true; 1135 data().NeedOverloadResolutionForMoveConstructor = true; 1136 data().NeedOverloadResolutionForCopyAssignment = true; 1137 data().NeedOverloadResolutionForMoveAssignment = true; 1138 } 1139 1140 // C++11 [class.ctor]p5, C++11 [class.copy]p11: 1141 // A defaulted [special member] for a class X is defined as 1142 // deleted if: 1143 // -- X is a union-like class that has a variant member with a 1144 // non-trivial [corresponding special member] 1145 if (isUnion()) { 1146 if (FieldRec->hasNonTrivialCopyConstructor()) 1147 data().DefaultedCopyConstructorIsDeleted = true; 1148 if (FieldRec->hasNonTrivialMoveConstructor()) 1149 data().DefaultedMoveConstructorIsDeleted = true; 1150 if (FieldRec->hasNonTrivialCopyAssignment()) 1151 data().DefaultedCopyAssignmentIsDeleted = true; 1152 if (FieldRec->hasNonTrivialMoveAssignment()) 1153 data().DefaultedMoveAssignmentIsDeleted = true; 1154 if (FieldRec->hasNonTrivialDestructor()) 1155 data().DefaultedDestructorIsDeleted = true; 1156 } 1157 1158 // For an anonymous union member, our overload resolution will perform 1159 // overload resolution for its members. 1160 if (Field->isAnonymousStructOrUnion()) { 1161 data().NeedOverloadResolutionForCopyConstructor |= 1162 FieldRec->data().NeedOverloadResolutionForCopyConstructor; 1163 data().NeedOverloadResolutionForMoveConstructor |= 1164 FieldRec->data().NeedOverloadResolutionForMoveConstructor; 1165 data().NeedOverloadResolutionForCopyAssignment |= 1166 FieldRec->data().NeedOverloadResolutionForCopyAssignment; 1167 data().NeedOverloadResolutionForMoveAssignment |= 1168 FieldRec->data().NeedOverloadResolutionForMoveAssignment; 1169 data().NeedOverloadResolutionForDestructor |= 1170 FieldRec->data().NeedOverloadResolutionForDestructor; 1171 } 1172 1173 // C++0x [class.ctor]p5: 1174 // A default constructor is trivial [...] if: 1175 // -- for all the non-static data members of its class that are of 1176 // class type (or array thereof), each such class has a trivial 1177 // default constructor. 1178 if (!FieldRec->hasTrivialDefaultConstructor()) 1179 data().HasTrivialSpecialMembers &= ~SMF_DefaultConstructor; 1180 1181 // C++0x [class.copy]p13: 1182 // A copy/move constructor for class X is trivial if [...] 1183 // [...] 1184 // -- for each non-static data member of X that is of class type (or 1185 // an array thereof), the constructor selected to copy/move that 1186 // member is trivial; 1187 if (!FieldRec->hasTrivialCopyConstructor()) 1188 data().HasTrivialSpecialMembers &= ~SMF_CopyConstructor; 1189 1190 if (!FieldRec->hasTrivialCopyConstructorForCall()) 1191 data().HasTrivialSpecialMembersForCall &= ~SMF_CopyConstructor; 1192 1193 // If the field doesn't have a simple move constructor, we'll eagerly 1194 // declare the move constructor for this class and we'll decide whether 1195 // it's trivial then. 1196 if (!FieldRec->hasTrivialMoveConstructor()) 1197 data().HasTrivialSpecialMembers &= ~SMF_MoveConstructor; 1198 1199 if (!FieldRec->hasTrivialMoveConstructorForCall()) 1200 data().HasTrivialSpecialMembersForCall &= ~SMF_MoveConstructor; 1201 1202 // C++0x [class.copy]p27: 1203 // A copy/move assignment operator for class X is trivial if [...] 1204 // [...] 1205 // -- for each non-static data member of X that is of class type (or 1206 // an array thereof), the assignment operator selected to 1207 // copy/move that member is trivial; 1208 if (!FieldRec->hasTrivialCopyAssignment()) 1209 data().HasTrivialSpecialMembers &= ~SMF_CopyAssignment; 1210 // If the field doesn't have a simple move assignment, we'll eagerly 1211 // declare the move assignment for this class and we'll decide whether 1212 // it's trivial then. 1213 if (!FieldRec->hasTrivialMoveAssignment()) 1214 data().HasTrivialSpecialMembers &= ~SMF_MoveAssignment; 1215 1216 if (!FieldRec->hasTrivialDestructor()) 1217 data().HasTrivialSpecialMembers &= ~SMF_Destructor; 1218 if (!FieldRec->hasTrivialDestructorForCall()) 1219 data().HasTrivialSpecialMembersForCall &= ~SMF_Destructor; 1220 if (!FieldRec->hasIrrelevantDestructor()) 1221 data().HasIrrelevantDestructor = false; 1222 if (FieldRec->isAnyDestructorNoReturn()) 1223 data().IsAnyDestructorNoReturn = true; 1224 if (FieldRec->hasObjectMember()) 1225 setHasObjectMember(true); 1226 if (FieldRec->hasVolatileMember()) 1227 setHasVolatileMember(true); 1228 if (FieldRec->getArgPassingRestrictions() == 1229 RecordDecl::APK_CanNeverPassInRegs) 1230 setArgPassingRestrictions(RecordDecl::APK_CanNeverPassInRegs); 1231 1232 // C++0x [class]p7: 1233 // A standard-layout class is a class that: 1234 // -- has no non-static data members of type non-standard-layout 1235 // class (or array of such types) [...] 1236 if (!FieldRec->isStandardLayout()) 1237 data().IsStandardLayout = false; 1238 if (!FieldRec->isCXX11StandardLayout()) 1239 data().IsCXX11StandardLayout = false; 1240 1241 // C++2a [class]p7: 1242 // A standard-layout class is a class that: 1243 // [...] 1244 // -- has no element of the set M(S) of types as a base class. 1245 if (data().IsStandardLayout && 1246 (isUnion() || IsFirstField || IsZeroSize) && 1247 hasSubobjectAtOffsetZeroOfEmptyBaseType(Context, FieldRec)) 1248 data().IsStandardLayout = false; 1249 1250 // C++11 [class]p7: 1251 // A standard-layout class is a class that: 1252 // -- has no base classes of the same type as the first non-static 1253 // data member 1254 if (data().IsCXX11StandardLayout && IsFirstField) { 1255 // FIXME: We should check all base classes here, not just direct 1256 // base classes. 1257 for (const auto &BI : bases()) { 1258 if (Context.hasSameUnqualifiedType(BI.getType(), T)) { 1259 data().IsCXX11StandardLayout = false; 1260 break; 1261 } 1262 } 1263 } 1264 1265 // Keep track of the presence of mutable fields. 1266 if (FieldRec->hasMutableFields()) 1267 data().HasMutableFields = true; 1268 1269 if (Field->isMutable()) { 1270 // Our copy constructor/assignment might call something other than 1271 // the subobject's copy constructor/assignment if it's mutable and of 1272 // class type. 1273 data().NeedOverloadResolutionForCopyConstructor = true; 1274 data().NeedOverloadResolutionForCopyAssignment = true; 1275 } 1276 1277 // C++11 [class.copy]p13: 1278 // If the implicitly-defined constructor would satisfy the 1279 // requirements of a constexpr constructor, the implicitly-defined 1280 // constructor is constexpr. 1281 // C++11 [dcl.constexpr]p4: 1282 // -- every constructor involved in initializing non-static data 1283 // members [...] shall be a constexpr constructor 1284 if (!Field->hasInClassInitializer() && 1285 !FieldRec->hasConstexprDefaultConstructor() && !isUnion()) 1286 // The standard requires any in-class initializer to be a constant 1287 // expression. We consider this to be a defect. 1288 data().DefaultedDefaultConstructorIsConstexpr = false; 1289 1290 // C++11 [class.copy]p8: 1291 // The implicitly-declared copy constructor for a class X will have 1292 // the form 'X::X(const X&)' if each potentially constructed subobject 1293 // of a class type M (or array thereof) has a copy constructor whose 1294 // first parameter is of type 'const M&' or 'const volatile M&'. 1295 if (!FieldRec->hasCopyConstructorWithConstParam()) 1296 data().ImplicitCopyConstructorCanHaveConstParamForNonVBase = false; 1297 1298 // C++11 [class.copy]p18: 1299 // The implicitly-declared copy assignment oeprator for a class X will 1300 // have the form 'X& X::operator=(const X&)' if [...] for all the 1301 // non-static data members of X that are of a class type M (or array 1302 // thereof), each such class type has a copy assignment operator whose 1303 // parameter is of type 'const M&', 'const volatile M&' or 'M'. 1304 if (!FieldRec->hasCopyAssignmentWithConstParam()) 1305 data().ImplicitCopyAssignmentHasConstParam = false; 1306 1307 if (FieldRec->hasUninitializedReferenceMember() && 1308 !Field->hasInClassInitializer()) 1309 data().HasUninitializedReferenceMember = true; 1310 1311 // C++11 [class.union]p8, DR1460: 1312 // a non-static data member of an anonymous union that is a member of 1313 // X is also a variant member of X. 1314 if (FieldRec->hasVariantMembers() && 1315 Field->isAnonymousStructOrUnion()) 1316 data().HasVariantMembers = true; 1317 } 1318 } else { 1319 // Base element type of field is a non-class type. 1320 if (!T->isLiteralType(Context) || 1321 (!Field->hasInClassInitializer() && !isUnion() && 1322 !Context.getLangOpts().CPlusPlus20)) 1323 data().DefaultedDefaultConstructorIsConstexpr = false; 1324 1325 // C++11 [class.copy]p23: 1326 // A defaulted copy/move assignment operator for a class X is defined 1327 // as deleted if X has: 1328 // -- a non-static data member of const non-class type (or array 1329 // thereof) 1330 if (T.isConstQualified()) { 1331 data().DefaultedCopyAssignmentIsDeleted = true; 1332 data().DefaultedMoveAssignmentIsDeleted = true; 1333 } 1334 1335 // C++20 [temp.param]p7: 1336 // A structural type is [...] a literal class type [for which] the 1337 // types of all non-static data members are structural types or 1338 // (possibly multidimensional) array thereof 1339 // We deal with class types elsewhere. 1340 if (!T->isStructuralType()) 1341 data().StructuralIfLiteral = false; 1342 } 1343 1344 // C++14 [meta.unary.prop]p4: 1345 // T is a class type [...] with [...] no non-static data members other 1346 // than subobjects of zero size 1347 if (data().Empty && !IsZeroSize) 1348 data().Empty = false; 1349 } 1350 1351 // Handle using declarations of conversion functions. 1352 if (auto *Shadow = dyn_cast<UsingShadowDecl>(D)) { 1353 if (Shadow->getDeclName().getNameKind() 1354 == DeclarationName::CXXConversionFunctionName) { 1355 ASTContext &Ctx = getASTContext(); 1356 data().Conversions.get(Ctx).addDecl(Ctx, Shadow, Shadow->getAccess()); 1357 } 1358 } 1359 1360 if (const auto *Using = dyn_cast<UsingDecl>(D)) { 1361 if (Using->getDeclName().getNameKind() == 1362 DeclarationName::CXXConstructorName) { 1363 data().HasInheritedConstructor = true; 1364 // C++1z [dcl.init.aggr]p1: 1365 // An aggregate is [...] a class [...] with no inherited constructors 1366 data().Aggregate = false; 1367 } 1368 1369 if (Using->getDeclName().getCXXOverloadedOperator() == OO_Equal) 1370 data().HasInheritedAssignment = true; 1371 } 1372 } 1373 1374 void CXXRecordDecl::addedSelectedDestructor(CXXDestructorDecl *DD) { 1375 DD->setIneligibleOrNotSelected(false); 1376 addedEligibleSpecialMemberFunction(DD, SMF_Destructor); 1377 } 1378 1379 void CXXRecordDecl::addedEligibleSpecialMemberFunction(const CXXMethodDecl *MD, 1380 unsigned SMKind) { 1381 // FIXME: We shouldn't change DeclaredNonTrivialSpecialMembers if `MD` is 1382 // a function template, but this needs CWG attention before we break ABI. 1383 // See https://github.com/llvm/llvm-project/issues/59206 1384 1385 if (const auto *DD = dyn_cast<CXXDestructorDecl>(MD)) { 1386 if (DD->isUserProvided()) 1387 data().HasIrrelevantDestructor = false; 1388 // If the destructor is explicitly defaulted and not trivial or not public 1389 // or if the destructor is deleted, we clear HasIrrelevantDestructor in 1390 // finishedDefaultedOrDeletedMember. 1391 1392 // C++11 [class.dtor]p5: 1393 // A destructor is trivial if [...] the destructor is not virtual. 1394 if (DD->isVirtual()) { 1395 data().HasTrivialSpecialMembers &= ~SMF_Destructor; 1396 data().HasTrivialSpecialMembersForCall &= ~SMF_Destructor; 1397 } 1398 1399 if (DD->isNoReturn()) 1400 data().IsAnyDestructorNoReturn = true; 1401 } 1402 1403 if (!MD->isImplicit() && !MD->isUserProvided()) { 1404 // This method is user-declared but not user-provided. We can't work 1405 // out whether it's trivial yet (not until we get to the end of the 1406 // class). We'll handle this method in 1407 // finishedDefaultedOrDeletedMember. 1408 } else if (MD->isTrivial()) { 1409 data().HasTrivialSpecialMembers |= SMKind; 1410 data().HasTrivialSpecialMembersForCall |= SMKind; 1411 } else if (MD->isTrivialForCall()) { 1412 data().HasTrivialSpecialMembersForCall |= SMKind; 1413 data().DeclaredNonTrivialSpecialMembers |= SMKind; 1414 } else { 1415 data().DeclaredNonTrivialSpecialMembers |= SMKind; 1416 // If this is a user-provided function, do not set 1417 // DeclaredNonTrivialSpecialMembersForCall here since we don't know 1418 // yet whether the method would be considered non-trivial for the 1419 // purpose of calls (attribute "trivial_abi" can be dropped from the 1420 // class later, which can change the special method's triviality). 1421 if (!MD->isUserProvided()) 1422 data().DeclaredNonTrivialSpecialMembersForCall |= SMKind; 1423 } 1424 } 1425 1426 void CXXRecordDecl::finishedDefaultedOrDeletedMember(CXXMethodDecl *D) { 1427 assert(!D->isImplicit() && !D->isUserProvided()); 1428 1429 // The kind of special member this declaration is, if any. 1430 unsigned SMKind = 0; 1431 1432 if (const auto *Constructor = dyn_cast<CXXConstructorDecl>(D)) { 1433 if (Constructor->isDefaultConstructor()) { 1434 SMKind |= SMF_DefaultConstructor; 1435 if (Constructor->isConstexpr()) 1436 data().HasConstexprDefaultConstructor = true; 1437 } 1438 if (Constructor->isCopyConstructor()) 1439 SMKind |= SMF_CopyConstructor; 1440 else if (Constructor->isMoveConstructor()) 1441 SMKind |= SMF_MoveConstructor; 1442 else if (Constructor->isConstexpr()) 1443 // We may now know that the constructor is constexpr. 1444 data().HasConstexprNonCopyMoveConstructor = true; 1445 } else if (isa<CXXDestructorDecl>(D)) { 1446 SMKind |= SMF_Destructor; 1447 if (!D->isTrivial() || D->getAccess() != AS_public || D->isDeleted()) 1448 data().HasIrrelevantDestructor = false; 1449 } else if (D->isCopyAssignmentOperator()) 1450 SMKind |= SMF_CopyAssignment; 1451 else if (D->isMoveAssignmentOperator()) 1452 SMKind |= SMF_MoveAssignment; 1453 1454 // Update which trivial / non-trivial special members we have. 1455 // addedMember will have skipped this step for this member. 1456 if (!D->isIneligibleOrNotSelected()) { 1457 if (D->isTrivial()) 1458 data().HasTrivialSpecialMembers |= SMKind; 1459 else 1460 data().DeclaredNonTrivialSpecialMembers |= SMKind; 1461 } 1462 } 1463 1464 void CXXRecordDecl::LambdaDefinitionData::AddCaptureList(ASTContext &Ctx, 1465 Capture *CaptureList) { 1466 Captures.push_back(CaptureList); 1467 if (Captures.size() == 2) { 1468 // The TinyPtrVector member now needs destruction. 1469 Ctx.addDestruction(&Captures); 1470 } 1471 } 1472 1473 void CXXRecordDecl::setCaptures(ASTContext &Context, 1474 ArrayRef<LambdaCapture> Captures) { 1475 CXXRecordDecl::LambdaDefinitionData &Data = getLambdaData(); 1476 1477 // Copy captures. 1478 Data.NumCaptures = Captures.size(); 1479 Data.NumExplicitCaptures = 0; 1480 auto *ToCapture = (LambdaCapture *)Context.Allocate(sizeof(LambdaCapture) * 1481 Captures.size()); 1482 Data.AddCaptureList(Context, ToCapture); 1483 for (unsigned I = 0, N = Captures.size(); I != N; ++I) { 1484 if (Captures[I].isExplicit()) 1485 ++Data.NumExplicitCaptures; 1486 1487 *ToCapture++ = Captures[I]; 1488 } 1489 1490 if (!lambdaIsDefaultConstructibleAndAssignable()) 1491 Data.DefaultedCopyAssignmentIsDeleted = true; 1492 } 1493 1494 void CXXRecordDecl::setTrivialForCallFlags(CXXMethodDecl *D) { 1495 unsigned SMKind = 0; 1496 1497 if (const auto *Constructor = dyn_cast<CXXConstructorDecl>(D)) { 1498 if (Constructor->isCopyConstructor()) 1499 SMKind = SMF_CopyConstructor; 1500 else if (Constructor->isMoveConstructor()) 1501 SMKind = SMF_MoveConstructor; 1502 } else if (isa<CXXDestructorDecl>(D)) 1503 SMKind = SMF_Destructor; 1504 1505 if (D->isTrivialForCall()) 1506 data().HasTrivialSpecialMembersForCall |= SMKind; 1507 else 1508 data().DeclaredNonTrivialSpecialMembersForCall |= SMKind; 1509 } 1510 1511 bool CXXRecordDecl::isCLike() const { 1512 if (getTagKind() == TTK_Class || getTagKind() == TTK_Interface || 1513 !TemplateOrInstantiation.isNull()) 1514 return false; 1515 if (!hasDefinition()) 1516 return true; 1517 1518 return isPOD() && data().HasOnlyCMembers; 1519 } 1520 1521 bool CXXRecordDecl::isGenericLambda() const { 1522 if (!isLambda()) return false; 1523 return getLambdaData().IsGenericLambda; 1524 } 1525 1526 #ifndef NDEBUG 1527 static bool allLookupResultsAreTheSame(const DeclContext::lookup_result &R) { 1528 for (auto *D : R) 1529 if (!declaresSameEntity(D, R.front())) 1530 return false; 1531 return true; 1532 } 1533 #endif 1534 1535 static NamedDecl* getLambdaCallOperatorHelper(const CXXRecordDecl &RD) { 1536 if (!RD.isLambda()) return nullptr; 1537 DeclarationName Name = 1538 RD.getASTContext().DeclarationNames.getCXXOperatorName(OO_Call); 1539 DeclContext::lookup_result Calls = RD.lookup(Name); 1540 1541 assert(!Calls.empty() && "Missing lambda call operator!"); 1542 assert(allLookupResultsAreTheSame(Calls) && 1543 "More than one lambda call operator!"); 1544 return Calls.front(); 1545 } 1546 1547 FunctionTemplateDecl* CXXRecordDecl::getDependentLambdaCallOperator() const { 1548 NamedDecl *CallOp = getLambdaCallOperatorHelper(*this); 1549 return dyn_cast_or_null<FunctionTemplateDecl>(CallOp); 1550 } 1551 1552 CXXMethodDecl *CXXRecordDecl::getLambdaCallOperator() const { 1553 NamedDecl *CallOp = getLambdaCallOperatorHelper(*this); 1554 1555 if (CallOp == nullptr) 1556 return nullptr; 1557 1558 if (const auto *CallOpTmpl = dyn_cast<FunctionTemplateDecl>(CallOp)) 1559 return cast<CXXMethodDecl>(CallOpTmpl->getTemplatedDecl()); 1560 1561 return cast<CXXMethodDecl>(CallOp); 1562 } 1563 1564 CXXMethodDecl* CXXRecordDecl::getLambdaStaticInvoker() const { 1565 CXXMethodDecl *CallOp = getLambdaCallOperator(); 1566 CallingConv CC = CallOp->getType()->castAs<FunctionType>()->getCallConv(); 1567 return getLambdaStaticInvoker(CC); 1568 } 1569 1570 static DeclContext::lookup_result 1571 getLambdaStaticInvokers(const CXXRecordDecl &RD) { 1572 assert(RD.isLambda() && "Must be a lambda"); 1573 DeclarationName Name = 1574 &RD.getASTContext().Idents.get(getLambdaStaticInvokerName()); 1575 return RD.lookup(Name); 1576 } 1577 1578 static CXXMethodDecl *getInvokerAsMethod(NamedDecl *ND) { 1579 if (const auto *InvokerTemplate = dyn_cast<FunctionTemplateDecl>(ND)) 1580 return cast<CXXMethodDecl>(InvokerTemplate->getTemplatedDecl()); 1581 return cast<CXXMethodDecl>(ND); 1582 } 1583 1584 CXXMethodDecl *CXXRecordDecl::getLambdaStaticInvoker(CallingConv CC) const { 1585 if (!isLambda()) 1586 return nullptr; 1587 DeclContext::lookup_result Invoker = getLambdaStaticInvokers(*this); 1588 1589 for (NamedDecl *ND : Invoker) { 1590 const auto *FTy = 1591 cast<ValueDecl>(ND->getAsFunction())->getType()->castAs<FunctionType>(); 1592 if (FTy->getCallConv() == CC) 1593 return getInvokerAsMethod(ND); 1594 } 1595 1596 return nullptr; 1597 } 1598 1599 void CXXRecordDecl::getCaptureFields( 1600 llvm::DenseMap<const ValueDecl *, FieldDecl *> &Captures, 1601 FieldDecl *&ThisCapture) const { 1602 Captures.clear(); 1603 ThisCapture = nullptr; 1604 1605 LambdaDefinitionData &Lambda = getLambdaData(); 1606 for (const LambdaCapture *List : Lambda.Captures) { 1607 RecordDecl::field_iterator Field = field_begin(); 1608 for (const LambdaCapture *C = List, *CEnd = C + Lambda.NumCaptures; 1609 C != CEnd; ++C, ++Field) { 1610 if (C->capturesThis()) 1611 ThisCapture = *Field; 1612 else if (C->capturesVariable()) 1613 Captures[C->getCapturedVar()] = *Field; 1614 } 1615 assert(Field == field_end()); 1616 } 1617 } 1618 1619 TemplateParameterList * 1620 CXXRecordDecl::getGenericLambdaTemplateParameterList() const { 1621 if (!isGenericLambda()) return nullptr; 1622 CXXMethodDecl *CallOp = getLambdaCallOperator(); 1623 if (FunctionTemplateDecl *Tmpl = CallOp->getDescribedFunctionTemplate()) 1624 return Tmpl->getTemplateParameters(); 1625 return nullptr; 1626 } 1627 1628 ArrayRef<NamedDecl *> 1629 CXXRecordDecl::getLambdaExplicitTemplateParameters() const { 1630 TemplateParameterList *List = getGenericLambdaTemplateParameterList(); 1631 if (!List) 1632 return {}; 1633 1634 assert(std::is_partitioned(List->begin(), List->end(), 1635 [](const NamedDecl *D) { return !D->isImplicit(); }) 1636 && "Explicit template params should be ordered before implicit ones"); 1637 1638 const auto ExplicitEnd = llvm::partition_point( 1639 *List, [](const NamedDecl *D) { return !D->isImplicit(); }); 1640 return llvm::ArrayRef(List->begin(), ExplicitEnd); 1641 } 1642 1643 Decl *CXXRecordDecl::getLambdaContextDecl() const { 1644 assert(isLambda() && "Not a lambda closure type!"); 1645 ExternalASTSource *Source = getParentASTContext().getExternalSource(); 1646 return getLambdaData().ContextDecl.get(Source); 1647 } 1648 1649 void CXXRecordDecl::setLambdaNumbering(LambdaNumbering Numbering) { 1650 assert(isLambda() && "Not a lambda closure type!"); 1651 getLambdaData().ManglingNumber = Numbering.ManglingNumber; 1652 if (Numbering.DeviceManglingNumber) 1653 getASTContext().DeviceLambdaManglingNumbers[this] = 1654 Numbering.DeviceManglingNumber; 1655 getLambdaData().IndexInContext = Numbering.IndexInContext; 1656 getLambdaData().ContextDecl = Numbering.ContextDecl; 1657 getLambdaData().HasKnownInternalLinkage = Numbering.HasKnownInternalLinkage; 1658 } 1659 1660 unsigned CXXRecordDecl::getDeviceLambdaManglingNumber() const { 1661 assert(isLambda() && "Not a lambda closure type!"); 1662 return getASTContext().DeviceLambdaManglingNumbers.lookup(this); 1663 } 1664 1665 static CanQualType GetConversionType(ASTContext &Context, NamedDecl *Conv) { 1666 QualType T = 1667 cast<CXXConversionDecl>(Conv->getUnderlyingDecl()->getAsFunction()) 1668 ->getConversionType(); 1669 return Context.getCanonicalType(T); 1670 } 1671 1672 /// Collect the visible conversions of a base class. 1673 /// 1674 /// \param Record a base class of the class we're considering 1675 /// \param InVirtual whether this base class is a virtual base (or a base 1676 /// of a virtual base) 1677 /// \param Access the access along the inheritance path to this base 1678 /// \param ParentHiddenTypes the conversions provided by the inheritors 1679 /// of this base 1680 /// \param Output the set to which to add conversions from non-virtual bases 1681 /// \param VOutput the set to which to add conversions from virtual bases 1682 /// \param HiddenVBaseCs the set of conversions which were hidden in a 1683 /// virtual base along some inheritance path 1684 static void CollectVisibleConversions( 1685 ASTContext &Context, const CXXRecordDecl *Record, bool InVirtual, 1686 AccessSpecifier Access, 1687 const llvm::SmallPtrSet<CanQualType, 8> &ParentHiddenTypes, 1688 ASTUnresolvedSet &Output, UnresolvedSetImpl &VOutput, 1689 llvm::SmallPtrSet<NamedDecl *, 8> &HiddenVBaseCs) { 1690 // The set of types which have conversions in this class or its 1691 // subclasses. As an optimization, we don't copy the derived set 1692 // unless it might change. 1693 const llvm::SmallPtrSet<CanQualType, 8> *HiddenTypes = &ParentHiddenTypes; 1694 llvm::SmallPtrSet<CanQualType, 8> HiddenTypesBuffer; 1695 1696 // Collect the direct conversions and figure out which conversions 1697 // will be hidden in the subclasses. 1698 CXXRecordDecl::conversion_iterator ConvI = Record->conversion_begin(); 1699 CXXRecordDecl::conversion_iterator ConvE = Record->conversion_end(); 1700 if (ConvI != ConvE) { 1701 HiddenTypesBuffer = ParentHiddenTypes; 1702 HiddenTypes = &HiddenTypesBuffer; 1703 1704 for (CXXRecordDecl::conversion_iterator I = ConvI; I != ConvE; ++I) { 1705 CanQualType ConvType(GetConversionType(Context, I.getDecl())); 1706 bool Hidden = ParentHiddenTypes.count(ConvType); 1707 if (!Hidden) 1708 HiddenTypesBuffer.insert(ConvType); 1709 1710 // If this conversion is hidden and we're in a virtual base, 1711 // remember that it's hidden along some inheritance path. 1712 if (Hidden && InVirtual) 1713 HiddenVBaseCs.insert(cast<NamedDecl>(I.getDecl()->getCanonicalDecl())); 1714 1715 // If this conversion isn't hidden, add it to the appropriate output. 1716 else if (!Hidden) { 1717 AccessSpecifier IAccess 1718 = CXXRecordDecl::MergeAccess(Access, I.getAccess()); 1719 1720 if (InVirtual) 1721 VOutput.addDecl(I.getDecl(), IAccess); 1722 else 1723 Output.addDecl(Context, I.getDecl(), IAccess); 1724 } 1725 } 1726 } 1727 1728 // Collect information recursively from any base classes. 1729 for (const auto &I : Record->bases()) { 1730 const auto *RT = I.getType()->getAs<RecordType>(); 1731 if (!RT) continue; 1732 1733 AccessSpecifier BaseAccess 1734 = CXXRecordDecl::MergeAccess(Access, I.getAccessSpecifier()); 1735 bool BaseInVirtual = InVirtual || I.isVirtual(); 1736 1737 auto *Base = cast<CXXRecordDecl>(RT->getDecl()); 1738 CollectVisibleConversions(Context, Base, BaseInVirtual, BaseAccess, 1739 *HiddenTypes, Output, VOutput, HiddenVBaseCs); 1740 } 1741 } 1742 1743 /// Collect the visible conversions of a class. 1744 /// 1745 /// This would be extremely straightforward if it weren't for virtual 1746 /// bases. It might be worth special-casing that, really. 1747 static void CollectVisibleConversions(ASTContext &Context, 1748 const CXXRecordDecl *Record, 1749 ASTUnresolvedSet &Output) { 1750 // The collection of all conversions in virtual bases that we've 1751 // found. These will be added to the output as long as they don't 1752 // appear in the hidden-conversions set. 1753 UnresolvedSet<8> VBaseCs; 1754 1755 // The set of conversions in virtual bases that we've determined to 1756 // be hidden. 1757 llvm::SmallPtrSet<NamedDecl*, 8> HiddenVBaseCs; 1758 1759 // The set of types hidden by classes derived from this one. 1760 llvm::SmallPtrSet<CanQualType, 8> HiddenTypes; 1761 1762 // Go ahead and collect the direct conversions and add them to the 1763 // hidden-types set. 1764 CXXRecordDecl::conversion_iterator ConvI = Record->conversion_begin(); 1765 CXXRecordDecl::conversion_iterator ConvE = Record->conversion_end(); 1766 Output.append(Context, ConvI, ConvE); 1767 for (; ConvI != ConvE; ++ConvI) 1768 HiddenTypes.insert(GetConversionType(Context, ConvI.getDecl())); 1769 1770 // Recursively collect conversions from base classes. 1771 for (const auto &I : Record->bases()) { 1772 const auto *RT = I.getType()->getAs<RecordType>(); 1773 if (!RT) continue; 1774 1775 CollectVisibleConversions(Context, cast<CXXRecordDecl>(RT->getDecl()), 1776 I.isVirtual(), I.getAccessSpecifier(), 1777 HiddenTypes, Output, VBaseCs, HiddenVBaseCs); 1778 } 1779 1780 // Add any unhidden conversions provided by virtual bases. 1781 for (UnresolvedSetIterator I = VBaseCs.begin(), E = VBaseCs.end(); 1782 I != E; ++I) { 1783 if (!HiddenVBaseCs.count(cast<NamedDecl>(I.getDecl()->getCanonicalDecl()))) 1784 Output.addDecl(Context, I.getDecl(), I.getAccess()); 1785 } 1786 } 1787 1788 /// getVisibleConversionFunctions - get all conversion functions visible 1789 /// in current class; including conversion function templates. 1790 llvm::iterator_range<CXXRecordDecl::conversion_iterator> 1791 CXXRecordDecl::getVisibleConversionFunctions() const { 1792 ASTContext &Ctx = getASTContext(); 1793 1794 ASTUnresolvedSet *Set; 1795 if (bases_begin() == bases_end()) { 1796 // If root class, all conversions are visible. 1797 Set = &data().Conversions.get(Ctx); 1798 } else { 1799 Set = &data().VisibleConversions.get(Ctx); 1800 // If visible conversion list is not evaluated, evaluate it. 1801 if (!data().ComputedVisibleConversions) { 1802 CollectVisibleConversions(Ctx, this, *Set); 1803 data().ComputedVisibleConversions = true; 1804 } 1805 } 1806 return llvm::make_range(Set->begin(), Set->end()); 1807 } 1808 1809 void CXXRecordDecl::removeConversion(const NamedDecl *ConvDecl) { 1810 // This operation is O(N) but extremely rare. Sema only uses it to 1811 // remove UsingShadowDecls in a class that were followed by a direct 1812 // declaration, e.g.: 1813 // class A : B { 1814 // using B::operator int; 1815 // operator int(); 1816 // }; 1817 // This is uncommon by itself and even more uncommon in conjunction 1818 // with sufficiently large numbers of directly-declared conversions 1819 // that asymptotic behavior matters. 1820 1821 ASTUnresolvedSet &Convs = data().Conversions.get(getASTContext()); 1822 for (unsigned I = 0, E = Convs.size(); I != E; ++I) { 1823 if (Convs[I].getDecl() == ConvDecl) { 1824 Convs.erase(I); 1825 assert(!llvm::is_contained(Convs, ConvDecl) && 1826 "conversion was found multiple times in unresolved set"); 1827 return; 1828 } 1829 } 1830 1831 llvm_unreachable("conversion not found in set!"); 1832 } 1833 1834 CXXRecordDecl *CXXRecordDecl::getInstantiatedFromMemberClass() const { 1835 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) 1836 return cast<CXXRecordDecl>(MSInfo->getInstantiatedFrom()); 1837 1838 return nullptr; 1839 } 1840 1841 MemberSpecializationInfo *CXXRecordDecl::getMemberSpecializationInfo() const { 1842 return TemplateOrInstantiation.dyn_cast<MemberSpecializationInfo *>(); 1843 } 1844 1845 void 1846 CXXRecordDecl::setInstantiationOfMemberClass(CXXRecordDecl *RD, 1847 TemplateSpecializationKind TSK) { 1848 assert(TemplateOrInstantiation.isNull() && 1849 "Previous template or instantiation?"); 1850 assert(!isa<ClassTemplatePartialSpecializationDecl>(this)); 1851 TemplateOrInstantiation 1852 = new (getASTContext()) MemberSpecializationInfo(RD, TSK); 1853 } 1854 1855 ClassTemplateDecl *CXXRecordDecl::getDescribedClassTemplate() const { 1856 return TemplateOrInstantiation.dyn_cast<ClassTemplateDecl *>(); 1857 } 1858 1859 void CXXRecordDecl::setDescribedClassTemplate(ClassTemplateDecl *Template) { 1860 TemplateOrInstantiation = Template; 1861 } 1862 1863 TemplateSpecializationKind CXXRecordDecl::getTemplateSpecializationKind() const{ 1864 if (const auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(this)) 1865 return Spec->getSpecializationKind(); 1866 1867 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) 1868 return MSInfo->getTemplateSpecializationKind(); 1869 1870 return TSK_Undeclared; 1871 } 1872 1873 void 1874 CXXRecordDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK) { 1875 if (auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(this)) { 1876 Spec->setSpecializationKind(TSK); 1877 return; 1878 } 1879 1880 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) { 1881 MSInfo->setTemplateSpecializationKind(TSK); 1882 return; 1883 } 1884 1885 llvm_unreachable("Not a class template or member class specialization"); 1886 } 1887 1888 const CXXRecordDecl *CXXRecordDecl::getTemplateInstantiationPattern() const { 1889 auto GetDefinitionOrSelf = 1890 [](const CXXRecordDecl *D) -> const CXXRecordDecl * { 1891 if (auto *Def = D->getDefinition()) 1892 return Def; 1893 return D; 1894 }; 1895 1896 // If it's a class template specialization, find the template or partial 1897 // specialization from which it was instantiated. 1898 if (auto *TD = dyn_cast<ClassTemplateSpecializationDecl>(this)) { 1899 auto From = TD->getInstantiatedFrom(); 1900 if (auto *CTD = From.dyn_cast<ClassTemplateDecl *>()) { 1901 while (auto *NewCTD = CTD->getInstantiatedFromMemberTemplate()) { 1902 if (NewCTD->isMemberSpecialization()) 1903 break; 1904 CTD = NewCTD; 1905 } 1906 return GetDefinitionOrSelf(CTD->getTemplatedDecl()); 1907 } 1908 if (auto *CTPSD = 1909 From.dyn_cast<ClassTemplatePartialSpecializationDecl *>()) { 1910 while (auto *NewCTPSD = CTPSD->getInstantiatedFromMember()) { 1911 if (NewCTPSD->isMemberSpecialization()) 1912 break; 1913 CTPSD = NewCTPSD; 1914 } 1915 return GetDefinitionOrSelf(CTPSD); 1916 } 1917 } 1918 1919 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) { 1920 if (isTemplateInstantiation(MSInfo->getTemplateSpecializationKind())) { 1921 const CXXRecordDecl *RD = this; 1922 while (auto *NewRD = RD->getInstantiatedFromMemberClass()) 1923 RD = NewRD; 1924 return GetDefinitionOrSelf(RD); 1925 } 1926 } 1927 1928 assert(!isTemplateInstantiation(this->getTemplateSpecializationKind()) && 1929 "couldn't find pattern for class template instantiation"); 1930 return nullptr; 1931 } 1932 1933 CXXDestructorDecl *CXXRecordDecl::getDestructor() const { 1934 ASTContext &Context = getASTContext(); 1935 QualType ClassType = Context.getTypeDeclType(this); 1936 1937 DeclarationName Name 1938 = Context.DeclarationNames.getCXXDestructorName( 1939 Context.getCanonicalType(ClassType)); 1940 1941 DeclContext::lookup_result R = lookup(Name); 1942 1943 // If a destructor was marked as not selected, we skip it. We don't always 1944 // have a selected destructor: dependent types, unnamed structs. 1945 for (auto *Decl : R) { 1946 auto* DD = dyn_cast<CXXDestructorDecl>(Decl); 1947 if (DD && !DD->isIneligibleOrNotSelected()) 1948 return DD; 1949 } 1950 return nullptr; 1951 } 1952 1953 static bool isDeclContextInNamespace(const DeclContext *DC) { 1954 while (!DC->isTranslationUnit()) { 1955 if (DC->isNamespace()) 1956 return true; 1957 DC = DC->getParent(); 1958 } 1959 return false; 1960 } 1961 1962 bool CXXRecordDecl::isInterfaceLike() const { 1963 assert(hasDefinition() && "checking for interface-like without a definition"); 1964 // All __interfaces are inheritently interface-like. 1965 if (isInterface()) 1966 return true; 1967 1968 // Interface-like types cannot have a user declared constructor, destructor, 1969 // friends, VBases, conversion functions, or fields. Additionally, lambdas 1970 // cannot be interface types. 1971 if (isLambda() || hasUserDeclaredConstructor() || 1972 hasUserDeclaredDestructor() || !field_empty() || hasFriends() || 1973 getNumVBases() > 0 || conversion_end() - conversion_begin() > 0) 1974 return false; 1975 1976 // No interface-like type can have a method with a definition. 1977 for (const auto *const Method : methods()) 1978 if (Method->isDefined() && !Method->isImplicit()) 1979 return false; 1980 1981 // Check "Special" types. 1982 const auto *Uuid = getAttr<UuidAttr>(); 1983 // MS SDK declares IUnknown/IDispatch both in the root of a TU, or in an 1984 // extern C++ block directly in the TU. These are only valid if in one 1985 // of these two situations. 1986 if (Uuid && isStruct() && !getDeclContext()->isExternCContext() && 1987 !isDeclContextInNamespace(getDeclContext()) && 1988 ((getName() == "IUnknown" && 1989 Uuid->getGuid() == "00000000-0000-0000-C000-000000000046") || 1990 (getName() == "IDispatch" && 1991 Uuid->getGuid() == "00020400-0000-0000-C000-000000000046"))) { 1992 if (getNumBases() > 0) 1993 return false; 1994 return true; 1995 } 1996 1997 // FIXME: Any access specifiers is supposed to make this no longer interface 1998 // like. 1999 2000 // If this isn't a 'special' type, it must have a single interface-like base. 2001 if (getNumBases() != 1) 2002 return false; 2003 2004 const auto BaseSpec = *bases_begin(); 2005 if (BaseSpec.isVirtual() || BaseSpec.getAccessSpecifier() != AS_public) 2006 return false; 2007 const auto *Base = BaseSpec.getType()->getAsCXXRecordDecl(); 2008 if (Base->isInterface() || !Base->isInterfaceLike()) 2009 return false; 2010 return true; 2011 } 2012 2013 void CXXRecordDecl::completeDefinition() { 2014 completeDefinition(nullptr); 2015 } 2016 2017 void CXXRecordDecl::completeDefinition(CXXFinalOverriderMap *FinalOverriders) { 2018 RecordDecl::completeDefinition(); 2019 2020 // If the class may be abstract (but hasn't been marked as such), check for 2021 // any pure final overriders. 2022 if (mayBeAbstract()) { 2023 CXXFinalOverriderMap MyFinalOverriders; 2024 if (!FinalOverriders) { 2025 getFinalOverriders(MyFinalOverriders); 2026 FinalOverriders = &MyFinalOverriders; 2027 } 2028 2029 bool Done = false; 2030 for (CXXFinalOverriderMap::iterator M = FinalOverriders->begin(), 2031 MEnd = FinalOverriders->end(); 2032 M != MEnd && !Done; ++M) { 2033 for (OverridingMethods::iterator SO = M->second.begin(), 2034 SOEnd = M->second.end(); 2035 SO != SOEnd && !Done; ++SO) { 2036 assert(SO->second.size() > 0 && 2037 "All virtual functions have overriding virtual functions"); 2038 2039 // C++ [class.abstract]p4: 2040 // A class is abstract if it contains or inherits at least one 2041 // pure virtual function for which the final overrider is pure 2042 // virtual. 2043 if (SO->second.front().Method->isPure()) { 2044 data().Abstract = true; 2045 Done = true; 2046 break; 2047 } 2048 } 2049 } 2050 } 2051 2052 // Set access bits correctly on the directly-declared conversions. 2053 for (conversion_iterator I = conversion_begin(), E = conversion_end(); 2054 I != E; ++I) 2055 I.setAccess((*I)->getAccess()); 2056 } 2057 2058 bool CXXRecordDecl::mayBeAbstract() const { 2059 if (data().Abstract || isInvalidDecl() || !data().Polymorphic || 2060 isDependentContext()) 2061 return false; 2062 2063 for (const auto &B : bases()) { 2064 const auto *BaseDecl = 2065 cast<CXXRecordDecl>(B.getType()->castAs<RecordType>()->getDecl()); 2066 if (BaseDecl->isAbstract()) 2067 return true; 2068 } 2069 2070 return false; 2071 } 2072 2073 bool CXXRecordDecl::isEffectivelyFinal() const { 2074 auto *Def = getDefinition(); 2075 if (!Def) 2076 return false; 2077 if (Def->hasAttr<FinalAttr>()) 2078 return true; 2079 if (const auto *Dtor = Def->getDestructor()) 2080 if (Dtor->hasAttr<FinalAttr>()) 2081 return true; 2082 return false; 2083 } 2084 2085 void CXXDeductionGuideDecl::anchor() {} 2086 2087 bool ExplicitSpecifier::isEquivalent(const ExplicitSpecifier Other) const { 2088 if ((getKind() != Other.getKind() || 2089 getKind() == ExplicitSpecKind::Unresolved)) { 2090 if (getKind() == ExplicitSpecKind::Unresolved && 2091 Other.getKind() == ExplicitSpecKind::Unresolved) { 2092 ODRHash SelfHash, OtherHash; 2093 SelfHash.AddStmt(getExpr()); 2094 OtherHash.AddStmt(Other.getExpr()); 2095 return SelfHash.CalculateHash() == OtherHash.CalculateHash(); 2096 } else 2097 return false; 2098 } 2099 return true; 2100 } 2101 2102 ExplicitSpecifier ExplicitSpecifier::getFromDecl(FunctionDecl *Function) { 2103 switch (Function->getDeclKind()) { 2104 case Decl::Kind::CXXConstructor: 2105 return cast<CXXConstructorDecl>(Function)->getExplicitSpecifier(); 2106 case Decl::Kind::CXXConversion: 2107 return cast<CXXConversionDecl>(Function)->getExplicitSpecifier(); 2108 case Decl::Kind::CXXDeductionGuide: 2109 return cast<CXXDeductionGuideDecl>(Function)->getExplicitSpecifier(); 2110 default: 2111 return {}; 2112 } 2113 } 2114 2115 CXXDeductionGuideDecl *CXXDeductionGuideDecl::Create( 2116 ASTContext &C, DeclContext *DC, SourceLocation StartLoc, 2117 ExplicitSpecifier ES, const DeclarationNameInfo &NameInfo, QualType T, 2118 TypeSourceInfo *TInfo, SourceLocation EndLocation, CXXConstructorDecl *Ctor, 2119 DeductionCandidate Kind) { 2120 return new (C, DC) CXXDeductionGuideDecl(C, DC, StartLoc, ES, NameInfo, T, 2121 TInfo, EndLocation, Ctor, Kind); 2122 } 2123 2124 CXXDeductionGuideDecl *CXXDeductionGuideDecl::CreateDeserialized(ASTContext &C, 2125 unsigned ID) { 2126 return new (C, ID) CXXDeductionGuideDecl( 2127 C, nullptr, SourceLocation(), ExplicitSpecifier(), DeclarationNameInfo(), 2128 QualType(), nullptr, SourceLocation(), nullptr, 2129 DeductionCandidate::Normal); 2130 } 2131 2132 RequiresExprBodyDecl *RequiresExprBodyDecl::Create( 2133 ASTContext &C, DeclContext *DC, SourceLocation StartLoc) { 2134 return new (C, DC) RequiresExprBodyDecl(C, DC, StartLoc); 2135 } 2136 2137 RequiresExprBodyDecl *RequiresExprBodyDecl::CreateDeserialized(ASTContext &C, 2138 unsigned ID) { 2139 return new (C, ID) RequiresExprBodyDecl(C, nullptr, SourceLocation()); 2140 } 2141 2142 void CXXMethodDecl::anchor() {} 2143 2144 bool CXXMethodDecl::isStatic() const { 2145 const CXXMethodDecl *MD = getCanonicalDecl(); 2146 2147 if (MD->getStorageClass() == SC_Static) 2148 return true; 2149 2150 OverloadedOperatorKind OOK = getDeclName().getCXXOverloadedOperator(); 2151 return isStaticOverloadedOperator(OOK); 2152 } 2153 2154 static bool recursivelyOverrides(const CXXMethodDecl *DerivedMD, 2155 const CXXMethodDecl *BaseMD) { 2156 for (const CXXMethodDecl *MD : DerivedMD->overridden_methods()) { 2157 if (MD->getCanonicalDecl() == BaseMD->getCanonicalDecl()) 2158 return true; 2159 if (recursivelyOverrides(MD, BaseMD)) 2160 return true; 2161 } 2162 return false; 2163 } 2164 2165 CXXMethodDecl * 2166 CXXMethodDecl::getCorrespondingMethodDeclaredInClass(const CXXRecordDecl *RD, 2167 bool MayBeBase) { 2168 if (this->getParent()->getCanonicalDecl() == RD->getCanonicalDecl()) 2169 return this; 2170 2171 // Lookup doesn't work for destructors, so handle them separately. 2172 if (isa<CXXDestructorDecl>(this)) { 2173 CXXMethodDecl *MD = RD->getDestructor(); 2174 if (MD) { 2175 if (recursivelyOverrides(MD, this)) 2176 return MD; 2177 if (MayBeBase && recursivelyOverrides(this, MD)) 2178 return MD; 2179 } 2180 return nullptr; 2181 } 2182 2183 for (auto *ND : RD->lookup(getDeclName())) { 2184 auto *MD = dyn_cast<CXXMethodDecl>(ND); 2185 if (!MD) 2186 continue; 2187 if (recursivelyOverrides(MD, this)) 2188 return MD; 2189 if (MayBeBase && recursivelyOverrides(this, MD)) 2190 return MD; 2191 } 2192 2193 return nullptr; 2194 } 2195 2196 CXXMethodDecl * 2197 CXXMethodDecl::getCorrespondingMethodInClass(const CXXRecordDecl *RD, 2198 bool MayBeBase) { 2199 if (auto *MD = getCorrespondingMethodDeclaredInClass(RD, MayBeBase)) 2200 return MD; 2201 2202 llvm::SmallVector<CXXMethodDecl*, 4> FinalOverriders; 2203 auto AddFinalOverrider = [&](CXXMethodDecl *D) { 2204 // If this function is overridden by a candidate final overrider, it is not 2205 // a final overrider. 2206 for (CXXMethodDecl *OtherD : FinalOverriders) { 2207 if (declaresSameEntity(D, OtherD) || recursivelyOverrides(OtherD, D)) 2208 return; 2209 } 2210 2211 // Other candidate final overriders might be overridden by this function. 2212 llvm::erase_if(FinalOverriders, [&](CXXMethodDecl *OtherD) { 2213 return recursivelyOverrides(D, OtherD); 2214 }); 2215 2216 FinalOverriders.push_back(D); 2217 }; 2218 2219 for (const auto &I : RD->bases()) { 2220 const RecordType *RT = I.getType()->getAs<RecordType>(); 2221 if (!RT) 2222 continue; 2223 const auto *Base = cast<CXXRecordDecl>(RT->getDecl()); 2224 if (CXXMethodDecl *D = this->getCorrespondingMethodInClass(Base)) 2225 AddFinalOverrider(D); 2226 } 2227 2228 return FinalOverriders.size() == 1 ? FinalOverriders.front() : nullptr; 2229 } 2230 2231 CXXMethodDecl * 2232 CXXMethodDecl::Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, 2233 const DeclarationNameInfo &NameInfo, QualType T, 2234 TypeSourceInfo *TInfo, StorageClass SC, bool UsesFPIntrin, 2235 bool isInline, ConstexprSpecKind ConstexprKind, 2236 SourceLocation EndLocation, 2237 Expr *TrailingRequiresClause) { 2238 return new (C, RD) CXXMethodDecl( 2239 CXXMethod, C, RD, StartLoc, NameInfo, T, TInfo, SC, UsesFPIntrin, 2240 isInline, ConstexprKind, EndLocation, TrailingRequiresClause); 2241 } 2242 2243 CXXMethodDecl *CXXMethodDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 2244 return new (C, ID) CXXMethodDecl( 2245 CXXMethod, C, nullptr, SourceLocation(), DeclarationNameInfo(), 2246 QualType(), nullptr, SC_None, false, false, 2247 ConstexprSpecKind::Unspecified, SourceLocation(), nullptr); 2248 } 2249 2250 CXXMethodDecl *CXXMethodDecl::getDevirtualizedMethod(const Expr *Base, 2251 bool IsAppleKext) { 2252 assert(isVirtual() && "this method is expected to be virtual"); 2253 2254 // When building with -fapple-kext, all calls must go through the vtable since 2255 // the kernel linker can do runtime patching of vtables. 2256 if (IsAppleKext) 2257 return nullptr; 2258 2259 // If the member function is marked 'final', we know that it can't be 2260 // overridden and can therefore devirtualize it unless it's pure virtual. 2261 if (hasAttr<FinalAttr>()) 2262 return isPure() ? nullptr : this; 2263 2264 // If Base is unknown, we cannot devirtualize. 2265 if (!Base) 2266 return nullptr; 2267 2268 // If the base expression (after skipping derived-to-base conversions) is a 2269 // class prvalue, then we can devirtualize. 2270 Base = Base->getBestDynamicClassTypeExpr(); 2271 if (Base->isPRValue() && Base->getType()->isRecordType()) 2272 return this; 2273 2274 // If we don't even know what we would call, we can't devirtualize. 2275 const CXXRecordDecl *BestDynamicDecl = Base->getBestDynamicClassType(); 2276 if (!BestDynamicDecl) 2277 return nullptr; 2278 2279 // There may be a method corresponding to MD in a derived class. 2280 CXXMethodDecl *DevirtualizedMethod = 2281 getCorrespondingMethodInClass(BestDynamicDecl); 2282 2283 // If there final overrider in the dynamic type is ambiguous, we can't 2284 // devirtualize this call. 2285 if (!DevirtualizedMethod) 2286 return nullptr; 2287 2288 // If that method is pure virtual, we can't devirtualize. If this code is 2289 // reached, the result would be UB, not a direct call to the derived class 2290 // function, and we can't assume the derived class function is defined. 2291 if (DevirtualizedMethod->isPure()) 2292 return nullptr; 2293 2294 // If that method is marked final, we can devirtualize it. 2295 if (DevirtualizedMethod->hasAttr<FinalAttr>()) 2296 return DevirtualizedMethod; 2297 2298 // Similarly, if the class itself or its destructor is marked 'final', 2299 // the class can't be derived from and we can therefore devirtualize the 2300 // member function call. 2301 if (BestDynamicDecl->isEffectivelyFinal()) 2302 return DevirtualizedMethod; 2303 2304 if (const auto *DRE = dyn_cast<DeclRefExpr>(Base)) { 2305 if (const auto *VD = dyn_cast<VarDecl>(DRE->getDecl())) 2306 if (VD->getType()->isRecordType()) 2307 // This is a record decl. We know the type and can devirtualize it. 2308 return DevirtualizedMethod; 2309 2310 return nullptr; 2311 } 2312 2313 // We can devirtualize calls on an object accessed by a class member access 2314 // expression, since by C++11 [basic.life]p6 we know that it can't refer to 2315 // a derived class object constructed in the same location. 2316 if (const auto *ME = dyn_cast<MemberExpr>(Base)) { 2317 const ValueDecl *VD = ME->getMemberDecl(); 2318 return VD->getType()->isRecordType() ? DevirtualizedMethod : nullptr; 2319 } 2320 2321 // Likewise for calls on an object accessed by a (non-reference) pointer to 2322 // member access. 2323 if (auto *BO = dyn_cast<BinaryOperator>(Base)) { 2324 if (BO->isPtrMemOp()) { 2325 auto *MPT = BO->getRHS()->getType()->castAs<MemberPointerType>(); 2326 if (MPT->getPointeeType()->isRecordType()) 2327 return DevirtualizedMethod; 2328 } 2329 } 2330 2331 // We can't devirtualize the call. 2332 return nullptr; 2333 } 2334 2335 bool CXXMethodDecl::isUsualDeallocationFunction( 2336 SmallVectorImpl<const FunctionDecl *> &PreventedBy) const { 2337 assert(PreventedBy.empty() && "PreventedBy is expected to be empty"); 2338 if (getOverloadedOperator() != OO_Delete && 2339 getOverloadedOperator() != OO_Array_Delete) 2340 return false; 2341 2342 // C++ [basic.stc.dynamic.deallocation]p2: 2343 // A template instance is never a usual deallocation function, 2344 // regardless of its signature. 2345 if (getPrimaryTemplate()) 2346 return false; 2347 2348 // C++ [basic.stc.dynamic.deallocation]p2: 2349 // If a class T has a member deallocation function named operator delete 2350 // with exactly one parameter, then that function is a usual (non-placement) 2351 // deallocation function. [...] 2352 if (getNumParams() == 1) 2353 return true; 2354 unsigned UsualParams = 1; 2355 2356 // C++ P0722: 2357 // A destroying operator delete is a usual deallocation function if 2358 // removing the std::destroying_delete_t parameter and changing the 2359 // first parameter type from T* to void* results in the signature of 2360 // a usual deallocation function. 2361 if (isDestroyingOperatorDelete()) 2362 ++UsualParams; 2363 2364 // C++ <=14 [basic.stc.dynamic.deallocation]p2: 2365 // [...] If class T does not declare such an operator delete but does 2366 // declare a member deallocation function named operator delete with 2367 // exactly two parameters, the second of which has type std::size_t (18.1), 2368 // then this function is a usual deallocation function. 2369 // 2370 // C++17 says a usual deallocation function is one with the signature 2371 // (void* [, size_t] [, std::align_val_t] [, ...]) 2372 // and all such functions are usual deallocation functions. It's not clear 2373 // that allowing varargs functions was intentional. 2374 ASTContext &Context = getASTContext(); 2375 if (UsualParams < getNumParams() && 2376 Context.hasSameUnqualifiedType(getParamDecl(UsualParams)->getType(), 2377 Context.getSizeType())) 2378 ++UsualParams; 2379 2380 if (UsualParams < getNumParams() && 2381 getParamDecl(UsualParams)->getType()->isAlignValT()) 2382 ++UsualParams; 2383 2384 if (UsualParams != getNumParams()) 2385 return false; 2386 2387 // In C++17 onwards, all potential usual deallocation functions are actual 2388 // usual deallocation functions. Honor this behavior when post-C++14 2389 // deallocation functions are offered as extensions too. 2390 // FIXME(EricWF): Destroying Delete should be a language option. How do we 2391 // handle when destroying delete is used prior to C++17? 2392 if (Context.getLangOpts().CPlusPlus17 || 2393 Context.getLangOpts().AlignedAllocation || 2394 isDestroyingOperatorDelete()) 2395 return true; 2396 2397 // This function is a usual deallocation function if there are no 2398 // single-parameter deallocation functions of the same kind. 2399 DeclContext::lookup_result R = getDeclContext()->lookup(getDeclName()); 2400 bool Result = true; 2401 for (const auto *D : R) { 2402 if (const auto *FD = dyn_cast<FunctionDecl>(D)) { 2403 if (FD->getNumParams() == 1) { 2404 PreventedBy.push_back(FD); 2405 Result = false; 2406 } 2407 } 2408 } 2409 return Result; 2410 } 2411 2412 bool CXXMethodDecl::isCopyAssignmentOperator() const { 2413 // C++0x [class.copy]p17: 2414 // A user-declared copy assignment operator X::operator= is a non-static 2415 // non-template member function of class X with exactly one parameter of 2416 // type X, X&, const X&, volatile X& or const volatile X&. 2417 if (/*operator=*/getOverloadedOperator() != OO_Equal || 2418 /*non-static*/ isStatic() || 2419 /*non-template*/getPrimaryTemplate() || getDescribedFunctionTemplate() || 2420 getNumParams() != 1) 2421 return false; 2422 2423 QualType ParamType = getParamDecl(0)->getType(); 2424 if (const auto *Ref = ParamType->getAs<LValueReferenceType>()) 2425 ParamType = Ref->getPointeeType(); 2426 2427 ASTContext &Context = getASTContext(); 2428 QualType ClassType 2429 = Context.getCanonicalType(Context.getTypeDeclType(getParent())); 2430 return Context.hasSameUnqualifiedType(ClassType, ParamType); 2431 } 2432 2433 bool CXXMethodDecl::isMoveAssignmentOperator() const { 2434 // C++0x [class.copy]p19: 2435 // A user-declared move assignment operator X::operator= is a non-static 2436 // non-template member function of class X with exactly one parameter of type 2437 // X&&, const X&&, volatile X&&, or const volatile X&&. 2438 if (getOverloadedOperator() != OO_Equal || isStatic() || 2439 getPrimaryTemplate() || getDescribedFunctionTemplate() || 2440 getNumParams() != 1) 2441 return false; 2442 2443 QualType ParamType = getParamDecl(0)->getType(); 2444 if (!ParamType->isRValueReferenceType()) 2445 return false; 2446 ParamType = ParamType->getPointeeType(); 2447 2448 ASTContext &Context = getASTContext(); 2449 QualType ClassType 2450 = Context.getCanonicalType(Context.getTypeDeclType(getParent())); 2451 return Context.hasSameUnqualifiedType(ClassType, ParamType); 2452 } 2453 2454 void CXXMethodDecl::addOverriddenMethod(const CXXMethodDecl *MD) { 2455 assert(MD->isCanonicalDecl() && "Method is not canonical!"); 2456 assert(!MD->getParent()->isDependentContext() && 2457 "Can't add an overridden method to a class template!"); 2458 assert(MD->isVirtual() && "Method is not virtual!"); 2459 2460 getASTContext().addOverriddenMethod(this, MD); 2461 } 2462 2463 CXXMethodDecl::method_iterator CXXMethodDecl::begin_overridden_methods() const { 2464 if (isa<CXXConstructorDecl>(this)) return nullptr; 2465 return getASTContext().overridden_methods_begin(this); 2466 } 2467 2468 CXXMethodDecl::method_iterator CXXMethodDecl::end_overridden_methods() const { 2469 if (isa<CXXConstructorDecl>(this)) return nullptr; 2470 return getASTContext().overridden_methods_end(this); 2471 } 2472 2473 unsigned CXXMethodDecl::size_overridden_methods() const { 2474 if (isa<CXXConstructorDecl>(this)) return 0; 2475 return getASTContext().overridden_methods_size(this); 2476 } 2477 2478 CXXMethodDecl::overridden_method_range 2479 CXXMethodDecl::overridden_methods() const { 2480 if (isa<CXXConstructorDecl>(this)) 2481 return overridden_method_range(nullptr, nullptr); 2482 return getASTContext().overridden_methods(this); 2483 } 2484 2485 static QualType getThisObjectType(ASTContext &C, const FunctionProtoType *FPT, 2486 const CXXRecordDecl *Decl) { 2487 QualType ClassTy = C.getTypeDeclType(Decl); 2488 return C.getQualifiedType(ClassTy, FPT->getMethodQuals()); 2489 } 2490 2491 QualType CXXMethodDecl::getThisType(const FunctionProtoType *FPT, 2492 const CXXRecordDecl *Decl) { 2493 ASTContext &C = Decl->getASTContext(); 2494 QualType ObjectTy = ::getThisObjectType(C, FPT, Decl); 2495 return C.getPointerType(ObjectTy); 2496 } 2497 2498 QualType CXXMethodDecl::getThisObjectType(const FunctionProtoType *FPT, 2499 const CXXRecordDecl *Decl) { 2500 ASTContext &C = Decl->getASTContext(); 2501 return ::getThisObjectType(C, FPT, Decl); 2502 } 2503 2504 QualType CXXMethodDecl::getThisType() const { 2505 // C++ 9.3.2p1: The type of this in a member function of a class X is X*. 2506 // If the member function is declared const, the type of this is const X*, 2507 // if the member function is declared volatile, the type of this is 2508 // volatile X*, and if the member function is declared const volatile, 2509 // the type of this is const volatile X*. 2510 assert(isInstance() && "No 'this' for static methods!"); 2511 return CXXMethodDecl::getThisType(getType()->castAs<FunctionProtoType>(), 2512 getParent()); 2513 } 2514 2515 QualType CXXMethodDecl::getThisObjectType() const { 2516 // Ditto getThisType. 2517 assert(isInstance() && "No 'this' for static methods!"); 2518 return CXXMethodDecl::getThisObjectType( 2519 getType()->castAs<FunctionProtoType>(), getParent()); 2520 } 2521 2522 bool CXXMethodDecl::hasInlineBody() const { 2523 // If this function is a template instantiation, look at the template from 2524 // which it was instantiated. 2525 const FunctionDecl *CheckFn = getTemplateInstantiationPattern(); 2526 if (!CheckFn) 2527 CheckFn = this; 2528 2529 const FunctionDecl *fn; 2530 return CheckFn->isDefined(fn) && !fn->isOutOfLine() && 2531 (fn->doesThisDeclarationHaveABody() || fn->willHaveBody()); 2532 } 2533 2534 bool CXXMethodDecl::isLambdaStaticInvoker() const { 2535 const CXXRecordDecl *P = getParent(); 2536 return P->isLambda() && getDeclName().isIdentifier() && 2537 getName() == getLambdaStaticInvokerName(); 2538 } 2539 2540 CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context, 2541 TypeSourceInfo *TInfo, bool IsVirtual, 2542 SourceLocation L, Expr *Init, 2543 SourceLocation R, 2544 SourceLocation EllipsisLoc) 2545 : Initializee(TInfo), Init(Init), MemberOrEllipsisLocation(EllipsisLoc), 2546 LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(IsVirtual), 2547 IsWritten(false), SourceOrder(0) {} 2548 2549 CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context, FieldDecl *Member, 2550 SourceLocation MemberLoc, 2551 SourceLocation L, Expr *Init, 2552 SourceLocation R) 2553 : Initializee(Member), Init(Init), MemberOrEllipsisLocation(MemberLoc), 2554 LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(false), 2555 IsWritten(false), SourceOrder(0) {} 2556 2557 CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context, 2558 IndirectFieldDecl *Member, 2559 SourceLocation MemberLoc, 2560 SourceLocation L, Expr *Init, 2561 SourceLocation R) 2562 : Initializee(Member), Init(Init), MemberOrEllipsisLocation(MemberLoc), 2563 LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(false), 2564 IsWritten(false), SourceOrder(0) {} 2565 2566 CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context, 2567 TypeSourceInfo *TInfo, 2568 SourceLocation L, Expr *Init, 2569 SourceLocation R) 2570 : Initializee(TInfo), Init(Init), LParenLoc(L), RParenLoc(R), 2571 IsDelegating(true), IsVirtual(false), IsWritten(false), SourceOrder(0) {} 2572 2573 int64_t CXXCtorInitializer::getID(const ASTContext &Context) const { 2574 return Context.getAllocator() 2575 .identifyKnownAlignedObject<CXXCtorInitializer>(this); 2576 } 2577 2578 TypeLoc CXXCtorInitializer::getBaseClassLoc() const { 2579 if (isBaseInitializer()) 2580 return Initializee.get<TypeSourceInfo*>()->getTypeLoc(); 2581 else 2582 return {}; 2583 } 2584 2585 const Type *CXXCtorInitializer::getBaseClass() const { 2586 if (isBaseInitializer()) 2587 return Initializee.get<TypeSourceInfo*>()->getType().getTypePtr(); 2588 else 2589 return nullptr; 2590 } 2591 2592 SourceLocation CXXCtorInitializer::getSourceLocation() const { 2593 if (isInClassMemberInitializer()) 2594 return getAnyMember()->getLocation(); 2595 2596 if (isAnyMemberInitializer()) 2597 return getMemberLocation(); 2598 2599 if (const auto *TSInfo = Initializee.get<TypeSourceInfo *>()) 2600 return TSInfo->getTypeLoc().getBeginLoc(); 2601 2602 return {}; 2603 } 2604 2605 SourceRange CXXCtorInitializer::getSourceRange() const { 2606 if (isInClassMemberInitializer()) { 2607 FieldDecl *D = getAnyMember(); 2608 if (Expr *I = D->getInClassInitializer()) 2609 return I->getSourceRange(); 2610 return {}; 2611 } 2612 2613 return SourceRange(getSourceLocation(), getRParenLoc()); 2614 } 2615 2616 CXXConstructorDecl::CXXConstructorDecl( 2617 ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, 2618 const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, 2619 ExplicitSpecifier ES, bool UsesFPIntrin, bool isInline, 2620 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind, 2621 InheritedConstructor Inherited, Expr *TrailingRequiresClause) 2622 : CXXMethodDecl(CXXConstructor, C, RD, StartLoc, NameInfo, T, TInfo, 2623 SC_None, UsesFPIntrin, isInline, ConstexprKind, 2624 SourceLocation(), TrailingRequiresClause) { 2625 setNumCtorInitializers(0); 2626 setInheritingConstructor(static_cast<bool>(Inherited)); 2627 setImplicit(isImplicitlyDeclared); 2628 CXXConstructorDeclBits.HasTrailingExplicitSpecifier = ES.getExpr() ? 1 : 0; 2629 if (Inherited) 2630 *getTrailingObjects<InheritedConstructor>() = Inherited; 2631 setExplicitSpecifier(ES); 2632 } 2633 2634 void CXXConstructorDecl::anchor() {} 2635 2636 CXXConstructorDecl *CXXConstructorDecl::CreateDeserialized(ASTContext &C, 2637 unsigned ID, 2638 uint64_t AllocKind) { 2639 bool hasTrailingExplicit = static_cast<bool>(AllocKind & TAKHasTailExplicit); 2640 bool isInheritingConstructor = 2641 static_cast<bool>(AllocKind & TAKInheritsConstructor); 2642 unsigned Extra = 2643 additionalSizeToAlloc<InheritedConstructor, ExplicitSpecifier>( 2644 isInheritingConstructor, hasTrailingExplicit); 2645 auto *Result = new (C, ID, Extra) CXXConstructorDecl( 2646 C, nullptr, SourceLocation(), DeclarationNameInfo(), QualType(), nullptr, 2647 ExplicitSpecifier(), false, false, false, ConstexprSpecKind::Unspecified, 2648 InheritedConstructor(), nullptr); 2649 Result->setInheritingConstructor(isInheritingConstructor); 2650 Result->CXXConstructorDeclBits.HasTrailingExplicitSpecifier = 2651 hasTrailingExplicit; 2652 Result->setExplicitSpecifier(ExplicitSpecifier()); 2653 return Result; 2654 } 2655 2656 CXXConstructorDecl *CXXConstructorDecl::Create( 2657 ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, 2658 const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, 2659 ExplicitSpecifier ES, bool UsesFPIntrin, bool isInline, 2660 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind, 2661 InheritedConstructor Inherited, Expr *TrailingRequiresClause) { 2662 assert(NameInfo.getName().getNameKind() 2663 == DeclarationName::CXXConstructorName && 2664 "Name must refer to a constructor"); 2665 unsigned Extra = 2666 additionalSizeToAlloc<InheritedConstructor, ExplicitSpecifier>( 2667 Inherited ? 1 : 0, ES.getExpr() ? 1 : 0); 2668 return new (C, RD, Extra) CXXConstructorDecl( 2669 C, RD, StartLoc, NameInfo, T, TInfo, ES, UsesFPIntrin, isInline, 2670 isImplicitlyDeclared, ConstexprKind, Inherited, TrailingRequiresClause); 2671 } 2672 2673 CXXConstructorDecl::init_const_iterator CXXConstructorDecl::init_begin() const { 2674 return CtorInitializers.get(getASTContext().getExternalSource()); 2675 } 2676 2677 CXXConstructorDecl *CXXConstructorDecl::getTargetConstructor() const { 2678 assert(isDelegatingConstructor() && "Not a delegating constructor!"); 2679 Expr *E = (*init_begin())->getInit()->IgnoreImplicit(); 2680 if (const auto *Construct = dyn_cast<CXXConstructExpr>(E)) 2681 return Construct->getConstructor(); 2682 2683 return nullptr; 2684 } 2685 2686 bool CXXConstructorDecl::isDefaultConstructor() const { 2687 // C++ [class.default.ctor]p1: 2688 // A default constructor for a class X is a constructor of class X for 2689 // which each parameter that is not a function parameter pack has a default 2690 // argument (including the case of a constructor with no parameters) 2691 return getMinRequiredArguments() == 0; 2692 } 2693 2694 bool 2695 CXXConstructorDecl::isCopyConstructor(unsigned &TypeQuals) const { 2696 return isCopyOrMoveConstructor(TypeQuals) && 2697 getParamDecl(0)->getType()->isLValueReferenceType(); 2698 } 2699 2700 bool CXXConstructorDecl::isMoveConstructor(unsigned &TypeQuals) const { 2701 return isCopyOrMoveConstructor(TypeQuals) && 2702 getParamDecl(0)->getType()->isRValueReferenceType(); 2703 } 2704 2705 /// Determine whether this is a copy or move constructor. 2706 bool CXXConstructorDecl::isCopyOrMoveConstructor(unsigned &TypeQuals) const { 2707 // C++ [class.copy]p2: 2708 // A non-template constructor for class X is a copy constructor 2709 // if its first parameter is of type X&, const X&, volatile X& or 2710 // const volatile X&, and either there are no other parameters 2711 // or else all other parameters have default arguments (8.3.6). 2712 // C++0x [class.copy]p3: 2713 // A non-template constructor for class X is a move constructor if its 2714 // first parameter is of type X&&, const X&&, volatile X&&, or 2715 // const volatile X&&, and either there are no other parameters or else 2716 // all other parameters have default arguments. 2717 if (!hasOneParamOrDefaultArgs() || getPrimaryTemplate() != nullptr || 2718 getDescribedFunctionTemplate() != nullptr) 2719 return false; 2720 2721 const ParmVarDecl *Param = getParamDecl(0); 2722 2723 // Do we have a reference type? 2724 const auto *ParamRefType = Param->getType()->getAs<ReferenceType>(); 2725 if (!ParamRefType) 2726 return false; 2727 2728 // Is it a reference to our class type? 2729 ASTContext &Context = getASTContext(); 2730 2731 CanQualType PointeeType 2732 = Context.getCanonicalType(ParamRefType->getPointeeType()); 2733 CanQualType ClassTy 2734 = Context.getCanonicalType(Context.getTagDeclType(getParent())); 2735 if (PointeeType.getUnqualifiedType() != ClassTy) 2736 return false; 2737 2738 // FIXME: other qualifiers? 2739 2740 // We have a copy or move constructor. 2741 TypeQuals = PointeeType.getCVRQualifiers(); 2742 return true; 2743 } 2744 2745 bool CXXConstructorDecl::isConvertingConstructor(bool AllowExplicit) const { 2746 // C++ [class.conv.ctor]p1: 2747 // A constructor declared without the function-specifier explicit 2748 // that can be called with a single parameter specifies a 2749 // conversion from the type of its first parameter to the type of 2750 // its class. Such a constructor is called a converting 2751 // constructor. 2752 if (isExplicit() && !AllowExplicit) 2753 return false; 2754 2755 // FIXME: This has nothing to do with the definition of converting 2756 // constructor, but is convenient for how we use this function in overload 2757 // resolution. 2758 return getNumParams() == 0 2759 ? getType()->castAs<FunctionProtoType>()->isVariadic() 2760 : getMinRequiredArguments() <= 1; 2761 } 2762 2763 bool CXXConstructorDecl::isSpecializationCopyingObject() const { 2764 if (!hasOneParamOrDefaultArgs() || getDescribedFunctionTemplate() != nullptr) 2765 return false; 2766 2767 const ParmVarDecl *Param = getParamDecl(0); 2768 2769 ASTContext &Context = getASTContext(); 2770 CanQualType ParamType = Context.getCanonicalType(Param->getType()); 2771 2772 // Is it the same as our class type? 2773 CanQualType ClassTy 2774 = Context.getCanonicalType(Context.getTagDeclType(getParent())); 2775 if (ParamType.getUnqualifiedType() != ClassTy) 2776 return false; 2777 2778 return true; 2779 } 2780 2781 void CXXDestructorDecl::anchor() {} 2782 2783 CXXDestructorDecl * 2784 CXXDestructorDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 2785 return new (C, ID) CXXDestructorDecl( 2786 C, nullptr, SourceLocation(), DeclarationNameInfo(), QualType(), nullptr, 2787 false, false, false, ConstexprSpecKind::Unspecified, nullptr); 2788 } 2789 2790 CXXDestructorDecl *CXXDestructorDecl::Create( 2791 ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, 2792 const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, 2793 bool UsesFPIntrin, bool isInline, bool isImplicitlyDeclared, 2794 ConstexprSpecKind ConstexprKind, Expr *TrailingRequiresClause) { 2795 assert(NameInfo.getName().getNameKind() 2796 == DeclarationName::CXXDestructorName && 2797 "Name must refer to a destructor"); 2798 return new (C, RD) CXXDestructorDecl( 2799 C, RD, StartLoc, NameInfo, T, TInfo, UsesFPIntrin, isInline, 2800 isImplicitlyDeclared, ConstexprKind, TrailingRequiresClause); 2801 } 2802 2803 void CXXDestructorDecl::setOperatorDelete(FunctionDecl *OD, Expr *ThisArg) { 2804 auto *First = cast<CXXDestructorDecl>(getFirstDecl()); 2805 if (OD && !First->OperatorDelete) { 2806 First->OperatorDelete = OD; 2807 First->OperatorDeleteThisArg = ThisArg; 2808 if (auto *L = getASTMutationListener()) 2809 L->ResolvedOperatorDelete(First, OD, ThisArg); 2810 } 2811 } 2812 2813 void CXXConversionDecl::anchor() {} 2814 2815 CXXConversionDecl * 2816 CXXConversionDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 2817 return new (C, ID) CXXConversionDecl( 2818 C, nullptr, SourceLocation(), DeclarationNameInfo(), QualType(), nullptr, 2819 false, false, ExplicitSpecifier(), ConstexprSpecKind::Unspecified, 2820 SourceLocation(), nullptr); 2821 } 2822 2823 CXXConversionDecl *CXXConversionDecl::Create( 2824 ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, 2825 const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, 2826 bool UsesFPIntrin, bool isInline, ExplicitSpecifier ES, 2827 ConstexprSpecKind ConstexprKind, SourceLocation EndLocation, 2828 Expr *TrailingRequiresClause) { 2829 assert(NameInfo.getName().getNameKind() 2830 == DeclarationName::CXXConversionFunctionName && 2831 "Name must refer to a conversion function"); 2832 return new (C, RD) CXXConversionDecl( 2833 C, RD, StartLoc, NameInfo, T, TInfo, UsesFPIntrin, isInline, ES, 2834 ConstexprKind, EndLocation, TrailingRequiresClause); 2835 } 2836 2837 bool CXXConversionDecl::isLambdaToBlockPointerConversion() const { 2838 return isImplicit() && getParent()->isLambda() && 2839 getConversionType()->isBlockPointerType(); 2840 } 2841 2842 LinkageSpecDecl::LinkageSpecDecl(DeclContext *DC, SourceLocation ExternLoc, 2843 SourceLocation LangLoc, LanguageIDs lang, 2844 bool HasBraces) 2845 : Decl(LinkageSpec, DC, LangLoc), DeclContext(LinkageSpec), 2846 ExternLoc(ExternLoc), RBraceLoc(SourceLocation()) { 2847 setLanguage(lang); 2848 LinkageSpecDeclBits.HasBraces = HasBraces; 2849 } 2850 2851 void LinkageSpecDecl::anchor() {} 2852 2853 LinkageSpecDecl *LinkageSpecDecl::Create(ASTContext &C, 2854 DeclContext *DC, 2855 SourceLocation ExternLoc, 2856 SourceLocation LangLoc, 2857 LanguageIDs Lang, 2858 bool HasBraces) { 2859 return new (C, DC) LinkageSpecDecl(DC, ExternLoc, LangLoc, Lang, HasBraces); 2860 } 2861 2862 LinkageSpecDecl *LinkageSpecDecl::CreateDeserialized(ASTContext &C, 2863 unsigned ID) { 2864 return new (C, ID) LinkageSpecDecl(nullptr, SourceLocation(), 2865 SourceLocation(), lang_c, false); 2866 } 2867 2868 void UsingDirectiveDecl::anchor() {} 2869 2870 UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC, 2871 SourceLocation L, 2872 SourceLocation NamespaceLoc, 2873 NestedNameSpecifierLoc QualifierLoc, 2874 SourceLocation IdentLoc, 2875 NamedDecl *Used, 2876 DeclContext *CommonAncestor) { 2877 if (auto *NS = dyn_cast_or_null<NamespaceDecl>(Used)) 2878 Used = NS->getOriginalNamespace(); 2879 return new (C, DC) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc, 2880 IdentLoc, Used, CommonAncestor); 2881 } 2882 2883 UsingDirectiveDecl *UsingDirectiveDecl::CreateDeserialized(ASTContext &C, 2884 unsigned ID) { 2885 return new (C, ID) UsingDirectiveDecl(nullptr, SourceLocation(), 2886 SourceLocation(), 2887 NestedNameSpecifierLoc(), 2888 SourceLocation(), nullptr, nullptr); 2889 } 2890 2891 NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() { 2892 if (auto *NA = dyn_cast_or_null<NamespaceAliasDecl>(NominatedNamespace)) 2893 return NA->getNamespace(); 2894 return cast_or_null<NamespaceDecl>(NominatedNamespace); 2895 } 2896 2897 NamespaceDecl::NamespaceDecl(ASTContext &C, DeclContext *DC, bool Inline, 2898 SourceLocation StartLoc, SourceLocation IdLoc, 2899 IdentifierInfo *Id, NamespaceDecl *PrevDecl, 2900 bool Nested) 2901 : NamedDecl(Namespace, DC, IdLoc, Id), DeclContext(Namespace), 2902 redeclarable_base(C), LocStart(StartLoc) { 2903 unsigned Flags = 0; 2904 if (Inline) 2905 Flags |= F_Inline; 2906 if (Nested) 2907 Flags |= F_Nested; 2908 AnonOrFirstNamespaceAndFlags = {nullptr, Flags}; 2909 setPreviousDecl(PrevDecl); 2910 2911 if (PrevDecl) 2912 AnonOrFirstNamespaceAndFlags.setPointer(PrevDecl->getOriginalNamespace()); 2913 } 2914 2915 NamespaceDecl *NamespaceDecl::Create(ASTContext &C, DeclContext *DC, 2916 bool Inline, SourceLocation StartLoc, 2917 SourceLocation IdLoc, IdentifierInfo *Id, 2918 NamespaceDecl *PrevDecl, bool Nested) { 2919 return new (C, DC) 2920 NamespaceDecl(C, DC, Inline, StartLoc, IdLoc, Id, PrevDecl, Nested); 2921 } 2922 2923 NamespaceDecl *NamespaceDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 2924 return new (C, ID) NamespaceDecl(C, nullptr, false, SourceLocation(), 2925 SourceLocation(), nullptr, nullptr, false); 2926 } 2927 2928 NamespaceDecl *NamespaceDecl::getOriginalNamespace() { 2929 if (isFirstDecl()) 2930 return this; 2931 2932 return AnonOrFirstNamespaceAndFlags.getPointer(); 2933 } 2934 2935 const NamespaceDecl *NamespaceDecl::getOriginalNamespace() const { 2936 if (isFirstDecl()) 2937 return this; 2938 2939 return AnonOrFirstNamespaceAndFlags.getPointer(); 2940 } 2941 2942 bool NamespaceDecl::isOriginalNamespace() const { return isFirstDecl(); } 2943 2944 NamespaceDecl *NamespaceDecl::getNextRedeclarationImpl() { 2945 return getNextRedeclaration(); 2946 } 2947 2948 NamespaceDecl *NamespaceDecl::getPreviousDeclImpl() { 2949 return getPreviousDecl(); 2950 } 2951 2952 NamespaceDecl *NamespaceDecl::getMostRecentDeclImpl() { 2953 return getMostRecentDecl(); 2954 } 2955 2956 void NamespaceAliasDecl::anchor() {} 2957 2958 NamespaceAliasDecl *NamespaceAliasDecl::getNextRedeclarationImpl() { 2959 return getNextRedeclaration(); 2960 } 2961 2962 NamespaceAliasDecl *NamespaceAliasDecl::getPreviousDeclImpl() { 2963 return getPreviousDecl(); 2964 } 2965 2966 NamespaceAliasDecl *NamespaceAliasDecl::getMostRecentDeclImpl() { 2967 return getMostRecentDecl(); 2968 } 2969 2970 NamespaceAliasDecl *NamespaceAliasDecl::Create(ASTContext &C, DeclContext *DC, 2971 SourceLocation UsingLoc, 2972 SourceLocation AliasLoc, 2973 IdentifierInfo *Alias, 2974 NestedNameSpecifierLoc QualifierLoc, 2975 SourceLocation IdentLoc, 2976 NamedDecl *Namespace) { 2977 // FIXME: Preserve the aliased namespace as written. 2978 if (auto *NS = dyn_cast_or_null<NamespaceDecl>(Namespace)) 2979 Namespace = NS->getOriginalNamespace(); 2980 return new (C, DC) NamespaceAliasDecl(C, DC, UsingLoc, AliasLoc, Alias, 2981 QualifierLoc, IdentLoc, Namespace); 2982 } 2983 2984 NamespaceAliasDecl * 2985 NamespaceAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 2986 return new (C, ID) NamespaceAliasDecl(C, nullptr, SourceLocation(), 2987 SourceLocation(), nullptr, 2988 NestedNameSpecifierLoc(), 2989 SourceLocation(), nullptr); 2990 } 2991 2992 void LifetimeExtendedTemporaryDecl::anchor() {} 2993 2994 /// Retrieve the storage duration for the materialized temporary. 2995 StorageDuration LifetimeExtendedTemporaryDecl::getStorageDuration() const { 2996 const ValueDecl *ExtendingDecl = getExtendingDecl(); 2997 if (!ExtendingDecl) 2998 return SD_FullExpression; 2999 // FIXME: This is not necessarily correct for a temporary materialized 3000 // within a default initializer. 3001 if (isa<FieldDecl>(ExtendingDecl)) 3002 return SD_Automatic; 3003 // FIXME: This only works because storage class specifiers are not allowed 3004 // on decomposition declarations. 3005 if (isa<BindingDecl>(ExtendingDecl)) 3006 return ExtendingDecl->getDeclContext()->isFunctionOrMethod() ? SD_Automatic 3007 : SD_Static; 3008 return cast<VarDecl>(ExtendingDecl)->getStorageDuration(); 3009 } 3010 3011 APValue *LifetimeExtendedTemporaryDecl::getOrCreateValue(bool MayCreate) const { 3012 assert(getStorageDuration() == SD_Static && 3013 "don't need to cache the computed value for this temporary"); 3014 if (MayCreate && !Value) { 3015 Value = (new (getASTContext()) APValue); 3016 getASTContext().addDestruction(Value); 3017 } 3018 assert(Value && "may not be null"); 3019 return Value; 3020 } 3021 3022 void UsingShadowDecl::anchor() {} 3023 3024 UsingShadowDecl::UsingShadowDecl(Kind K, ASTContext &C, DeclContext *DC, 3025 SourceLocation Loc, DeclarationName Name, 3026 BaseUsingDecl *Introducer, NamedDecl *Target) 3027 : NamedDecl(K, DC, Loc, Name), redeclarable_base(C), 3028 UsingOrNextShadow(Introducer) { 3029 if (Target) { 3030 assert(!isa<UsingShadowDecl>(Target)); 3031 setTargetDecl(Target); 3032 } 3033 setImplicit(); 3034 } 3035 3036 UsingShadowDecl::UsingShadowDecl(Kind K, ASTContext &C, EmptyShell Empty) 3037 : NamedDecl(K, nullptr, SourceLocation(), DeclarationName()), 3038 redeclarable_base(C) {} 3039 3040 UsingShadowDecl * 3041 UsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3042 return new (C, ID) UsingShadowDecl(UsingShadow, C, EmptyShell()); 3043 } 3044 3045 BaseUsingDecl *UsingShadowDecl::getIntroducer() const { 3046 const UsingShadowDecl *Shadow = this; 3047 while (const auto *NextShadow = 3048 dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow)) 3049 Shadow = NextShadow; 3050 return cast<BaseUsingDecl>(Shadow->UsingOrNextShadow); 3051 } 3052 3053 void ConstructorUsingShadowDecl::anchor() {} 3054 3055 ConstructorUsingShadowDecl * 3056 ConstructorUsingShadowDecl::Create(ASTContext &C, DeclContext *DC, 3057 SourceLocation Loc, UsingDecl *Using, 3058 NamedDecl *Target, bool IsVirtual) { 3059 return new (C, DC) ConstructorUsingShadowDecl(C, DC, Loc, Using, Target, 3060 IsVirtual); 3061 } 3062 3063 ConstructorUsingShadowDecl * 3064 ConstructorUsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3065 return new (C, ID) ConstructorUsingShadowDecl(C, EmptyShell()); 3066 } 3067 3068 CXXRecordDecl *ConstructorUsingShadowDecl::getNominatedBaseClass() const { 3069 return getIntroducer()->getQualifier()->getAsRecordDecl(); 3070 } 3071 3072 void BaseUsingDecl::anchor() {} 3073 3074 void BaseUsingDecl::addShadowDecl(UsingShadowDecl *S) { 3075 assert(!llvm::is_contained(shadows(), S) && "declaration already in set"); 3076 assert(S->getIntroducer() == this); 3077 3078 if (FirstUsingShadow.getPointer()) 3079 S->UsingOrNextShadow = FirstUsingShadow.getPointer(); 3080 FirstUsingShadow.setPointer(S); 3081 } 3082 3083 void BaseUsingDecl::removeShadowDecl(UsingShadowDecl *S) { 3084 assert(llvm::is_contained(shadows(), S) && "declaration not in set"); 3085 assert(S->getIntroducer() == this); 3086 3087 // Remove S from the shadow decl chain. This is O(n) but hopefully rare. 3088 3089 if (FirstUsingShadow.getPointer() == S) { 3090 FirstUsingShadow.setPointer( 3091 dyn_cast<UsingShadowDecl>(S->UsingOrNextShadow)); 3092 S->UsingOrNextShadow = this; 3093 return; 3094 } 3095 3096 UsingShadowDecl *Prev = FirstUsingShadow.getPointer(); 3097 while (Prev->UsingOrNextShadow != S) 3098 Prev = cast<UsingShadowDecl>(Prev->UsingOrNextShadow); 3099 Prev->UsingOrNextShadow = S->UsingOrNextShadow; 3100 S->UsingOrNextShadow = this; 3101 } 3102 3103 void UsingDecl::anchor() {} 3104 3105 UsingDecl *UsingDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation UL, 3106 NestedNameSpecifierLoc QualifierLoc, 3107 const DeclarationNameInfo &NameInfo, 3108 bool HasTypename) { 3109 return new (C, DC) UsingDecl(DC, UL, QualifierLoc, NameInfo, HasTypename); 3110 } 3111 3112 UsingDecl *UsingDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3113 return new (C, ID) UsingDecl(nullptr, SourceLocation(), 3114 NestedNameSpecifierLoc(), DeclarationNameInfo(), 3115 false); 3116 } 3117 3118 SourceRange UsingDecl::getSourceRange() const { 3119 SourceLocation Begin = isAccessDeclaration() 3120 ? getQualifierLoc().getBeginLoc() : UsingLocation; 3121 return SourceRange(Begin, getNameInfo().getEndLoc()); 3122 } 3123 3124 void UsingEnumDecl::anchor() {} 3125 3126 UsingEnumDecl *UsingEnumDecl::Create(ASTContext &C, DeclContext *DC, 3127 SourceLocation UL, 3128 SourceLocation EL, 3129 SourceLocation NL, 3130 TypeSourceInfo *EnumType) { 3131 assert(isa<EnumDecl>(EnumType->getType()->getAsTagDecl())); 3132 return new (C, DC) 3133 UsingEnumDecl(DC, EnumType->getType()->getAsTagDecl()->getDeclName(), UL, EL, NL, EnumType); 3134 } 3135 3136 UsingEnumDecl *UsingEnumDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3137 return new (C, ID) 3138 UsingEnumDecl(nullptr, DeclarationName(), SourceLocation(), 3139 SourceLocation(), SourceLocation(), nullptr); 3140 } 3141 3142 SourceRange UsingEnumDecl::getSourceRange() const { 3143 return SourceRange(UsingLocation, EnumType->getTypeLoc().getEndLoc()); 3144 } 3145 3146 void UsingPackDecl::anchor() {} 3147 3148 UsingPackDecl *UsingPackDecl::Create(ASTContext &C, DeclContext *DC, 3149 NamedDecl *InstantiatedFrom, 3150 ArrayRef<NamedDecl *> UsingDecls) { 3151 size_t Extra = additionalSizeToAlloc<NamedDecl *>(UsingDecls.size()); 3152 return new (C, DC, Extra) UsingPackDecl(DC, InstantiatedFrom, UsingDecls); 3153 } 3154 3155 UsingPackDecl *UsingPackDecl::CreateDeserialized(ASTContext &C, unsigned ID, 3156 unsigned NumExpansions) { 3157 size_t Extra = additionalSizeToAlloc<NamedDecl *>(NumExpansions); 3158 auto *Result = 3159 new (C, ID, Extra) UsingPackDecl(nullptr, nullptr, std::nullopt); 3160 Result->NumExpansions = NumExpansions; 3161 auto *Trail = Result->getTrailingObjects<NamedDecl *>(); 3162 for (unsigned I = 0; I != NumExpansions; ++I) 3163 new (Trail + I) NamedDecl*(nullptr); 3164 return Result; 3165 } 3166 3167 void UnresolvedUsingValueDecl::anchor() {} 3168 3169 UnresolvedUsingValueDecl * 3170 UnresolvedUsingValueDecl::Create(ASTContext &C, DeclContext *DC, 3171 SourceLocation UsingLoc, 3172 NestedNameSpecifierLoc QualifierLoc, 3173 const DeclarationNameInfo &NameInfo, 3174 SourceLocation EllipsisLoc) { 3175 return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, 3176 QualifierLoc, NameInfo, 3177 EllipsisLoc); 3178 } 3179 3180 UnresolvedUsingValueDecl * 3181 UnresolvedUsingValueDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3182 return new (C, ID) UnresolvedUsingValueDecl(nullptr, QualType(), 3183 SourceLocation(), 3184 NestedNameSpecifierLoc(), 3185 DeclarationNameInfo(), 3186 SourceLocation()); 3187 } 3188 3189 SourceRange UnresolvedUsingValueDecl::getSourceRange() const { 3190 SourceLocation Begin = isAccessDeclaration() 3191 ? getQualifierLoc().getBeginLoc() : UsingLocation; 3192 return SourceRange(Begin, getNameInfo().getEndLoc()); 3193 } 3194 3195 void UnresolvedUsingTypenameDecl::anchor() {} 3196 3197 UnresolvedUsingTypenameDecl * 3198 UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC, 3199 SourceLocation UsingLoc, 3200 SourceLocation TypenameLoc, 3201 NestedNameSpecifierLoc QualifierLoc, 3202 SourceLocation TargetNameLoc, 3203 DeclarationName TargetName, 3204 SourceLocation EllipsisLoc) { 3205 return new (C, DC) UnresolvedUsingTypenameDecl( 3206 DC, UsingLoc, TypenameLoc, QualifierLoc, TargetNameLoc, 3207 TargetName.getAsIdentifierInfo(), EllipsisLoc); 3208 } 3209 3210 UnresolvedUsingTypenameDecl * 3211 UnresolvedUsingTypenameDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3212 return new (C, ID) UnresolvedUsingTypenameDecl( 3213 nullptr, SourceLocation(), SourceLocation(), NestedNameSpecifierLoc(), 3214 SourceLocation(), nullptr, SourceLocation()); 3215 } 3216 3217 UnresolvedUsingIfExistsDecl * 3218 UnresolvedUsingIfExistsDecl::Create(ASTContext &Ctx, DeclContext *DC, 3219 SourceLocation Loc, DeclarationName Name) { 3220 return new (Ctx, DC) UnresolvedUsingIfExistsDecl(DC, Loc, Name); 3221 } 3222 3223 UnresolvedUsingIfExistsDecl * 3224 UnresolvedUsingIfExistsDecl::CreateDeserialized(ASTContext &Ctx, unsigned ID) { 3225 return new (Ctx, ID) 3226 UnresolvedUsingIfExistsDecl(nullptr, SourceLocation(), DeclarationName()); 3227 } 3228 3229 UnresolvedUsingIfExistsDecl::UnresolvedUsingIfExistsDecl(DeclContext *DC, 3230 SourceLocation Loc, 3231 DeclarationName Name) 3232 : NamedDecl(Decl::UnresolvedUsingIfExists, DC, Loc, Name) {} 3233 3234 void UnresolvedUsingIfExistsDecl::anchor() {} 3235 3236 void StaticAssertDecl::anchor() {} 3237 3238 StaticAssertDecl *StaticAssertDecl::Create(ASTContext &C, DeclContext *DC, 3239 SourceLocation StaticAssertLoc, 3240 Expr *AssertExpr, Expr *Message, 3241 SourceLocation RParenLoc, 3242 bool Failed) { 3243 return new (C, DC) StaticAssertDecl(DC, StaticAssertLoc, AssertExpr, Message, 3244 RParenLoc, Failed); 3245 } 3246 3247 StaticAssertDecl *StaticAssertDecl::CreateDeserialized(ASTContext &C, 3248 unsigned ID) { 3249 return new (C, ID) StaticAssertDecl(nullptr, SourceLocation(), nullptr, 3250 nullptr, SourceLocation(), false); 3251 } 3252 3253 VarDecl *ValueDecl::getPotentiallyDecomposedVarDecl() { 3254 assert((isa<VarDecl, BindingDecl>(this)) && 3255 "expected a VarDecl or a BindingDecl"); 3256 if (auto *Var = llvm::dyn_cast<VarDecl>(this)) 3257 return Var; 3258 if (auto *BD = llvm::dyn_cast<BindingDecl>(this)) 3259 return llvm::dyn_cast<VarDecl>(BD->getDecomposedDecl()); 3260 return nullptr; 3261 } 3262 3263 void BindingDecl::anchor() {} 3264 3265 BindingDecl *BindingDecl::Create(ASTContext &C, DeclContext *DC, 3266 SourceLocation IdLoc, IdentifierInfo *Id) { 3267 return new (C, DC) BindingDecl(DC, IdLoc, Id); 3268 } 3269 3270 BindingDecl *BindingDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3271 return new (C, ID) BindingDecl(nullptr, SourceLocation(), nullptr); 3272 } 3273 3274 VarDecl *BindingDecl::getHoldingVar() const { 3275 Expr *B = getBinding(); 3276 if (!B) 3277 return nullptr; 3278 auto *DRE = dyn_cast<DeclRefExpr>(B->IgnoreImplicit()); 3279 if (!DRE) 3280 return nullptr; 3281 3282 auto *VD = cast<VarDecl>(DRE->getDecl()); 3283 assert(VD->isImplicit() && "holding var for binding decl not implicit"); 3284 return VD; 3285 } 3286 3287 void DecompositionDecl::anchor() {} 3288 3289 DecompositionDecl *DecompositionDecl::Create(ASTContext &C, DeclContext *DC, 3290 SourceLocation StartLoc, 3291 SourceLocation LSquareLoc, 3292 QualType T, TypeSourceInfo *TInfo, 3293 StorageClass SC, 3294 ArrayRef<BindingDecl *> Bindings) { 3295 size_t Extra = additionalSizeToAlloc<BindingDecl *>(Bindings.size()); 3296 return new (C, DC, Extra) 3297 DecompositionDecl(C, DC, StartLoc, LSquareLoc, T, TInfo, SC, Bindings); 3298 } 3299 3300 DecompositionDecl *DecompositionDecl::CreateDeserialized(ASTContext &C, 3301 unsigned ID, 3302 unsigned NumBindings) { 3303 size_t Extra = additionalSizeToAlloc<BindingDecl *>(NumBindings); 3304 auto *Result = new (C, ID, Extra) 3305 DecompositionDecl(C, nullptr, SourceLocation(), SourceLocation(), 3306 QualType(), nullptr, StorageClass(), std::nullopt); 3307 // Set up and clean out the bindings array. 3308 Result->NumBindings = NumBindings; 3309 auto *Trail = Result->getTrailingObjects<BindingDecl *>(); 3310 for (unsigned I = 0; I != NumBindings; ++I) 3311 new (Trail + I) BindingDecl*(nullptr); 3312 return Result; 3313 } 3314 3315 void DecompositionDecl::printName(llvm::raw_ostream &OS, 3316 const PrintingPolicy &Policy) const { 3317 OS << '['; 3318 bool Comma = false; 3319 for (const auto *B : bindings()) { 3320 if (Comma) 3321 OS << ", "; 3322 B->printName(OS, Policy); 3323 Comma = true; 3324 } 3325 OS << ']'; 3326 } 3327 3328 void MSPropertyDecl::anchor() {} 3329 3330 MSPropertyDecl *MSPropertyDecl::Create(ASTContext &C, DeclContext *DC, 3331 SourceLocation L, DeclarationName N, 3332 QualType T, TypeSourceInfo *TInfo, 3333 SourceLocation StartL, 3334 IdentifierInfo *Getter, 3335 IdentifierInfo *Setter) { 3336 return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter); 3337 } 3338 3339 MSPropertyDecl *MSPropertyDecl::CreateDeserialized(ASTContext &C, 3340 unsigned ID) { 3341 return new (C, ID) MSPropertyDecl(nullptr, SourceLocation(), 3342 DeclarationName(), QualType(), nullptr, 3343 SourceLocation(), nullptr, nullptr); 3344 } 3345 3346 void MSGuidDecl::anchor() {} 3347 3348 MSGuidDecl::MSGuidDecl(DeclContext *DC, QualType T, Parts P) 3349 : ValueDecl(Decl::MSGuid, DC, SourceLocation(), DeclarationName(), T), 3350 PartVal(P) {} 3351 3352 MSGuidDecl *MSGuidDecl::Create(const ASTContext &C, QualType T, Parts P) { 3353 DeclContext *DC = C.getTranslationUnitDecl(); 3354 return new (C, DC) MSGuidDecl(DC, T, P); 3355 } 3356 3357 MSGuidDecl *MSGuidDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3358 return new (C, ID) MSGuidDecl(nullptr, QualType(), Parts()); 3359 } 3360 3361 void MSGuidDecl::printName(llvm::raw_ostream &OS, 3362 const PrintingPolicy &) const { 3363 OS << llvm::format("GUID{%08" PRIx32 "-%04" PRIx16 "-%04" PRIx16 "-", 3364 PartVal.Part1, PartVal.Part2, PartVal.Part3); 3365 unsigned I = 0; 3366 for (uint8_t Byte : PartVal.Part4And5) { 3367 OS << llvm::format("%02" PRIx8, Byte); 3368 if (++I == 2) 3369 OS << '-'; 3370 } 3371 OS << '}'; 3372 } 3373 3374 /// Determine if T is a valid 'struct _GUID' of the shape that we expect. 3375 static bool isValidStructGUID(ASTContext &Ctx, QualType T) { 3376 // FIXME: We only need to check this once, not once each time we compute a 3377 // GUID APValue. 3378 using MatcherRef = llvm::function_ref<bool(QualType)>; 3379 3380 auto IsInt = [&Ctx](unsigned N) { 3381 return [&Ctx, N](QualType T) { 3382 return T->isUnsignedIntegerOrEnumerationType() && 3383 Ctx.getIntWidth(T) == N; 3384 }; 3385 }; 3386 3387 auto IsArray = [&Ctx](MatcherRef Elem, unsigned N) { 3388 return [&Ctx, Elem, N](QualType T) { 3389 const ConstantArrayType *CAT = Ctx.getAsConstantArrayType(T); 3390 return CAT && CAT->getSize() == N && Elem(CAT->getElementType()); 3391 }; 3392 }; 3393 3394 auto IsStruct = [](std::initializer_list<MatcherRef> Fields) { 3395 return [Fields](QualType T) { 3396 const RecordDecl *RD = T->getAsRecordDecl(); 3397 if (!RD || RD->isUnion()) 3398 return false; 3399 RD = RD->getDefinition(); 3400 if (!RD) 3401 return false; 3402 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RD)) 3403 if (CXXRD->getNumBases()) 3404 return false; 3405 auto MatcherIt = Fields.begin(); 3406 for (const FieldDecl *FD : RD->fields()) { 3407 if (FD->isUnnamedBitfield()) continue; 3408 if (FD->isBitField() || MatcherIt == Fields.end() || 3409 !(*MatcherIt)(FD->getType())) 3410 return false; 3411 ++MatcherIt; 3412 } 3413 return MatcherIt == Fields.end(); 3414 }; 3415 }; 3416 3417 // We expect an {i32, i16, i16, [8 x i8]}. 3418 return IsStruct({IsInt(32), IsInt(16), IsInt(16), IsArray(IsInt(8), 8)})(T); 3419 } 3420 3421 APValue &MSGuidDecl::getAsAPValue() const { 3422 if (APVal.isAbsent() && isValidStructGUID(getASTContext(), getType())) { 3423 using llvm::APInt; 3424 using llvm::APSInt; 3425 APVal = APValue(APValue::UninitStruct(), 0, 4); 3426 APVal.getStructField(0) = APValue(APSInt(APInt(32, PartVal.Part1), true)); 3427 APVal.getStructField(1) = APValue(APSInt(APInt(16, PartVal.Part2), true)); 3428 APVal.getStructField(2) = APValue(APSInt(APInt(16, PartVal.Part3), true)); 3429 APValue &Arr = APVal.getStructField(3) = 3430 APValue(APValue::UninitArray(), 8, 8); 3431 for (unsigned I = 0; I != 8; ++I) { 3432 Arr.getArrayInitializedElt(I) = 3433 APValue(APSInt(APInt(8, PartVal.Part4And5[I]), true)); 3434 } 3435 // Register this APValue to be destroyed if necessary. (Note that the 3436 // MSGuidDecl destructor is never run.) 3437 getASTContext().addDestruction(&APVal); 3438 } 3439 3440 return APVal; 3441 } 3442 3443 void UnnamedGlobalConstantDecl::anchor() {} 3444 3445 UnnamedGlobalConstantDecl::UnnamedGlobalConstantDecl(const ASTContext &C, 3446 DeclContext *DC, 3447 QualType Ty, 3448 const APValue &Val) 3449 : ValueDecl(Decl::UnnamedGlobalConstant, DC, SourceLocation(), 3450 DeclarationName(), Ty), 3451 Value(Val) { 3452 // Cleanup the embedded APValue if required (note that our destructor is never 3453 // run) 3454 if (Value.needsCleanup()) 3455 C.addDestruction(&Value); 3456 } 3457 3458 UnnamedGlobalConstantDecl * 3459 UnnamedGlobalConstantDecl::Create(const ASTContext &C, QualType T, 3460 const APValue &Value) { 3461 DeclContext *DC = C.getTranslationUnitDecl(); 3462 return new (C, DC) UnnamedGlobalConstantDecl(C, DC, T, Value); 3463 } 3464 3465 UnnamedGlobalConstantDecl * 3466 UnnamedGlobalConstantDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3467 return new (C, ID) 3468 UnnamedGlobalConstantDecl(C, nullptr, QualType(), APValue()); 3469 } 3470 3471 void UnnamedGlobalConstantDecl::printName(llvm::raw_ostream &OS, 3472 const PrintingPolicy &) const { 3473 OS << "unnamed-global-constant"; 3474 } 3475 3476 static const char *getAccessName(AccessSpecifier AS) { 3477 switch (AS) { 3478 case AS_none: 3479 llvm_unreachable("Invalid access specifier!"); 3480 case AS_public: 3481 return "public"; 3482 case AS_private: 3483 return "private"; 3484 case AS_protected: 3485 return "protected"; 3486 } 3487 llvm_unreachable("Invalid access specifier!"); 3488 } 3489 3490 const StreamingDiagnostic &clang::operator<<(const StreamingDiagnostic &DB, 3491 AccessSpecifier AS) { 3492 return DB << getAccessName(AS); 3493 } 3494