Ted Kremenek | 2147570 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 1 | //===--- DeclCXX.cpp - C++ Declaration AST Node Implementation ------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the C++ related Decl classes. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 2147570 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 13 | #include "clang/AST/DeclCXX.h" |
| 14 | #include "clang/AST/ASTContext.h" |
Faisal Vali | 2b391ab | 2013-09-26 19:54:12 +0000 | [diff] [blame] | 15 | #include "clang/AST/ASTLambda.h" |
Argyrios Kyrtzidis | 65ad569 | 2010-10-24 17:26:36 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTMutationListener.h" |
Douglas Gregor | 8fb9512 | 2010-09-29 00:15:42 +0000 | [diff] [blame] | 17 | #include "clang/AST/CXXInheritance.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclTemplate.h" |
Anders Carlsson | 5bbe1d7 | 2009-03-14 00:25:26 +0000 | [diff] [blame] | 19 | #include "clang/AST/Expr.h" |
Douglas Gregor | d73f3dd | 2011-11-01 01:16:03 +0000 | [diff] [blame] | 20 | #include "clang/AST/ExprCXX.h" |
Richard Trieu | e7f7ed2 | 2017-02-22 01:11:25 +0000 | [diff] [blame] | 21 | #include "clang/AST/ODRHash.h" |
Douglas Gregor | c8c44b5d | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 22 | #include "clang/AST/TypeLoc.h" |
Douglas Gregor | b6acda0 | 2008-11-12 23:21:09 +0000 | [diff] [blame] | 23 | #include "clang/Basic/IdentifierTable.h" |
Douglas Gregor | 74a3444 | 2008-12-23 21:31:30 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/STLExtras.h" |
Fariborz Jahanian | a954049 | 2009-09-12 19:52:10 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SmallPtrSet.h" |
Ted Kremenek | 2147570 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 26 | using namespace clang; |
| 27 | |
| 28 | //===----------------------------------------------------------------------===// |
| 29 | // Decl Allocation/Deallocation Method Implementations |
| 30 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 5101c24 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 31 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 32 | void AccessSpecDecl::anchor() { } |
| 33 | |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 34 | AccessSpecDecl *AccessSpecDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 35 | return new (C, ID) AccessSpecDecl(EmptyShell()); |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 36 | } |
| 37 | |
Richard Smith | a4ba74c | 2013-08-30 04:46:40 +0000 | [diff] [blame] | 38 | void LazyASTUnresolvedSet::getFromExternalSource(ASTContext &C) const { |
| 39 | ExternalASTSource *Source = C.getExternalSource(); |
| 40 | assert(Impl.Decls.isLazy() && "getFromExternalSource for non-lazy set"); |
| 41 | assert(Source && "getFromExternalSource with no external source"); |
| 42 | |
| 43 | for (ASTUnresolvedSet::iterator I = Impl.begin(); I != Impl.end(); ++I) |
| 44 | I.setDecl(cast<NamedDecl>(Source->GetExternalDecl( |
| 45 | reinterpret_cast<uintptr_t>(I.getDecl()) >> 2))); |
| 46 | Impl.Decls.setLazy(false); |
| 47 | } |
| 48 | |
John McCall | 67da35c | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 49 | CXXRecordDecl::DefinitionData::DefinitionData(CXXRecordDecl *D) |
Nico Weber | 6a6376b | 2016-02-19 01:52:46 +0000 | [diff] [blame] | 50 | : UserDeclaredConstructor(false), UserDeclaredSpecialMembers(0), |
| 51 | Aggregate(true), PlainOldData(true), Empty(true), Polymorphic(false), |
| 52 | Abstract(false), IsStandardLayout(true), HasNoNonEmptyBases(true), |
| 53 | HasPrivateFields(false), HasProtectedFields(false), |
| 54 | HasPublicFields(false), HasMutableFields(false), HasVariantMembers(false), |
| 55 | HasOnlyCMembers(true), HasInClassInitializer(false), |
| 56 | HasUninitializedReferenceMember(false), HasUninitializedFields(false), |
Richard Smith | 12e7931 | 2016-05-13 06:47:56 +0000 | [diff] [blame] | 57 | HasInheritedConstructor(false), HasInheritedAssignment(false), |
Nico Weber | 6a6376b | 2016-02-19 01:52:46 +0000 | [diff] [blame] | 58 | NeedOverloadResolutionForMoveConstructor(false), |
| 59 | NeedOverloadResolutionForMoveAssignment(false), |
| 60 | NeedOverloadResolutionForDestructor(false), |
| 61 | DefaultedMoveConstructorIsDeleted(false), |
| 62 | DefaultedMoveAssignmentIsDeleted(false), |
| 63 | DefaultedDestructorIsDeleted(false), HasTrivialSpecialMembers(SMF_All), |
| 64 | DeclaredNonTrivialSpecialMembers(0), HasIrrelevantDestructor(true), |
| 65 | HasConstexprNonCopyMoveConstructor(false), |
Nico Weber | 72c57f4 | 2016-02-24 20:58:14 +0000 | [diff] [blame] | 66 | HasDefaultedDefaultConstructor(false), |
Nico Weber | 6a6376b | 2016-02-19 01:52:46 +0000 | [diff] [blame] | 67 | DefaultedDefaultConstructorIsConstexpr(true), |
| 68 | HasConstexprDefaultConstructor(false), |
| 69 | HasNonLiteralTypeFieldsOrBases(false), ComputedVisibleConversions(false), |
| 70 | UserProvidedDefaultConstructor(false), DeclaredSpecialMembers(0), |
Richard Smith | df054d3 | 2017-02-25 23:53:05 +0000 | [diff] [blame] | 71 | ImplicitCopyConstructorCanHaveConstParamForVBase(true), |
| 72 | ImplicitCopyConstructorCanHaveConstParamForNonVBase(true), |
Nico Weber | 6a6376b | 2016-02-19 01:52:46 +0000 | [diff] [blame] | 73 | ImplicitCopyAssignmentHasConstParam(true), |
| 74 | HasDeclaredCopyConstructorWithConstParam(false), |
| 75 | HasDeclaredCopyAssignmentWithConstParam(false), IsLambda(false), |
Richard Trieu | fd1acbb | 2017-04-11 21:31:00 +0000 | [diff] [blame] | 76 | IsParsingBaseSpecifiers(false), HasODRHash(false), ODRHash(0), |
| 77 | NumBases(0), NumVBases(0), Bases(), VBases(), Definition(D), |
| 78 | FirstFriend() {} |
John McCall | 67da35c | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 79 | |
Benjamin Kramer | 300c063 | 2012-07-04 17:03:33 +0000 | [diff] [blame] | 80 | CXXBaseSpecifier *CXXRecordDecl::DefinitionData::getBasesSlowCase() const { |
| 81 | return Bases.get(Definition->getASTContext().getExternalSource()); |
| 82 | } |
| 83 | |
| 84 | CXXBaseSpecifier *CXXRecordDecl::DefinitionData::getVBasesSlowCase() const { |
| 85 | return VBases.get(Definition->getASTContext().getExternalSource()); |
| 86 | } |
| 87 | |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 88 | CXXRecordDecl::CXXRecordDecl(Kind K, TagKind TK, const ASTContext &C, |
| 89 | DeclContext *DC, SourceLocation StartLoc, |
| 90 | SourceLocation IdLoc, IdentifierInfo *Id, |
| 91 | CXXRecordDecl *PrevDecl) |
| 92 | : RecordDecl(K, TK, C, DC, StartLoc, IdLoc, Id, PrevDecl), |
| 93 | DefinitionData(PrevDecl ? PrevDecl->DefinitionData |
Richard Smith | b648399 | 2016-05-17 22:44:15 +0000 | [diff] [blame] | 94 | : nullptr), |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 95 | TemplateOrInstantiation() {} |
Douglas Gregor | b6acda0 | 2008-11-12 23:21:09 +0000 | [diff] [blame] | 96 | |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 97 | CXXRecordDecl *CXXRecordDecl::Create(const ASTContext &C, TagKind TK, |
Abramo Bagnara | 29c2d46 | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 98 | DeclContext *DC, SourceLocation StartLoc, |
| 99 | SourceLocation IdLoc, IdentifierInfo *Id, |
Douglas Gregor | 1ec5e9f | 2009-05-15 19:11:46 +0000 | [diff] [blame] | 100 | CXXRecordDecl* PrevDecl, |
| 101 | bool DelayTypeCreation) { |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 102 | CXXRecordDecl *R = new (C, DC) CXXRecordDecl(CXXRecord, TK, C, DC, StartLoc, |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 103 | IdLoc, Id, PrevDecl); |
Douglas Gregor | 7dab26b | 2013-02-09 01:35:03 +0000 | [diff] [blame] | 104 | R->MayHaveOutOfDateDef = C.getLangOpts().Modules; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 105 | |
Douglas Gregor | b6b8f9e | 2009-07-29 23:36:44 +0000 | [diff] [blame] | 106 | // FIXME: DelayTypeCreation seems like such a hack |
Douglas Gregor | 1ec5e9f | 2009-05-15 19:11:46 +0000 | [diff] [blame] | 107 | if (!DelayTypeCreation) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 108 | C.getTypeDeclType(R, PrevDecl); |
Ted Kremenek | 2147570 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 109 | return R; |
| 110 | } |
| 111 | |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 112 | CXXRecordDecl * |
| 113 | CXXRecordDecl::CreateLambda(const ASTContext &C, DeclContext *DC, |
| 114 | TypeSourceInfo *Info, SourceLocation Loc, |
| 115 | bool Dependent, bool IsGeneric, |
| 116 | LambdaCaptureDefault CaptureDefault) { |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 117 | CXXRecordDecl *R = |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 118 | new (C, DC) CXXRecordDecl(CXXRecord, TTK_Class, C, DC, Loc, Loc, |
| 119 | nullptr, nullptr); |
Douglas Gregor | c8a7349 | 2012-02-13 15:44:47 +0000 | [diff] [blame] | 120 | R->IsBeingDefined = true; |
Richard Smith | 64c0630 | 2014-05-22 23:19:02 +0000 | [diff] [blame] | 121 | R->DefinitionData = |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 122 | new (C) struct LambdaDefinitionData(R, Info, Dependent, IsGeneric, |
Richard Smith | 64c0630 | 2014-05-22 23:19:02 +0000 | [diff] [blame] | 123 | CaptureDefault); |
Douglas Gregor | 7dab26b | 2013-02-09 01:35:03 +0000 | [diff] [blame] | 124 | R->MayHaveOutOfDateDef = false; |
James Dennett | 8f60cdd | 2013-09-05 17:46:21 +0000 | [diff] [blame] | 125 | R->setImplicit(true); |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 126 | C.getTypeDeclType(R, /*PrevDecl=*/nullptr); |
Douglas Gregor | c8a7349 | 2012-02-13 15:44:47 +0000 | [diff] [blame] | 127 | return R; |
| 128 | } |
| 129 | |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 130 | CXXRecordDecl * |
| 131 | CXXRecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) { |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 132 | CXXRecordDecl *R = new (C, ID) CXXRecordDecl( |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 133 | CXXRecord, TTK_Struct, C, nullptr, SourceLocation(), SourceLocation(), |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 134 | nullptr, nullptr); |
Douglas Gregor | 7dab26b | 2013-02-09 01:35:03 +0000 | [diff] [blame] | 135 | R->MayHaveOutOfDateDef = false; |
| 136 | return R; |
Argyrios Kyrtzidis | 39f0e30 | 2010-07-02 11:54:55 +0000 | [diff] [blame] | 137 | } |
| 138 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 139 | void |
Craig Topper | e6337e1 | 2015-12-25 00:36:02 +0000 | [diff] [blame] | 140 | CXXRecordDecl::setBases(CXXBaseSpecifier const * const *Bases, |
| 141 | unsigned NumBases) { |
Douglas Gregor | 4a62bdf | 2010-02-11 01:30:34 +0000 | [diff] [blame] | 142 | ASTContext &C = getASTContext(); |
Douglas Gregor | cfd8ddc | 2008-11-05 16:20:31 +0000 | [diff] [blame] | 143 | |
Douglas Gregor | d4c5ed0 | 2010-10-29 22:39:52 +0000 | [diff] [blame] | 144 | if (!data().Bases.isOffset() && data().NumBases > 0) |
| 145 | C.Deallocate(data().getBases()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 146 | |
Craig Topper | e6337e1 | 2015-12-25 00:36:02 +0000 | [diff] [blame] | 147 | if (NumBases) { |
Richard Smith | 872307e | 2016-03-08 22:17:41 +0000 | [diff] [blame] | 148 | if (!C.getLangOpts().CPlusPlus1z) { |
| 149 | // C++ [dcl.init.aggr]p1: |
| 150 | // An aggregate is [...] a class with [...] no base classes [...]. |
| 151 | data().Aggregate = false; |
| 152 | } |
Richard Smith | aed32b4 | 2011-10-18 20:08:55 +0000 | [diff] [blame] | 153 | |
| 154 | // C++ [class]p4: |
| 155 | // A POD-struct is an aggregate class... |
| 156 | data().PlainOldData = false; |
| 157 | } |
| 158 | |
Anders Carlsson | abb20e6 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 159 | // The set of seen virtual base types. |
Anders Carlsson | e47380f | 2010-03-29 19:49:09 +0000 | [diff] [blame] | 160 | llvm::SmallPtrSet<CanQualType, 8> SeenVBaseTypes; |
Anders Carlsson | abb20e6 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 161 | |
| 162 | // The virtual bases of this class. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 163 | SmallVector<const CXXBaseSpecifier *, 8> VBases; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 164 | |
Craig Topper | e6337e1 | 2015-12-25 00:36:02 +0000 | [diff] [blame] | 165 | data().Bases = new(C) CXXBaseSpecifier [NumBases]; |
| 166 | data().NumBases = NumBases; |
| 167 | for (unsigned i = 0; i < NumBases; ++i) { |
Douglas Gregor | d4c5ed0 | 2010-10-29 22:39:52 +0000 | [diff] [blame] | 168 | data().getBases()[i] = *Bases[i]; |
Fariborz Jahanian | 3554b5a | 2009-07-10 20:13:23 +0000 | [diff] [blame] | 169 | // Keep track of inherited vbases for this base class. |
| 170 | const CXXBaseSpecifier *Base = Bases[i]; |
| 171 | QualType BaseType = Base->getType(); |
Douglas Gregor | beab56e | 2010-02-27 00:25:28 +0000 | [diff] [blame] | 172 | // Skip dependent types; we can't do any checking on them now. |
Fariborz Jahanian | 3554b5a | 2009-07-10 20:13:23 +0000 | [diff] [blame] | 173 | if (BaseType->isDependentType()) |
| 174 | continue; |
| 175 | CXXRecordDecl *BaseClassDecl |
Ted Kremenek | c23c7e6 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 176 | = cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl()); |
Anders Carlsson | abb20e6 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 177 | |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 178 | if (!BaseClassDecl->isEmpty()) { |
| 179 | if (!data().Empty) { |
| 180 | // C++0x [class]p7: |
| 181 | // A standard-layout class is a class that: |
| 182 | // [...] |
| 183 | // -- either has no non-static data members in the most derived |
| 184 | // class and at most one base class with non-static data members, |
| 185 | // or has no base classes with non-static data members, and |
| 186 | // If this is the second non-empty base, then neither of these two |
| 187 | // clauses can be true. |
Chandler Carruth | 583edf8 | 2011-04-30 10:07:30 +0000 | [diff] [blame] | 188 | data().IsStandardLayout = false; |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 189 | } |
| 190 | |
David Majnemer | 5cfda6f | 2016-05-22 05:34:26 +0000 | [diff] [blame] | 191 | // C++14 [meta.unary.prop]p4: |
| 192 | // T is a class type [...] with [...] no base class B for which |
| 193 | // is_empty<B>::value is false. |
Douglas Gregor | 9d5938a | 2010-09-28 20:38:10 +0000 | [diff] [blame] | 194 | data().Empty = false; |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 195 | data().HasNoNonEmptyBases = false; |
| 196 | } |
Douglas Gregor | 9d5938a | 2010-09-28 20:38:10 +0000 | [diff] [blame] | 197 | |
Richard Smith | 872307e | 2016-03-08 22:17:41 +0000 | [diff] [blame] | 198 | // C++1z [dcl.init.agg]p1: |
| 199 | // An aggregate is a class with [...] no private or protected base classes |
| 200 | if (Base->getAccessSpecifier() != AS_public) |
| 201 | data().Aggregate = false; |
| 202 | |
Douglas Gregor | 11c024b | 2010-09-28 20:50:54 +0000 | [diff] [blame] | 203 | // C++ [class.virtual]p1: |
| 204 | // A class that declares or inherits a virtual function is called a |
| 205 | // polymorphic class. |
| 206 | if (BaseClassDecl->isPolymorphic()) |
| 207 | data().Polymorphic = true; |
Chandler Carruth | e71d062 | 2011-04-24 02:49:34 +0000 | [diff] [blame] | 208 | |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 209 | // C++0x [class]p7: |
| 210 | // A standard-layout class is a class that: [...] |
| 211 | // -- has no non-standard-layout base classes |
Chandler Carruth | 583edf8 | 2011-04-30 10:07:30 +0000 | [diff] [blame] | 212 | if (!BaseClassDecl->isStandardLayout()) |
| 213 | data().IsStandardLayout = false; |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 214 | |
Chandler Carruth | e71d062 | 2011-04-24 02:49:34 +0000 | [diff] [blame] | 215 | // Record if this base is the first non-literal field or base. |
Richard Smith | d9f663b | 2013-04-22 15:31:51 +0000 | [diff] [blame] | 216 | if (!hasNonLiteralTypeFieldsOrBases() && !BaseType->isLiteralType(C)) |
Chandler Carruth | e71d062 | 2011-04-24 02:49:34 +0000 | [diff] [blame] | 217 | data().HasNonLiteralTypeFieldsOrBases = true; |
Douglas Gregor | 11c024b | 2010-09-28 20:50:54 +0000 | [diff] [blame] | 218 | |
Anders Carlsson | abb20e6 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 219 | // Now go through all virtual bases of this base and add them. |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 220 | for (const auto &VBase : BaseClassDecl->vbases()) { |
Anders Carlsson | abb20e6 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 221 | // Add this base if it's not already in the list. |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 222 | if (SeenVBaseTypes.insert(C.getCanonicalType(VBase.getType())).second) { |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 223 | VBases.push_back(&VBase); |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 224 | |
| 225 | // C++11 [class.copy]p8: |
| 226 | // The implicitly-declared copy constructor for a class X will have |
| 227 | // the form 'X::X(const X&)' if each [...] virtual base class B of X |
| 228 | // has a copy constructor whose first parameter is of type |
| 229 | // 'const B&' or 'const volatile B&' [...] |
Aaron Ballman | 445a939 | 2014-03-13 16:15:17 +0000 | [diff] [blame] | 230 | if (CXXRecordDecl *VBaseDecl = VBase.getType()->getAsCXXRecordDecl()) |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 231 | if (!VBaseDecl->hasCopyConstructorWithConstParam()) |
Richard Smith | df054d3 | 2017-02-25 23:53:05 +0000 | [diff] [blame] | 232 | data().ImplicitCopyConstructorCanHaveConstParamForVBase = false; |
Richard Smith | 872307e | 2016-03-08 22:17:41 +0000 | [diff] [blame] | 233 | |
| 234 | // C++1z [dcl.init.agg]p1: |
| 235 | // An aggregate is a class with [...] no virtual base classes |
| 236 | data().Aggregate = false; |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 237 | } |
Fariborz Jahanian | 3554b5a | 2009-07-10 20:13:23 +0000 | [diff] [blame] | 238 | } |
Anders Carlsson | abb20e6 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 239 | |
| 240 | if (Base->isVirtual()) { |
| 241 | // Add this base if it's not already in the list. |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 242 | if (SeenVBaseTypes.insert(C.getCanonicalType(BaseType)).second) |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 243 | VBases.push_back(Base); |
| 244 | |
David Majnemer | 5cfda6f | 2016-05-22 05:34:26 +0000 | [diff] [blame] | 245 | // C++14 [meta.unary.prop] is_empty: |
| 246 | // T is a class type, but not a union type, with ... no virtual base |
| 247 | // classes |
Douglas Gregor | 9d5938a | 2010-09-28 20:38:10 +0000 | [diff] [blame] | 248 | data().Empty = false; |
Chandler Carruth | ad7d404 | 2011-04-23 23:10:33 +0000 | [diff] [blame] | 249 | |
Richard Smith | 872307e | 2016-03-08 22:17:41 +0000 | [diff] [blame] | 250 | // C++1z [dcl.init.agg]p1: |
| 251 | // An aggregate is a class with [...] no virtual base classes |
| 252 | data().Aggregate = false; |
| 253 | |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 254 | // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25: |
| 255 | // A [default constructor, copy/move constructor, or copy/move assignment |
| 256 | // operator for a class X] is trivial [...] if: |
| 257 | // -- class X has [...] no virtual base classes |
| 258 | data().HasTrivialSpecialMembers &= SMF_Destructor; |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 259 | |
| 260 | // C++0x [class]p7: |
| 261 | // A standard-layout class is a class that: [...] |
| 262 | // -- has [...] no virtual base classes |
Chandler Carruth | 583edf8 | 2011-04-30 10:07:30 +0000 | [diff] [blame] | 263 | data().IsStandardLayout = false; |
Richard Smith | cc36f69 | 2011-12-22 02:22:31 +0000 | [diff] [blame] | 264 | |
| 265 | // C++11 [dcl.constexpr]p4: |
| 266 | // In the definition of a constexpr constructor [...] |
| 267 | // -- the class shall not have any virtual base classes |
| 268 | data().DefaultedDefaultConstructorIsConstexpr = false; |
Richard Smith | df054d3 | 2017-02-25 23:53:05 +0000 | [diff] [blame] | 269 | |
| 270 | // C++1z [class.copy]p8: |
| 271 | // The implicitly-declared copy constructor for a class X will have |
| 272 | // the form 'X::X(const X&)' if each potentially constructed subobject |
| 273 | // has a copy constructor whose first parameter is of type |
| 274 | // 'const B&' or 'const volatile B&' [...] |
| 275 | if (!BaseClassDecl->hasCopyConstructorWithConstParam()) |
| 276 | data().ImplicitCopyConstructorCanHaveConstParamForVBase = false; |
Douglas Gregor | 11c024b | 2010-09-28 20:50:54 +0000 | [diff] [blame] | 277 | } else { |
| 278 | // C++ [class.ctor]p5: |
Alexis Hunt | f479f1b | 2011-05-09 18:22:59 +0000 | [diff] [blame] | 279 | // A default constructor is trivial [...] if: |
| 280 | // -- all the direct base classes of its class have trivial default |
| 281 | // constructors. |
| 282 | if (!BaseClassDecl->hasTrivialDefaultConstructor()) |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 283 | data().HasTrivialSpecialMembers &= ~SMF_DefaultConstructor; |
| 284 | |
Chandler Carruth | ad7d404 | 2011-04-23 23:10:33 +0000 | [diff] [blame] | 285 | // C++0x [class.copy]p13: |
| 286 | // A copy/move constructor for class X is trivial if [...] |
| 287 | // [...] |
| 288 | // -- the constructor selected to copy/move each direct base class |
| 289 | // subobject is trivial, and |
Douglas Gregor | 11c024b | 2010-09-28 20:50:54 +0000 | [diff] [blame] | 290 | if (!BaseClassDecl->hasTrivialCopyConstructor()) |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 291 | data().HasTrivialSpecialMembers &= ~SMF_CopyConstructor; |
Richard Smith | 6b02d46 | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 292 | // If the base class doesn't have a simple move constructor, we'll eagerly |
| 293 | // declare it and perform overload resolution to determine which function |
| 294 | // it actually calls. If it does have a simple move constructor, this |
| 295 | // check is correct. |
Richard Smith | 1648847 | 2012-11-16 00:53:38 +0000 | [diff] [blame] | 296 | if (!BaseClassDecl->hasTrivialMoveConstructor()) |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 297 | data().HasTrivialSpecialMembers &= ~SMF_MoveConstructor; |
Chandler Carruth | ad7d404 | 2011-04-23 23:10:33 +0000 | [diff] [blame] | 298 | |
| 299 | // C++0x [class.copy]p27: |
| 300 | // A copy/move assignment operator for class X is trivial if [...] |
| 301 | // [...] |
| 302 | // -- the assignment operator selected to copy/move each direct base |
| 303 | // class subobject is trivial, and |
Douglas Gregor | 11c024b | 2010-09-28 20:50:54 +0000 | [diff] [blame] | 304 | if (!BaseClassDecl->hasTrivialCopyAssignment()) |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 305 | data().HasTrivialSpecialMembers &= ~SMF_CopyAssignment; |
Richard Smith | 6b02d46 | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 306 | // If the base class doesn't have a simple move assignment, we'll eagerly |
| 307 | // declare it and perform overload resolution to determine which function |
| 308 | // it actually calls. If it does have a simple move assignment, this |
| 309 | // check is correct. |
Richard Smith | 1648847 | 2012-11-16 00:53:38 +0000 | [diff] [blame] | 310 | if (!BaseClassDecl->hasTrivialMoveAssignment()) |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 311 | data().HasTrivialSpecialMembers &= ~SMF_MoveAssignment; |
Richard Smith | cc36f69 | 2011-12-22 02:22:31 +0000 | [diff] [blame] | 312 | |
| 313 | // C++11 [class.ctor]p6: |
Richard Smith | c101e61 | 2012-01-11 18:26:05 +0000 | [diff] [blame] | 314 | // If that user-written default constructor would satisfy the |
Richard Smith | cc36f69 | 2011-12-22 02:22:31 +0000 | [diff] [blame] | 315 | // requirements of a constexpr constructor, the implicitly-defined |
| 316 | // default constructor is constexpr. |
| 317 | if (!BaseClassDecl->hasConstexprDefaultConstructor()) |
| 318 | data().DefaultedDefaultConstructorIsConstexpr = false; |
Richard Smith | df054d3 | 2017-02-25 23:53:05 +0000 | [diff] [blame] | 319 | |
| 320 | // C++1z [class.copy]p8: |
| 321 | // The implicitly-declared copy constructor for a class X will have |
| 322 | // the form 'X::X(const X&)' if each potentially constructed subobject |
| 323 | // has a copy constructor whose first parameter is of type |
| 324 | // 'const B&' or 'const volatile B&' [...] |
| 325 | if (!BaseClassDecl->hasCopyConstructorWithConstParam()) |
| 326 | data().ImplicitCopyConstructorCanHaveConstParamForNonVBase = false; |
Anders Carlsson | abb20e6 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 327 | } |
Richard Smith | 92f241f | 2012-12-08 02:53:02 +0000 | [diff] [blame] | 328 | |
Douglas Gregor | 11c024b | 2010-09-28 20:50:54 +0000 | [diff] [blame] | 329 | // C++ [class.ctor]p3: |
| 330 | // A destructor is trivial if all the direct base classes of its class |
| 331 | // have trivial destructors. |
| 332 | if (!BaseClassDecl->hasTrivialDestructor()) |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 333 | data().HasTrivialSpecialMembers &= ~SMF_Destructor; |
Richard Smith | 561fb15 | 2012-02-25 07:33:38 +0000 | [diff] [blame] | 334 | |
| 335 | if (!BaseClassDecl->hasIrrelevantDestructor()) |
| 336 | data().HasIrrelevantDestructor = false; |
| 337 | |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 338 | // C++11 [class.copy]p18: |
| 339 | // The implicitly-declared copy assignment oeprator for a class X will |
| 340 | // have the form 'X& X::operator=(const X&)' if each direct base class B |
| 341 | // of X has a copy assignment operator whose parameter is of type 'const |
| 342 | // B&', 'const volatile B&', or 'B' [...] |
| 343 | if (!BaseClassDecl->hasCopyAssignmentWithConstParam()) |
| 344 | data().ImplicitCopyAssignmentHasConstParam = false; |
| 345 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 346 | // A class has an Objective-C object member if... or any of its bases |
| 347 | // has an Objective-C object member. |
| 348 | if (BaseClassDecl->hasObjectMember()) |
| 349 | setHasObjectMember(true); |
Fariborz Jahanian | 7865220 | 2013-01-25 23:57:05 +0000 | [diff] [blame] | 350 | |
| 351 | if (BaseClassDecl->hasVolatileMember()) |
| 352 | setHasVolatileMember(true); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 353 | |
Douglas Gregor | 61226d3 | 2011-05-13 01:05:07 +0000 | [diff] [blame] | 354 | // Keep track of the presence of mutable fields. |
| 355 | if (BaseClassDecl->hasMutableFields()) |
| 356 | data().HasMutableFields = true; |
Richard Smith | 593f993 | 2012-12-08 02:01:17 +0000 | [diff] [blame] | 357 | |
| 358 | if (BaseClassDecl->hasUninitializedReferenceMember()) |
| 359 | data().HasUninitializedReferenceMember = true; |
Richard Smith | 6b02d46 | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 360 | |
Nico Weber | 6a6376b | 2016-02-19 01:52:46 +0000 | [diff] [blame] | 361 | if (!BaseClassDecl->allowConstDefaultInit()) |
| 362 | data().HasUninitializedFields = true; |
| 363 | |
Richard Smith | 6b02d46 | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 364 | addedClassSubobject(BaseClassDecl); |
Fariborz Jahanian | 3554b5a | 2009-07-10 20:13:23 +0000 | [diff] [blame] | 365 | } |
Anders Carlsson | abb20e6 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 366 | |
David Majnemer | 5ef4fe7 | 2014-06-13 06:43:46 +0000 | [diff] [blame] | 367 | if (VBases.empty()) { |
| 368 | data().IsParsingBaseSpecifiers = false; |
Anders Carlsson | abb20e6 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 369 | return; |
David Majnemer | 5ef4fe7 | 2014-06-13 06:43:46 +0000 | [diff] [blame] | 370 | } |
Anders Carlsson | abb20e6 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 371 | |
| 372 | // Create base specifier for any direct or indirect virtual bases. |
| 373 | data().VBases = new (C) CXXBaseSpecifier[VBases.size()]; |
| 374 | data().NumVBases = VBases.size(); |
Richard Smith | 6b02d46 | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 375 | for (int I = 0, E = VBases.size(); I != E; ++I) { |
| 376 | QualType Type = VBases[I]->getType(); |
| 377 | if (!Type->isDependentType()) |
| 378 | addedClassSubobject(Type->getAsCXXRecordDecl()); |
Richard Smith | 26935e6 | 2011-07-12 23:49:11 +0000 | [diff] [blame] | 379 | data().getVBases()[I] = *VBases[I]; |
Richard Smith | 6b02d46 | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 380 | } |
David Majnemer | 5ef4fe7 | 2014-06-13 06:43:46 +0000 | [diff] [blame] | 381 | |
| 382 | data().IsParsingBaseSpecifiers = false; |
Richard Smith | 6b02d46 | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 383 | } |
| 384 | |
Richard Trieu | fd1acbb | 2017-04-11 21:31:00 +0000 | [diff] [blame] | 385 | unsigned CXXRecordDecl::getODRHash() const { |
| 386 | assert(hasDefinition() && "ODRHash only for records with definitions"); |
Richard Trieu | e7f7ed2 | 2017-02-22 01:11:25 +0000 | [diff] [blame] | 387 | |
Richard Trieu | fd1acbb | 2017-04-11 21:31:00 +0000 | [diff] [blame] | 388 | // Previously calculated hash is stored in DefinitionData. |
| 389 | if (DefinitionData->HasODRHash) |
| 390 | return DefinitionData->ODRHash; |
| 391 | |
| 392 | // Only calculate hash on first call of getODRHash per record. |
Richard Trieu | e7f7ed2 | 2017-02-22 01:11:25 +0000 | [diff] [blame] | 393 | ODRHash Hash; |
Richard Trieu | fd1acbb | 2017-04-11 21:31:00 +0000 | [diff] [blame] | 394 | Hash.AddCXXRecordDecl(getDefinition()); |
| 395 | DefinitionData->HasODRHash = true; |
Richard Trieu | e7f7ed2 | 2017-02-22 01:11:25 +0000 | [diff] [blame] | 396 | DefinitionData->ODRHash = Hash.CalculateHash(); |
Richard Trieu | fd1acbb | 2017-04-11 21:31:00 +0000 | [diff] [blame] | 397 | |
| 398 | return DefinitionData->ODRHash; |
Richard Trieu | e7f7ed2 | 2017-02-22 01:11:25 +0000 | [diff] [blame] | 399 | } |
Richard Trieu | b6adf54 | 2017-02-18 02:09:28 +0000 | [diff] [blame] | 400 | |
Richard Trieu | fd1acbb | 2017-04-11 21:31:00 +0000 | [diff] [blame] | 401 | |
Richard Smith | 6b02d46 | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 402 | void CXXRecordDecl::addedClassSubobject(CXXRecordDecl *Subobj) { |
| 403 | // C++11 [class.copy]p11: |
| 404 | // A defaulted copy/move constructor for a class X is defined as |
| 405 | // deleted if X has: |
| 406 | // -- a direct or virtual base class B that cannot be copied/moved [...] |
| 407 | // -- a non-static data member of class type M (or array thereof) |
| 408 | // that cannot be copied or moved [...] |
| 409 | if (!Subobj->hasSimpleMoveConstructor()) |
| 410 | data().NeedOverloadResolutionForMoveConstructor = true; |
| 411 | |
| 412 | // C++11 [class.copy]p23: |
| 413 | // A defaulted copy/move assignment operator for a class X is defined as |
| 414 | // deleted if X has: |
| 415 | // -- a direct or virtual base class B that cannot be copied/moved [...] |
| 416 | // -- a non-static data member of class type M (or array thereof) |
| 417 | // that cannot be copied or moved [...] |
| 418 | if (!Subobj->hasSimpleMoveAssignment()) |
| 419 | data().NeedOverloadResolutionForMoveAssignment = true; |
| 420 | |
| 421 | // C++11 [class.ctor]p5, C++11 [class.copy]p11, C++11 [class.dtor]p5: |
| 422 | // A defaulted [ctor or dtor] for a class X is defined as |
| 423 | // deleted if X has: |
| 424 | // -- any direct or virtual base class [...] has a type with a destructor |
| 425 | // that is deleted or inaccessible from the defaulted [ctor or dtor]. |
| 426 | // -- any non-static data member has a type with a destructor |
| 427 | // that is deleted or inaccessible from the defaulted [ctor or dtor]. |
| 428 | if (!Subobj->hasSimpleDestructor()) { |
| 429 | data().NeedOverloadResolutionForMoveConstructor = true; |
| 430 | data().NeedOverloadResolutionForDestructor = true; |
| 431 | } |
Douglas Gregor | 9d6290b | 2008-10-23 18:13:27 +0000 | [diff] [blame] | 432 | } |
| 433 | |
Douglas Gregor | d2e6a45 | 2010-01-14 17:47:39 +0000 | [diff] [blame] | 434 | bool CXXRecordDecl::hasAnyDependentBases() const { |
| 435 | if (!isDependentContext()) |
| 436 | return false; |
| 437 | |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 438 | return !forallBases([](const CXXRecordDecl *) { return true; }); |
Douglas Gregor | d2e6a45 | 2010-01-14 17:47:39 +0000 | [diff] [blame] | 439 | } |
| 440 | |
Chandler Carruth | a3e1f9a | 2011-04-23 10:47:28 +0000 | [diff] [blame] | 441 | bool CXXRecordDecl::isTriviallyCopyable() const { |
| 442 | // C++0x [class]p5: |
| 443 | // A trivially copyable class is a class that: |
| 444 | // -- has no non-trivial copy constructors, |
Richard Smith | 1648847 | 2012-11-16 00:53:38 +0000 | [diff] [blame] | 445 | if (hasNonTrivialCopyConstructor()) return false; |
Chandler Carruth | a3e1f9a | 2011-04-23 10:47:28 +0000 | [diff] [blame] | 446 | // -- has no non-trivial move constructors, |
Richard Smith | 1648847 | 2012-11-16 00:53:38 +0000 | [diff] [blame] | 447 | if (hasNonTrivialMoveConstructor()) return false; |
Chandler Carruth | a3e1f9a | 2011-04-23 10:47:28 +0000 | [diff] [blame] | 448 | // -- has no non-trivial copy assignment operators, |
Richard Smith | 1648847 | 2012-11-16 00:53:38 +0000 | [diff] [blame] | 449 | if (hasNonTrivialCopyAssignment()) return false; |
Chandler Carruth | a3e1f9a | 2011-04-23 10:47:28 +0000 | [diff] [blame] | 450 | // -- has no non-trivial move assignment operators, and |
Richard Smith | 1648847 | 2012-11-16 00:53:38 +0000 | [diff] [blame] | 451 | if (hasNonTrivialMoveAssignment()) return false; |
Chandler Carruth | a3e1f9a | 2011-04-23 10:47:28 +0000 | [diff] [blame] | 452 | // -- has a trivial destructor. |
| 453 | if (!hasTrivialDestructor()) return false; |
| 454 | |
| 455 | return true; |
| 456 | } |
| 457 | |
Douglas Gregor | 7d9120c | 2010-09-28 21:55:22 +0000 | [diff] [blame] | 458 | void CXXRecordDecl::markedVirtualFunctionPure() { |
| 459 | // C++ [class.abstract]p2: |
| 460 | // A class is abstract if it has at least one pure virtual function. |
| 461 | data().Abstract = true; |
| 462 | } |
| 463 | |
| 464 | void CXXRecordDecl::addedMember(Decl *D) { |
Joao Matos | e9a3ed4 | 2012-08-31 22:18:20 +0000 | [diff] [blame] | 465 | if (!D->isImplicit() && |
| 466 | !isa<FieldDecl>(D) && |
| 467 | !isa<IndirectFieldDecl>(D) && |
| 468 | (!isa<TagDecl>(D) || cast<TagDecl>(D)->getTagKind() == TTK_Class || |
| 469 | cast<TagDecl>(D)->getTagKind() == TTK_Interface)) |
| 470 | data().HasOnlyCMembers = false; |
| 471 | |
| 472 | // Ignore friends and invalid declarations. |
Douglas Gregor | a1ce1f8 | 2010-09-27 22:06:20 +0000 | [diff] [blame] | 473 | if (D->getFriendObjectKind() || D->isInvalidDecl()) |
Douglas Gregor | d30e79f | 2010-09-27 21:17:54 +0000 | [diff] [blame] | 474 | return; |
| 475 | |
Douglas Gregor | a1ce1f8 | 2010-09-27 22:06:20 +0000 | [diff] [blame] | 476 | FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D); |
| 477 | if (FunTmpl) |
| 478 | D = FunTmpl->getTemplatedDecl(); |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 479 | |
| 480 | // FIXME: Pass NamedDecl* to addedMember? |
| 481 | Decl *DUnderlying = D; |
| 482 | if (auto *ND = dyn_cast<NamedDecl>(DUnderlying)) { |
| 483 | DUnderlying = ND->getUnderlyingDecl(); |
| 484 | if (FunctionTemplateDecl *UnderlyingFunTmpl = |
| 485 | dyn_cast<FunctionTemplateDecl>(DUnderlying)) |
| 486 | DUnderlying = UnderlyingFunTmpl->getTemplatedDecl(); |
| 487 | } |
Douglas Gregor | a1ce1f8 | 2010-09-27 22:06:20 +0000 | [diff] [blame] | 488 | |
Douglas Gregor | a832d3e | 2010-09-28 19:45:33 +0000 | [diff] [blame] | 489 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 490 | if (Method->isVirtual()) { |
| 491 | // C++ [dcl.init.aggr]p1: |
| 492 | // An aggregate is an array or a class with [...] no virtual functions. |
| 493 | data().Aggregate = false; |
| 494 | |
| 495 | // C++ [class]p4: |
| 496 | // A POD-struct is an aggregate class... |
| 497 | data().PlainOldData = false; |
Douglas Gregor | 9d5938a | 2010-09-28 20:38:10 +0000 | [diff] [blame] | 498 | |
David Majnemer | 5cfda6f | 2016-05-22 05:34:26 +0000 | [diff] [blame] | 499 | // C++14 [meta.unary.prop]p4: |
| 500 | // T is a class type [...] with [...] no virtual member functions... |
Douglas Gregor | 9d5938a | 2010-09-28 20:38:10 +0000 | [diff] [blame] | 501 | data().Empty = false; |
Douglas Gregor | 11c024b | 2010-09-28 20:50:54 +0000 | [diff] [blame] | 502 | |
| 503 | // C++ [class.virtual]p1: |
| 504 | // A class that declares or inherits a virtual function is called a |
| 505 | // polymorphic class. |
| 506 | data().Polymorphic = true; |
Chandler Carruth | ad7d404 | 2011-04-23 23:10:33 +0000 | [diff] [blame] | 507 | |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 508 | // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25: |
| 509 | // A [default constructor, copy/move constructor, or copy/move |
| 510 | // assignment operator for a class X] is trivial [...] if: |
Chandler Carruth | ad7d404 | 2011-04-23 23:10:33 +0000 | [diff] [blame] | 511 | // -- class X has no virtual functions [...] |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 512 | data().HasTrivialSpecialMembers &= SMF_Destructor; |
Chandler Carruth | ad7d404 | 2011-04-23 23:10:33 +0000 | [diff] [blame] | 513 | |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 514 | // C++0x [class]p7: |
| 515 | // A standard-layout class is a class that: [...] |
| 516 | // -- has no virtual functions |
Chandler Carruth | 583edf8 | 2011-04-30 10:07:30 +0000 | [diff] [blame] | 517 | data().IsStandardLayout = false; |
Douglas Gregor | a832d3e | 2010-09-28 19:45:33 +0000 | [diff] [blame] | 518 | } |
| 519 | } |
Argyrios Kyrtzidis | 00f5266 | 2010-10-20 23:48:42 +0000 | [diff] [blame] | 520 | |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 521 | // Notify the listener if an implicit member was added after the definition |
| 522 | // was completed. |
| 523 | if (!isBeingDefined() && D->isImplicit()) |
| 524 | if (ASTMutationListener *L = getASTMutationListener()) |
| 525 | L->AddedCXXImplicitMember(data().Definition, D); |
Douglas Gregor | 9d5938a | 2010-09-28 20:38:10 +0000 | [diff] [blame] | 526 | |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 527 | // The kind of special member this declaration is, if any. |
| 528 | unsigned SMKind = 0; |
| 529 | |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 530 | // Handle constructors. |
Douglas Gregor | a1ce1f8 | 2010-09-27 22:06:20 +0000 | [diff] [blame] | 531 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) { |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 532 | if (!Constructor->isImplicit()) { |
| 533 | // Note that we have a user-declared constructor. |
| 534 | data().UserDeclaredConstructor = true; |
| 535 | |
| 536 | // C++ [class]p4: |
| 537 | // A POD-struct is an aggregate class [...] |
| 538 | // Since the POD bit is meant to be C++03 POD-ness, clear it even if the |
| 539 | // type is technically an aggregate in C++0x since it wouldn't be in 03. |
| 540 | data().PlainOldData = false; |
| 541 | } |
Douglas Gregor | a1ce1f8 | 2010-09-27 22:06:20 +0000 | [diff] [blame] | 542 | |
Alexis Hunt | 88c75c3 | 2011-05-09 21:45:35 +0000 | [diff] [blame] | 543 | if (Constructor->isDefaultConstructor()) { |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 544 | SMKind |= SMF_DefaultConstructor; |
| 545 | |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 546 | if (Constructor->isUserProvided()) |
Alexis Hunt | ea6f032 | 2011-05-11 22:34:38 +0000 | [diff] [blame] | 547 | data().UserProvidedDefaultConstructor = true; |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 548 | if (Constructor->isConstexpr()) |
Richard Smith | cc36f69 | 2011-12-22 02:22:31 +0000 | [diff] [blame] | 549 | data().HasConstexprDefaultConstructor = true; |
Nico Weber | 72c57f4 | 2016-02-24 20:58:14 +0000 | [diff] [blame] | 550 | if (Constructor->isDefaulted()) |
| 551 | data().HasDefaultedDefaultConstructor = true; |
Alexis Hunt | 88c75c3 | 2011-05-09 21:45:35 +0000 | [diff] [blame] | 552 | } |
Douglas Gregor | a1ce1f8 | 2010-09-27 22:06:20 +0000 | [diff] [blame] | 553 | |
Chandler Carruth | ad7d404 | 2011-04-23 23:10:33 +0000 | [diff] [blame] | 554 | if (!FunTmpl) { |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 555 | unsigned Quals; |
| 556 | if (Constructor->isCopyConstructor(Quals)) { |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 557 | SMKind |= SMF_CopyConstructor; |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 558 | |
| 559 | if (Quals & Qualifiers::Const) |
| 560 | data().HasDeclaredCopyConstructorWithConstParam = true; |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 561 | } else if (Constructor->isMoveConstructor()) |
| 562 | SMKind |= SMF_MoveConstructor; |
Douglas Gregor | a1ce1f8 | 2010-09-27 22:06:20 +0000 | [diff] [blame] | 563 | } |
Eric Fiselier | 283d8d4 | 2016-12-03 01:26:47 +0000 | [diff] [blame] | 564 | |
Eric Fiselier | 283d8d4 | 2016-12-03 01:26:47 +0000 | [diff] [blame] | 565 | // C++11 [dcl.init.aggr]p1: DR1518 |
Richard Smith | 505ef81 | 2016-12-21 01:57:02 +0000 | [diff] [blame] | 566 | // An aggregate is an array or a class with no user-provided, explicit, or |
| 567 | // inherited constructors |
| 568 | if (Constructor->isUserProvided() || Constructor->isExplicit()) |
Eric Fiselier | 283d8d4 | 2016-12-03 01:26:47 +0000 | [diff] [blame] | 569 | data().Aggregate = false; |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 570 | } |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 571 | |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 572 | // Handle constructors, including those inherited from base classes. |
| 573 | if (CXXConstructorDecl *Constructor = |
| 574 | dyn_cast<CXXConstructorDecl>(DUnderlying)) { |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 575 | // Record if we see any constexpr constructors which are neither copy |
| 576 | // nor move constructors. |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 577 | // C++1z [basic.types]p10: |
| 578 | // [...] has at least one constexpr constructor or constructor template |
| 579 | // (possibly inherited from a base class) that is not a copy or move |
| 580 | // constructor [...] |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 581 | if (Constructor->isConstexpr() && !Constructor->isCopyOrMoveConstructor()) |
Richard Smith | 111af8d | 2011-08-10 18:11:37 +0000 | [diff] [blame] | 582 | data().HasConstexprNonCopyMoveConstructor = true; |
Douglas Gregor | d30e79f | 2010-09-27 21:17:54 +0000 | [diff] [blame] | 583 | } |
Douglas Gregor | a1ce1f8 | 2010-09-27 22:06:20 +0000 | [diff] [blame] | 584 | |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 585 | // Handle destructors. |
Alexis Hunt | 97ab554 | 2011-05-16 22:41:40 +0000 | [diff] [blame] | 586 | if (CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(D)) { |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 587 | SMKind |= SMF_Destructor; |
Richard Smith | 561fb15 | 2012-02-25 07:33:38 +0000 | [diff] [blame] | 588 | |
Stephan Tolksdorf | d85fa23 | 2014-03-27 20:23:12 +0000 | [diff] [blame] | 589 | if (DD->isUserProvided()) |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 590 | data().HasIrrelevantDestructor = false; |
Stephan Tolksdorf | d85fa23 | 2014-03-27 20:23:12 +0000 | [diff] [blame] | 591 | // If the destructor is explicitly defaulted and not trivial or not public |
| 592 | // or if the destructor is deleted, we clear HasIrrelevantDestructor in |
| 593 | // finishedDefaultedOrDeletedMember. |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 594 | |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 595 | // C++11 [class.dtor]p5: |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 596 | // A destructor is trivial if [...] the destructor is not virtual. |
| 597 | if (DD->isVirtual()) |
| 598 | data().HasTrivialSpecialMembers &= ~SMF_Destructor; |
Douglas Gregor | 8f9ebe5 | 2010-09-27 22:48:58 +0000 | [diff] [blame] | 599 | } |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 600 | |
| 601 | // Handle member functions. |
Douglas Gregor | a1ce1f8 | 2010-09-27 22:06:20 +0000 | [diff] [blame] | 602 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
Alexis Hunt | fcaeae4 | 2011-05-25 20:50:04 +0000 | [diff] [blame] | 603 | if (Method->isCopyAssignmentOperator()) { |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 604 | SMKind |= SMF_CopyAssignment; |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 605 | |
| 606 | const ReferenceType *ParamTy = |
| 607 | Method->getParamDecl(0)->getType()->getAs<ReferenceType>(); |
| 608 | if (!ParamTy || ParamTy->getPointeeType().isConstQualified()) |
| 609 | data().HasDeclaredCopyAssignmentWithConstParam = true; |
Alexis Hunt | fcaeae4 | 2011-05-25 20:50:04 +0000 | [diff] [blame] | 610 | } |
Alexis Hunt | fcaeae4 | 2011-05-25 20:50:04 +0000 | [diff] [blame] | 611 | |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 612 | if (Method->isMoveAssignmentOperator()) |
| 613 | SMKind |= SMF_MoveAssignment; |
Chandler Carruth | ad7d404 | 2011-04-23 23:10:33 +0000 | [diff] [blame] | 614 | |
Douglas Gregor | 457104e | 2010-09-29 04:25:11 +0000 | [diff] [blame] | 615 | // Keep the list of conversion functions up-to-date. |
| 616 | if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) { |
Douglas Gregor | 92fde2f | 2013-04-08 17:12:58 +0000 | [diff] [blame] | 617 | // FIXME: We use the 'unsafe' accessor for the access specifier here, |
| 618 | // because Sema may not have set it yet. That's really just a misdesign |
| 619 | // in Sema. However, LLDB *will* have set the access specifier correctly, |
| 620 | // and adds declarations after the class is technically completed, |
| 621 | // so completeDefinition()'s overriding of the access specifiers doesn't |
| 622 | // work. |
| 623 | AccessSpecifier AS = Conversion->getAccessUnsafe(); |
| 624 | |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 625 | if (Conversion->getPrimaryTemplate()) { |
| 626 | // We don't record specializations. |
Douglas Gregor | 457104e | 2010-09-29 04:25:11 +0000 | [diff] [blame] | 627 | } else { |
Richard Smith | a4ba74c | 2013-08-30 04:46:40 +0000 | [diff] [blame] | 628 | ASTContext &Ctx = getASTContext(); |
| 629 | ASTUnresolvedSet &Conversions = data().Conversions.get(Ctx); |
| 630 | NamedDecl *Primary = |
| 631 | FunTmpl ? cast<NamedDecl>(FunTmpl) : cast<NamedDecl>(Conversion); |
| 632 | if (Primary->getPreviousDecl()) |
| 633 | Conversions.replace(cast<NamedDecl>(Primary->getPreviousDecl()), |
| 634 | Primary, AS); |
Douglas Gregor | 457104e | 2010-09-29 04:25:11 +0000 | [diff] [blame] | 635 | else |
Richard Smith | a4ba74c | 2013-08-30 04:46:40 +0000 | [diff] [blame] | 636 | Conversions.addDecl(Ctx, Primary, AS); |
Douglas Gregor | 457104e | 2010-09-29 04:25:11 +0000 | [diff] [blame] | 637 | } |
| 638 | } |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 639 | |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 640 | if (SMKind) { |
Richard Smith | 92f241f | 2012-12-08 02:53:02 +0000 | [diff] [blame] | 641 | // If this is the first declaration of a special member, we no longer have |
| 642 | // an implicit trivial special member. |
| 643 | data().HasTrivialSpecialMembers &= |
| 644 | data().DeclaredSpecialMembers | ~SMKind; |
| 645 | |
| 646 | if (!Method->isImplicit() && !Method->isUserProvided()) { |
| 647 | // This method is user-declared but not user-provided. We can't work out |
| 648 | // whether it's trivial yet (not until we get to the end of the class). |
| 649 | // We'll handle this method in finishedDefaultedOrDeletedMember. |
| 650 | } else if (Method->isTrivial()) |
| 651 | data().HasTrivialSpecialMembers |= SMKind; |
| 652 | else |
| 653 | data().DeclaredNonTrivialSpecialMembers |= SMKind; |
| 654 | |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 655 | // Note when we have declared a declared special member, and suppress the |
| 656 | // implicit declaration of this special member. |
| 657 | data().DeclaredSpecialMembers |= SMKind; |
| 658 | |
| 659 | if (!Method->isImplicit()) { |
| 660 | data().UserDeclaredSpecialMembers |= SMKind; |
| 661 | |
| 662 | // C++03 [class]p4: |
| 663 | // A POD-struct is an aggregate class that has [...] no user-defined |
| 664 | // copy assignment operator and no user-defined destructor. |
| 665 | // |
| 666 | // Since the POD bit is meant to be C++03 POD-ness, and in C++03, |
| 667 | // aggregates could not have any constructors, clear it even for an |
| 668 | // explicitly defaulted or deleted constructor. |
| 669 | // type is technically an aggregate in C++0x since it wouldn't be in 03. |
| 670 | // |
| 671 | // Also, a user-declared move assignment operator makes a class non-POD. |
| 672 | // This is an extension in C++03. |
| 673 | data().PlainOldData = false; |
| 674 | } |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 675 | } |
| 676 | |
Douglas Gregor | a1ce1f8 | 2010-09-27 22:06:20 +0000 | [diff] [blame] | 677 | return; |
Douglas Gregor | 8a27391 | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 678 | } |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 679 | |
Douglas Gregor | a832d3e | 2010-09-28 19:45:33 +0000 | [diff] [blame] | 680 | // Handle non-static data members. |
| 681 | if (FieldDecl *Field = dyn_cast<FieldDecl>(D)) { |
Douglas Gregor | 556e586 | 2011-10-10 17:22:13 +0000 | [diff] [blame] | 682 | // C++ [class.bit]p2: |
| 683 | // A declaration for a bit-field that omits the identifier declares an |
| 684 | // unnamed bit-field. Unnamed bit-fields are not members and cannot be |
| 685 | // initialized. |
| 686 | if (Field->isUnnamedBitfield()) |
| 687 | return; |
| 688 | |
Douglas Gregor | a832d3e | 2010-09-28 19:45:33 +0000 | [diff] [blame] | 689 | // C++ [dcl.init.aggr]p1: |
| 690 | // An aggregate is an array or a class (clause 9) with [...] no |
| 691 | // private or protected non-static data members (clause 11). |
| 692 | // |
| 693 | // A POD must be an aggregate. |
| 694 | if (D->getAccess() == AS_private || D->getAccess() == AS_protected) { |
| 695 | data().Aggregate = false; |
| 696 | data().PlainOldData = false; |
| 697 | } |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 698 | |
| 699 | // C++0x [class]p7: |
| 700 | // A standard-layout class is a class that: |
| 701 | // [...] |
| 702 | // -- has the same access control for all non-static data members, |
| 703 | switch (D->getAccess()) { |
| 704 | case AS_private: data().HasPrivateFields = true; break; |
| 705 | case AS_protected: data().HasProtectedFields = true; break; |
| 706 | case AS_public: data().HasPublicFields = true; break; |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 707 | case AS_none: llvm_unreachable("Invalid access specifier"); |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 708 | }; |
| 709 | if ((data().HasPrivateFields + data().HasProtectedFields + |
| 710 | data().HasPublicFields) > 1) |
Chandler Carruth | 583edf8 | 2011-04-30 10:07:30 +0000 | [diff] [blame] | 711 | data().IsStandardLayout = false; |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 712 | |
Douglas Gregor | 61226d3 | 2011-05-13 01:05:07 +0000 | [diff] [blame] | 713 | // Keep track of the presence of mutable fields. |
| 714 | if (Field->isMutable()) |
| 715 | data().HasMutableFields = true; |
Richard Smith | ab44d5b | 2013-12-10 08:25:00 +0000 | [diff] [blame] | 716 | |
| 717 | // C++11 [class.union]p8, DR1460: |
| 718 | // If X is a union, a non-static data member of X that is not an anonymous |
| 719 | // union is a variant member of X. |
| 720 | if (isUnion() && !Field->isAnonymousStructOrUnion()) |
| 721 | data().HasVariantMembers = true; |
| 722 | |
Chandler Carruth | ad7d404 | 2011-04-23 23:10:33 +0000 | [diff] [blame] | 723 | // C++0x [class]p9: |
Douglas Gregor | a832d3e | 2010-09-28 19:45:33 +0000 | [diff] [blame] | 724 | // A POD struct is a class that is both a trivial class and a |
| 725 | // standard-layout class, and has no non-static data members of type |
| 726 | // non-POD struct, non-POD union (or array of such types). |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 727 | // |
| 728 | // Automatic Reference Counting: the presence of a member of Objective-C pointer type |
| 729 | // that does not explicitly have no lifetime makes the class a non-POD. |
Douglas Gregor | a832d3e | 2010-09-28 19:45:33 +0000 | [diff] [blame] | 730 | ASTContext &Context = getASTContext(); |
| 731 | QualType T = Context.getBaseElementType(Field->getType()); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 732 | if (T->isObjCRetainableType() || T.isObjCGCStrong()) { |
Brian Kelley | 036603a | 2017-03-29 17:31:42 +0000 | [diff] [blame] | 733 | if (T.hasNonTrivialObjCLifetime()) { |
Ben Langmuir | 11eab61 | 2014-09-26 15:27:29 +0000 | [diff] [blame] | 734 | // Objective-C Automatic Reference Counting: |
| 735 | // If a class has a non-static data member of Objective-C pointer |
| 736 | // type (or array thereof), it is a non-POD type and its |
| 737 | // default constructor (if any), copy constructor, move constructor, |
| 738 | // copy assignment operator, move assignment operator, and destructor are |
| 739 | // non-trivial. |
| 740 | setHasObjectMember(true); |
| 741 | struct DefinitionData &Data = data(); |
| 742 | Data.PlainOldData = false; |
| 743 | Data.HasTrivialSpecialMembers = 0; |
| 744 | Data.HasIrrelevantDestructor = false; |
Brian Kelley | 036603a | 2017-03-29 17:31:42 +0000 | [diff] [blame] | 745 | } else if (!Context.getLangOpts().ObjCAutoRefCount) { |
| 746 | setHasObjectMember(true); |
Ben Langmuir | 11eab61 | 2014-09-26 15:27:29 +0000 | [diff] [blame] | 747 | } |
Eli Friedman | a543332 | 2013-07-20 01:06:31 +0000 | [diff] [blame] | 748 | } else if (!T.isCXX98PODType(Context)) |
Douglas Gregor | a832d3e | 2010-09-28 19:45:33 +0000 | [diff] [blame] | 749 | data().PlainOldData = false; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 750 | |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 751 | if (T->isReferenceType()) { |
Richard Smith | 593f993 | 2012-12-08 02:01:17 +0000 | [diff] [blame] | 752 | if (!Field->hasInClassInitializer()) |
| 753 | data().HasUninitializedReferenceMember = true; |
Chandler Carruth | e71d062 | 2011-04-24 02:49:34 +0000 | [diff] [blame] | 754 | |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 755 | // C++0x [class]p7: |
| 756 | // A standard-layout class is a class that: |
| 757 | // -- has no non-static data members of type [...] reference, |
Chandler Carruth | 583edf8 | 2011-04-30 10:07:30 +0000 | [diff] [blame] | 758 | data().IsStandardLayout = false; |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 759 | } |
| 760 | |
Nico Weber | 6a6376b | 2016-02-19 01:52:46 +0000 | [diff] [blame] | 761 | if (!Field->hasInClassInitializer() && !Field->isMutable()) { |
Richard Smith | 9b18217 | 2016-10-28 19:11:18 +0000 | [diff] [blame] | 762 | if (CXXRecordDecl *FieldType = T->getAsCXXRecordDecl()) { |
Nico Weber | 344abaa | 2016-02-19 02:51:07 +0000 | [diff] [blame] | 763 | if (FieldType->hasDefinition() && !FieldType->allowConstDefaultInit()) |
Nico Weber | 6a6376b | 2016-02-19 01:52:46 +0000 | [diff] [blame] | 764 | data().HasUninitializedFields = true; |
| 765 | } else { |
| 766 | data().HasUninitializedFields = true; |
| 767 | } |
| 768 | } |
| 769 | |
Richard Smith | 3607ffe | 2012-02-13 03:54:03 +0000 | [diff] [blame] | 770 | // Record if this field is the first non-literal or volatile field or base. |
Richard Smith | d9f663b | 2013-04-22 15:31:51 +0000 | [diff] [blame] | 771 | if (!T->isLiteralType(Context) || T.isVolatileQualified()) |
Chandler Carruth | e71d062 | 2011-04-24 02:49:34 +0000 | [diff] [blame] | 772 | data().HasNonLiteralTypeFieldsOrBases = true; |
| 773 | |
Richard Smith | ab44d5b | 2013-12-10 08:25:00 +0000 | [diff] [blame] | 774 | if (Field->hasInClassInitializer() || |
| 775 | (Field->isAnonymousStructOrUnion() && |
| 776 | Field->getType()->getAsCXXRecordDecl()->hasInClassInitializer())) { |
Richard Smith | e2648ba | 2012-05-07 01:07:30 +0000 | [diff] [blame] | 777 | data().HasInClassInitializer = true; |
| 778 | |
| 779 | // C++11 [class]p5: |
Richard Smith | 938f40b | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 780 | // A default constructor is trivial if [...] no non-static data member |
| 781 | // of its class has a brace-or-equal-initializer. |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 782 | data().HasTrivialSpecialMembers &= ~SMF_DefaultConstructor; |
Richard Smith | 938f40b | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 783 | |
Richard Smith | e2648ba | 2012-05-07 01:07:30 +0000 | [diff] [blame] | 784 | // C++11 [dcl.init.aggr]p1: |
Richard Smith | 938f40b | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 785 | // An aggregate is a [...] class with [...] no |
| 786 | // brace-or-equal-initializers for non-static data members. |
Richard Smith | 852c9db | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 787 | // |
Richard Smith | 872307e | 2016-03-08 22:17:41 +0000 | [diff] [blame] | 788 | // This rule was removed in C++14. |
Aaron Ballman | dd69ef3 | 2014-08-19 15:55:55 +0000 | [diff] [blame] | 789 | if (!getASTContext().getLangOpts().CPlusPlus14) |
Richard Smith | 852c9db | 2013-04-20 22:23:05 +0000 | [diff] [blame] | 790 | data().Aggregate = false; |
Richard Smith | 938f40b | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 791 | |
Richard Smith | e2648ba | 2012-05-07 01:07:30 +0000 | [diff] [blame] | 792 | // C++11 [class]p10: |
Richard Smith | 938f40b | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 793 | // A POD struct is [...] a trivial class. |
| 794 | data().PlainOldData = false; |
| 795 | } |
| 796 | |
Richard Smith | 6b02d46 | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 797 | // C++11 [class.copy]p23: |
| 798 | // A defaulted copy/move assignment operator for a class X is defined |
| 799 | // as deleted if X has: |
| 800 | // -- a non-static data member of reference type |
| 801 | if (T->isReferenceType()) |
| 802 | data().DefaultedMoveAssignmentIsDeleted = true; |
| 803 | |
Douglas Gregor | 11c024b | 2010-09-28 20:50:54 +0000 | [diff] [blame] | 804 | if (const RecordType *RecordTy = T->getAs<RecordType>()) { |
| 805 | CXXRecordDecl* FieldRec = cast<CXXRecordDecl>(RecordTy->getDecl()); |
| 806 | if (FieldRec->getDefinition()) { |
Richard Smith | 6b02d46 | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 807 | addedClassSubobject(FieldRec); |
| 808 | |
Richard Smith | c91d12c | 2013-11-25 07:07:05 +0000 | [diff] [blame] | 809 | // We may need to perform overload resolution to determine whether a |
| 810 | // field can be moved if it's const or volatile qualified. |
| 811 | if (T.getCVRQualifiers() & (Qualifiers::Const | Qualifiers::Volatile)) { |
| 812 | data().NeedOverloadResolutionForMoveConstructor = true; |
| 813 | data().NeedOverloadResolutionForMoveAssignment = true; |
| 814 | } |
| 815 | |
Richard Smith | 6b02d46 | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 816 | // C++11 [class.ctor]p5, C++11 [class.copy]p11: |
| 817 | // A defaulted [special member] for a class X is defined as |
| 818 | // deleted if: |
| 819 | // -- X is a union-like class that has a variant member with a |
| 820 | // non-trivial [corresponding special member] |
| 821 | if (isUnion()) { |
| 822 | if (FieldRec->hasNonTrivialMoveConstructor()) |
| 823 | data().DefaultedMoveConstructorIsDeleted = true; |
| 824 | if (FieldRec->hasNonTrivialMoveAssignment()) |
| 825 | data().DefaultedMoveAssignmentIsDeleted = true; |
| 826 | if (FieldRec->hasNonTrivialDestructor()) |
| 827 | data().DefaultedDestructorIsDeleted = true; |
| 828 | } |
| 829 | |
Richard Smith | dd5619f | 2016-08-16 00:13:47 +0000 | [diff] [blame] | 830 | // For an anonymous union member, our overload resolution will perform |
| 831 | // overload resolution for its members. |
| 832 | if (Field->isAnonymousStructOrUnion()) { |
| 833 | data().NeedOverloadResolutionForMoveConstructor |= |
| 834 | FieldRec->data().NeedOverloadResolutionForMoveConstructor; |
| 835 | data().NeedOverloadResolutionForMoveAssignment |= |
| 836 | FieldRec->data().NeedOverloadResolutionForMoveAssignment; |
| 837 | data().NeedOverloadResolutionForDestructor |= |
| 838 | FieldRec->data().NeedOverloadResolutionForDestructor; |
| 839 | } |
| 840 | |
Alexis Hunt | f479f1b | 2011-05-09 18:22:59 +0000 | [diff] [blame] | 841 | // C++0x [class.ctor]p5: |
Richard Smith | cc36f69 | 2011-12-22 02:22:31 +0000 | [diff] [blame] | 842 | // A default constructor is trivial [...] if: |
Alexis Hunt | f479f1b | 2011-05-09 18:22:59 +0000 | [diff] [blame] | 843 | // -- for all the non-static data members of its class that are of |
| 844 | // class type (or array thereof), each such class has a trivial |
| 845 | // default constructor. |
| 846 | if (!FieldRec->hasTrivialDefaultConstructor()) |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 847 | data().HasTrivialSpecialMembers &= ~SMF_DefaultConstructor; |
Chandler Carruth | ad7d404 | 2011-04-23 23:10:33 +0000 | [diff] [blame] | 848 | |
| 849 | // C++0x [class.copy]p13: |
| 850 | // A copy/move constructor for class X is trivial if [...] |
| 851 | // [...] |
| 852 | // -- for each non-static data member of X that is of class type (or |
| 853 | // an array thereof), the constructor selected to copy/move that |
| 854 | // member is trivial; |
Douglas Gregor | 11c024b | 2010-09-28 20:50:54 +0000 | [diff] [blame] | 855 | if (!FieldRec->hasTrivialCopyConstructor()) |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 856 | data().HasTrivialSpecialMembers &= ~SMF_CopyConstructor; |
Richard Smith | 6b02d46 | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 857 | // If the field doesn't have a simple move constructor, we'll eagerly |
| 858 | // declare the move constructor for this class and we'll decide whether |
| 859 | // it's trivial then. |
Richard Smith | 1648847 | 2012-11-16 00:53:38 +0000 | [diff] [blame] | 860 | if (!FieldRec->hasTrivialMoveConstructor()) |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 861 | data().HasTrivialSpecialMembers &= ~SMF_MoveConstructor; |
Chandler Carruth | ad7d404 | 2011-04-23 23:10:33 +0000 | [diff] [blame] | 862 | |
| 863 | // C++0x [class.copy]p27: |
| 864 | // A copy/move assignment operator for class X is trivial if [...] |
| 865 | // [...] |
| 866 | // -- for each non-static data member of X that is of class type (or |
| 867 | // an array thereof), the assignment operator selected to |
| 868 | // copy/move that member is trivial; |
Douglas Gregor | 11c024b | 2010-09-28 20:50:54 +0000 | [diff] [blame] | 869 | if (!FieldRec->hasTrivialCopyAssignment()) |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 870 | data().HasTrivialSpecialMembers &= ~SMF_CopyAssignment; |
Richard Smith | 6b02d46 | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 871 | // If the field doesn't have a simple move assignment, we'll eagerly |
| 872 | // declare the move assignment for this class and we'll decide whether |
| 873 | // it's trivial then. |
Richard Smith | 1648847 | 2012-11-16 00:53:38 +0000 | [diff] [blame] | 874 | if (!FieldRec->hasTrivialMoveAssignment()) |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 875 | data().HasTrivialSpecialMembers &= ~SMF_MoveAssignment; |
Chandler Carruth | ad7d404 | 2011-04-23 23:10:33 +0000 | [diff] [blame] | 876 | |
Douglas Gregor | 11c024b | 2010-09-28 20:50:54 +0000 | [diff] [blame] | 877 | if (!FieldRec->hasTrivialDestructor()) |
Richard Smith | 328aae5 | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 878 | data().HasTrivialSpecialMembers &= ~SMF_Destructor; |
Richard Smith | 561fb15 | 2012-02-25 07:33:38 +0000 | [diff] [blame] | 879 | if (!FieldRec->hasIrrelevantDestructor()) |
| 880 | data().HasIrrelevantDestructor = false; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 881 | if (FieldRec->hasObjectMember()) |
| 882 | setHasObjectMember(true); |
Fariborz Jahanian | 7865220 | 2013-01-25 23:57:05 +0000 | [diff] [blame] | 883 | if (FieldRec->hasVolatileMember()) |
| 884 | setHasVolatileMember(true); |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 885 | |
| 886 | // C++0x [class]p7: |
| 887 | // A standard-layout class is a class that: |
| 888 | // -- has no non-static data members of type non-standard-layout |
| 889 | // class (or array of such types) [...] |
Chandler Carruth | 583edf8 | 2011-04-30 10:07:30 +0000 | [diff] [blame] | 890 | if (!FieldRec->isStandardLayout()) |
| 891 | data().IsStandardLayout = false; |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 892 | |
| 893 | // C++0x [class]p7: |
| 894 | // A standard-layout class is a class that: |
| 895 | // [...] |
| 896 | // -- has no base classes of the same type as the first non-static |
| 897 | // data member. |
| 898 | // We don't want to expend bits in the state of the record decl |
| 899 | // tracking whether this is the first non-static data member so we |
| 900 | // cheat a bit and use some of the existing state: the empty bit. |
| 901 | // Virtual bases and virtual methods make a class non-empty, but they |
| 902 | // also make it non-standard-layout so we needn't check here. |
| 903 | // A non-empty base class may leave the class standard-layout, but not |
Richard Smith | ab44d5b | 2013-12-10 08:25:00 +0000 | [diff] [blame] | 904 | // if we have arrived here, and have at least one non-static data |
Chandler Carruth | 583edf8 | 2011-04-30 10:07:30 +0000 | [diff] [blame] | 905 | // member. If IsStandardLayout remains true, then the first non-static |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 906 | // data member must come through here with Empty still true, and Empty |
| 907 | // will subsequently be set to false below. |
Chandler Carruth | 583edf8 | 2011-04-30 10:07:30 +0000 | [diff] [blame] | 908 | if (data().IsStandardLayout && data().Empty) { |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 909 | for (const auto &BI : bases()) { |
| 910 | if (Context.hasSameUnqualifiedType(BI.getType(), T)) { |
Chandler Carruth | 583edf8 | 2011-04-30 10:07:30 +0000 | [diff] [blame] | 911 | data().IsStandardLayout = false; |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 912 | break; |
| 913 | } |
| 914 | } |
| 915 | } |
Douglas Gregor | 61226d3 | 2011-05-13 01:05:07 +0000 | [diff] [blame] | 916 | |
| 917 | // Keep track of the presence of mutable fields. |
| 918 | if (FieldRec->hasMutableFields()) |
| 919 | data().HasMutableFields = true; |
Richard Smith | cc36f69 | 2011-12-22 02:22:31 +0000 | [diff] [blame] | 920 | |
| 921 | // C++11 [class.copy]p13: |
| 922 | // If the implicitly-defined constructor would satisfy the |
| 923 | // requirements of a constexpr constructor, the implicitly-defined |
| 924 | // constructor is constexpr. |
| 925 | // C++11 [dcl.constexpr]p4: |
| 926 | // -- every constructor involved in initializing non-static data |
| 927 | // members [...] shall be a constexpr constructor |
| 928 | if (!Field->hasInClassInitializer() && |
Richard Smith | e2648ba | 2012-05-07 01:07:30 +0000 | [diff] [blame] | 929 | !FieldRec->hasConstexprDefaultConstructor() && !isUnion()) |
Richard Smith | cc36f69 | 2011-12-22 02:22:31 +0000 | [diff] [blame] | 930 | // The standard requires any in-class initializer to be a constant |
| 931 | // expression. We consider this to be a defect. |
| 932 | data().DefaultedDefaultConstructorIsConstexpr = false; |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 933 | |
| 934 | // C++11 [class.copy]p8: |
| 935 | // The implicitly-declared copy constructor for a class X will have |
Richard Smith | df054d3 | 2017-02-25 23:53:05 +0000 | [diff] [blame] | 936 | // the form 'X::X(const X&)' if each potentially constructed subobject |
| 937 | // of a class type M (or array thereof) has a copy constructor whose |
| 938 | // first parameter is of type 'const M&' or 'const volatile M&'. |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 939 | if (!FieldRec->hasCopyConstructorWithConstParam()) |
Richard Smith | df054d3 | 2017-02-25 23:53:05 +0000 | [diff] [blame] | 940 | data().ImplicitCopyConstructorCanHaveConstParamForNonVBase = false; |
Richard Smith | 1c33fe8 | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 941 | |
| 942 | // C++11 [class.copy]p18: |
| 943 | // The implicitly-declared copy assignment oeprator for a class X will |
| 944 | // have the form 'X& X::operator=(const X&)' if [...] for all the |
| 945 | // non-static data members of X that are of a class type M (or array |
| 946 | // thereof), each such class type has a copy assignment operator whose |
| 947 | // parameter is of type 'const M&', 'const volatile M&' or 'M'. |
| 948 | if (!FieldRec->hasCopyAssignmentWithConstParam()) |
| 949 | data().ImplicitCopyAssignmentHasConstParam = false; |
Richard Smith | 593f993 | 2012-12-08 02:01:17 +0000 | [diff] [blame] | 950 | |
| 951 | if (FieldRec->hasUninitializedReferenceMember() && |
| 952 | !Field->hasInClassInitializer()) |
| 953 | data().HasUninitializedReferenceMember = true; |
Richard Smith | ab44d5b | 2013-12-10 08:25:00 +0000 | [diff] [blame] | 954 | |
| 955 | // C++11 [class.union]p8, DR1460: |
| 956 | // a non-static data member of an anonymous union that is a member of |
| 957 | // X is also a variant member of X. |
| 958 | if (FieldRec->hasVariantMembers() && |
| 959 | Field->isAnonymousStructOrUnion()) |
| 960 | data().HasVariantMembers = true; |
Douglas Gregor | 11c024b | 2010-09-28 20:50:54 +0000 | [diff] [blame] | 961 | } |
Richard Smith | cc36f69 | 2011-12-22 02:22:31 +0000 | [diff] [blame] | 962 | } else { |
| 963 | // Base element type of field is a non-class type. |
Richard Smith | d9f663b | 2013-04-22 15:31:51 +0000 | [diff] [blame] | 964 | if (!T->isLiteralType(Context) || |
Richard Smith | 4086a13 | 2012-06-10 07:07:24 +0000 | [diff] [blame] | 965 | (!Field->hasInClassInitializer() && !isUnion())) |
Richard Smith | cc36f69 | 2011-12-22 02:22:31 +0000 | [diff] [blame] | 966 | data().DefaultedDefaultConstructorIsConstexpr = false; |
Richard Smith | 6b02d46 | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 967 | |
| 968 | // C++11 [class.copy]p23: |
| 969 | // A defaulted copy/move assignment operator for a class X is defined |
| 970 | // as deleted if X has: |
| 971 | // -- a non-static data member of const non-class type (or array |
| 972 | // thereof) |
| 973 | if (T.isConstQualified()) |
| 974 | data().DefaultedMoveAssignmentIsDeleted = true; |
Douglas Gregor | 11c024b | 2010-09-28 20:50:54 +0000 | [diff] [blame] | 975 | } |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 976 | |
| 977 | // C++0x [class]p7: |
| 978 | // A standard-layout class is a class that: |
| 979 | // [...] |
| 980 | // -- either has no non-static data members in the most derived |
| 981 | // class and at most one base class with non-static data members, |
| 982 | // or has no base classes with non-static data members, and |
| 983 | // At this point we know that we have a non-static data member, so the last |
| 984 | // clause holds. |
| 985 | if (!data().HasNoNonEmptyBases) |
Chandler Carruth | 583edf8 | 2011-04-30 10:07:30 +0000 | [diff] [blame] | 986 | data().IsStandardLayout = false; |
Chandler Carruth | b196374 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 987 | |
David Majnemer | 5cfda6f | 2016-05-22 05:34:26 +0000 | [diff] [blame] | 988 | // C++14 [meta.unary.prop]p4: |
| 989 | // T is a class type [...] with [...] no non-static data members other |
| 990 | // than bit-fields of length 0... |
Douglas Gregor | 9d5938a | 2010-09-28 20:38:10 +0000 | [diff] [blame] | 991 | if (data().Empty) { |
Richard Smith | caf3390 | 2011-10-10 18:28:20 +0000 | [diff] [blame] | 992 | if (!Field->isBitField() || |
| 993 | (!Field->getBitWidth()->isTypeDependent() && |
| 994 | !Field->getBitWidth()->isValueDependent() && |
| 995 | Field->getBitWidthValue(Context) != 0)) |
Douglas Gregor | 9d5938a | 2010-09-28 20:38:10 +0000 | [diff] [blame] | 996 | data().Empty = false; |
Douglas Gregor | 9d5938a | 2010-09-28 20:38:10 +0000 | [diff] [blame] | 997 | } |
Douglas Gregor | a832d3e | 2010-09-28 19:45:33 +0000 | [diff] [blame] | 998 | } |
Douglas Gregor | 457104e | 2010-09-29 04:25:11 +0000 | [diff] [blame] | 999 | |
| 1000 | // Handle using declarations of conversion functions. |
Richard Smith | a4ba74c | 2013-08-30 04:46:40 +0000 | [diff] [blame] | 1001 | if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(D)) { |
Douglas Gregor | 457104e | 2010-09-29 04:25:11 +0000 | [diff] [blame] | 1002 | if (Shadow->getDeclName().getNameKind() |
Richard Smith | a4ba74c | 2013-08-30 04:46:40 +0000 | [diff] [blame] | 1003 | == DeclarationName::CXXConversionFunctionName) { |
| 1004 | ASTContext &Ctx = getASTContext(); |
| 1005 | data().Conversions.get(Ctx).addDecl(Ctx, Shadow, Shadow->getAccess()); |
| 1006 | } |
| 1007 | } |
Richard Smith | 12e7931 | 2016-05-13 06:47:56 +0000 | [diff] [blame] | 1008 | |
| 1009 | if (UsingDecl *Using = dyn_cast<UsingDecl>(D)) { |
| 1010 | if (Using->getDeclName().getNameKind() == |
Eric Fiselier | 283d8d4 | 2016-12-03 01:26:47 +0000 | [diff] [blame] | 1011 | DeclarationName::CXXConstructorName) { |
Richard Smith | 12e7931 | 2016-05-13 06:47:56 +0000 | [diff] [blame] | 1012 | data().HasInheritedConstructor = true; |
Eric Fiselier | 283d8d4 | 2016-12-03 01:26:47 +0000 | [diff] [blame] | 1013 | // C++1z [dcl.init.aggr]p1: |
| 1014 | // An aggregate is [...] a class [...] with no inherited constructors |
| 1015 | data().Aggregate = false; |
| 1016 | } |
Richard Smith | 12e7931 | 2016-05-13 06:47:56 +0000 | [diff] [blame] | 1017 | |
| 1018 | if (Using->getDeclName().getCXXOverloadedOperator() == OO_Equal) |
| 1019 | data().HasInheritedAssignment = true; |
| 1020 | } |
Joao Matos | e9a3ed4 | 2012-08-31 22:18:20 +0000 | [diff] [blame] | 1021 | } |
| 1022 | |
Richard Smith | 92f241f | 2012-12-08 02:53:02 +0000 | [diff] [blame] | 1023 | void CXXRecordDecl::finishedDefaultedOrDeletedMember(CXXMethodDecl *D) { |
| 1024 | assert(!D->isImplicit() && !D->isUserProvided()); |
| 1025 | |
| 1026 | // The kind of special member this declaration is, if any. |
| 1027 | unsigned SMKind = 0; |
| 1028 | |
| 1029 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) { |
| 1030 | if (Constructor->isDefaultConstructor()) { |
| 1031 | SMKind |= SMF_DefaultConstructor; |
| 1032 | if (Constructor->isConstexpr()) |
| 1033 | data().HasConstexprDefaultConstructor = true; |
| 1034 | } |
| 1035 | if (Constructor->isCopyConstructor()) |
| 1036 | SMKind |= SMF_CopyConstructor; |
| 1037 | else if (Constructor->isMoveConstructor()) |
| 1038 | SMKind |= SMF_MoveConstructor; |
| 1039 | else if (Constructor->isConstexpr()) |
| 1040 | // We may now know that the constructor is constexpr. |
| 1041 | data().HasConstexprNonCopyMoveConstructor = true; |
Stephan Tolksdorf | d85fa23 | 2014-03-27 20:23:12 +0000 | [diff] [blame] | 1042 | } else if (isa<CXXDestructorDecl>(D)) { |
Richard Smith | 92f241f | 2012-12-08 02:53:02 +0000 | [diff] [blame] | 1043 | SMKind |= SMF_Destructor; |
Stephan Tolksdorf | d85fa23 | 2014-03-27 20:23:12 +0000 | [diff] [blame] | 1044 | if (!D->isTrivial() || D->getAccess() != AS_public || D->isDeleted()) |
| 1045 | data().HasIrrelevantDestructor = false; |
| 1046 | } else if (D->isCopyAssignmentOperator()) |
Richard Smith | 92f241f | 2012-12-08 02:53:02 +0000 | [diff] [blame] | 1047 | SMKind |= SMF_CopyAssignment; |
| 1048 | else if (D->isMoveAssignmentOperator()) |
| 1049 | SMKind |= SMF_MoveAssignment; |
| 1050 | |
| 1051 | // Update which trivial / non-trivial special members we have. |
| 1052 | // addedMember will have skipped this step for this member. |
| 1053 | if (D->isTrivial()) |
| 1054 | data().HasTrivialSpecialMembers |= SMKind; |
| 1055 | else |
| 1056 | data().DeclaredNonTrivialSpecialMembers |= SMKind; |
| 1057 | } |
| 1058 | |
Joao Matos | e9a3ed4 | 2012-08-31 22:18:20 +0000 | [diff] [blame] | 1059 | bool CXXRecordDecl::isCLike() const { |
| 1060 | if (getTagKind() == TTK_Class || getTagKind() == TTK_Interface || |
| 1061 | !TemplateOrInstantiation.isNull()) |
| 1062 | return false; |
| 1063 | if (!hasDefinition()) |
| 1064 | return true; |
Argyrios Kyrtzidis | 5c4e065 | 2012-01-23 16:58:45 +0000 | [diff] [blame] | 1065 | |
Argyrios Kyrtzidis | c3c9ee5 | 2012-02-01 06:36:44 +0000 | [diff] [blame] | 1066 | return isPOD() && data().HasOnlyCMembers; |
Argyrios Kyrtzidis | 5c4e065 | 2012-01-23 16:58:45 +0000 | [diff] [blame] | 1067 | } |
Faisal Vali | c1a6dc4 | 2013-10-23 16:10:50 +0000 | [diff] [blame] | 1068 | |
Faisal Vali | 2b391ab | 2013-09-26 19:54:12 +0000 | [diff] [blame] | 1069 | bool CXXRecordDecl::isGenericLambda() const { |
Faisal Vali | c1a6dc4 | 2013-10-23 16:10:50 +0000 | [diff] [blame] | 1070 | if (!isLambda()) return false; |
| 1071 | return getLambdaData().IsGenericLambda; |
Faisal Vali | 2b391ab | 2013-09-26 19:54:12 +0000 | [diff] [blame] | 1072 | } |
| 1073 | |
| 1074 | CXXMethodDecl* CXXRecordDecl::getLambdaCallOperator() const { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1075 | if (!isLambda()) return nullptr; |
Faisal Vali | 850da1a | 2013-09-29 17:08:32 +0000 | [diff] [blame] | 1076 | DeclarationName Name = |
| 1077 | getASTContext().DeclarationNames.getCXXOperatorName(OO_Call); |
Richard Smith | cf4bdde | 2015-02-21 02:45:19 +0000 | [diff] [blame] | 1078 | DeclContext::lookup_result Calls = lookup(Name); |
Faisal Vali | 850da1a | 2013-09-29 17:08:32 +0000 | [diff] [blame] | 1079 | |
| 1080 | assert(!Calls.empty() && "Missing lambda call operator!"); |
| 1081 | assert(Calls.size() == 1 && "More than one lambda call operator!"); |
| 1082 | |
| 1083 | NamedDecl *CallOp = Calls.front(); |
| 1084 | if (FunctionTemplateDecl *CallOpTmpl = |
| 1085 | dyn_cast<FunctionTemplateDecl>(CallOp)) |
| 1086 | return cast<CXXMethodDecl>(CallOpTmpl->getTemplatedDecl()); |
Faisal Vali | 2b391ab | 2013-09-26 19:54:12 +0000 | [diff] [blame] | 1087 | |
| 1088 | return cast<CXXMethodDecl>(CallOp); |
| 1089 | } |
| 1090 | |
| 1091 | CXXMethodDecl* CXXRecordDecl::getLambdaStaticInvoker() const { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1092 | if (!isLambda()) return nullptr; |
Faisal Vali | 850da1a | 2013-09-29 17:08:32 +0000 | [diff] [blame] | 1093 | DeclarationName Name = |
| 1094 | &getASTContext().Idents.get(getLambdaStaticInvokerName()); |
Richard Smith | cf4bdde | 2015-02-21 02:45:19 +0000 | [diff] [blame] | 1095 | DeclContext::lookup_result Invoker = lookup(Name); |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1096 | if (Invoker.empty()) return nullptr; |
Faisal Vali | 850da1a | 2013-09-29 17:08:32 +0000 | [diff] [blame] | 1097 | assert(Invoker.size() == 1 && "More than one static invoker operator!"); |
| 1098 | NamedDecl *InvokerFun = Invoker.front(); |
| 1099 | if (FunctionTemplateDecl *InvokerTemplate = |
| 1100 | dyn_cast<FunctionTemplateDecl>(InvokerFun)) |
| 1101 | return cast<CXXMethodDecl>(InvokerTemplate->getTemplatedDecl()); |
| 1102 | |
Faisal Vali | 571df12 | 2013-09-29 08:45:24 +0000 | [diff] [blame] | 1103 | return cast<CXXMethodDecl>(InvokerFun); |
Faisal Vali | 2b391ab | 2013-09-26 19:54:12 +0000 | [diff] [blame] | 1104 | } |
| 1105 | |
Douglas Gregor | 9c70220 | 2012-02-10 07:45:31 +0000 | [diff] [blame] | 1106 | void CXXRecordDecl::getCaptureFields( |
| 1107 | llvm::DenseMap<const VarDecl *, FieldDecl *> &Captures, |
Eli Friedman | 7e7da2d | 2012-02-11 00:18:00 +0000 | [diff] [blame] | 1108 | FieldDecl *&ThisCapture) const { |
Douglas Gregor | 9c70220 | 2012-02-10 07:45:31 +0000 | [diff] [blame] | 1109 | Captures.clear(); |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1110 | ThisCapture = nullptr; |
Douglas Gregor | 9c70220 | 2012-02-10 07:45:31 +0000 | [diff] [blame] | 1111 | |
Douglas Gregor | c8a7349 | 2012-02-13 15:44:47 +0000 | [diff] [blame] | 1112 | LambdaDefinitionData &Lambda = getLambdaData(); |
Douglas Gregor | 9c70220 | 2012-02-10 07:45:31 +0000 | [diff] [blame] | 1113 | RecordDecl::field_iterator Field = field_begin(); |
Benjamin Kramer | f3ca2698 | 2014-05-10 16:31:55 +0000 | [diff] [blame] | 1114 | for (const LambdaCapture *C = Lambda.Captures, *CEnd = C + Lambda.NumCaptures; |
Douglas Gregor | 9c70220 | 2012-02-10 07:45:31 +0000 | [diff] [blame] | 1115 | C != CEnd; ++C, ++Field) { |
Richard Smith | ba71c08 | 2013-05-16 06:20:58 +0000 | [diff] [blame] | 1116 | if (C->capturesThis()) |
David Blaikie | 40ed297 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1117 | ThisCapture = *Field; |
Richard Smith | ba71c08 | 2013-05-16 06:20:58 +0000 | [diff] [blame] | 1118 | else if (C->capturesVariable()) |
| 1119 | Captures[C->getCapturedVar()] = *Field; |
Douglas Gregor | 9c70220 | 2012-02-10 07:45:31 +0000 | [diff] [blame] | 1120 | } |
Richard Smith | bb13c9a | 2013-09-28 04:02:39 +0000 | [diff] [blame] | 1121 | assert(Field == field_end()); |
Douglas Gregor | 9c70220 | 2012-02-10 07:45:31 +0000 | [diff] [blame] | 1122 | } |
| 1123 | |
Faisal Vali | 2b391ab | 2013-09-26 19:54:12 +0000 | [diff] [blame] | 1124 | TemplateParameterList * |
| 1125 | CXXRecordDecl::getGenericLambdaTemplateParameterList() const { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1126 | if (!isLambda()) return nullptr; |
Faisal Vali | 2b391ab | 2013-09-26 19:54:12 +0000 | [diff] [blame] | 1127 | CXXMethodDecl *CallOp = getLambdaCallOperator(); |
| 1128 | if (FunctionTemplateDecl *Tmpl = CallOp->getDescribedFunctionTemplate()) |
| 1129 | return Tmpl->getTemplateParameters(); |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1130 | return nullptr; |
Faisal Vali | 2b391ab | 2013-09-26 19:54:12 +0000 | [diff] [blame] | 1131 | } |
Douglas Gregor | 9c70220 | 2012-02-10 07:45:31 +0000 | [diff] [blame] | 1132 | |
Richard Smith | 0bae624 | 2016-08-25 00:34:00 +0000 | [diff] [blame] | 1133 | Decl *CXXRecordDecl::getLambdaContextDecl() const { |
| 1134 | assert(isLambda() && "Not a lambda closure type!"); |
| 1135 | ExternalASTSource *Source = getParentASTContext().getExternalSource(); |
| 1136 | return getLambdaData().ContextDecl.get(Source); |
| 1137 | } |
| 1138 | |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1139 | static CanQualType GetConversionType(ASTContext &Context, NamedDecl *Conv) { |
Alp Toker | a2794f9 | 2014-01-22 07:29:52 +0000 | [diff] [blame] | 1140 | QualType T = |
| 1141 | cast<CXXConversionDecl>(Conv->getUnderlyingDecl()->getAsFunction()) |
| 1142 | ->getConversionType(); |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1143 | return Context.getCanonicalType(T); |
Fariborz Jahanian | 3ee21f1 | 2009-10-07 20:43:36 +0000 | [diff] [blame] | 1144 | } |
| 1145 | |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1146 | /// Collect the visible conversions of a base class. |
| 1147 | /// |
James Dennett | b5d5f81 | 2012-06-15 22:28:09 +0000 | [diff] [blame] | 1148 | /// \param Record a base class of the class we're considering |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1149 | /// \param InVirtual whether this base class is a virtual base (or a base |
| 1150 | /// of a virtual base) |
| 1151 | /// \param Access the access along the inheritance path to this base |
| 1152 | /// \param ParentHiddenTypes the conversions provided by the inheritors |
| 1153 | /// of this base |
| 1154 | /// \param Output the set to which to add conversions from non-virtual bases |
| 1155 | /// \param VOutput the set to which to add conversions from virtual bases |
| 1156 | /// \param HiddenVBaseCs the set of conversions which were hidden in a |
| 1157 | /// virtual base along some inheritance path |
| 1158 | static void CollectVisibleConversions(ASTContext &Context, |
| 1159 | CXXRecordDecl *Record, |
| 1160 | bool InVirtual, |
| 1161 | AccessSpecifier Access, |
| 1162 | const llvm::SmallPtrSet<CanQualType, 8> &ParentHiddenTypes, |
Argyrios Kyrtzidis | 0f05fb9 | 2012-11-28 03:56:16 +0000 | [diff] [blame] | 1163 | ASTUnresolvedSet &Output, |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1164 | UnresolvedSetImpl &VOutput, |
| 1165 | llvm::SmallPtrSet<NamedDecl*, 8> &HiddenVBaseCs) { |
| 1166 | // The set of types which have conversions in this class or its |
| 1167 | // subclasses. As an optimization, we don't copy the derived set |
| 1168 | // unless it might change. |
| 1169 | const llvm::SmallPtrSet<CanQualType, 8> *HiddenTypes = &ParentHiddenTypes; |
| 1170 | llvm::SmallPtrSet<CanQualType, 8> HiddenTypesBuffer; |
| 1171 | |
| 1172 | // Collect the direct conversions and figure out which conversions |
| 1173 | // will be hidden in the subclasses. |
Argyrios Kyrtzidis | a6567c4 | 2012-11-28 03:56:09 +0000 | [diff] [blame] | 1174 | CXXRecordDecl::conversion_iterator ConvI = Record->conversion_begin(); |
| 1175 | CXXRecordDecl::conversion_iterator ConvE = Record->conversion_end(); |
| 1176 | if (ConvI != ConvE) { |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1177 | HiddenTypesBuffer = ParentHiddenTypes; |
| 1178 | HiddenTypes = &HiddenTypesBuffer; |
| 1179 | |
Argyrios Kyrtzidis | a6567c4 | 2012-11-28 03:56:09 +0000 | [diff] [blame] | 1180 | for (CXXRecordDecl::conversion_iterator I = ConvI; I != ConvE; ++I) { |
Richard Smith | 99fdf8d | 2012-05-06 00:04:32 +0000 | [diff] [blame] | 1181 | CanQualType ConvType(GetConversionType(Context, I.getDecl())); |
| 1182 | bool Hidden = ParentHiddenTypes.count(ConvType); |
| 1183 | if (!Hidden) |
| 1184 | HiddenTypesBuffer.insert(ConvType); |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1185 | |
| 1186 | // If this conversion is hidden and we're in a virtual base, |
| 1187 | // remember that it's hidden along some inheritance path. |
| 1188 | if (Hidden && InVirtual) |
| 1189 | HiddenVBaseCs.insert(cast<NamedDecl>(I.getDecl()->getCanonicalDecl())); |
| 1190 | |
| 1191 | // If this conversion isn't hidden, add it to the appropriate output. |
| 1192 | else if (!Hidden) { |
| 1193 | AccessSpecifier IAccess |
| 1194 | = CXXRecordDecl::MergeAccess(Access, I.getAccess()); |
| 1195 | |
| 1196 | if (InVirtual) |
| 1197 | VOutput.addDecl(I.getDecl(), IAccess); |
Fariborz Jahanian | b394f50 | 2009-09-12 18:26:03 +0000 | [diff] [blame] | 1198 | else |
Argyrios Kyrtzidis | 0f05fb9 | 2012-11-28 03:56:16 +0000 | [diff] [blame] | 1199 | Output.addDecl(Context, I.getDecl(), IAccess); |
Fariborz Jahanian | b54ccb2 | 2009-09-11 21:44:33 +0000 | [diff] [blame] | 1200 | } |
| 1201 | } |
| 1202 | } |
Sebastian Redl | 1054fae | 2009-10-25 17:03:50 +0000 | [diff] [blame] | 1203 | |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1204 | // Collect information recursively from any base classes. |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1205 | for (const auto &I : Record->bases()) { |
| 1206 | const RecordType *RT = I.getType()->getAs<RecordType>(); |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1207 | if (!RT) continue; |
Sebastian Redl | 1054fae | 2009-10-25 17:03:50 +0000 | [diff] [blame] | 1208 | |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1209 | AccessSpecifier BaseAccess |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1210 | = CXXRecordDecl::MergeAccess(Access, I.getAccessSpecifier()); |
| 1211 | bool BaseInVirtual = InVirtual || I.isVirtual(); |
Sebastian Redl | 1054fae | 2009-10-25 17:03:50 +0000 | [diff] [blame] | 1212 | |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1213 | CXXRecordDecl *Base = cast<CXXRecordDecl>(RT->getDecl()); |
| 1214 | CollectVisibleConversions(Context, Base, BaseInVirtual, BaseAccess, |
| 1215 | *HiddenTypes, Output, VOutput, HiddenVBaseCs); |
Fariborz Jahanian | b54ccb2 | 2009-09-11 21:44:33 +0000 | [diff] [blame] | 1216 | } |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1217 | } |
Sebastian Redl | 1054fae | 2009-10-25 17:03:50 +0000 | [diff] [blame] | 1218 | |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1219 | /// Collect the visible conversions of a class. |
| 1220 | /// |
| 1221 | /// This would be extremely straightforward if it weren't for virtual |
| 1222 | /// bases. It might be worth special-casing that, really. |
| 1223 | static void CollectVisibleConversions(ASTContext &Context, |
| 1224 | CXXRecordDecl *Record, |
Argyrios Kyrtzidis | 0f05fb9 | 2012-11-28 03:56:16 +0000 | [diff] [blame] | 1225 | ASTUnresolvedSet &Output) { |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1226 | // The collection of all conversions in virtual bases that we've |
| 1227 | // found. These will be added to the output as long as they don't |
| 1228 | // appear in the hidden-conversions set. |
| 1229 | UnresolvedSet<8> VBaseCs; |
| 1230 | |
| 1231 | // The set of conversions in virtual bases that we've determined to |
| 1232 | // be hidden. |
| 1233 | llvm::SmallPtrSet<NamedDecl*, 8> HiddenVBaseCs; |
| 1234 | |
| 1235 | // The set of types hidden by classes derived from this one. |
| 1236 | llvm::SmallPtrSet<CanQualType, 8> HiddenTypes; |
| 1237 | |
| 1238 | // Go ahead and collect the direct conversions and add them to the |
| 1239 | // hidden-types set. |
Argyrios Kyrtzidis | a6567c4 | 2012-11-28 03:56:09 +0000 | [diff] [blame] | 1240 | CXXRecordDecl::conversion_iterator ConvI = Record->conversion_begin(); |
| 1241 | CXXRecordDecl::conversion_iterator ConvE = Record->conversion_end(); |
Argyrios Kyrtzidis | 0f05fb9 | 2012-11-28 03:56:16 +0000 | [diff] [blame] | 1242 | Output.append(Context, ConvI, ConvE); |
Argyrios Kyrtzidis | a6567c4 | 2012-11-28 03:56:09 +0000 | [diff] [blame] | 1243 | for (; ConvI != ConvE; ++ConvI) |
| 1244 | HiddenTypes.insert(GetConversionType(Context, ConvI.getDecl())); |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1245 | |
| 1246 | // Recursively collect conversions from base classes. |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1247 | for (const auto &I : Record->bases()) { |
| 1248 | const RecordType *RT = I.getType()->getAs<RecordType>(); |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1249 | if (!RT) continue; |
| 1250 | |
| 1251 | CollectVisibleConversions(Context, cast<CXXRecordDecl>(RT->getDecl()), |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1252 | I.isVirtual(), I.getAccessSpecifier(), |
John McCall | 1e3a1a7 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 1253 | HiddenTypes, Output, VBaseCs, HiddenVBaseCs); |
| 1254 | } |
| 1255 | |
| 1256 | // Add any unhidden conversions provided by virtual bases. |
| 1257 | for (UnresolvedSetIterator I = VBaseCs.begin(), E = VBaseCs.end(); |
| 1258 | I != E; ++I) { |
| 1259 | if (!HiddenVBaseCs.count(cast<NamedDecl>(I.getDecl()->getCanonicalDecl()))) |
Argyrios Kyrtzidis | 0f05fb9 | 2012-11-28 03:56:16 +0000 | [diff] [blame] | 1260 | Output.addDecl(Context, I.getDecl(), I.getAccess()); |
Fariborz Jahanian | b54ccb2 | 2009-09-11 21:44:33 +0000 | [diff] [blame] | 1261 | } |
Fariborz Jahanian | b394f50 | 2009-09-12 18:26:03 +0000 | [diff] [blame] | 1262 | } |
| 1263 | |
| 1264 | /// getVisibleConversionFunctions - get all conversion functions visible |
| 1265 | /// in current class; including conversion function templates. |
Benjamin Kramer | b4ef668 | 2015-02-06 17:25:10 +0000 | [diff] [blame] | 1266 | llvm::iterator_range<CXXRecordDecl::conversion_iterator> |
Argyrios Kyrtzidis | a6567c4 | 2012-11-28 03:56:09 +0000 | [diff] [blame] | 1267 | CXXRecordDecl::getVisibleConversionFunctions() { |
Richard Smith | a4ba74c | 2013-08-30 04:46:40 +0000 | [diff] [blame] | 1268 | ASTContext &Ctx = getASTContext(); |
| 1269 | |
| 1270 | ASTUnresolvedSet *Set; |
| 1271 | if (bases_begin() == bases_end()) { |
| 1272 | // If root class, all conversions are visible. |
| 1273 | Set = &data().Conversions.get(Ctx); |
| 1274 | } else { |
| 1275 | Set = &data().VisibleConversions.get(Ctx); |
| 1276 | // If visible conversion list is not evaluated, evaluate it. |
| 1277 | if (!data().ComputedVisibleConversions) { |
| 1278 | CollectVisibleConversions(Ctx, this, *Set); |
| 1279 | data().ComputedVisibleConversions = true; |
| 1280 | } |
Argyrios Kyrtzidis | a6567c4 | 2012-11-28 03:56:09 +0000 | [diff] [blame] | 1281 | } |
Benjamin Kramer | b4ef668 | 2015-02-06 17:25:10 +0000 | [diff] [blame] | 1282 | return llvm::make_range(Set->begin(), Set->end()); |
Fariborz Jahanian | b54ccb2 | 2009-09-11 21:44:33 +0000 | [diff] [blame] | 1283 | } |
| 1284 | |
John McCall | da4458e | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 1285 | void CXXRecordDecl::removeConversion(const NamedDecl *ConvDecl) { |
| 1286 | // This operation is O(N) but extremely rare. Sema only uses it to |
| 1287 | // remove UsingShadowDecls in a class that were followed by a direct |
| 1288 | // declaration, e.g.: |
| 1289 | // class A : B { |
| 1290 | // using B::operator int; |
| 1291 | // operator int(); |
| 1292 | // }; |
| 1293 | // This is uncommon by itself and even more uncommon in conjunction |
| 1294 | // with sufficiently large numbers of directly-declared conversions |
| 1295 | // that asymptotic behavior matters. |
| 1296 | |
Richard Smith | a4ba74c | 2013-08-30 04:46:40 +0000 | [diff] [blame] | 1297 | ASTUnresolvedSet &Convs = data().Conversions.get(getASTContext()); |
John McCall | da4458e | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 1298 | for (unsigned I = 0, E = Convs.size(); I != E; ++I) { |
| 1299 | if (Convs[I].getDecl() == ConvDecl) { |
| 1300 | Convs.erase(I); |
| 1301 | assert(std::find(Convs.begin(), Convs.end(), ConvDecl) == Convs.end() |
| 1302 | && "conversion was found multiple times in unresolved set"); |
| 1303 | return; |
| 1304 | } |
| 1305 | } |
| 1306 | |
| 1307 | llvm_unreachable("conversion not found in set!"); |
Douglas Gregor | 05155d8 | 2009-08-21 23:19:43 +0000 | [diff] [blame] | 1308 | } |
Fariborz Jahanian | 423a81f | 2009-06-19 19:55:27 +0000 | [diff] [blame] | 1309 | |
Douglas Gregor | bbe8f46 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 1310 | CXXRecordDecl *CXXRecordDecl::getInstantiatedFromMemberClass() const { |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 1311 | if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) |
Douglas Gregor | bbe8f46 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 1312 | return cast<CXXRecordDecl>(MSInfo->getInstantiatedFrom()); |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1313 | |
| 1314 | return nullptr; |
Douglas Gregor | bbe8f46 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 1315 | } |
| 1316 | |
Chandler Carruth | 21c9060 | 2015-12-30 03:24:14 +0000 | [diff] [blame] | 1317 | MemberSpecializationInfo *CXXRecordDecl::getMemberSpecializationInfo() const { |
| 1318 | return TemplateOrInstantiation.dyn_cast<MemberSpecializationInfo *>(); |
| 1319 | } |
| 1320 | |
Douglas Gregor | bbe8f46 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 1321 | void |
| 1322 | CXXRecordDecl::setInstantiationOfMemberClass(CXXRecordDecl *RD, |
| 1323 | TemplateSpecializationKind TSK) { |
| 1324 | assert(TemplateOrInstantiation.isNull() && |
| 1325 | "Previous template or instantiation?"); |
Richard Smith | 8a0dde7 | 2013-12-14 01:04:22 +0000 | [diff] [blame] | 1326 | assert(!isa<ClassTemplatePartialSpecializationDecl>(this)); |
Douglas Gregor | bbe8f46 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 1327 | TemplateOrInstantiation |
| 1328 | = new (getASTContext()) MemberSpecializationInfo(RD, TSK); |
| 1329 | } |
| 1330 | |
Chandler Carruth | 21c9060 | 2015-12-30 03:24:14 +0000 | [diff] [blame] | 1331 | ClassTemplateDecl *CXXRecordDecl::getDescribedClassTemplate() const { |
| 1332 | return TemplateOrInstantiation.dyn_cast<ClassTemplateDecl *>(); |
| 1333 | } |
| 1334 | |
| 1335 | void CXXRecordDecl::setDescribedClassTemplate(ClassTemplateDecl *Template) { |
| 1336 | TemplateOrInstantiation = Template; |
| 1337 | } |
| 1338 | |
Anders Carlsson | 27cfc6e | 2009-12-07 06:33:48 +0000 | [diff] [blame] | 1339 | TemplateSpecializationKind CXXRecordDecl::getTemplateSpecializationKind() const{ |
| 1340 | if (const ClassTemplateSpecializationDecl *Spec |
Douglas Gregor | bbe8f46 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 1341 | = dyn_cast<ClassTemplateSpecializationDecl>(this)) |
| 1342 | return Spec->getSpecializationKind(); |
| 1343 | |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 1344 | if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) |
Douglas Gregor | bbe8f46 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 1345 | return MSInfo->getTemplateSpecializationKind(); |
| 1346 | |
| 1347 | return TSK_Undeclared; |
| 1348 | } |
| 1349 | |
| 1350 | void |
| 1351 | CXXRecordDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK) { |
| 1352 | if (ClassTemplateSpecializationDecl *Spec |
| 1353 | = dyn_cast<ClassTemplateSpecializationDecl>(this)) { |
| 1354 | Spec->setSpecializationKind(TSK); |
| 1355 | return; |
| 1356 | } |
| 1357 | |
Douglas Gregor | 06db9f5 | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 1358 | if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) { |
Douglas Gregor | bbe8f46 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 1359 | MSInfo->setTemplateSpecializationKind(TSK); |
| 1360 | return; |
| 1361 | } |
| 1362 | |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1363 | llvm_unreachable("Not a class template or member class specialization"); |
Douglas Gregor | bbe8f46 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 1364 | } |
| 1365 | |
Reid Kleckner | e7367d6 | 2014-10-14 20:28:40 +0000 | [diff] [blame] | 1366 | const CXXRecordDecl *CXXRecordDecl::getTemplateInstantiationPattern() const { |
Richard Smith | 2195ec9 | 2017-04-21 01:15:13 +0000 | [diff] [blame] | 1367 | auto GetDefinitionOrSelf = |
| 1368 | [](const CXXRecordDecl *D) -> const CXXRecordDecl * { |
| 1369 | if (auto *Def = D->getDefinition()) |
| 1370 | return Def; |
| 1371 | return D; |
| 1372 | }; |
| 1373 | |
Reid Kleckner | e7367d6 | 2014-10-14 20:28:40 +0000 | [diff] [blame] | 1374 | // If it's a class template specialization, find the template or partial |
| 1375 | // specialization from which it was instantiated. |
| 1376 | if (auto *TD = dyn_cast<ClassTemplateSpecializationDecl>(this)) { |
| 1377 | auto From = TD->getInstantiatedFrom(); |
| 1378 | if (auto *CTD = From.dyn_cast<ClassTemplateDecl *>()) { |
| 1379 | while (auto *NewCTD = CTD->getInstantiatedFromMemberTemplate()) { |
| 1380 | if (NewCTD->isMemberSpecialization()) |
| 1381 | break; |
| 1382 | CTD = NewCTD; |
| 1383 | } |
Richard Smith | 2195ec9 | 2017-04-21 01:15:13 +0000 | [diff] [blame] | 1384 | return GetDefinitionOrSelf(CTD->getTemplatedDecl()); |
Reid Kleckner | e7367d6 | 2014-10-14 20:28:40 +0000 | [diff] [blame] | 1385 | } |
| 1386 | if (auto *CTPSD = |
| 1387 | From.dyn_cast<ClassTemplatePartialSpecializationDecl *>()) { |
| 1388 | while (auto *NewCTPSD = CTPSD->getInstantiatedFromMember()) { |
| 1389 | if (NewCTPSD->isMemberSpecialization()) |
| 1390 | break; |
| 1391 | CTPSD = NewCTPSD; |
| 1392 | } |
Richard Smith | 2195ec9 | 2017-04-21 01:15:13 +0000 | [diff] [blame] | 1393 | return GetDefinitionOrSelf(CTPSD); |
Reid Kleckner | e7367d6 | 2014-10-14 20:28:40 +0000 | [diff] [blame] | 1394 | } |
| 1395 | } |
| 1396 | |
| 1397 | if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) { |
| 1398 | if (isTemplateInstantiation(MSInfo->getTemplateSpecializationKind())) { |
| 1399 | const CXXRecordDecl *RD = this; |
| 1400 | while (auto *NewRD = RD->getInstantiatedFromMemberClass()) |
| 1401 | RD = NewRD; |
Richard Smith | 2195ec9 | 2017-04-21 01:15:13 +0000 | [diff] [blame] | 1402 | return GetDefinitionOrSelf(RD); |
Reid Kleckner | e7367d6 | 2014-10-14 20:28:40 +0000 | [diff] [blame] | 1403 | } |
| 1404 | } |
| 1405 | |
| 1406 | assert(!isTemplateInstantiation(this->getTemplateSpecializationKind()) && |
| 1407 | "couldn't find pattern for class template instantiation"); |
| 1408 | return nullptr; |
| 1409 | } |
| 1410 | |
Douglas Gregor | bac7490 | 2010-07-01 14:13:13 +0000 | [diff] [blame] | 1411 | CXXDestructorDecl *CXXRecordDecl::getDestructor() const { |
| 1412 | ASTContext &Context = getASTContext(); |
Anders Carlsson | 0a63741 | 2009-05-29 21:03:38 +0000 | [diff] [blame] | 1413 | QualType ClassType = Context.getTypeDeclType(this); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1414 | |
| 1415 | DeclarationName Name |
Douglas Gregor | 2211d34 | 2009-08-05 05:36:45 +0000 | [diff] [blame] | 1416 | = Context.DeclarationNames.getCXXDestructorName( |
| 1417 | Context.getCanonicalType(ClassType)); |
Anders Carlsson | 0a63741 | 2009-05-29 21:03:38 +0000 | [diff] [blame] | 1418 | |
Richard Smith | cf4bdde | 2015-02-21 02:45:19 +0000 | [diff] [blame] | 1419 | DeclContext::lookup_result R = lookup(Name); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1420 | |
Hubert Tong | 3cede51 | 2017-06-30 22:43:54 +0000 | [diff] [blame^] | 1421 | return R.empty() ? nullptr : dyn_cast<CXXDestructorDecl>(R.front()); |
Anders Carlsson | 0a63741 | 2009-05-29 21:03:38 +0000 | [diff] [blame] | 1422 | } |
| 1423 | |
Richard Trieu | 95a192a | 2015-05-28 00:14:02 +0000 | [diff] [blame] | 1424 | bool CXXRecordDecl::isAnyDestructorNoReturn() const { |
| 1425 | // Destructor is noreturn. |
| 1426 | if (const CXXDestructorDecl *Destructor = getDestructor()) |
| 1427 | if (Destructor->isNoReturn()) |
| 1428 | return true; |
| 1429 | |
| 1430 | // Check base classes destructor for noreturn. |
| 1431 | for (const auto &Base : bases()) |
Alexander Kornienko | 2933334 | 2017-05-12 11:24:25 +0000 | [diff] [blame] | 1432 | if (const CXXRecordDecl *RD = Base.getType()->getAsCXXRecordDecl()) |
| 1433 | if (RD->isAnyDestructorNoReturn()) |
| 1434 | return true; |
Richard Trieu | 95a192a | 2015-05-28 00:14:02 +0000 | [diff] [blame] | 1435 | |
| 1436 | // Check fields for noreturn. |
| 1437 | for (const auto *Field : fields()) |
| 1438 | if (const CXXRecordDecl *RD = |
| 1439 | Field->getType()->getBaseElementTypeUnsafe()->getAsCXXRecordDecl()) |
| 1440 | if (RD->isAnyDestructorNoReturn()) |
| 1441 | return true; |
| 1442 | |
| 1443 | // All destructors are not noreturn. |
| 1444 | return false; |
| 1445 | } |
| 1446 | |
Douglas Gregor | b11aad8 | 2011-02-19 18:51:44 +0000 | [diff] [blame] | 1447 | void CXXRecordDecl::completeDefinition() { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1448 | completeDefinition(nullptr); |
Douglas Gregor | b11aad8 | 2011-02-19 18:51:44 +0000 | [diff] [blame] | 1449 | } |
| 1450 | |
| 1451 | void CXXRecordDecl::completeDefinition(CXXFinalOverriderMap *FinalOverriders) { |
| 1452 | RecordDecl::completeDefinition(); |
| 1453 | |
Douglas Gregor | 8fb9512 | 2010-09-29 00:15:42 +0000 | [diff] [blame] | 1454 | // If the class may be abstract (but hasn't been marked as such), check for |
| 1455 | // any pure final overriders. |
| 1456 | if (mayBeAbstract()) { |
| 1457 | CXXFinalOverriderMap MyFinalOverriders; |
| 1458 | if (!FinalOverriders) { |
| 1459 | getFinalOverriders(MyFinalOverriders); |
| 1460 | FinalOverriders = &MyFinalOverriders; |
| 1461 | } |
| 1462 | |
| 1463 | bool Done = false; |
| 1464 | for (CXXFinalOverriderMap::iterator M = FinalOverriders->begin(), |
| 1465 | MEnd = FinalOverriders->end(); |
| 1466 | M != MEnd && !Done; ++M) { |
| 1467 | for (OverridingMethods::iterator SO = M->second.begin(), |
| 1468 | SOEnd = M->second.end(); |
| 1469 | SO != SOEnd && !Done; ++SO) { |
| 1470 | assert(SO->second.size() > 0 && |
| 1471 | "All virtual functions have overridding virtual functions"); |
| 1472 | |
| 1473 | // C++ [class.abstract]p4: |
| 1474 | // A class is abstract if it contains or inherits at least one |
| 1475 | // pure virtual function for which the final overrider is pure |
| 1476 | // virtual. |
| 1477 | if (SO->second.front().Method->isPure()) { |
| 1478 | data().Abstract = true; |
| 1479 | Done = true; |
| 1480 | break; |
| 1481 | } |
| 1482 | } |
| 1483 | } |
| 1484 | } |
Douglas Gregor | 457104e | 2010-09-29 04:25:11 +0000 | [diff] [blame] | 1485 | |
| 1486 | // Set access bits correctly on the directly-declared conversions. |
Richard Smith | a4ba74c | 2013-08-30 04:46:40 +0000 | [diff] [blame] | 1487 | for (conversion_iterator I = conversion_begin(), E = conversion_end(); |
Douglas Gregor | 457104e | 2010-09-29 04:25:11 +0000 | [diff] [blame] | 1488 | I != E; ++I) |
Argyrios Kyrtzidis | 0f05fb9 | 2012-11-28 03:56:16 +0000 | [diff] [blame] | 1489 | I.setAccess((*I)->getAccess()); |
Douglas Gregor | 8fb9512 | 2010-09-29 00:15:42 +0000 | [diff] [blame] | 1490 | } |
| 1491 | |
| 1492 | bool CXXRecordDecl::mayBeAbstract() const { |
| 1493 | if (data().Abstract || isInvalidDecl() || !data().Polymorphic || |
| 1494 | isDependentContext()) |
| 1495 | return false; |
| 1496 | |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1497 | for (const auto &B : bases()) { |
Douglas Gregor | 8fb9512 | 2010-09-29 00:15:42 +0000 | [diff] [blame] | 1498 | CXXRecordDecl *BaseDecl |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1499 | = cast<CXXRecordDecl>(B.getType()->getAs<RecordType>()->getDecl()); |
Douglas Gregor | 8fb9512 | 2010-09-29 00:15:42 +0000 | [diff] [blame] | 1500 | if (BaseDecl->isAbstract()) |
| 1501 | return true; |
| 1502 | } |
| 1503 | |
| 1504 | return false; |
| 1505 | } |
| 1506 | |
Richard Smith | bc49120 | 2017-02-17 20:05:37 +0000 | [diff] [blame] | 1507 | void CXXDeductionGuideDecl::anchor() { } |
| 1508 | |
| 1509 | CXXDeductionGuideDecl *CXXDeductionGuideDecl::Create( |
| 1510 | ASTContext &C, DeclContext *DC, SourceLocation StartLoc, bool IsExplicit, |
| 1511 | const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, |
| 1512 | SourceLocation EndLocation) { |
| 1513 | return new (C, DC) CXXDeductionGuideDecl(C, DC, StartLoc, IsExplicit, |
| 1514 | NameInfo, T, TInfo, EndLocation); |
| 1515 | } |
| 1516 | |
| 1517 | CXXDeductionGuideDecl *CXXDeductionGuideDecl::CreateDeserialized(ASTContext &C, |
| 1518 | unsigned ID) { |
| 1519 | return new (C, ID) CXXDeductionGuideDecl(C, nullptr, SourceLocation(), false, |
| 1520 | DeclarationNameInfo(), QualType(), |
| 1521 | nullptr, SourceLocation()); |
| 1522 | } |
| 1523 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 1524 | void CXXMethodDecl::anchor() { } |
| 1525 | |
Rafael Espindola | 6ae7e50 | 2013-04-03 19:27:57 +0000 | [diff] [blame] | 1526 | bool CXXMethodDecl::isStatic() const { |
Rafael Espindola | 29cda59 | 2013-04-15 12:38:20 +0000 | [diff] [blame] | 1527 | const CXXMethodDecl *MD = getCanonicalDecl(); |
Rafael Espindola | 6ae7e50 | 2013-04-03 19:27:57 +0000 | [diff] [blame] | 1528 | |
| 1529 | if (MD->getStorageClass() == SC_Static) |
| 1530 | return true; |
| 1531 | |
Reid Kleckner | 9a7f3e6 | 2013-10-08 00:58:57 +0000 | [diff] [blame] | 1532 | OverloadedOperatorKind OOK = getDeclName().getCXXOverloadedOperator(); |
| 1533 | return isStaticOverloadedOperator(OOK); |
Rafael Espindola | 6ae7e50 | 2013-04-03 19:27:57 +0000 | [diff] [blame] | 1534 | } |
| 1535 | |
Rafael Espindola | 49e860b | 2012-06-26 17:45:31 +0000 | [diff] [blame] | 1536 | static bool recursivelyOverrides(const CXXMethodDecl *DerivedMD, |
| 1537 | const CXXMethodDecl *BaseMD) { |
| 1538 | for (CXXMethodDecl::method_iterator I = DerivedMD->begin_overridden_methods(), |
| 1539 | E = DerivedMD->end_overridden_methods(); I != E; ++I) { |
| 1540 | const CXXMethodDecl *MD = *I; |
| 1541 | if (MD->getCanonicalDecl() == BaseMD->getCanonicalDecl()) |
| 1542 | return true; |
| 1543 | if (recursivelyOverrides(MD, BaseMD)) |
| 1544 | return true; |
| 1545 | } |
| 1546 | return false; |
| 1547 | } |
| 1548 | |
| 1549 | CXXMethodDecl * |
Jordan Rose | 5fc5da0 | 2012-08-15 20:07:17 +0000 | [diff] [blame] | 1550 | CXXMethodDecl::getCorrespondingMethodInClass(const CXXRecordDecl *RD, |
| 1551 | bool MayBeBase) { |
Rafael Espindola | 49e860b | 2012-06-26 17:45:31 +0000 | [diff] [blame] | 1552 | if (this->getParent()->getCanonicalDecl() == RD->getCanonicalDecl()) |
| 1553 | return this; |
| 1554 | |
| 1555 | // Lookup doesn't work for destructors, so handle them separately. |
| 1556 | if (isa<CXXDestructorDecl>(this)) { |
| 1557 | CXXMethodDecl *MD = RD->getDestructor(); |
Jordan Rose | 5fc5da0 | 2012-08-15 20:07:17 +0000 | [diff] [blame] | 1558 | if (MD) { |
| 1559 | if (recursivelyOverrides(MD, this)) |
| 1560 | return MD; |
| 1561 | if (MayBeBase && recursivelyOverrides(this, MD)) |
| 1562 | return MD; |
| 1563 | } |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1564 | return nullptr; |
Rafael Espindola | 49e860b | 2012-06-26 17:45:31 +0000 | [diff] [blame] | 1565 | } |
| 1566 | |
Richard Smith | 40c7806 | 2015-02-21 02:31:57 +0000 | [diff] [blame] | 1567 | for (auto *ND : RD->lookup(getDeclName())) { |
| 1568 | CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND); |
Rafael Espindola | 49e860b | 2012-06-26 17:45:31 +0000 | [diff] [blame] | 1569 | if (!MD) |
| 1570 | continue; |
| 1571 | if (recursivelyOverrides(MD, this)) |
| 1572 | return MD; |
Jordan Rose | 5fc5da0 | 2012-08-15 20:07:17 +0000 | [diff] [blame] | 1573 | if (MayBeBase && recursivelyOverrides(this, MD)) |
| 1574 | return MD; |
Rafael Espindola | 49e860b | 2012-06-26 17:45:31 +0000 | [diff] [blame] | 1575 | } |
| 1576 | |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 1577 | for (const auto &I : RD->bases()) { |
| 1578 | const RecordType *RT = I.getType()->getAs<RecordType>(); |
Rafael Espindola | 49e860b | 2012-06-26 17:45:31 +0000 | [diff] [blame] | 1579 | if (!RT) |
| 1580 | continue; |
| 1581 | const CXXRecordDecl *Base = cast<CXXRecordDecl>(RT->getDecl()); |
| 1582 | CXXMethodDecl *T = this->getCorrespondingMethodInClass(Base); |
| 1583 | if (T) |
| 1584 | return T; |
| 1585 | } |
| 1586 | |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1587 | return nullptr; |
Rafael Espindola | 49e860b | 2012-06-26 17:45:31 +0000 | [diff] [blame] | 1588 | } |
| 1589 | |
Ted Kremenek | 2147570 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 1590 | CXXMethodDecl * |
| 1591 | CXXMethodDecl::Create(ASTContext &C, CXXRecordDecl *RD, |
Abramo Bagnara | dff1930 | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1592 | SourceLocation StartLoc, |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1593 | const DeclarationNameInfo &NameInfo, |
John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1594 | QualType T, TypeSourceInfo *TInfo, |
Rafael Espindola | 6ae7e50 | 2013-04-03 19:27:57 +0000 | [diff] [blame] | 1595 | StorageClass SC, bool isInline, |
Richard Smith | a77a0a6 | 2011-08-15 21:04:07 +0000 | [diff] [blame] | 1596 | bool isConstexpr, SourceLocation EndLocation) { |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1597 | return new (C, RD) CXXMethodDecl(CXXMethod, C, RD, StartLoc, NameInfo, |
| 1598 | T, TInfo, SC, isInline, isConstexpr, |
| 1599 | EndLocation); |
Ted Kremenek | 2147570 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 1600 | } |
| 1601 | |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1602 | CXXMethodDecl *CXXMethodDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1603 | return new (C, ID) CXXMethodDecl(CXXMethod, C, nullptr, SourceLocation(), |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1604 | DeclarationNameInfo(), QualType(), nullptr, |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 1605 | SC_None, false, false, SourceLocation()); |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1606 | } |
| 1607 | |
Douglas Gregor | bb3e12f | 2009-09-29 18:16:17 +0000 | [diff] [blame] | 1608 | bool CXXMethodDecl::isUsualDeallocationFunction() const { |
| 1609 | if (getOverloadedOperator() != OO_Delete && |
| 1610 | getOverloadedOperator() != OO_Array_Delete) |
| 1611 | return false; |
Douglas Gregor | 6642ca2 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 1612 | |
| 1613 | // C++ [basic.stc.dynamic.deallocation]p2: |
| 1614 | // A template instance is never a usual deallocation function, |
| 1615 | // regardless of its signature. |
| 1616 | if (getPrimaryTemplate()) |
| 1617 | return false; |
| 1618 | |
Douglas Gregor | bb3e12f | 2009-09-29 18:16:17 +0000 | [diff] [blame] | 1619 | // C++ [basic.stc.dynamic.deallocation]p2: |
| 1620 | // If a class T has a member deallocation function named operator delete |
| 1621 | // with exactly one parameter, then that function is a usual (non-placement) |
| 1622 | // deallocation function. [...] |
| 1623 | if (getNumParams() == 1) |
| 1624 | return true; |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1625 | unsigned UsualParams = 1; |
Richard Smith | 96269c5 | 2016-09-29 22:49:46 +0000 | [diff] [blame] | 1626 | |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1627 | // C++ <=14 [basic.stc.dynamic.deallocation]p2: |
Douglas Gregor | bb3e12f | 2009-09-29 18:16:17 +0000 | [diff] [blame] | 1628 | // [...] If class T does not declare such an operator delete but does |
| 1629 | // declare a member deallocation function named operator delete with |
| 1630 | // exactly two parameters, the second of which has type std::size_t (18.1), |
| 1631 | // then this function is a usual deallocation function. |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1632 | // |
| 1633 | // C++17 says a usual deallocation function is one with the signature |
| 1634 | // (void* [, size_t] [, std::align_val_t] [, ...]) |
| 1635 | // and all such functions are usual deallocation functions. It's not clear |
| 1636 | // that allowing varargs functions was intentional. |
Douglas Gregor | bb3e12f | 2009-09-29 18:16:17 +0000 | [diff] [blame] | 1637 | ASTContext &Context = getASTContext(); |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1638 | if (UsualParams < getNumParams() && |
| 1639 | Context.hasSameUnqualifiedType(getParamDecl(UsualParams)->getType(), |
| 1640 | Context.getSizeType())) |
| 1641 | ++UsualParams; |
| 1642 | |
| 1643 | if (UsualParams < getNumParams() && |
| 1644 | getParamDecl(UsualParams)->getType()->isAlignValT()) |
| 1645 | ++UsualParams; |
| 1646 | |
| 1647 | if (UsualParams != getNumParams()) |
Douglas Gregor | bb3e12f | 2009-09-29 18:16:17 +0000 | [diff] [blame] | 1648 | return false; |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1649 | |
| 1650 | // In C++17 onwards, all potential usual deallocation functions are actual |
| 1651 | // usual deallocation functions. |
| 1652 | if (Context.getLangOpts().AlignedAllocation) |
| 1653 | return true; |
Douglas Gregor | bb3e12f | 2009-09-29 18:16:17 +0000 | [diff] [blame] | 1654 | |
| 1655 | // This function is a usual deallocation function if there are no |
| 1656 | // single-parameter deallocation functions of the same kind. |
Richard Smith | cf4bdde | 2015-02-21 02:45:19 +0000 | [diff] [blame] | 1657 | DeclContext::lookup_result R = getDeclContext()->lookup(getDeclName()); |
| 1658 | for (DeclContext::lookup_result::iterator I = R.begin(), E = R.end(); |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 1659 | I != E; ++I) { |
| 1660 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) |
Douglas Gregor | bb3e12f | 2009-09-29 18:16:17 +0000 | [diff] [blame] | 1661 | if (FD->getNumParams() == 1) |
| 1662 | return false; |
| 1663 | } |
| 1664 | |
| 1665 | return true; |
| 1666 | } |
| 1667 | |
Douglas Gregor | b139cd5 | 2010-05-01 20:49:11 +0000 | [diff] [blame] | 1668 | bool CXXMethodDecl::isCopyAssignmentOperator() const { |
Alexis Hunt | fcaeae4 | 2011-05-25 20:50:04 +0000 | [diff] [blame] | 1669 | // C++0x [class.copy]p17: |
Douglas Gregor | b139cd5 | 2010-05-01 20:49:11 +0000 | [diff] [blame] | 1670 | // A user-declared copy assignment operator X::operator= is a non-static |
| 1671 | // non-template member function of class X with exactly one parameter of |
| 1672 | // type X, X&, const X&, volatile X& or const volatile X&. |
| 1673 | if (/*operator=*/getOverloadedOperator() != OO_Equal || |
| 1674 | /*non-static*/ isStatic() || |
Eli Friedman | 84c0143e | 2013-07-11 23:55:07 +0000 | [diff] [blame] | 1675 | /*non-template*/getPrimaryTemplate() || getDescribedFunctionTemplate() || |
| 1676 | getNumParams() != 1) |
Douglas Gregor | b139cd5 | 2010-05-01 20:49:11 +0000 | [diff] [blame] | 1677 | return false; |
| 1678 | |
| 1679 | QualType ParamType = getParamDecl(0)->getType(); |
| 1680 | if (const LValueReferenceType *Ref = ParamType->getAs<LValueReferenceType>()) |
| 1681 | ParamType = Ref->getPointeeType(); |
| 1682 | |
| 1683 | ASTContext &Context = getASTContext(); |
| 1684 | QualType ClassType |
| 1685 | = Context.getCanonicalType(Context.getTypeDeclType(getParent())); |
| 1686 | return Context.hasSameUnqualifiedType(ClassType, ParamType); |
| 1687 | } |
| 1688 | |
Alexis Hunt | fcaeae4 | 2011-05-25 20:50:04 +0000 | [diff] [blame] | 1689 | bool CXXMethodDecl::isMoveAssignmentOperator() const { |
| 1690 | // C++0x [class.copy]p19: |
| 1691 | // A user-declared move assignment operator X::operator= is a non-static |
| 1692 | // non-template member function of class X with exactly one parameter of type |
| 1693 | // X&&, const X&&, volatile X&&, or const volatile X&&. |
| 1694 | if (getOverloadedOperator() != OO_Equal || isStatic() || |
Eli Friedman | 84c0143e | 2013-07-11 23:55:07 +0000 | [diff] [blame] | 1695 | getPrimaryTemplate() || getDescribedFunctionTemplate() || |
| 1696 | getNumParams() != 1) |
Alexis Hunt | fcaeae4 | 2011-05-25 20:50:04 +0000 | [diff] [blame] | 1697 | return false; |
| 1698 | |
| 1699 | QualType ParamType = getParamDecl(0)->getType(); |
| 1700 | if (!isa<RValueReferenceType>(ParamType)) |
| 1701 | return false; |
| 1702 | ParamType = ParamType->getPointeeType(); |
| 1703 | |
| 1704 | ASTContext &Context = getASTContext(); |
| 1705 | QualType ClassType |
| 1706 | = Context.getCanonicalType(Context.getTypeDeclType(getParent())); |
| 1707 | return Context.hasSameUnqualifiedType(ClassType, ParamType); |
| 1708 | } |
| 1709 | |
Anders Carlsson | 36d87e1 | 2009-05-16 23:58:37 +0000 | [diff] [blame] | 1710 | void CXXMethodDecl::addOverriddenMethod(const CXXMethodDecl *MD) { |
Anders Carlsson | f3935b4 | 2009-12-04 05:51:56 +0000 | [diff] [blame] | 1711 | assert(MD->isCanonicalDecl() && "Method is not canonical!"); |
Anders Carlsson | bd32c43 | 2010-01-30 17:42:34 +0000 | [diff] [blame] | 1712 | assert(!MD->getParent()->isDependentContext() && |
| 1713 | "Can't add an overridden method to a class template!"); |
Eli Friedman | 9135902 | 2012-03-10 01:39:01 +0000 | [diff] [blame] | 1714 | assert(MD->isVirtual() && "Method is not virtual!"); |
Anders Carlsson | bd32c43 | 2010-01-30 17:42:34 +0000 | [diff] [blame] | 1715 | |
Douglas Gregor | 832940b | 2010-03-02 23:58:15 +0000 | [diff] [blame] | 1716 | getASTContext().addOverriddenMethod(this, MD); |
Anders Carlsson | 36d87e1 | 2009-05-16 23:58:37 +0000 | [diff] [blame] | 1717 | } |
| 1718 | |
| 1719 | CXXMethodDecl::method_iterator CXXMethodDecl::begin_overridden_methods() const { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1720 | if (isa<CXXConstructorDecl>(this)) return nullptr; |
Douglas Gregor | 832940b | 2010-03-02 23:58:15 +0000 | [diff] [blame] | 1721 | return getASTContext().overridden_methods_begin(this); |
Anders Carlsson | 36d87e1 | 2009-05-16 23:58:37 +0000 | [diff] [blame] | 1722 | } |
| 1723 | |
| 1724 | CXXMethodDecl::method_iterator CXXMethodDecl::end_overridden_methods() const { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1725 | if (isa<CXXConstructorDecl>(this)) return nullptr; |
Douglas Gregor | 832940b | 2010-03-02 23:58:15 +0000 | [diff] [blame] | 1726 | return getASTContext().overridden_methods_end(this); |
Anders Carlsson | 36d87e1 | 2009-05-16 23:58:37 +0000 | [diff] [blame] | 1727 | } |
| 1728 | |
Argyrios Kyrtzidis | 6685e8a | 2010-07-04 21:44:35 +0000 | [diff] [blame] | 1729 | unsigned CXXMethodDecl::size_overridden_methods() const { |
Eli Friedman | 9135902 | 2012-03-10 01:39:01 +0000 | [diff] [blame] | 1730 | if (isa<CXXConstructorDecl>(this)) return 0; |
Argyrios Kyrtzidis | 6685e8a | 2010-07-04 21:44:35 +0000 | [diff] [blame] | 1731 | return getASTContext().overridden_methods_size(this); |
| 1732 | } |
| 1733 | |
Clement Courbet | 6ecaec8 | 2016-07-05 07:49:31 +0000 | [diff] [blame] | 1734 | CXXMethodDecl::overridden_method_range |
| 1735 | CXXMethodDecl::overridden_methods() const { |
| 1736 | if (isa<CXXConstructorDecl>(this)) |
| 1737 | return overridden_method_range(nullptr, nullptr); |
| 1738 | return getASTContext().overridden_methods(this); |
| 1739 | } |
| 1740 | |
Ted Kremenek | 2147570 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 1741 | QualType CXXMethodDecl::getThisType(ASTContext &C) const { |
Argyrios Kyrtzidis | 962c20e | 2008-10-24 22:28:18 +0000 | [diff] [blame] | 1742 | // C++ 9.3.2p1: The type of this in a member function of a class X is X*. |
| 1743 | // If the member function is declared const, the type of this is const X*, |
| 1744 | // if the member function is declared volatile, the type of this is |
| 1745 | // volatile X*, and if the member function is declared const volatile, |
| 1746 | // the type of this is const volatile X*. |
| 1747 | |
Ted Kremenek | 2147570 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 1748 | assert(isInstance() && "No 'this' for static methods!"); |
Anders Carlsson | 20ee0ed | 2009-06-13 02:59:33 +0000 | [diff] [blame] | 1749 | |
John McCall | e78aac4 | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 1750 | QualType ClassTy = C.getTypeDeclType(getParent()); |
John McCall | 8ccfcb5 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1751 | ClassTy = C.getQualifiedType(ClassTy, |
Andrey Bokhanko | 67a4186 | 2016-05-26 10:06:01 +0000 | [diff] [blame] | 1752 | Qualifiers::fromCVRUMask(getTypeQualifiers())); |
Anders Carlsson | 7ca3f6f | 2009-07-10 21:35:09 +0000 | [diff] [blame] | 1753 | return C.getPointerType(ClassTy); |
Ted Kremenek | 2147570 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 1754 | } |
| 1755 | |
Eli Friedman | 71a26d8 | 2009-12-06 20:50:05 +0000 | [diff] [blame] | 1756 | bool CXXMethodDecl::hasInlineBody() const { |
Douglas Gregor | a318efd | 2010-01-05 19:06:31 +0000 | [diff] [blame] | 1757 | // If this function is a template instantiation, look at the template from |
| 1758 | // which it was instantiated. |
| 1759 | const FunctionDecl *CheckFn = getTemplateInstantiationPattern(); |
| 1760 | if (!CheckFn) |
| 1761 | CheckFn = this; |
| 1762 | |
Eli Friedman | 71a26d8 | 2009-12-06 20:50:05 +0000 | [diff] [blame] | 1763 | const FunctionDecl *fn; |
Argyrios Kyrtzidis | 36ea322 | 2010-07-07 11:31:19 +0000 | [diff] [blame] | 1764 | return CheckFn->hasBody(fn) && !fn->isOutOfLine(); |
Eli Friedman | 71a26d8 | 2009-12-06 20:50:05 +0000 | [diff] [blame] | 1765 | } |
| 1766 | |
Douglas Gregor | 355efbb | 2012-02-17 03:02:34 +0000 | [diff] [blame] | 1767 | bool CXXMethodDecl::isLambdaStaticInvoker() const { |
Faisal Vali | 571df12 | 2013-09-29 08:45:24 +0000 | [diff] [blame] | 1768 | const CXXRecordDecl *P = getParent(); |
| 1769 | if (P->isLambda()) { |
| 1770 | if (const CXXMethodDecl *StaticInvoker = P->getLambdaStaticInvoker()) { |
| 1771 | if (StaticInvoker == this) return true; |
| 1772 | if (P->isGenericLambda() && this->isFunctionTemplateSpecialization()) |
| 1773 | return StaticInvoker == this->getPrimaryTemplate()->getTemplatedDecl(); |
| 1774 | } |
| 1775 | } |
| 1776 | return false; |
Douglas Gregor | 355efbb | 2012-02-17 03:02:34 +0000 | [diff] [blame] | 1777 | } |
| 1778 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 1779 | CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context, |
| 1780 | TypeSourceInfo *TInfo, bool IsVirtual, |
| 1781 | SourceLocation L, Expr *Init, |
| 1782 | SourceLocation R, |
| 1783 | SourceLocation EllipsisLoc) |
Alexis Hunt | a50dd46 | 2011-01-08 23:01:16 +0000 | [diff] [blame] | 1784 | : Initializee(TInfo), MemberOrEllipsisLocation(EllipsisLoc), Init(Init), |
Douglas Gregor | d73f3dd | 2011-11-01 01:16:03 +0000 | [diff] [blame] | 1785 | LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(IsVirtual), |
Richard Smith | 30e304e | 2016-12-14 00:03:17 +0000 | [diff] [blame] | 1786 | IsWritten(false), SourceOrder(0) |
Douglas Gregor | c8c44b5d | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1787 | { |
Douglas Gregor | e8381c0 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1788 | } |
| 1789 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 1790 | CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context, |
| 1791 | FieldDecl *Member, |
| 1792 | SourceLocation MemberLoc, |
| 1793 | SourceLocation L, Expr *Init, |
| 1794 | SourceLocation R) |
Alexis Hunt | a50dd46 | 2011-01-08 23:01:16 +0000 | [diff] [blame] | 1795 | : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init), |
Douglas Gregor | d73f3dd | 2011-11-01 01:16:03 +0000 | [diff] [blame] | 1796 | LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(false), |
Richard Smith | 30e304e | 2016-12-14 00:03:17 +0000 | [diff] [blame] | 1797 | IsWritten(false), SourceOrder(0) |
Francois Pichet | d583da0 | 2010-12-04 09:14:42 +0000 | [diff] [blame] | 1798 | { |
| 1799 | } |
| 1800 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 1801 | CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context, |
| 1802 | IndirectFieldDecl *Member, |
| 1803 | SourceLocation MemberLoc, |
| 1804 | SourceLocation L, Expr *Init, |
| 1805 | SourceLocation R) |
Alexis Hunt | a50dd46 | 2011-01-08 23:01:16 +0000 | [diff] [blame] | 1806 | : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init), |
Douglas Gregor | d73f3dd | 2011-11-01 01:16:03 +0000 | [diff] [blame] | 1807 | LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(false), |
Richard Smith | 30e304e | 2016-12-14 00:03:17 +0000 | [diff] [blame] | 1808 | IsWritten(false), SourceOrder(0) |
Douglas Gregor | c8c44b5d | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1809 | { |
Douglas Gregor | e8381c0 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1810 | } |
| 1811 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 1812 | CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context, |
Douglas Gregor | d73f3dd | 2011-11-01 01:16:03 +0000 | [diff] [blame] | 1813 | TypeSourceInfo *TInfo, |
| 1814 | SourceLocation L, Expr *Init, |
Alexis Hunt | c5575cc | 2011-02-26 19:13:13 +0000 | [diff] [blame] | 1815 | SourceLocation R) |
Douglas Gregor | d73f3dd | 2011-11-01 01:16:03 +0000 | [diff] [blame] | 1816 | : Initializee(TInfo), MemberOrEllipsisLocation(), Init(Init), |
| 1817 | LParenLoc(L), RParenLoc(R), IsDelegating(true), IsVirtual(false), |
Richard Smith | 30e304e | 2016-12-14 00:03:17 +0000 | [diff] [blame] | 1818 | IsWritten(false), SourceOrder(0) |
Alexis Hunt | c5575cc | 2011-02-26 19:13:13 +0000 | [diff] [blame] | 1819 | { |
| 1820 | } |
| 1821 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 1822 | TypeLoc CXXCtorInitializer::getBaseClassLoc() const { |
Douglas Gregor | c8c44b5d | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1823 | if (isBaseInitializer()) |
Alexis Hunt | a50dd46 | 2011-01-08 23:01:16 +0000 | [diff] [blame] | 1824 | return Initializee.get<TypeSourceInfo*>()->getTypeLoc(); |
Douglas Gregor | c8c44b5d | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1825 | else |
| 1826 | return TypeLoc(); |
| 1827 | } |
| 1828 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 1829 | const Type *CXXCtorInitializer::getBaseClass() const { |
Douglas Gregor | c8c44b5d | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1830 | if (isBaseInitializer()) |
Alexis Hunt | a50dd46 | 2011-01-08 23:01:16 +0000 | [diff] [blame] | 1831 | return Initializee.get<TypeSourceInfo*>()->getType().getTypePtr(); |
Douglas Gregor | c8c44b5d | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1832 | else |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1833 | return nullptr; |
Douglas Gregor | c8c44b5d | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1834 | } |
| 1835 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 1836 | SourceLocation CXXCtorInitializer::getSourceLocation() const { |
Richard Smith | 938f40b | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1837 | if (isInClassMemberInitializer()) |
| 1838 | return getAnyMember()->getLocation(); |
Douglas Gregor | c8c44b5d | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1839 | |
David Blaikie | a81d410 | 2015-01-18 00:12:58 +0000 | [diff] [blame] | 1840 | if (isAnyMemberInitializer()) |
| 1841 | return getMemberLocation(); |
| 1842 | |
Douglas Gregor | d73f3dd | 2011-11-01 01:16:03 +0000 | [diff] [blame] | 1843 | if (TypeSourceInfo *TSInfo = Initializee.get<TypeSourceInfo*>()) |
| 1844 | return TSInfo->getTypeLoc().getLocalSourceRange().getBegin(); |
| 1845 | |
| 1846 | return SourceLocation(); |
Douglas Gregor | c8c44b5d | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1847 | } |
| 1848 | |
Alexis Hunt | 1d79265 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 1849 | SourceRange CXXCtorInitializer::getSourceRange() const { |
Richard Smith | 938f40b | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 1850 | if (isInClassMemberInitializer()) { |
| 1851 | FieldDecl *D = getAnyMember(); |
| 1852 | if (Expr *I = D->getInClassInitializer()) |
| 1853 | return I->getSourceRange(); |
| 1854 | return SourceRange(); |
| 1855 | } |
| 1856 | |
Douglas Gregor | c8c44b5d | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1857 | return SourceRange(getSourceLocation(), getRParenLoc()); |
Douglas Gregor | e8381c0 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1858 | } |
| 1859 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 1860 | void CXXConstructorDecl::anchor() { } |
| 1861 | |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 1862 | CXXConstructorDecl *CXXConstructorDecl::CreateDeserialized(ASTContext &C, |
| 1863 | unsigned ID, |
| 1864 | bool Inherited) { |
| 1865 | unsigned Extra = additionalSizeToAlloc<InheritedConstructor>(Inherited); |
| 1866 | auto *Result = new (C, ID, Extra) CXXConstructorDecl( |
| 1867 | C, nullptr, SourceLocation(), DeclarationNameInfo(), QualType(), nullptr, |
| 1868 | false, false, false, false, InheritedConstructor()); |
| 1869 | Result->IsInheritingConstructor = Inherited; |
| 1870 | return Result; |
Chris Lattner | ca025db | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1871 | } |
| 1872 | |
| 1873 | CXXConstructorDecl * |
Douglas Gregor | 61956c4 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 1874 | CXXConstructorDecl::Create(ASTContext &C, CXXRecordDecl *RD, |
Abramo Bagnara | dff1930 | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1875 | SourceLocation StartLoc, |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1876 | const DeclarationNameInfo &NameInfo, |
John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1877 | QualType T, TypeSourceInfo *TInfo, |
Richard Smith | a77a0a6 | 2011-08-15 21:04:07 +0000 | [diff] [blame] | 1878 | bool isExplicit, bool isInline, |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 1879 | bool isImplicitlyDeclared, bool isConstexpr, |
| 1880 | InheritedConstructor Inherited) { |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1881 | assert(NameInfo.getName().getNameKind() |
| 1882 | == DeclarationName::CXXConstructorName && |
Douglas Gregor | 77324f3 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 1883 | "Name must refer to a constructor"); |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 1884 | unsigned Extra = |
| 1885 | additionalSizeToAlloc<InheritedConstructor>(Inherited ? 1 : 0); |
| 1886 | return new (C, RD, Extra) CXXConstructorDecl( |
| 1887 | C, RD, StartLoc, NameInfo, T, TInfo, isExplicit, isInline, |
| 1888 | isImplicitlyDeclared, isConstexpr, Inherited); |
Douglas Gregor | 61956c4 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 1889 | } |
| 1890 | |
Richard Smith | c2bb818 | 2015-03-24 06:36:48 +0000 | [diff] [blame] | 1891 | CXXConstructorDecl::init_const_iterator CXXConstructorDecl::init_begin() const { |
| 1892 | return CtorInitializers.get(getASTContext().getExternalSource()); |
| 1893 | } |
| 1894 | |
Douglas Gregor | d73f3dd | 2011-11-01 01:16:03 +0000 | [diff] [blame] | 1895 | CXXConstructorDecl *CXXConstructorDecl::getTargetConstructor() const { |
| 1896 | assert(isDelegatingConstructor() && "Not a delegating constructor!"); |
| 1897 | Expr *E = (*init_begin())->getInit()->IgnoreImplicit(); |
| 1898 | if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(E)) |
| 1899 | return Construct->getConstructor(); |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1900 | |
| 1901 | return nullptr; |
Douglas Gregor | d73f3dd | 2011-11-01 01:16:03 +0000 | [diff] [blame] | 1902 | } |
| 1903 | |
Douglas Gregor | eebb5c1 | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 1904 | bool CXXConstructorDecl::isDefaultConstructor() const { |
| 1905 | // C++ [class.ctor]p5: |
Douglas Gregor | cfd8ddc | 2008-11-05 16:20:31 +0000 | [diff] [blame] | 1906 | // A default constructor for a class X is a constructor of class |
| 1907 | // X that can be called without an argument. |
Douglas Gregor | eebb5c1 | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 1908 | return (getNumParams() == 0) || |
Anders Carlsson | 6eb5557 | 2009-08-25 05:12:04 +0000 | [diff] [blame] | 1909 | (getNumParams() > 0 && getParamDecl(0)->hasDefaultArg()); |
Douglas Gregor | eebb5c1 | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 1910 | } |
| 1911 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1912 | bool |
Douglas Gregor | 507eb87 | 2009-12-22 00:34:07 +0000 | [diff] [blame] | 1913 | CXXConstructorDecl::isCopyConstructor(unsigned &TypeQuals) const { |
Douglas Gregor | f282a76 | 2011-01-21 19:38:21 +0000 | [diff] [blame] | 1914 | return isCopyOrMoveConstructor(TypeQuals) && |
| 1915 | getParamDecl(0)->getType()->isLValueReferenceType(); |
| 1916 | } |
| 1917 | |
| 1918 | bool CXXConstructorDecl::isMoveConstructor(unsigned &TypeQuals) const { |
| 1919 | return isCopyOrMoveConstructor(TypeQuals) && |
| 1920 | getParamDecl(0)->getType()->isRValueReferenceType(); |
| 1921 | } |
| 1922 | |
| 1923 | /// \brief Determine whether this is a copy or move constructor. |
| 1924 | bool CXXConstructorDecl::isCopyOrMoveConstructor(unsigned &TypeQuals) const { |
Douglas Gregor | eebb5c1 | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 1925 | // C++ [class.copy]p2: |
Douglas Gregor | cfd8ddc | 2008-11-05 16:20:31 +0000 | [diff] [blame] | 1926 | // A non-template constructor for class X is a copy constructor |
| 1927 | // if its first parameter is of type X&, const X&, volatile X& or |
| 1928 | // const volatile X&, and either there are no other parameters |
| 1929 | // or else all other parameters have default arguments (8.3.6). |
Douglas Gregor | f282a76 | 2011-01-21 19:38:21 +0000 | [diff] [blame] | 1930 | // C++0x [class.copy]p3: |
| 1931 | // A non-template constructor for class X is a move constructor if its |
| 1932 | // first parameter is of type X&&, const X&&, volatile X&&, or |
| 1933 | // const volatile X&&, and either there are no other parameters or else |
| 1934 | // all other parameters have default arguments. |
Douglas Gregor | eebb5c1 | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 1935 | if ((getNumParams() < 1) || |
Douglas Gregor | a14b43b | 2009-10-13 23:45:19 +0000 | [diff] [blame] | 1936 | (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()) || |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1937 | (getPrimaryTemplate() != nullptr) || |
| 1938 | (getDescribedFunctionTemplate() != nullptr)) |
Douglas Gregor | eebb5c1 | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 1939 | return false; |
Douglas Gregor | f282a76 | 2011-01-21 19:38:21 +0000 | [diff] [blame] | 1940 | |
Douglas Gregor | eebb5c1 | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 1941 | const ParmVarDecl *Param = getParamDecl(0); |
Douglas Gregor | f282a76 | 2011-01-21 19:38:21 +0000 | [diff] [blame] | 1942 | |
| 1943 | // Do we have a reference type? |
| 1944 | const ReferenceType *ParamRefType = Param->getType()->getAs<ReferenceType>(); |
Douglas Gregor | ff7028a | 2009-11-13 23:59:09 +0000 | [diff] [blame] | 1945 | if (!ParamRefType) |
| 1946 | return false; |
Douglas Gregor | f282a76 | 2011-01-21 19:38:21 +0000 | [diff] [blame] | 1947 | |
Douglas Gregor | ff7028a | 2009-11-13 23:59:09 +0000 | [diff] [blame] | 1948 | // Is it a reference to our class type? |
Douglas Gregor | 507eb87 | 2009-12-22 00:34:07 +0000 | [diff] [blame] | 1949 | ASTContext &Context = getASTContext(); |
| 1950 | |
Douglas Gregor | ff7028a | 2009-11-13 23:59:09 +0000 | [diff] [blame] | 1951 | CanQualType PointeeType |
| 1952 | = Context.getCanonicalType(ParamRefType->getPointeeType()); |
Douglas Gregor | f70b2b4 | 2009-09-15 20:50:23 +0000 | [diff] [blame] | 1953 | CanQualType ClassTy |
| 1954 | = Context.getCanonicalType(Context.getTagDeclType(getParent())); |
Douglas Gregor | eebb5c1 | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 1955 | if (PointeeType.getUnqualifiedType() != ClassTy) |
| 1956 | return false; |
Douglas Gregor | f282a76 | 2011-01-21 19:38:21 +0000 | [diff] [blame] | 1957 | |
John McCall | 8ccfcb5 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1958 | // FIXME: other qualifiers? |
Douglas Gregor | f282a76 | 2011-01-21 19:38:21 +0000 | [diff] [blame] | 1959 | |
| 1960 | // We have a copy or move constructor. |
Douglas Gregor | eebb5c1 | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 1961 | TypeQuals = PointeeType.getCVRQualifiers(); |
Douglas Gregor | f282a76 | 2011-01-21 19:38:21 +0000 | [diff] [blame] | 1962 | return true; |
Douglas Gregor | eebb5c1 | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 1963 | } |
| 1964 | |
Anders Carlsson | d20e795 | 2009-08-28 16:57:08 +0000 | [diff] [blame] | 1965 | bool CXXConstructorDecl::isConvertingConstructor(bool AllowExplicit) const { |
Douglas Gregor | 26bee0b | 2008-10-31 16:23:19 +0000 | [diff] [blame] | 1966 | // C++ [class.conv.ctor]p1: |
| 1967 | // A constructor declared without the function-specifier explicit |
| 1968 | // that can be called with a single parameter specifies a |
| 1969 | // conversion from the type of its first parameter to the type of |
| 1970 | // its class. Such a constructor is called a converting |
| 1971 | // constructor. |
Anders Carlsson | d20e795 | 2009-08-28 16:57:08 +0000 | [diff] [blame] | 1972 | if (isExplicit() && !AllowExplicit) |
Douglas Gregor | 26bee0b | 2008-10-31 16:23:19 +0000 | [diff] [blame] | 1973 | return false; |
| 1974 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1975 | return (getNumParams() == 0 && |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1976 | getType()->getAs<FunctionProtoType>()->isVariadic()) || |
Douglas Gregor | 26bee0b | 2008-10-31 16:23:19 +0000 | [diff] [blame] | 1977 | (getNumParams() == 1) || |
Douglas Gregor | c65e159 | 2012-06-05 23:44:51 +0000 | [diff] [blame] | 1978 | (getNumParams() > 1 && |
| 1979 | (getParamDecl(1)->hasDefaultArg() || |
| 1980 | getParamDecl(1)->isParameterPack())); |
Douglas Gregor | 26bee0b | 2008-10-31 16:23:19 +0000 | [diff] [blame] | 1981 | } |
Douglas Gregor | 61956c4 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 1982 | |
Douglas Gregor | bd6b17f | 2010-11-08 17:16:59 +0000 | [diff] [blame] | 1983 | bool CXXConstructorDecl::isSpecializationCopyingObject() const { |
Douglas Gregor | ffe14e3 | 2009-11-14 01:20:54 +0000 | [diff] [blame] | 1984 | if ((getNumParams() < 1) || |
| 1985 | (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()) || |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1986 | (getDescribedFunctionTemplate() != nullptr)) |
Douglas Gregor | ffe14e3 | 2009-11-14 01:20:54 +0000 | [diff] [blame] | 1987 | return false; |
| 1988 | |
| 1989 | const ParmVarDecl *Param = getParamDecl(0); |
| 1990 | |
| 1991 | ASTContext &Context = getASTContext(); |
| 1992 | CanQualType ParamType = Context.getCanonicalType(Param->getType()); |
| 1993 | |
Douglas Gregor | ffe14e3 | 2009-11-14 01:20:54 +0000 | [diff] [blame] | 1994 | // Is it the same as our our class type? |
| 1995 | CanQualType ClassTy |
| 1996 | = Context.getCanonicalType(Context.getTagDeclType(getParent())); |
| 1997 | if (ParamType.getUnqualifiedType() != ClassTy) |
| 1998 | return false; |
| 1999 | |
| 2000 | return true; |
| 2001 | } |
| 2002 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2003 | void CXXDestructorDecl::anchor() { } |
| 2004 | |
Douglas Gregor | 831c93f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2005 | CXXDestructorDecl * |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2006 | CXXDestructorDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 2007 | return new (C, ID) |
| 2008 | CXXDestructorDecl(C, nullptr, SourceLocation(), DeclarationNameInfo(), |
| 2009 | QualType(), nullptr, false, false); |
Chris Lattner | ca025db | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 2010 | } |
| 2011 | |
| 2012 | CXXDestructorDecl * |
Douglas Gregor | 831c93f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2013 | CXXDestructorDecl::Create(ASTContext &C, CXXRecordDecl *RD, |
Abramo Bagnara | dff1930 | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2014 | SourceLocation StartLoc, |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2015 | const DeclarationNameInfo &NameInfo, |
Craig Silverstein | af8808d | 2010-10-21 00:44:50 +0000 | [diff] [blame] | 2016 | QualType T, TypeSourceInfo *TInfo, |
Richard Smith | a77a0a6 | 2011-08-15 21:04:07 +0000 | [diff] [blame] | 2017 | bool isInline, bool isImplicitlyDeclared) { |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2018 | assert(NameInfo.getName().getNameKind() |
| 2019 | == DeclarationName::CXXDestructorName && |
Douglas Gregor | 77324f3 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 2020 | "Name must refer to a destructor"); |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 2021 | return new (C, RD) CXXDestructorDecl(C, RD, StartLoc, NameInfo, T, TInfo, |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2022 | isInline, isImplicitlyDeclared); |
Douglas Gregor | 831c93f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2023 | } |
| 2024 | |
Richard Smith | f813400 | 2015-03-10 01:41:22 +0000 | [diff] [blame] | 2025 | void CXXDestructorDecl::setOperatorDelete(FunctionDecl *OD) { |
| 2026 | auto *First = cast<CXXDestructorDecl>(getFirstDecl()); |
| 2027 | if (OD && !First->OperatorDelete) { |
| 2028 | First->OperatorDelete = OD; |
| 2029 | if (auto *L = getASTMutationListener()) |
| 2030 | L->ResolvedOperatorDelete(First, OD); |
| 2031 | } |
| 2032 | } |
| 2033 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2034 | void CXXConversionDecl::anchor() { } |
| 2035 | |
Douglas Gregor | dbc5daf | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2036 | CXXConversionDecl * |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2037 | CXXConversionDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 2038 | return new (C, ID) CXXConversionDecl(C, nullptr, SourceLocation(), |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2039 | DeclarationNameInfo(), QualType(), |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2040 | nullptr, false, false, false, |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2041 | SourceLocation()); |
Chris Lattner | ca025db | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 2042 | } |
| 2043 | |
| 2044 | CXXConversionDecl * |
Douglas Gregor | dbc5daf | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2045 | CXXConversionDecl::Create(ASTContext &C, CXXRecordDecl *RD, |
Abramo Bagnara | dff1930 | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2046 | SourceLocation StartLoc, |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2047 | const DeclarationNameInfo &NameInfo, |
John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2048 | QualType T, TypeSourceInfo *TInfo, |
Douglas Gregor | f2f0806 | 2011-03-08 17:10:18 +0000 | [diff] [blame] | 2049 | bool isInline, bool isExplicit, |
Richard Smith | a77a0a6 | 2011-08-15 21:04:07 +0000 | [diff] [blame] | 2050 | bool isConstexpr, SourceLocation EndLocation) { |
Abramo Bagnara | d6d2f18 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2051 | assert(NameInfo.getName().getNameKind() |
| 2052 | == DeclarationName::CXXConversionFunctionName && |
Douglas Gregor | 77324f3 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 2053 | "Name must refer to a conversion function"); |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 2054 | return new (C, RD) CXXConversionDecl(C, RD, StartLoc, NameInfo, T, TInfo, |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2055 | isInline, isExplicit, isConstexpr, |
| 2056 | EndLocation); |
Douglas Gregor | dbc5daf | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2057 | } |
| 2058 | |
Douglas Gregor | d3b672c | 2012-02-16 01:06:16 +0000 | [diff] [blame] | 2059 | bool CXXConversionDecl::isLambdaToBlockPointerConversion() const { |
| 2060 | return isImplicit() && getParent()->isLambda() && |
| 2061 | getConversionType()->isBlockPointerType(); |
| 2062 | } |
| 2063 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2064 | void LinkageSpecDecl::anchor() { } |
| 2065 | |
Chris Lattner | b8c18fa | 2008-11-04 16:51:42 +0000 | [diff] [blame] | 2066 | LinkageSpecDecl *LinkageSpecDecl::Create(ASTContext &C, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2067 | DeclContext *DC, |
Abramo Bagnara | ea94788 | 2011-03-08 16:41:52 +0000 | [diff] [blame] | 2068 | SourceLocation ExternLoc, |
| 2069 | SourceLocation LangLoc, |
Abramo Bagnara | 4a8cda8 | 2011-03-03 14:52:38 +0000 | [diff] [blame] | 2070 | LanguageIDs Lang, |
Rafael Espindola | 327be3c | 2013-04-26 01:30:23 +0000 | [diff] [blame] | 2071 | bool HasBraces) { |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2072 | return new (C, DC) LinkageSpecDecl(DC, ExternLoc, LangLoc, Lang, HasBraces); |
Douglas Gregor | 29ff7d0 | 2008-12-16 22:23:02 +0000 | [diff] [blame] | 2073 | } |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2074 | |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2075 | LinkageSpecDecl *LinkageSpecDecl::CreateDeserialized(ASTContext &C, |
| 2076 | unsigned ID) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2077 | return new (C, ID) LinkageSpecDecl(nullptr, SourceLocation(), |
| 2078 | SourceLocation(), lang_c, false); |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2079 | } |
| 2080 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2081 | void UsingDirectiveDecl::anchor() { } |
| 2082 | |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2083 | UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC, |
| 2084 | SourceLocation L, |
| 2085 | SourceLocation NamespaceLoc, |
Douglas Gregor | 12441b3 | 2011-02-25 16:33:46 +0000 | [diff] [blame] | 2086 | NestedNameSpecifierLoc QualifierLoc, |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2087 | SourceLocation IdentLoc, |
Sebastian Redl | a6602e9 | 2009-11-23 15:34:23 +0000 | [diff] [blame] | 2088 | NamedDecl *Used, |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2089 | DeclContext *CommonAncestor) { |
Sebastian Redl | a6602e9 | 2009-11-23 15:34:23 +0000 | [diff] [blame] | 2090 | if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Used)) |
| 2091 | Used = NS->getOriginalNamespace(); |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2092 | return new (C, DC) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc, |
| 2093 | IdentLoc, Used, CommonAncestor); |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2094 | } |
| 2095 | |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2096 | UsingDirectiveDecl *UsingDirectiveDecl::CreateDeserialized(ASTContext &C, |
| 2097 | unsigned ID) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2098 | return new (C, ID) UsingDirectiveDecl(nullptr, SourceLocation(), |
| 2099 | SourceLocation(), |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2100 | NestedNameSpecifierLoc(), |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2101 | SourceLocation(), nullptr, nullptr); |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2102 | } |
| 2103 | |
Sebastian Redl | a6602e9 | 2009-11-23 15:34:23 +0000 | [diff] [blame] | 2104 | NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() { |
| 2105 | if (NamespaceAliasDecl *NA = |
| 2106 | dyn_cast_or_null<NamespaceAliasDecl>(NominatedNamespace)) |
| 2107 | return NA->getNamespace(); |
| 2108 | return cast_or_null<NamespaceDecl>(NominatedNamespace); |
| 2109 | } |
| 2110 | |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 2111 | NamespaceDecl::NamespaceDecl(ASTContext &C, DeclContext *DC, bool Inline, |
| 2112 | SourceLocation StartLoc, SourceLocation IdLoc, |
| 2113 | IdentifierInfo *Id, NamespaceDecl *PrevDecl) |
| 2114 | : NamedDecl(Namespace, DC, IdLoc, Id), DeclContext(Namespace), |
| 2115 | redeclarable_base(C), LocStart(StartLoc), RBraceLoc(), |
| 2116 | AnonOrFirstNamespaceAndInline(nullptr, Inline) { |
Rafael Espindola | 8db352d | 2013-10-17 15:37:26 +0000 | [diff] [blame] | 2117 | setPreviousDecl(PrevDecl); |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 2118 | |
Douglas Gregor | e57e752 | 2012-01-07 09:11:48 +0000 | [diff] [blame] | 2119 | if (PrevDecl) |
| 2120 | AnonOrFirstNamespaceAndInline.setPointer(PrevDecl->getOriginalNamespace()); |
| 2121 | } |
| 2122 | |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2123 | NamespaceDecl *NamespaceDecl::Create(ASTContext &C, DeclContext *DC, |
Douglas Gregor | e57e752 | 2012-01-07 09:11:48 +0000 | [diff] [blame] | 2124 | bool Inline, SourceLocation StartLoc, |
| 2125 | SourceLocation IdLoc, IdentifierInfo *Id, |
| 2126 | NamespaceDecl *PrevDecl) { |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 2127 | return new (C, DC) NamespaceDecl(C, DC, Inline, StartLoc, IdLoc, Id, |
| 2128 | PrevDecl); |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2129 | } |
| 2130 | |
| 2131 | NamespaceDecl *NamespaceDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 2132 | return new (C, ID) NamespaceDecl(C, nullptr, false, SourceLocation(), |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2133 | SourceLocation(), nullptr, nullptr); |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2134 | } |
| 2135 | |
Chandler Carruth | 21c9060 | 2015-12-30 03:24:14 +0000 | [diff] [blame] | 2136 | NamespaceDecl *NamespaceDecl::getOriginalNamespace() { |
| 2137 | if (isFirstDecl()) |
| 2138 | return this; |
| 2139 | |
| 2140 | return AnonOrFirstNamespaceAndInline.getPointer(); |
| 2141 | } |
| 2142 | |
| 2143 | const NamespaceDecl *NamespaceDecl::getOriginalNamespace() const { |
| 2144 | if (isFirstDecl()) |
| 2145 | return this; |
| 2146 | |
| 2147 | return AnonOrFirstNamespaceAndInline.getPointer(); |
| 2148 | } |
| 2149 | |
| 2150 | bool NamespaceDecl::isOriginalNamespace() const { return isFirstDecl(); } |
| 2151 | |
Richard Smith | d7af8a3 | 2014-05-10 01:17:36 +0000 | [diff] [blame] | 2152 | NamespaceDecl *NamespaceDecl::getNextRedeclarationImpl() { |
| 2153 | return getNextRedeclaration(); |
Rafael Espindola | 8ef7f68 | 2013-11-26 15:12:20 +0000 | [diff] [blame] | 2154 | } |
| 2155 | NamespaceDecl *NamespaceDecl::getPreviousDeclImpl() { |
| 2156 | return getPreviousDecl(); |
| 2157 | } |
| 2158 | NamespaceDecl *NamespaceDecl::getMostRecentDeclImpl() { |
| 2159 | return getMostRecentDecl(); |
| 2160 | } |
| 2161 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2162 | void NamespaceAliasDecl::anchor() { } |
| 2163 | |
Richard Smith | f463436 | 2014-09-03 23:11:22 +0000 | [diff] [blame] | 2164 | NamespaceAliasDecl *NamespaceAliasDecl::getNextRedeclarationImpl() { |
| 2165 | return getNextRedeclaration(); |
| 2166 | } |
| 2167 | NamespaceAliasDecl *NamespaceAliasDecl::getPreviousDeclImpl() { |
| 2168 | return getPreviousDecl(); |
| 2169 | } |
| 2170 | NamespaceAliasDecl *NamespaceAliasDecl::getMostRecentDeclImpl() { |
| 2171 | return getMostRecentDecl(); |
| 2172 | } |
| 2173 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2174 | NamespaceAliasDecl *NamespaceAliasDecl::Create(ASTContext &C, DeclContext *DC, |
Douglas Gregor | 01a43013 | 2010-09-01 03:07:18 +0000 | [diff] [blame] | 2175 | SourceLocation UsingLoc, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2176 | SourceLocation AliasLoc, |
| 2177 | IdentifierInfo *Alias, |
Douglas Gregor | c05ba2e | 2011-02-25 17:08:07 +0000 | [diff] [blame] | 2178 | NestedNameSpecifierLoc QualifierLoc, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2179 | SourceLocation IdentLoc, |
Anders Carlsson | ff25fdf | 2009-03-28 22:58:02 +0000 | [diff] [blame] | 2180 | NamedDecl *Namespace) { |
Richard Smith | f463436 | 2014-09-03 23:11:22 +0000 | [diff] [blame] | 2181 | // FIXME: Preserve the aliased namespace as written. |
Sebastian Redl | a6602e9 | 2009-11-23 15:34:23 +0000 | [diff] [blame] | 2182 | if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Namespace)) |
| 2183 | Namespace = NS->getOriginalNamespace(); |
Richard Smith | f463436 | 2014-09-03 23:11:22 +0000 | [diff] [blame] | 2184 | return new (C, DC) NamespaceAliasDecl(C, DC, UsingLoc, AliasLoc, Alias, |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2185 | QualifierLoc, IdentLoc, Namespace); |
Anders Carlsson | ff25fdf | 2009-03-28 22:58:02 +0000 | [diff] [blame] | 2186 | } |
| 2187 | |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2188 | NamespaceAliasDecl * |
| 2189 | NamespaceAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
Richard Smith | f463436 | 2014-09-03 23:11:22 +0000 | [diff] [blame] | 2190 | return new (C, ID) NamespaceAliasDecl(C, nullptr, SourceLocation(), |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2191 | SourceLocation(), nullptr, |
| 2192 | NestedNameSpecifierLoc(), |
| 2193 | SourceLocation(), nullptr); |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2194 | } |
| 2195 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2196 | void UsingShadowDecl::anchor() { } |
| 2197 | |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 2198 | UsingShadowDecl::UsingShadowDecl(Kind K, ASTContext &C, DeclContext *DC, |
| 2199 | SourceLocation Loc, UsingDecl *Using, |
| 2200 | NamedDecl *Target) |
| 2201 | : NamedDecl(K, DC, Loc, Using ? Using->getDeclName() : DeclarationName()), |
| 2202 | redeclarable_base(C), Underlying(Target), |
| 2203 | UsingOrNextShadow(cast<NamedDecl>(Using)) { |
| 2204 | if (Target) |
| 2205 | IdentifierNamespace = Target->getIdentifierNamespace(); |
| 2206 | setImplicit(); |
| 2207 | } |
| 2208 | |
| 2209 | UsingShadowDecl::UsingShadowDecl(Kind K, ASTContext &C, EmptyShell Empty) |
| 2210 | : NamedDecl(K, nullptr, SourceLocation(), DeclarationName()), |
| 2211 | redeclarable_base(C), Underlying(), UsingOrNextShadow() {} |
| 2212 | |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2213 | UsingShadowDecl * |
| 2214 | UsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 2215 | return new (C, ID) UsingShadowDecl(UsingShadow, C, EmptyShell()); |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2216 | } |
| 2217 | |
Argyrios Kyrtzidis | 2703beb | 2010-11-10 05:40:41 +0000 | [diff] [blame] | 2218 | UsingDecl *UsingShadowDecl::getUsingDecl() const { |
| 2219 | const UsingShadowDecl *Shadow = this; |
| 2220 | while (const UsingShadowDecl *NextShadow = |
| 2221 | dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow)) |
| 2222 | Shadow = NextShadow; |
| 2223 | return cast<UsingDecl>(Shadow->UsingOrNextShadow); |
| 2224 | } |
| 2225 | |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 2226 | void ConstructorUsingShadowDecl::anchor() { } |
| 2227 | |
| 2228 | ConstructorUsingShadowDecl * |
| 2229 | ConstructorUsingShadowDecl::Create(ASTContext &C, DeclContext *DC, |
| 2230 | SourceLocation Loc, UsingDecl *Using, |
| 2231 | NamedDecl *Target, bool IsVirtual) { |
| 2232 | return new (C, DC) ConstructorUsingShadowDecl(C, DC, Loc, Using, Target, |
| 2233 | IsVirtual); |
| 2234 | } |
| 2235 | |
| 2236 | ConstructorUsingShadowDecl * |
| 2237 | ConstructorUsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
| 2238 | return new (C, ID) ConstructorUsingShadowDecl(C, EmptyShell()); |
| 2239 | } |
| 2240 | |
| 2241 | CXXRecordDecl *ConstructorUsingShadowDecl::getNominatedBaseClass() const { |
| 2242 | return getUsingDecl()->getQualifier()->getAsRecordDecl(); |
| 2243 | } |
| 2244 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2245 | void UsingDecl::anchor() { } |
| 2246 | |
Argyrios Kyrtzidis | 2703beb | 2010-11-10 05:40:41 +0000 | [diff] [blame] | 2247 | void UsingDecl::addShadowDecl(UsingShadowDecl *S) { |
| 2248 | assert(std::find(shadow_begin(), shadow_end(), S) == shadow_end() && |
| 2249 | "declaration already in set"); |
| 2250 | assert(S->getUsingDecl() == this); |
| 2251 | |
Benjamin Kramer | e78f8ee | 2012-01-07 19:09:05 +0000 | [diff] [blame] | 2252 | if (FirstUsingShadow.getPointer()) |
| 2253 | S->UsingOrNextShadow = FirstUsingShadow.getPointer(); |
| 2254 | FirstUsingShadow.setPointer(S); |
Argyrios Kyrtzidis | 2703beb | 2010-11-10 05:40:41 +0000 | [diff] [blame] | 2255 | } |
| 2256 | |
| 2257 | void UsingDecl::removeShadowDecl(UsingShadowDecl *S) { |
| 2258 | assert(std::find(shadow_begin(), shadow_end(), S) != shadow_end() && |
| 2259 | "declaration not in set"); |
| 2260 | assert(S->getUsingDecl() == this); |
| 2261 | |
| 2262 | // Remove S from the shadow decl chain. This is O(n) but hopefully rare. |
| 2263 | |
Benjamin Kramer | e78f8ee | 2012-01-07 19:09:05 +0000 | [diff] [blame] | 2264 | if (FirstUsingShadow.getPointer() == S) { |
| 2265 | FirstUsingShadow.setPointer( |
| 2266 | dyn_cast<UsingShadowDecl>(S->UsingOrNextShadow)); |
Argyrios Kyrtzidis | 2703beb | 2010-11-10 05:40:41 +0000 | [diff] [blame] | 2267 | S->UsingOrNextShadow = this; |
| 2268 | return; |
| 2269 | } |
| 2270 | |
Benjamin Kramer | e78f8ee | 2012-01-07 19:09:05 +0000 | [diff] [blame] | 2271 | UsingShadowDecl *Prev = FirstUsingShadow.getPointer(); |
Argyrios Kyrtzidis | 2703beb | 2010-11-10 05:40:41 +0000 | [diff] [blame] | 2272 | while (Prev->UsingOrNextShadow != S) |
| 2273 | Prev = cast<UsingShadowDecl>(Prev->UsingOrNextShadow); |
| 2274 | Prev->UsingOrNextShadow = S->UsingOrNextShadow; |
| 2275 | S->UsingOrNextShadow = this; |
| 2276 | } |
| 2277 | |
Douglas Gregor | a9d87bc | 2011-02-25 00:36:19 +0000 | [diff] [blame] | 2278 | UsingDecl *UsingDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation UL, |
| 2279 | NestedNameSpecifierLoc QualifierLoc, |
Abramo Bagnara | 8de74e9 | 2010-08-12 11:46:03 +0000 | [diff] [blame] | 2280 | const DeclarationNameInfo &NameInfo, |
Enea Zaffanella | e05a3cf | 2013-07-22 10:54:09 +0000 | [diff] [blame] | 2281 | bool HasTypename) { |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2282 | return new (C, DC) UsingDecl(DC, UL, QualifierLoc, NameInfo, HasTypename); |
Douglas Gregor | fec5263 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 2283 | } |
| 2284 | |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2285 | UsingDecl *UsingDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2286 | return new (C, ID) UsingDecl(nullptr, SourceLocation(), |
| 2287 | NestedNameSpecifierLoc(), DeclarationNameInfo(), |
| 2288 | false); |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2289 | } |
| 2290 | |
Enea Zaffanella | c70b251 | 2013-07-17 17:28:56 +0000 | [diff] [blame] | 2291 | SourceRange UsingDecl::getSourceRange() const { |
| 2292 | SourceLocation Begin = isAccessDeclaration() |
| 2293 | ? getQualifierLoc().getBeginLoc() : UsingLocation; |
| 2294 | return SourceRange(Begin, getNameInfo().getEndLoc()); |
| 2295 | } |
| 2296 | |
Richard Smith | 151c456 | 2016-12-20 21:35:28 +0000 | [diff] [blame] | 2297 | void UsingPackDecl::anchor() { } |
| 2298 | |
| 2299 | UsingPackDecl *UsingPackDecl::Create(ASTContext &C, DeclContext *DC, |
| 2300 | NamedDecl *InstantiatedFrom, |
| 2301 | ArrayRef<NamedDecl *> UsingDecls) { |
| 2302 | size_t Extra = additionalSizeToAlloc<NamedDecl *>(UsingDecls.size()); |
| 2303 | return new (C, DC, Extra) UsingPackDecl(DC, InstantiatedFrom, UsingDecls); |
| 2304 | } |
| 2305 | |
| 2306 | UsingPackDecl *UsingPackDecl::CreateDeserialized(ASTContext &C, unsigned ID, |
| 2307 | unsigned NumExpansions) { |
| 2308 | size_t Extra = additionalSizeToAlloc<NamedDecl *>(NumExpansions); |
| 2309 | auto *Result = new (C, ID, Extra) UsingPackDecl(nullptr, nullptr, None); |
| 2310 | Result->NumExpansions = NumExpansions; |
| 2311 | auto *Trail = Result->getTrailingObjects<NamedDecl *>(); |
| 2312 | for (unsigned I = 0; I != NumExpansions; ++I) |
| 2313 | new (Trail + I) NamedDecl*(nullptr); |
| 2314 | return Result; |
| 2315 | } |
| 2316 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2317 | void UnresolvedUsingValueDecl::anchor() { } |
| 2318 | |
John McCall | e61f2ba | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 2319 | UnresolvedUsingValueDecl * |
| 2320 | UnresolvedUsingValueDecl::Create(ASTContext &C, DeclContext *DC, |
| 2321 | SourceLocation UsingLoc, |
Douglas Gregor | a9d87bc | 2011-02-25 00:36:19 +0000 | [diff] [blame] | 2322 | NestedNameSpecifierLoc QualifierLoc, |
Richard Smith | 151c456 | 2016-12-20 21:35:28 +0000 | [diff] [blame] | 2323 | const DeclarationNameInfo &NameInfo, |
| 2324 | SourceLocation EllipsisLoc) { |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2325 | return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, |
Richard Smith | 151c456 | 2016-12-20 21:35:28 +0000 | [diff] [blame] | 2326 | QualifierLoc, NameInfo, |
| 2327 | EllipsisLoc); |
John McCall | e61f2ba | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 2328 | } |
| 2329 | |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2330 | UnresolvedUsingValueDecl * |
| 2331 | UnresolvedUsingValueDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2332 | return new (C, ID) UnresolvedUsingValueDecl(nullptr, QualType(), |
| 2333 | SourceLocation(), |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2334 | NestedNameSpecifierLoc(), |
Richard Smith | 151c456 | 2016-12-20 21:35:28 +0000 | [diff] [blame] | 2335 | DeclarationNameInfo(), |
| 2336 | SourceLocation()); |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2337 | } |
| 2338 | |
Enea Zaffanella | c70b251 | 2013-07-17 17:28:56 +0000 | [diff] [blame] | 2339 | SourceRange UnresolvedUsingValueDecl::getSourceRange() const { |
| 2340 | SourceLocation Begin = isAccessDeclaration() |
| 2341 | ? getQualifierLoc().getBeginLoc() : UsingLocation; |
| 2342 | return SourceRange(Begin, getNameInfo().getEndLoc()); |
| 2343 | } |
| 2344 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2345 | void UnresolvedUsingTypenameDecl::anchor() { } |
| 2346 | |
John McCall | e61f2ba | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 2347 | UnresolvedUsingTypenameDecl * |
| 2348 | UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC, |
| 2349 | SourceLocation UsingLoc, |
| 2350 | SourceLocation TypenameLoc, |
Douglas Gregor | a9d87bc | 2011-02-25 00:36:19 +0000 | [diff] [blame] | 2351 | NestedNameSpecifierLoc QualifierLoc, |
John McCall | e61f2ba | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 2352 | SourceLocation TargetNameLoc, |
Richard Smith | 151c456 | 2016-12-20 21:35:28 +0000 | [diff] [blame] | 2353 | DeclarationName TargetName, |
| 2354 | SourceLocation EllipsisLoc) { |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2355 | return new (C, DC) UnresolvedUsingTypenameDecl( |
| 2356 | DC, UsingLoc, TypenameLoc, QualifierLoc, TargetNameLoc, |
Richard Smith | 151c456 | 2016-12-20 21:35:28 +0000 | [diff] [blame] | 2357 | TargetName.getAsIdentifierInfo(), EllipsisLoc); |
Anders Carlsson | 8305c1f | 2009-08-28 05:30:28 +0000 | [diff] [blame] | 2358 | } |
| 2359 | |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2360 | UnresolvedUsingTypenameDecl * |
| 2361 | UnresolvedUsingTypenameDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2362 | return new (C, ID) UnresolvedUsingTypenameDecl( |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2363 | nullptr, SourceLocation(), SourceLocation(), NestedNameSpecifierLoc(), |
Richard Smith | 151c456 | 2016-12-20 21:35:28 +0000 | [diff] [blame] | 2364 | SourceLocation(), nullptr, SourceLocation()); |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2365 | } |
| 2366 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2367 | void StaticAssertDecl::anchor() { } |
| 2368 | |
Anders Carlsson | 5bbe1d7 | 2009-03-14 00:25:26 +0000 | [diff] [blame] | 2369 | StaticAssertDecl *StaticAssertDecl::Create(ASTContext &C, DeclContext *DC, |
Abramo Bagnara | ea94788 | 2011-03-08 16:41:52 +0000 | [diff] [blame] | 2370 | SourceLocation StaticAssertLoc, |
| 2371 | Expr *AssertExpr, |
| 2372 | StringLiteral *Message, |
Richard Smith | ded9c2e | 2012-07-11 22:37:56 +0000 | [diff] [blame] | 2373 | SourceLocation RParenLoc, |
| 2374 | bool Failed) { |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2375 | return new (C, DC) StaticAssertDecl(DC, StaticAssertLoc, AssertExpr, Message, |
| 2376 | RParenLoc, Failed); |
Anders Carlsson | 5bbe1d7 | 2009-03-14 00:25:26 +0000 | [diff] [blame] | 2377 | } |
| 2378 | |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2379 | StaticAssertDecl *StaticAssertDecl::CreateDeserialized(ASTContext &C, |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2380 | unsigned ID) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2381 | return new (C, ID) StaticAssertDecl(nullptr, SourceLocation(), nullptr, |
| 2382 | nullptr, SourceLocation(), false); |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2383 | } |
| 2384 | |
Richard Smith | bdb84f3 | 2016-07-22 23:36:59 +0000 | [diff] [blame] | 2385 | void BindingDecl::anchor() {} |
| 2386 | |
| 2387 | BindingDecl *BindingDecl::Create(ASTContext &C, DeclContext *DC, |
| 2388 | SourceLocation IdLoc, IdentifierInfo *Id) { |
Richard Smith | 32cb8c9 | 2016-08-12 00:53:41 +0000 | [diff] [blame] | 2389 | return new (C, DC) BindingDecl(DC, IdLoc, Id); |
Richard Smith | bdb84f3 | 2016-07-22 23:36:59 +0000 | [diff] [blame] | 2390 | } |
| 2391 | |
| 2392 | BindingDecl *BindingDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
Richard Smith | 32cb8c9 | 2016-08-12 00:53:41 +0000 | [diff] [blame] | 2393 | return new (C, ID) BindingDecl(nullptr, SourceLocation(), nullptr); |
Richard Smith | bdb84f3 | 2016-07-22 23:36:59 +0000 | [diff] [blame] | 2394 | } |
| 2395 | |
Richard Smith | 97fcf4b | 2016-08-14 23:15:52 +0000 | [diff] [blame] | 2396 | VarDecl *BindingDecl::getHoldingVar() const { |
| 2397 | Expr *B = getBinding(); |
| 2398 | if (!B) |
| 2399 | return nullptr; |
| 2400 | auto *DRE = dyn_cast<DeclRefExpr>(B->IgnoreImplicit()); |
| 2401 | if (!DRE) |
| 2402 | return nullptr; |
| 2403 | |
| 2404 | auto *VD = dyn_cast<VarDecl>(DRE->getDecl()); |
| 2405 | assert(VD->isImplicit() && "holding var for binding decl not implicit"); |
| 2406 | return VD; |
| 2407 | } |
| 2408 | |
Richard Smith | bdb84f3 | 2016-07-22 23:36:59 +0000 | [diff] [blame] | 2409 | void DecompositionDecl::anchor() {} |
| 2410 | |
| 2411 | DecompositionDecl *DecompositionDecl::Create(ASTContext &C, DeclContext *DC, |
| 2412 | SourceLocation StartLoc, |
| 2413 | SourceLocation LSquareLoc, |
| 2414 | QualType T, TypeSourceInfo *TInfo, |
| 2415 | StorageClass SC, |
| 2416 | ArrayRef<BindingDecl *> Bindings) { |
| 2417 | size_t Extra = additionalSizeToAlloc<BindingDecl *>(Bindings.size()); |
| 2418 | return new (C, DC, Extra) |
| 2419 | DecompositionDecl(C, DC, StartLoc, LSquareLoc, T, TInfo, SC, Bindings); |
| 2420 | } |
| 2421 | |
| 2422 | DecompositionDecl *DecompositionDecl::CreateDeserialized(ASTContext &C, |
| 2423 | unsigned ID, |
| 2424 | unsigned NumBindings) { |
| 2425 | size_t Extra = additionalSizeToAlloc<BindingDecl *>(NumBindings); |
Richard Smith | 7b76d81 | 2016-08-12 02:21:25 +0000 | [diff] [blame] | 2426 | auto *Result = new (C, ID, Extra) |
| 2427 | DecompositionDecl(C, nullptr, SourceLocation(), SourceLocation(), |
| 2428 | QualType(), nullptr, StorageClass(), None); |
Richard Smith | bdb84f3 | 2016-07-22 23:36:59 +0000 | [diff] [blame] | 2429 | // Set up and clean out the bindings array. |
| 2430 | Result->NumBindings = NumBindings; |
| 2431 | auto *Trail = Result->getTrailingObjects<BindingDecl *>(); |
| 2432 | for (unsigned I = 0; I != NumBindings; ++I) |
| 2433 | new (Trail + I) BindingDecl*(nullptr); |
| 2434 | return Result; |
| 2435 | } |
| 2436 | |
Richard Smith | 7873de0 | 2016-08-11 22:25:46 +0000 | [diff] [blame] | 2437 | void DecompositionDecl::printName(llvm::raw_ostream &os) const { |
| 2438 | os << '['; |
| 2439 | bool Comma = false; |
| 2440 | for (auto *B : bindings()) { |
| 2441 | if (Comma) |
| 2442 | os << ", "; |
| 2443 | B->printName(os); |
| 2444 | Comma = true; |
| 2445 | } |
| 2446 | os << ']'; |
| 2447 | } |
| 2448 | |
Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2449 | MSPropertyDecl *MSPropertyDecl::Create(ASTContext &C, DeclContext *DC, |
| 2450 | SourceLocation L, DeclarationName N, |
| 2451 | QualType T, TypeSourceInfo *TInfo, |
| 2452 | SourceLocation StartL, |
| 2453 | IdentifierInfo *Getter, |
| 2454 | IdentifierInfo *Setter) { |
| 2455 | return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter); |
| 2456 | } |
| 2457 | |
| 2458 | MSPropertyDecl *MSPropertyDecl::CreateDeserialized(ASTContext &C, |
| 2459 | unsigned ID) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2460 | return new (C, ID) MSPropertyDecl(nullptr, SourceLocation(), |
| 2461 | DeclarationName(), QualType(), nullptr, |
| 2462 | SourceLocation(), nullptr, nullptr); |
Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2463 | } |
| 2464 | |
Anders Carlsson | 6750d16 | 2009-03-26 23:46:50 +0000 | [diff] [blame] | 2465 | static const char *getAccessName(AccessSpecifier AS) { |
| 2466 | switch (AS) { |
Anders Carlsson | 6750d16 | 2009-03-26 23:46:50 +0000 | [diff] [blame] | 2467 | case AS_none: |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 2468 | llvm_unreachable("Invalid access specifier!"); |
Anders Carlsson | 6750d16 | 2009-03-26 23:46:50 +0000 | [diff] [blame] | 2469 | case AS_public: |
| 2470 | return "public"; |
| 2471 | case AS_private: |
| 2472 | return "private"; |
| 2473 | case AS_protected: |
| 2474 | return "protected"; |
| 2475 | } |
David Blaikie | f47fa30 | 2012-01-17 02:30:50 +0000 | [diff] [blame] | 2476 | llvm_unreachable("Invalid access specifier!"); |
Anders Carlsson | 6750d16 | 2009-03-26 23:46:50 +0000 | [diff] [blame] | 2477 | } |
| 2478 | |
| 2479 | const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB, |
| 2480 | AccessSpecifier AS) { |
| 2481 | return DB << getAccessName(AS); |
| 2482 | } |
Richard Smith | 84f6dcf | 2012-02-02 01:16:57 +0000 | [diff] [blame] | 2483 | |
| 2484 | const PartialDiagnostic &clang::operator<<(const PartialDiagnostic &DB, |
| 2485 | AccessSpecifier AS) { |
| 2486 | return DB << getAccessName(AS); |
| 2487 | } |