blob: 1821ba8a6aed436515a016ee0c3f8ad5953bdad6 [file] [log] [blame]
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001//===--- 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//===----------------------------------------------------------------------===//
13
14#include "clang/AST/DeclCXX.h"
Douglas Gregord475b8d2009-03-25 21:17:03 +000015#include "clang/AST/DeclTemplate.h"
Ted Kremenek4b7c9832008-09-05 17:16:31 +000016#include "clang/AST/ASTContext.h"
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +000017#include "clang/AST/ASTMutationListener.h"
Douglas Gregor7a39dd02010-09-29 00:15:42 +000018#include "clang/AST/CXXInheritance.h"
Anders Carlssonfb311762009-03-14 00:25:26 +000019#include "clang/AST/Expr.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000020#include "clang/AST/TypeLoc.h"
Douglas Gregor7d7e6722008-11-12 23:21:09 +000021#include "clang/Basic/IdentifierTable.h"
Douglas Gregorfdfab6b2008-12-23 21:31:30 +000022#include "llvm/ADT/STLExtras.h"
Fariborz Jahanianfaebcbb2009-09-12 19:52:10 +000023#include "llvm/ADT/SmallPtrSet.h"
Ted Kremenek4b7c9832008-09-05 17:16:31 +000024using namespace clang;
25
26//===----------------------------------------------------------------------===//
27// Decl Allocation/Deallocation Method Implementations
28//===----------------------------------------------------------------------===//
Douglas Gregor72c3f312008-12-05 18:15:24 +000029
John McCall86ff3082010-02-04 22:26:26 +000030CXXRecordDecl::DefinitionData::DefinitionData(CXXRecordDecl *D)
31 : UserDeclaredConstructor(false), UserDeclaredCopyConstructor(false),
Sean Huntffe37fd2011-05-25 20:50:04 +000032 UserDeclaredMoveConstructor(false), UserDeclaredCopyAssignment(false),
33 UserDeclaredMoveAssignment(false), UserDeclaredDestructor(false),
Eli Friedman97c134e2009-08-15 22:23:00 +000034 Aggregate(true), PlainOldData(true), Empty(true), Polymorphic(false),
Chandler Carruthec997dc2011-04-30 10:07:30 +000035 Abstract(false), IsStandardLayout(true), HasNoNonEmptyBases(true),
Chandler Carrutha8225442011-04-30 09:17:45 +000036 HasPrivateFields(false), HasProtectedFields(false), HasPublicFields(false),
Douglas Gregor2bb11012011-05-13 01:05:07 +000037 HasMutableFields(false), HasTrivialDefaultConstructor(true),
Richard Smith6b8bc072011-08-10 18:11:37 +000038 HasConstexprNonCopyMoveConstructor(false), HasTrivialCopyConstructor(true),
Sean Hunt023df372011-05-09 18:22:59 +000039 HasTrivialMoveConstructor(true), HasTrivialCopyAssignment(true),
40 HasTrivialMoveAssignment(true), HasTrivialDestructor(true),
41 HasNonLiteralTypeFieldsOrBases(false), ComputedVisibleConversions(false),
Sean Huntcdee3fe2011-05-11 22:34:38 +000042 UserProvidedDefaultConstructor(false), DeclaredDefaultConstructor(false),
Sean Huntffe37fd2011-05-25 20:50:04 +000043 DeclaredCopyConstructor(false), DeclaredMoveConstructor(false),
44 DeclaredCopyAssignment(false), DeclaredMoveAssignment(false),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000045 DeclaredDestructor(false), FailedImplicitMoveConstructor(false),
46 FailedImplicitMoveAssignment(false), NumBases(0), NumVBases(0), Bases(),
47 VBases(), Definition(D), FirstFriend(0) {
John McCall86ff3082010-02-04 22:26:26 +000048}
49
50CXXRecordDecl::CXXRecordDecl(Kind K, TagKind TK, DeclContext *DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000051 SourceLocation StartLoc, SourceLocation IdLoc,
52 IdentifierInfo *Id, CXXRecordDecl *PrevDecl)
53 : RecordDecl(K, TK, DC, StartLoc, IdLoc, Id, PrevDecl),
John McCall86ff3082010-02-04 22:26:26 +000054 DefinitionData(PrevDecl ? PrevDecl->DefinitionData : 0),
Douglas Gregord475b8d2009-03-25 21:17:03 +000055 TemplateOrInstantiation() { }
Douglas Gregor7d7e6722008-11-12 23:21:09 +000056
Jay Foad4ba2a172011-01-12 09:06:06 +000057CXXRecordDecl *CXXRecordDecl::Create(const ASTContext &C, TagKind TK,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000058 DeclContext *DC, SourceLocation StartLoc,
59 SourceLocation IdLoc, IdentifierInfo *Id,
Douglas Gregoraafc0cc2009-05-15 19:11:46 +000060 CXXRecordDecl* PrevDecl,
61 bool DelayTypeCreation) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000062 CXXRecordDecl* R = new (C) CXXRecordDecl(CXXRecord, TK, DC, StartLoc, IdLoc,
63 Id, PrevDecl);
Mike Stump1eb44332009-09-09 15:08:12 +000064
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +000065 // FIXME: DelayTypeCreation seems like such a hack
Douglas Gregoraafc0cc2009-05-15 19:11:46 +000066 if (!DelayTypeCreation)
Mike Stump1eb44332009-09-09 15:08:12 +000067 C.getTypeDeclType(R, PrevDecl);
Ted Kremenek4b7c9832008-09-05 17:16:31 +000068 return R;
69}
70
Jay Foad4ba2a172011-01-12 09:06:06 +000071CXXRecordDecl *CXXRecordDecl::Create(const ASTContext &C, EmptyShell Empty) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000072 return new (C) CXXRecordDecl(CXXRecord, TTK_Struct, 0, SourceLocation(),
73 SourceLocation(), 0, 0);
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +000074}
75
Mike Stump1eb44332009-09-09 15:08:12 +000076void
Douglas Gregor2d5b7032010-02-11 01:30:34 +000077CXXRecordDecl::setBases(CXXBaseSpecifier const * const *Bases,
Douglas Gregor57c856b2008-10-23 18:13:27 +000078 unsigned NumBases) {
Douglas Gregor2d5b7032010-02-11 01:30:34 +000079 ASTContext &C = getASTContext();
80
Mike Stump1eb44332009-09-09 15:08:12 +000081 // C++ [dcl.init.aggr]p1:
Douglas Gregor64bffa92008-11-05 16:20:31 +000082 // An aggregate is an array or a class (clause 9) with [...]
83 // no base classes [...].
John McCall86ff3082010-02-04 22:26:26 +000084 data().Aggregate = false;
Douglas Gregor64bffa92008-11-05 16:20:31 +000085
Douglas Gregor7c789c12010-10-29 22:39:52 +000086 if (!data().Bases.isOffset() && data().NumBases > 0)
87 C.Deallocate(data().getBases());
Mike Stump1eb44332009-09-09 15:08:12 +000088
Anders Carlsson6f6de732010-03-29 05:13:12 +000089 // The set of seen virtual base types.
Anders Carlsson1c363932010-03-29 19:49:09 +000090 llvm::SmallPtrSet<CanQualType, 8> SeenVBaseTypes;
Anders Carlsson6f6de732010-03-29 05:13:12 +000091
92 // The virtual bases of this class.
Chris Lattner5f9e2722011-07-23 10:55:15 +000093 SmallVector<const CXXBaseSpecifier *, 8> VBases;
Mike Stump1eb44332009-09-09 15:08:12 +000094
John McCall86ff3082010-02-04 22:26:26 +000095 data().Bases = new(C) CXXBaseSpecifier [NumBases];
96 data().NumBases = NumBases;
Fariborz Jahanian40c072f2009-07-10 20:13:23 +000097 for (unsigned i = 0; i < NumBases; ++i) {
Douglas Gregor7c789c12010-10-29 22:39:52 +000098 data().getBases()[i] = *Bases[i];
Fariborz Jahanian40c072f2009-07-10 20:13:23 +000099 // Keep track of inherited vbases for this base class.
100 const CXXBaseSpecifier *Base = Bases[i];
101 QualType BaseType = Base->getType();
Douglas Gregor5fe8c042010-02-27 00:25:28 +0000102 // Skip dependent types; we can't do any checking on them now.
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000103 if (BaseType->isDependentType())
104 continue;
105 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +0000106 = cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
Anders Carlsson6f6de732010-03-29 05:13:12 +0000107
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000108 // C++ [dcl.init.aggr]p1:
109 // An aggregate is [...] a class with [...] no base classes [...].
110 data().Aggregate = false;
111
112 // C++ [class]p4:
113 // A POD-struct is an aggregate class...
114 data().PlainOldData = false;
115
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000116 // A class with a non-empty base class is not empty.
117 // FIXME: Standard ref?
Chandler Carrutha8225442011-04-30 09:17:45 +0000118 if (!BaseClassDecl->isEmpty()) {
119 if (!data().Empty) {
120 // C++0x [class]p7:
121 // A standard-layout class is a class that:
122 // [...]
123 // -- either has no non-static data members in the most derived
124 // class and at most one base class with non-static data members,
125 // or has no base classes with non-static data members, and
126 // If this is the second non-empty base, then neither of these two
127 // clauses can be true.
Chandler Carruthec997dc2011-04-30 10:07:30 +0000128 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000129 }
130
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000131 data().Empty = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000132 data().HasNoNonEmptyBases = false;
133 }
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000134
Douglas Gregor85606eb2010-09-28 20:50:54 +0000135 // C++ [class.virtual]p1:
136 // A class that declares or inherits a virtual function is called a
137 // polymorphic class.
138 if (BaseClassDecl->isPolymorphic())
139 data().Polymorphic = true;
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000140
Chandler Carrutha8225442011-04-30 09:17:45 +0000141 // C++0x [class]p7:
142 // A standard-layout class is a class that: [...]
143 // -- has no non-standard-layout base classes
Chandler Carruthec997dc2011-04-30 10:07:30 +0000144 if (!BaseClassDecl->isStandardLayout())
145 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000146
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000147 // Record if this base is the first non-literal field or base.
148 if (!hasNonLiteralTypeFieldsOrBases() && !BaseType->isLiteralType())
149 data().HasNonLiteralTypeFieldsOrBases = true;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000150
Anders Carlsson6f6de732010-03-29 05:13:12 +0000151 // Now go through all virtual bases of this base and add them.
Mike Stump1eb44332009-09-09 15:08:12 +0000152 for (CXXRecordDecl::base_class_iterator VBase =
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000153 BaseClassDecl->vbases_begin(),
154 E = BaseClassDecl->vbases_end(); VBase != E; ++VBase) {
Anders Carlsson6f6de732010-03-29 05:13:12 +0000155 // Add this base if it's not already in the list.
Anders Carlsson1c363932010-03-29 19:49:09 +0000156 if (SeenVBaseTypes.insert(C.getCanonicalType(VBase->getType())))
Anders Carlsson6f6de732010-03-29 05:13:12 +0000157 VBases.push_back(VBase);
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000158 }
Anders Carlsson6f6de732010-03-29 05:13:12 +0000159
160 if (Base->isVirtual()) {
161 // Add this base if it's not already in the list.
Anders Carlsson1c363932010-03-29 19:49:09 +0000162 if (SeenVBaseTypes.insert(C.getCanonicalType(BaseType)))
Anders Carlsson6f6de732010-03-29 05:13:12 +0000163 VBases.push_back(Base);
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000164
165 // C++0x [meta.unary.prop] is_empty:
166 // T is a class type, but not a union type, with ... no virtual base
167 // classes
168 data().Empty = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000169
170 // C++ [class.ctor]p5:
Sean Hunt023df372011-05-09 18:22:59 +0000171 // A default constructor is trivial [...] if:
172 // -- its class has [...] no virtual bases
173 data().HasTrivialDefaultConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000174
175 // C++0x [class.copy]p13:
176 // A copy/move constructor for class X is trivial if it is neither
177 // user-provided nor deleted and if
178 // -- class X has no virtual functions and no virtual base classes, and
Douglas Gregor85606eb2010-09-28 20:50:54 +0000179 data().HasTrivialCopyConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000180 data().HasTrivialMoveConstructor = false;
181
182 // C++0x [class.copy]p27:
183 // A copy/move assignment operator for class X is trivial if it is
184 // neither user-provided nor deleted and if
185 // -- class X has no virtual functions and no virtual base classes, and
Douglas Gregor85606eb2010-09-28 20:50:54 +0000186 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000187 data().HasTrivialMoveAssignment = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000188
189 // C++0x [class]p7:
190 // A standard-layout class is a class that: [...]
191 // -- has [...] no virtual base classes
Chandler Carruthec997dc2011-04-30 10:07:30 +0000192 data().IsStandardLayout = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000193 } else {
194 // C++ [class.ctor]p5:
Sean Hunt023df372011-05-09 18:22:59 +0000195 // A default constructor is trivial [...] if:
196 // -- all the direct base classes of its class have trivial default
197 // constructors.
198 if (!BaseClassDecl->hasTrivialDefaultConstructor())
199 data().HasTrivialDefaultConstructor = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000200
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000201 // C++0x [class.copy]p13:
202 // A copy/move constructor for class X is trivial if [...]
203 // [...]
204 // -- the constructor selected to copy/move each direct base class
205 // subobject is trivial, and
206 // FIXME: C++0x: We need to only consider the selected constructor
207 // instead of all of them.
Douglas Gregor85606eb2010-09-28 20:50:54 +0000208 if (!BaseClassDecl->hasTrivialCopyConstructor())
209 data().HasTrivialCopyConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000210 if (!BaseClassDecl->hasTrivialMoveConstructor())
211 data().HasTrivialMoveConstructor = false;
212
213 // C++0x [class.copy]p27:
214 // A copy/move assignment operator for class X is trivial if [...]
215 // [...]
216 // -- the assignment operator selected to copy/move each direct base
217 // class subobject is trivial, and
218 // FIXME: C++0x: We need to only consider the selected operator instead
219 // of all of them.
Douglas Gregor85606eb2010-09-28 20:50:54 +0000220 if (!BaseClassDecl->hasTrivialCopyAssignment())
221 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000222 if (!BaseClassDecl->hasTrivialMoveAssignment())
223 data().HasTrivialMoveAssignment = false;
Anders Carlsson6f6de732010-03-29 05:13:12 +0000224 }
Douglas Gregor85606eb2010-09-28 20:50:54 +0000225
226 // C++ [class.ctor]p3:
227 // A destructor is trivial if all the direct base classes of its class
228 // have trivial destructors.
229 if (!BaseClassDecl->hasTrivialDestructor())
230 data().HasTrivialDestructor = false;
Douglas Gregor2bb11012011-05-13 01:05:07 +0000231
John McCallf85e1932011-06-15 23:02:42 +0000232 // A class has an Objective-C object member if... or any of its bases
233 // has an Objective-C object member.
234 if (BaseClassDecl->hasObjectMember())
235 setHasObjectMember(true);
236
Douglas Gregor2bb11012011-05-13 01:05:07 +0000237 // Keep track of the presence of mutable fields.
238 if (BaseClassDecl->hasMutableFields())
239 data().HasMutableFields = true;
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000240 }
Anders Carlsson6f6de732010-03-29 05:13:12 +0000241
242 if (VBases.empty())
243 return;
244
245 // Create base specifier for any direct or indirect virtual bases.
246 data().VBases = new (C) CXXBaseSpecifier[VBases.size()];
247 data().NumVBases = VBases.size();
Richard Smith9f8ee2e2011-07-12 23:49:11 +0000248 for (int I = 0, E = VBases.size(); I != E; ++I)
249 data().getVBases()[I] = *VBases[I];
Douglas Gregor57c856b2008-10-23 18:13:27 +0000250}
251
Douglas Gregor9edad9b2010-01-14 17:47:39 +0000252/// Callback function for CXXRecordDecl::forallBases that acknowledges
253/// that it saw a base class.
254static bool SawBase(const CXXRecordDecl *, void *) {
255 return true;
256}
257
258bool CXXRecordDecl::hasAnyDependentBases() const {
259 if (!isDependentContext())
260 return false;
261
262 return !forallBases(SawBase, 0);
263}
264
Sean Huntffe37fd2011-05-25 20:50:04 +0000265bool CXXRecordDecl::hasConstCopyConstructor() const {
266 return getCopyConstructor(Qualifiers::Const) != 0;
Fariborz Jahanian485f0872009-06-22 23:34:40 +0000267}
268
Chandler Carruthb7e95892011-04-23 10:47:28 +0000269bool CXXRecordDecl::isTriviallyCopyable() const {
270 // C++0x [class]p5:
271 // A trivially copyable class is a class that:
272 // -- has no non-trivial copy constructors,
273 if (!hasTrivialCopyConstructor()) return false;
274 // -- has no non-trivial move constructors,
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000275 if (!hasTrivialMoveConstructor()) return false;
Chandler Carruthb7e95892011-04-23 10:47:28 +0000276 // -- has no non-trivial copy assignment operators,
277 if (!hasTrivialCopyAssignment()) return false;
278 // -- has no non-trivial move assignment operators, and
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000279 if (!hasTrivialMoveAssignment()) return false;
Chandler Carruthb7e95892011-04-23 10:47:28 +0000280 // -- has a trivial destructor.
281 if (!hasTrivialDestructor()) return false;
282
283 return true;
284}
285
Douglas Gregor0d405db2010-07-01 20:59:04 +0000286/// \brief Perform a simplistic form of overload resolution that only considers
287/// cv-qualifiers on a single parameter, and return the best overload candidate
288/// (if there is one).
289static CXXMethodDecl *
290GetBestOverloadCandidateSimple(
Chris Lattner5f9e2722011-07-23 10:55:15 +0000291 const SmallVectorImpl<std::pair<CXXMethodDecl *, Qualifiers> > &Cands) {
Douglas Gregor0d405db2010-07-01 20:59:04 +0000292 if (Cands.empty())
293 return 0;
294 if (Cands.size() == 1)
295 return Cands[0].first;
296
297 unsigned Best = 0, N = Cands.size();
298 for (unsigned I = 1; I != N; ++I)
Douglas Gregor61d0b6b2011-04-28 00:56:09 +0000299 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
Douglas Gregor0d405db2010-07-01 20:59:04 +0000300 Best = I;
301
302 for (unsigned I = 1; I != N; ++I)
Douglas Gregor61d0b6b2011-04-28 00:56:09 +0000303 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
Douglas Gregor0d405db2010-07-01 20:59:04 +0000304 return 0;
305
306 return Cands[Best].first;
307}
308
Sean Huntffe37fd2011-05-25 20:50:04 +0000309CXXConstructorDecl *CXXRecordDecl::getCopyConstructor(unsigned TypeQuals) const{
310 ASTContext &Context = getASTContext();
Sebastian Redl64b45f72009-01-05 20:52:13 +0000311 QualType ClassType
312 = Context.getTypeDeclType(const_cast<CXXRecordDecl*>(this));
Mike Stump1eb44332009-09-09 15:08:12 +0000313 DeclarationName ConstructorName
Douglas Gregor9e7d9de2008-12-15 21:24:18 +0000314 = Context.DeclarationNames.getCXXConstructorName(
Fariborz Jahanian485f0872009-06-22 23:34:40 +0000315 Context.getCanonicalType(ClassType));
316 unsigned FoundTQs;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000317 SmallVector<std::pair<CXXMethodDecl *, Qualifiers>, 4> Found;
Douglas Gregorfdfab6b2008-12-23 21:31:30 +0000318 DeclContext::lookup_const_iterator Con, ConEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000319 for (llvm::tie(Con, ConEnd) = this->lookup(ConstructorName);
Douglas Gregorfdfab6b2008-12-23 21:31:30 +0000320 Con != ConEnd; ++Con) {
Douglas Gregord93bacf2009-09-04 14:46:39 +0000321 // C++ [class.copy]p2:
322 // A non-template constructor for class X is a copy constructor if [...]
323 if (isa<FunctionTemplateDecl>(*Con))
324 continue;
325
Douglas Gregor0d405db2010-07-01 20:59:04 +0000326 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
327 if (Constructor->isCopyConstructor(FoundTQs)) {
John McCall0953e762009-09-24 19:53:00 +0000328 if (((TypeQuals & Qualifiers::Const) == (FoundTQs & Qualifiers::Const)) ||
329 (!(TypeQuals & Qualifiers::Const) && (FoundTQs & Qualifiers::Const)))
Douglas Gregor0d405db2010-07-01 20:59:04 +0000330 Found.push_back(std::make_pair(
331 const_cast<CXXConstructorDecl *>(Constructor),
332 Qualifiers::fromCVRMask(FoundTQs)));
Fariborz Jahanian485f0872009-06-22 23:34:40 +0000333 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000334 }
Douglas Gregor0d405db2010-07-01 20:59:04 +0000335
336 return cast_or_null<CXXConstructorDecl>(
337 GetBestOverloadCandidateSimple(Found));
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000338}
339
Sean Huntffe37fd2011-05-25 20:50:04 +0000340CXXConstructorDecl *CXXRecordDecl::getMoveConstructor() const {
341 for (ctor_iterator I = ctor_begin(), E = ctor_end(); I != E; ++I)
342 if (I->isMoveConstructor())
343 return *I;
344
345 return 0;
346}
347
Douglas Gregorb87786f2010-07-01 17:48:08 +0000348CXXMethodDecl *CXXRecordDecl::getCopyAssignmentOperator(bool ArgIsConst) const {
349 ASTContext &Context = getASTContext();
350 QualType Class = Context.getTypeDeclType(const_cast<CXXRecordDecl *>(this));
351 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
352
Chris Lattner5f9e2722011-07-23 10:55:15 +0000353 SmallVector<std::pair<CXXMethodDecl *, Qualifiers>, 4> Found;
Douglas Gregorb87786f2010-07-01 17:48:08 +0000354 DeclContext::lookup_const_iterator Op, OpEnd;
355 for (llvm::tie(Op, OpEnd) = this->lookup(Name); Op != OpEnd; ++Op) {
356 // C++ [class.copy]p9:
357 // A user-declared copy assignment operator is a non-static non-template
358 // member function of class X with exactly one parameter of type X, X&,
359 // const X&, volatile X& or const volatile X&.
360 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
361 if (!Method || Method->isStatic() || Method->getPrimaryTemplate())
362 continue;
363
364 const FunctionProtoType *FnType
365 = Method->getType()->getAs<FunctionProtoType>();
366 assert(FnType && "Overloaded operator has no prototype.");
367 // Don't assert on this; an invalid decl might have been left in the AST.
368 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
369 continue;
370
371 QualType ArgType = FnType->getArgType(0);
372 Qualifiers Quals;
373 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()) {
374 ArgType = Ref->getPointeeType();
375 // If we have a const argument and we have a reference to a non-const,
376 // this function does not match.
377 if (ArgIsConst && !ArgType.isConstQualified())
378 continue;
379
380 Quals = ArgType.getQualifiers();
381 } else {
382 // By-value copy-assignment operators are treated like const X&
383 // copy-assignment operators.
384 Quals = Qualifiers::fromCVRMask(Qualifiers::Const);
385 }
386
387 if (!Context.hasSameUnqualifiedType(ArgType, Class))
388 continue;
389
390 // Save this copy-assignment operator. It might be "the one".
391 Found.push_back(std::make_pair(const_cast<CXXMethodDecl *>(Method), Quals));
392 }
393
394 // Use a simplistic form of overload resolution to find the candidate.
395 return GetBestOverloadCandidateSimple(Found);
396}
397
Sean Huntffe37fd2011-05-25 20:50:04 +0000398CXXMethodDecl *CXXRecordDecl::getMoveAssignmentOperator() const {
399 for (method_iterator I = method_begin(), E = method_end(); I != E; ++I)
400 if (I->isMoveAssignmentOperator())
401 return *I;
402
403 return 0;
404}
405
Douglas Gregor21386642010-09-28 21:55:22 +0000406void CXXRecordDecl::markedVirtualFunctionPure() {
407 // C++ [class.abstract]p2:
408 // A class is abstract if it has at least one pure virtual function.
409 data().Abstract = true;
410}
411
412void CXXRecordDecl::addedMember(Decl *D) {
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000413 // Ignore friends and invalid declarations.
414 if (D->getFriendObjectKind() || D->isInvalidDecl())
Douglas Gregor5c0646b2010-09-27 21:17:54 +0000415 return;
416
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000417 FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D);
418 if (FunTmpl)
419 D = FunTmpl->getTemplatedDecl();
420
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000421 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
422 if (Method->isVirtual()) {
423 // C++ [dcl.init.aggr]p1:
424 // An aggregate is an array or a class with [...] no virtual functions.
425 data().Aggregate = false;
426
427 // C++ [class]p4:
428 // A POD-struct is an aggregate class...
429 data().PlainOldData = false;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000430
431 // Virtual functions make the class non-empty.
432 // FIXME: Standard ref?
433 data().Empty = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000434
435 // C++ [class.virtual]p1:
436 // A class that declares or inherits a virtual function is called a
437 // polymorphic class.
438 data().Polymorphic = true;
439
Sean Hunt023df372011-05-09 18:22:59 +0000440 // C++0x [class.ctor]p5
441 // A default constructor is trivial [...] if:
442 // -- its class has no virtual functions [...]
443 data().HasTrivialDefaultConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000444
445 // C++0x [class.copy]p13:
446 // A copy/move constructor for class X is trivial if [...]
447 // -- class X has no virtual functions [...]
Douglas Gregor85606eb2010-09-28 20:50:54 +0000448 data().HasTrivialCopyConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000449 data().HasTrivialMoveConstructor = false;
450
451 // C++0x [class.copy]p27:
452 // A copy/move assignment operator for class X is trivial if [...]
453 // -- class X has no virtual functions [...]
Douglas Gregor85606eb2010-09-28 20:50:54 +0000454 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000455 data().HasTrivialMoveAssignment = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000456 // FIXME: Destructor?
Chandler Carrutha8225442011-04-30 09:17:45 +0000457
458 // C++0x [class]p7:
459 // A standard-layout class is a class that: [...]
460 // -- has no virtual functions
Chandler Carruthec997dc2011-04-30 10:07:30 +0000461 data().IsStandardLayout = false;
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000462 }
463 }
464
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000465 if (D->isImplicit()) {
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +0000466 // Notify that an implicit member was added after the definition
467 // was completed.
468 if (!isBeingDefined())
469 if (ASTMutationListener *L = getASTMutationListener())
470 L->AddedCXXImplicitMember(data().Definition, D);
Argyrios Kyrtzidis046c03b2010-10-20 23:48:42 +0000471
Sean Huntffe37fd2011-05-25 20:50:04 +0000472 // If this is a special member function, note that it was added and then
473 // return early.
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000474 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Sean Huntffe37fd2011-05-25 20:50:04 +0000475 if (Constructor->isDefaultConstructor())
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000476 data().DeclaredDefaultConstructor = true;
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000477 else if (Constructor->isCopyConstructor())
478 data().DeclaredCopyConstructor = true;
Sean Huntffe37fd2011-05-25 20:50:04 +0000479 else if (Constructor->isMoveConstructor())
480 data().DeclaredMoveConstructor = true;
481 else
482 goto NotASpecialMember;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000483 return;
Sean Huntffe37fd2011-05-25 20:50:04 +0000484 } else if (isa<CXXDestructorDecl>(D)) {
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000485 data().DeclaredDestructor = true;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000486 return;
Sean Huntffe37fd2011-05-25 20:50:04 +0000487 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
488 if (Method->isCopyAssignmentOperator())
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000489 data().DeclaredCopyAssignment = true;
Sean Huntffe37fd2011-05-25 20:50:04 +0000490 else if (Method->isMoveAssignmentOperator())
491 data().DeclaredMoveAssignment = true;
492 else
493 goto NotASpecialMember;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000494 return;
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000495 }
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000496
Sean Huntffe37fd2011-05-25 20:50:04 +0000497NotASpecialMember:;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000498 // Any other implicit declarations are handled like normal declarations.
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000499 }
500
501 // Handle (user-declared) constructors.
502 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
503 // Note that we have a user-declared constructor.
504 data().UserDeclaredConstructor = true;
505
Richard Smith017ab772011-09-05 02:13:09 +0000506 // Technically, "user-provided" is only defined for special member
507 // functions, but the intent of the standard is clearly that it should apply
508 // to all functions.
509 bool UserProvided = Constructor->isUserProvided();
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000510
Sean Hunt023df372011-05-09 18:22:59 +0000511 // C++0x [class.ctor]p5:
512 // A default constructor is trivial if it is not user-provided [...]
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000513 if (Constructor->isDefaultConstructor()) {
514 data().DeclaredDefaultConstructor = true;
Richard Smith017ab772011-09-05 02:13:09 +0000515 if (UserProvided) {
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000516 data().HasTrivialDefaultConstructor = false;
Sean Huntcdee3fe2011-05-11 22:34:38 +0000517 data().UserProvidedDefaultConstructor = true;
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000518 }
519 }
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000520
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000521 // Note when we have a user-declared copy or move constructor, which will
522 // suppress the implicit declaration of those constructors.
523 if (!FunTmpl) {
524 if (Constructor->isCopyConstructor()) {
525 data().UserDeclaredCopyConstructor = true;
526 data().DeclaredCopyConstructor = true;
527
528 // C++0x [class.copy]p13:
Sean Hunt023df372011-05-09 18:22:59 +0000529 // A copy/move constructor for class X is trivial if it is not
530 // user-provided [...]
Richard Smith017ab772011-09-05 02:13:09 +0000531 if (UserProvided)
Sean Hunt023df372011-05-09 18:22:59 +0000532 data().HasTrivialCopyConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000533 } else if (Constructor->isMoveConstructor()) {
Sean Huntffe37fd2011-05-25 20:50:04 +0000534 data().UserDeclaredMoveConstructor = true;
535 data().DeclaredMoveConstructor = true;
536
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000537 // C++0x [class.copy]p13:
Sean Hunt023df372011-05-09 18:22:59 +0000538 // A copy/move constructor for class X is trivial if it is not
539 // user-provided [...]
Richard Smith017ab772011-09-05 02:13:09 +0000540 if (UserProvided)
Sean Hunt023df372011-05-09 18:22:59 +0000541 data().HasTrivialMoveConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000542 }
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000543 }
Richard Smith6b8bc072011-08-10 18:11:37 +0000544 if (Constructor->isConstexpr() && !Constructor->isCopyOrMoveConstructor()) {
545 // Record if we see any constexpr constructors which are neither copy
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000546 // nor move constructors.
Richard Smith6b8bc072011-08-10 18:11:37 +0000547 data().HasConstexprNonCopyMoveConstructor = true;
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000548 }
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000549
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000550 // C++ [dcl.init.aggr]p1:
551 // An aggregate is an array or a class with no user-declared
552 // constructors [...].
553 // C++0x [dcl.init.aggr]p1:
554 // An aggregate is an array or a class with no user-provided
555 // constructors [...].
556 if (!getASTContext().getLangOptions().CPlusPlus0x || UserProvided)
557 data().Aggregate = false;
558
559 // C++ [class]p4:
560 // A POD-struct is an aggregate class [...]
561 // Since the POD bit is meant to be C++03 POD-ness, clear it even if the
562 // type is technically an aggregate in C++0x since it wouldn't be in 03.
563 data().PlainOldData = false;
564
Douglas Gregor5c0646b2010-09-27 21:17:54 +0000565 return;
566 }
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000567
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000568 // Handle (user-declared) destructors.
Sean Huntcf34e752011-05-16 22:41:40 +0000569 if (CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000570 data().DeclaredDestructor = true;
571 data().UserDeclaredDestructor = true;
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000572
573 // C++ [class]p4:
574 // A POD-struct is an aggregate class that has [...] no user-defined
575 // destructor.
Sean Huntcf34e752011-05-16 22:41:40 +0000576 // This bit is the C++03 POD bit, not the 0x one.
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000577 data().PlainOldData = false;
578
Sean Huntcf34e752011-05-16 22:41:40 +0000579 // C++0x [class.dtor]p5:
580 // A destructor is trivial if it is not user-provided and [...]
581 if (DD->isUserProvided())
582 data().HasTrivialDestructor = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000583
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000584 return;
585 }
Douglas Gregor5c0646b2010-09-27 21:17:54 +0000586
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000587 // Handle (user-declared) member functions.
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000588 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Sean Huntffe37fd2011-05-25 20:50:04 +0000589 if (Method->isCopyAssignmentOperator()) {
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000590 // C++ [class]p4:
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000591 // A POD-struct is an aggregate class that [...] has no user-defined
592 // copy assignment operator [...].
Sean Huntcf34e752011-05-16 22:41:40 +0000593 // This is the C++03 bit only.
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000594 data().PlainOldData = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000595
Sean Huntffe37fd2011-05-25 20:50:04 +0000596 // This is a copy assignment operator.
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000597
Sean Huntffe37fd2011-05-25 20:50:04 +0000598 // Suppress the implicit declaration of a copy constructor.
599 data().UserDeclaredCopyAssignment = true;
600 data().DeclaredCopyAssignment = true;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000601
Sean Huntffe37fd2011-05-25 20:50:04 +0000602 // C++0x [class.copy]p27:
603 // A copy/move assignment operator for class X is trivial if it is
604 // neither user-provided nor deleted [...]
605 if (Method->isUserProvided())
606 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000607
Sean Huntffe37fd2011-05-25 20:50:04 +0000608 return;
609 }
610
611 if (Method->isMoveAssignmentOperator()) {
612 // This is an extension in C++03 mode, but we'll keep consistency by
613 // taking a move assignment operator to induce non-POD-ness
614 data().PlainOldData = false;
615
616 // This is a move assignment operator.
617 data().UserDeclaredMoveAssignment = true;
618 data().DeclaredMoveAssignment = true;
619
620 // C++0x [class.copy]p27:
621 // A copy/move assignment operator for class X is trivial if it is
622 // neither user-provided nor deleted [...]
623 if (Method->isUserProvided())
624 data().HasTrivialMoveAssignment = false;
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000625 }
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000626
Douglas Gregore80622f2010-09-29 04:25:11 +0000627 // Keep the list of conversion functions up-to-date.
628 if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
629 // We don't record specializations.
630 if (Conversion->getPrimaryTemplate())
631 return;
632
633 // FIXME: We intentionally don't use the decl's access here because it
634 // hasn't been set yet. That's really just a misdesign in Sema.
635
636 if (FunTmpl) {
637 if (FunTmpl->getPreviousDeclaration())
638 data().Conversions.replace(FunTmpl->getPreviousDeclaration(),
639 FunTmpl);
640 else
641 data().Conversions.addDecl(FunTmpl);
642 } else {
643 if (Conversion->getPreviousDeclaration())
644 data().Conversions.replace(Conversion->getPreviousDeclaration(),
645 Conversion);
646 else
647 data().Conversions.addDecl(Conversion);
648 }
649 }
650
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000651 return;
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000652 }
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000653
654 // Handle non-static data members.
655 if (FieldDecl *Field = dyn_cast<FieldDecl>(D)) {
656 // C++ [dcl.init.aggr]p1:
657 // An aggregate is an array or a class (clause 9) with [...] no
658 // private or protected non-static data members (clause 11).
659 //
660 // A POD must be an aggregate.
661 if (D->getAccess() == AS_private || D->getAccess() == AS_protected) {
662 data().Aggregate = false;
663 data().PlainOldData = false;
664 }
Chandler Carrutha8225442011-04-30 09:17:45 +0000665
666 // C++0x [class]p7:
667 // A standard-layout class is a class that:
668 // [...]
669 // -- has the same access control for all non-static data members,
670 switch (D->getAccess()) {
671 case AS_private: data().HasPrivateFields = true; break;
672 case AS_protected: data().HasProtectedFields = true; break;
673 case AS_public: data().HasPublicFields = true; break;
674 case AS_none: assert(0 && "Invalid access specifier");
675 };
676 if ((data().HasPrivateFields + data().HasProtectedFields +
677 data().HasPublicFields) > 1)
Chandler Carruthec997dc2011-04-30 10:07:30 +0000678 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000679
Douglas Gregor2bb11012011-05-13 01:05:07 +0000680 // Keep track of the presence of mutable fields.
681 if (Field->isMutable())
682 data().HasMutableFields = true;
683
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000684 // C++0x [class]p9:
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000685 // A POD struct is a class that is both a trivial class and a
686 // standard-layout class, and has no non-static data members of type
687 // non-POD struct, non-POD union (or array of such types).
John McCallf85e1932011-06-15 23:02:42 +0000688 //
689 // Automatic Reference Counting: the presence of a member of Objective-C pointer type
690 // that does not explicitly have no lifetime makes the class a non-POD.
691 // However, we delay setting PlainOldData to false in this case so that
692 // Sema has a chance to diagnostic causes where the same class will be
693 // non-POD with Automatic Reference Counting but a POD without Instant Objects.
694 // In this case, the class will become a non-POD class when we complete
695 // the definition.
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000696 ASTContext &Context = getASTContext();
697 QualType T = Context.getBaseElementType(Field->getType());
John McCallf85e1932011-06-15 23:02:42 +0000698 if (T->isObjCRetainableType() || T.isObjCGCStrong()) {
699 if (!Context.getLangOptions().ObjCAutoRefCount ||
700 T.getObjCLifetime() != Qualifiers::OCL_ExplicitNone)
701 setHasObjectMember(true);
702 } else if (!T.isPODType(Context))
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000703 data().PlainOldData = false;
John McCallf85e1932011-06-15 23:02:42 +0000704
Chandler Carrutha8225442011-04-30 09:17:45 +0000705 if (T->isReferenceType()) {
Sean Hunt023df372011-05-09 18:22:59 +0000706 data().HasTrivialDefaultConstructor = false;
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000707
Chandler Carrutha8225442011-04-30 09:17:45 +0000708 // C++0x [class]p7:
709 // A standard-layout class is a class that:
710 // -- has no non-static data members of type [...] reference,
Chandler Carruthec997dc2011-04-30 10:07:30 +0000711 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000712 }
713
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000714 // Record if this field is the first non-literal field or base.
715 if (!hasNonLiteralTypeFieldsOrBases() && !T->isLiteralType())
716 data().HasNonLiteralTypeFieldsOrBases = true;
717
Richard Smith7a614d82011-06-11 17:19:42 +0000718 if (Field->hasInClassInitializer()) {
719 // C++0x [class]p5:
720 // A default constructor is trivial if [...] no non-static data member
721 // of its class has a brace-or-equal-initializer.
722 data().HasTrivialDefaultConstructor = false;
723
724 // C++0x [dcl.init.aggr]p1:
725 // An aggregate is a [...] class with [...] no
726 // brace-or-equal-initializers for non-static data members.
727 data().Aggregate = false;
728
729 // C++0x [class]p10:
730 // A POD struct is [...] a trivial class.
731 data().PlainOldData = false;
732 }
733
Douglas Gregor85606eb2010-09-28 20:50:54 +0000734 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
735 CXXRecordDecl* FieldRec = cast<CXXRecordDecl>(RecordTy->getDecl());
736 if (FieldRec->getDefinition()) {
Sean Hunt023df372011-05-09 18:22:59 +0000737 // C++0x [class.ctor]p5:
738 // A defulat constructor is trivial [...] if:
739 // -- for all the non-static data members of its class that are of
740 // class type (or array thereof), each such class has a trivial
741 // default constructor.
742 if (!FieldRec->hasTrivialDefaultConstructor())
743 data().HasTrivialDefaultConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000744
745 // C++0x [class.copy]p13:
746 // A copy/move constructor for class X is trivial if [...]
747 // [...]
748 // -- for each non-static data member of X that is of class type (or
749 // an array thereof), the constructor selected to copy/move that
750 // member is trivial;
751 // FIXME: C++0x: We don't correctly model 'selected' constructors.
Douglas Gregor85606eb2010-09-28 20:50:54 +0000752 if (!FieldRec->hasTrivialCopyConstructor())
753 data().HasTrivialCopyConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000754 if (!FieldRec->hasTrivialMoveConstructor())
755 data().HasTrivialMoveConstructor = false;
756
757 // C++0x [class.copy]p27:
758 // A copy/move assignment operator for class X is trivial if [...]
759 // [...]
760 // -- for each non-static data member of X that is of class type (or
761 // an array thereof), the assignment operator selected to
762 // copy/move that member is trivial;
763 // FIXME: C++0x: We don't correctly model 'selected' operators.
Douglas Gregor85606eb2010-09-28 20:50:54 +0000764 if (!FieldRec->hasTrivialCopyAssignment())
765 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000766 if (!FieldRec->hasTrivialMoveAssignment())
767 data().HasTrivialMoveAssignment = false;
768
Douglas Gregor85606eb2010-09-28 20:50:54 +0000769 if (!FieldRec->hasTrivialDestructor())
770 data().HasTrivialDestructor = false;
John McCallf85e1932011-06-15 23:02:42 +0000771 if (FieldRec->hasObjectMember())
772 setHasObjectMember(true);
Chandler Carrutha8225442011-04-30 09:17:45 +0000773
774 // C++0x [class]p7:
775 // A standard-layout class is a class that:
776 // -- has no non-static data members of type non-standard-layout
777 // class (or array of such types) [...]
Chandler Carruthec997dc2011-04-30 10:07:30 +0000778 if (!FieldRec->isStandardLayout())
779 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000780
781 // C++0x [class]p7:
782 // A standard-layout class is a class that:
783 // [...]
784 // -- has no base classes of the same type as the first non-static
785 // data member.
786 // We don't want to expend bits in the state of the record decl
787 // tracking whether this is the first non-static data member so we
788 // cheat a bit and use some of the existing state: the empty bit.
789 // Virtual bases and virtual methods make a class non-empty, but they
790 // also make it non-standard-layout so we needn't check here.
791 // A non-empty base class may leave the class standard-layout, but not
792 // if we have arrived here, and have at least on non-static data
Chandler Carruthec997dc2011-04-30 10:07:30 +0000793 // member. If IsStandardLayout remains true, then the first non-static
Chandler Carrutha8225442011-04-30 09:17:45 +0000794 // data member must come through here with Empty still true, and Empty
795 // will subsequently be set to false below.
Chandler Carruthec997dc2011-04-30 10:07:30 +0000796 if (data().IsStandardLayout && data().Empty) {
Chandler Carrutha8225442011-04-30 09:17:45 +0000797 for (CXXRecordDecl::base_class_const_iterator BI = bases_begin(),
798 BE = bases_end();
799 BI != BE; ++BI) {
800 if (Context.hasSameUnqualifiedType(BI->getType(), T)) {
Chandler Carruthec997dc2011-04-30 10:07:30 +0000801 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000802 break;
803 }
804 }
805 }
Douglas Gregor2bb11012011-05-13 01:05:07 +0000806
807 // Keep track of the presence of mutable fields.
808 if (FieldRec->hasMutableFields())
809 data().HasMutableFields = true;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000810 }
811 }
Chandler Carrutha8225442011-04-30 09:17:45 +0000812
813 // C++0x [class]p7:
814 // A standard-layout class is a class that:
815 // [...]
816 // -- either has no non-static data members in the most derived
817 // class and at most one base class with non-static data members,
818 // or has no base classes with non-static data members, and
819 // At this point we know that we have a non-static data member, so the last
820 // clause holds.
821 if (!data().HasNoNonEmptyBases)
Chandler Carruthec997dc2011-04-30 10:07:30 +0000822 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000823
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000824 // If this is not a zero-length bit-field, then the class is not empty.
825 if (data().Empty) {
826 if (!Field->getBitWidth())
827 data().Empty = false;
828 else if (!Field->getBitWidth()->isTypeDependent() &&
829 !Field->getBitWidth()->isValueDependent()) {
830 llvm::APSInt Bits;
831 if (Field->getBitWidth()->isIntegerConstantExpr(Bits, Context))
832 if (!!Bits)
833 data().Empty = false;
834 }
835 }
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000836 }
Douglas Gregore80622f2010-09-29 04:25:11 +0000837
838 // Handle using declarations of conversion functions.
839 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(D))
840 if (Shadow->getDeclName().getNameKind()
841 == DeclarationName::CXXConversionFunctionName)
842 data().Conversions.addDecl(Shadow, Shadow->getAccess());
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000843}
844
John McCallb05b5f32010-03-15 09:07:48 +0000845static CanQualType GetConversionType(ASTContext &Context, NamedDecl *Conv) {
846 QualType T;
John McCall32daa422010-03-31 01:36:47 +0000847 if (isa<UsingShadowDecl>(Conv))
848 Conv = cast<UsingShadowDecl>(Conv)->getTargetDecl();
John McCallb05b5f32010-03-15 09:07:48 +0000849 if (FunctionTemplateDecl *ConvTemp = dyn_cast<FunctionTemplateDecl>(Conv))
850 T = ConvTemp->getTemplatedDecl()->getResultType();
851 else
852 T = cast<CXXConversionDecl>(Conv)->getConversionType();
853 return Context.getCanonicalType(T);
Fariborz Jahanian0351a1e2009-10-07 20:43:36 +0000854}
855
John McCallb05b5f32010-03-15 09:07:48 +0000856/// Collect the visible conversions of a base class.
857///
858/// \param Base a base class of the class we're considering
859/// \param InVirtual whether this base class is a virtual base (or a base
860/// of a virtual base)
861/// \param Access the access along the inheritance path to this base
862/// \param ParentHiddenTypes the conversions provided by the inheritors
863/// of this base
864/// \param Output the set to which to add conversions from non-virtual bases
865/// \param VOutput the set to which to add conversions from virtual bases
866/// \param HiddenVBaseCs the set of conversions which were hidden in a
867/// virtual base along some inheritance path
868static void CollectVisibleConversions(ASTContext &Context,
869 CXXRecordDecl *Record,
870 bool InVirtual,
871 AccessSpecifier Access,
872 const llvm::SmallPtrSet<CanQualType, 8> &ParentHiddenTypes,
873 UnresolvedSetImpl &Output,
874 UnresolvedSetImpl &VOutput,
875 llvm::SmallPtrSet<NamedDecl*, 8> &HiddenVBaseCs) {
876 // The set of types which have conversions in this class or its
877 // subclasses. As an optimization, we don't copy the derived set
878 // unless it might change.
879 const llvm::SmallPtrSet<CanQualType, 8> *HiddenTypes = &ParentHiddenTypes;
880 llvm::SmallPtrSet<CanQualType, 8> HiddenTypesBuffer;
881
882 // Collect the direct conversions and figure out which conversions
883 // will be hidden in the subclasses.
884 UnresolvedSetImpl &Cs = *Record->getConversionFunctions();
885 if (!Cs.empty()) {
886 HiddenTypesBuffer = ParentHiddenTypes;
887 HiddenTypes = &HiddenTypesBuffer;
888
889 for (UnresolvedSetIterator I = Cs.begin(), E = Cs.end(); I != E; ++I) {
890 bool Hidden =
891 !HiddenTypesBuffer.insert(GetConversionType(Context, I.getDecl()));
892
893 // If this conversion is hidden and we're in a virtual base,
894 // remember that it's hidden along some inheritance path.
895 if (Hidden && InVirtual)
896 HiddenVBaseCs.insert(cast<NamedDecl>(I.getDecl()->getCanonicalDecl()));
897
898 // If this conversion isn't hidden, add it to the appropriate output.
899 else if (!Hidden) {
900 AccessSpecifier IAccess
901 = CXXRecordDecl::MergeAccess(Access, I.getAccess());
902
903 if (InVirtual)
904 VOutput.addDecl(I.getDecl(), IAccess);
Fariborz Jahanian62509212009-09-12 18:26:03 +0000905 else
John McCallb05b5f32010-03-15 09:07:48 +0000906 Output.addDecl(I.getDecl(), IAccess);
Fariborz Jahanian53462782009-09-11 21:44:33 +0000907 }
908 }
909 }
Sebastian Redl9994a342009-10-25 17:03:50 +0000910
John McCallb05b5f32010-03-15 09:07:48 +0000911 // Collect information recursively from any base classes.
912 for (CXXRecordDecl::base_class_iterator
913 I = Record->bases_begin(), E = Record->bases_end(); I != E; ++I) {
914 const RecordType *RT = I->getType()->getAs<RecordType>();
915 if (!RT) continue;
Sebastian Redl9994a342009-10-25 17:03:50 +0000916
John McCallb05b5f32010-03-15 09:07:48 +0000917 AccessSpecifier BaseAccess
918 = CXXRecordDecl::MergeAccess(Access, I->getAccessSpecifier());
919 bool BaseInVirtual = InVirtual || I->isVirtual();
Sebastian Redl9994a342009-10-25 17:03:50 +0000920
John McCallb05b5f32010-03-15 09:07:48 +0000921 CXXRecordDecl *Base = cast<CXXRecordDecl>(RT->getDecl());
922 CollectVisibleConversions(Context, Base, BaseInVirtual, BaseAccess,
923 *HiddenTypes, Output, VOutput, HiddenVBaseCs);
Fariborz Jahanian53462782009-09-11 21:44:33 +0000924 }
John McCallb05b5f32010-03-15 09:07:48 +0000925}
Sebastian Redl9994a342009-10-25 17:03:50 +0000926
John McCallb05b5f32010-03-15 09:07:48 +0000927/// Collect the visible conversions of a class.
928///
929/// This would be extremely straightforward if it weren't for virtual
930/// bases. It might be worth special-casing that, really.
931static void CollectVisibleConversions(ASTContext &Context,
932 CXXRecordDecl *Record,
933 UnresolvedSetImpl &Output) {
934 // The collection of all conversions in virtual bases that we've
935 // found. These will be added to the output as long as they don't
936 // appear in the hidden-conversions set.
937 UnresolvedSet<8> VBaseCs;
938
939 // The set of conversions in virtual bases that we've determined to
940 // be hidden.
941 llvm::SmallPtrSet<NamedDecl*, 8> HiddenVBaseCs;
942
943 // The set of types hidden by classes derived from this one.
944 llvm::SmallPtrSet<CanQualType, 8> HiddenTypes;
945
946 // Go ahead and collect the direct conversions and add them to the
947 // hidden-types set.
948 UnresolvedSetImpl &Cs = *Record->getConversionFunctions();
949 Output.append(Cs.begin(), Cs.end());
950 for (UnresolvedSetIterator I = Cs.begin(), E = Cs.end(); I != E; ++I)
951 HiddenTypes.insert(GetConversionType(Context, I.getDecl()));
952
953 // Recursively collect conversions from base classes.
954 for (CXXRecordDecl::base_class_iterator
955 I = Record->bases_begin(), E = Record->bases_end(); I != E; ++I) {
956 const RecordType *RT = I->getType()->getAs<RecordType>();
957 if (!RT) continue;
958
959 CollectVisibleConversions(Context, cast<CXXRecordDecl>(RT->getDecl()),
960 I->isVirtual(), I->getAccessSpecifier(),
961 HiddenTypes, Output, VBaseCs, HiddenVBaseCs);
962 }
963
964 // Add any unhidden conversions provided by virtual bases.
965 for (UnresolvedSetIterator I = VBaseCs.begin(), E = VBaseCs.end();
966 I != E; ++I) {
967 if (!HiddenVBaseCs.count(cast<NamedDecl>(I.getDecl()->getCanonicalDecl())))
968 Output.addDecl(I.getDecl(), I.getAccess());
Fariborz Jahanian53462782009-09-11 21:44:33 +0000969 }
Fariborz Jahanian62509212009-09-12 18:26:03 +0000970}
971
972/// getVisibleConversionFunctions - get all conversion functions visible
973/// in current class; including conversion function templates.
John McCalleec51cf2010-01-20 00:46:10 +0000974const UnresolvedSetImpl *CXXRecordDecl::getVisibleConversionFunctions() {
Fariborz Jahanian62509212009-09-12 18:26:03 +0000975 // If root class, all conversions are visible.
976 if (bases_begin() == bases_end())
John McCall86ff3082010-02-04 22:26:26 +0000977 return &data().Conversions;
Fariborz Jahanian62509212009-09-12 18:26:03 +0000978 // If visible conversion list is already evaluated, return it.
John McCall86ff3082010-02-04 22:26:26 +0000979 if (data().ComputedVisibleConversions)
980 return &data().VisibleConversions;
John McCallb05b5f32010-03-15 09:07:48 +0000981 CollectVisibleConversions(getASTContext(), this, data().VisibleConversions);
John McCall86ff3082010-02-04 22:26:26 +0000982 data().ComputedVisibleConversions = true;
983 return &data().VisibleConversions;
Fariborz Jahanian53462782009-09-11 21:44:33 +0000984}
985
John McCall32daa422010-03-31 01:36:47 +0000986void CXXRecordDecl::removeConversion(const NamedDecl *ConvDecl) {
987 // This operation is O(N) but extremely rare. Sema only uses it to
988 // remove UsingShadowDecls in a class that were followed by a direct
989 // declaration, e.g.:
990 // class A : B {
991 // using B::operator int;
992 // operator int();
993 // };
994 // This is uncommon by itself and even more uncommon in conjunction
995 // with sufficiently large numbers of directly-declared conversions
996 // that asymptotic behavior matters.
997
998 UnresolvedSetImpl &Convs = *getConversionFunctions();
999 for (unsigned I = 0, E = Convs.size(); I != E; ++I) {
1000 if (Convs[I].getDecl() == ConvDecl) {
1001 Convs.erase(I);
1002 assert(std::find(Convs.begin(), Convs.end(), ConvDecl) == Convs.end()
1003 && "conversion was found multiple times in unresolved set");
1004 return;
1005 }
1006 }
1007
1008 llvm_unreachable("conversion not found in set!");
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001009}
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00001010
Douglas Gregorf6b11852009-10-08 15:14:33 +00001011CXXRecordDecl *CXXRecordDecl::getInstantiatedFromMemberClass() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001012 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo())
Douglas Gregorf6b11852009-10-08 15:14:33 +00001013 return cast<CXXRecordDecl>(MSInfo->getInstantiatedFrom());
1014
1015 return 0;
1016}
1017
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001018MemberSpecializationInfo *CXXRecordDecl::getMemberSpecializationInfo() const {
1019 return TemplateOrInstantiation.dyn_cast<MemberSpecializationInfo *>();
1020}
1021
Douglas Gregorf6b11852009-10-08 15:14:33 +00001022void
1023CXXRecordDecl::setInstantiationOfMemberClass(CXXRecordDecl *RD,
1024 TemplateSpecializationKind TSK) {
1025 assert(TemplateOrInstantiation.isNull() &&
1026 "Previous template or instantiation?");
1027 assert(!isa<ClassTemplateSpecializationDecl>(this));
1028 TemplateOrInstantiation
1029 = new (getASTContext()) MemberSpecializationInfo(RD, TSK);
1030}
1031
Anders Carlssonb13e3572009-12-07 06:33:48 +00001032TemplateSpecializationKind CXXRecordDecl::getTemplateSpecializationKind() const{
1033 if (const ClassTemplateSpecializationDecl *Spec
Douglas Gregorf6b11852009-10-08 15:14:33 +00001034 = dyn_cast<ClassTemplateSpecializationDecl>(this))
1035 return Spec->getSpecializationKind();
1036
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001037 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo())
Douglas Gregorf6b11852009-10-08 15:14:33 +00001038 return MSInfo->getTemplateSpecializationKind();
1039
1040 return TSK_Undeclared;
1041}
1042
1043void
1044CXXRecordDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK) {
1045 if (ClassTemplateSpecializationDecl *Spec
1046 = dyn_cast<ClassTemplateSpecializationDecl>(this)) {
1047 Spec->setSpecializationKind(TSK);
1048 return;
1049 }
1050
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001051 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) {
Douglas Gregorf6b11852009-10-08 15:14:33 +00001052 MSInfo->setTemplateSpecializationKind(TSK);
1053 return;
1054 }
1055
1056 assert(false && "Not a class template or member class specialization");
1057}
1058
Douglas Gregor1d110e02010-07-01 14:13:13 +00001059CXXDestructorDecl *CXXRecordDecl::getDestructor() const {
1060 ASTContext &Context = getASTContext();
Anders Carlsson7267c162009-05-29 21:03:38 +00001061 QualType ClassType = Context.getTypeDeclType(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001062
1063 DeclarationName Name
Douglas Gregor50d62d12009-08-05 05:36:45 +00001064 = Context.DeclarationNames.getCXXDestructorName(
1065 Context.getCanonicalType(ClassType));
Anders Carlsson7267c162009-05-29 21:03:38 +00001066
John McCallc0bf4622010-02-23 00:48:20 +00001067 DeclContext::lookup_const_iterator I, E;
Mike Stump1eb44332009-09-09 15:08:12 +00001068 llvm::tie(I, E) = lookup(Name);
Sebastian Redld4b25cb2010-09-02 23:19:42 +00001069 if (I == E)
1070 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001071
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00001072 CXXDestructorDecl *Dtor = cast<CXXDestructorDecl>(*I);
Anders Carlsson7267c162009-05-29 21:03:38 +00001073 return Dtor;
1074}
1075
Douglas Gregorda2142f2011-02-19 18:51:44 +00001076void CXXRecordDecl::completeDefinition() {
1077 completeDefinition(0);
1078}
1079
1080void CXXRecordDecl::completeDefinition(CXXFinalOverriderMap *FinalOverriders) {
1081 RecordDecl::completeDefinition();
1082
John McCallf85e1932011-06-15 23:02:42 +00001083 if (hasObjectMember() && getASTContext().getLangOptions().ObjCAutoRefCount) {
1084 // Objective-C Automatic Reference Counting:
1085 // If a class has a non-static data member of Objective-C pointer
1086 // type (or array thereof), it is a non-POD type and its
1087 // default constructor (if any), copy constructor, copy assignment
1088 // operator, and destructor are non-trivial.
1089 struct DefinitionData &Data = data();
1090 Data.PlainOldData = false;
1091 Data.HasTrivialDefaultConstructor = false;
1092 Data.HasTrivialCopyConstructor = false;
1093 Data.HasTrivialCopyAssignment = false;
1094 Data.HasTrivialDestructor = false;
1095 }
1096
Douglas Gregor7a39dd02010-09-29 00:15:42 +00001097 // If the class may be abstract (but hasn't been marked as such), check for
1098 // any pure final overriders.
1099 if (mayBeAbstract()) {
1100 CXXFinalOverriderMap MyFinalOverriders;
1101 if (!FinalOverriders) {
1102 getFinalOverriders(MyFinalOverriders);
1103 FinalOverriders = &MyFinalOverriders;
1104 }
1105
1106 bool Done = false;
1107 for (CXXFinalOverriderMap::iterator M = FinalOverriders->begin(),
1108 MEnd = FinalOverriders->end();
1109 M != MEnd && !Done; ++M) {
1110 for (OverridingMethods::iterator SO = M->second.begin(),
1111 SOEnd = M->second.end();
1112 SO != SOEnd && !Done; ++SO) {
1113 assert(SO->second.size() > 0 &&
1114 "All virtual functions have overridding virtual functions");
1115
1116 // C++ [class.abstract]p4:
1117 // A class is abstract if it contains or inherits at least one
1118 // pure virtual function for which the final overrider is pure
1119 // virtual.
1120 if (SO->second.front().Method->isPure()) {
1121 data().Abstract = true;
1122 Done = true;
1123 break;
1124 }
1125 }
1126 }
1127 }
Douglas Gregore80622f2010-09-29 04:25:11 +00001128
1129 // Set access bits correctly on the directly-declared conversions.
1130 for (UnresolvedSetIterator I = data().Conversions.begin(),
1131 E = data().Conversions.end();
1132 I != E; ++I)
1133 data().Conversions.setAccess(I, (*I)->getAccess());
Douglas Gregor7a39dd02010-09-29 00:15:42 +00001134}
1135
1136bool CXXRecordDecl::mayBeAbstract() const {
1137 if (data().Abstract || isInvalidDecl() || !data().Polymorphic ||
1138 isDependentContext())
1139 return false;
1140
1141 for (CXXRecordDecl::base_class_const_iterator B = bases_begin(),
1142 BEnd = bases_end();
1143 B != BEnd; ++B) {
1144 CXXRecordDecl *BaseDecl
1145 = cast<CXXRecordDecl>(B->getType()->getAs<RecordType>()->getDecl());
1146 if (BaseDecl->isAbstract())
1147 return true;
1148 }
1149
1150 return false;
1151}
1152
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001153CXXMethodDecl *
1154CXXMethodDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001155 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00001156 const DeclarationNameInfo &NameInfo,
John McCalla93c9342009-12-07 02:54:59 +00001157 QualType T, TypeSourceInfo *TInfo,
Douglas Gregorf5251602011-03-08 17:10:18 +00001158 bool isStatic, StorageClass SCAsWritten, bool isInline,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001159 bool isConstexpr, SourceLocation EndLocation) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001160 return new (C) CXXMethodDecl(CXXMethod, RD, StartLoc, NameInfo, T, TInfo,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001161 isStatic, SCAsWritten, isInline, isConstexpr,
1162 EndLocation);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001163}
1164
Douglas Gregor90916562009-09-29 18:16:17 +00001165bool CXXMethodDecl::isUsualDeallocationFunction() const {
1166 if (getOverloadedOperator() != OO_Delete &&
1167 getOverloadedOperator() != OO_Array_Delete)
1168 return false;
Douglas Gregor6d908702010-02-26 05:06:18 +00001169
1170 // C++ [basic.stc.dynamic.deallocation]p2:
1171 // A template instance is never a usual deallocation function,
1172 // regardless of its signature.
1173 if (getPrimaryTemplate())
1174 return false;
1175
Douglas Gregor90916562009-09-29 18:16:17 +00001176 // C++ [basic.stc.dynamic.deallocation]p2:
1177 // If a class T has a member deallocation function named operator delete
1178 // with exactly one parameter, then that function is a usual (non-placement)
1179 // deallocation function. [...]
1180 if (getNumParams() == 1)
1181 return true;
1182
1183 // C++ [basic.stc.dynamic.deallocation]p2:
1184 // [...] If class T does not declare such an operator delete but does
1185 // declare a member deallocation function named operator delete with
1186 // exactly two parameters, the second of which has type std::size_t (18.1),
1187 // then this function is a usual deallocation function.
1188 ASTContext &Context = getASTContext();
1189 if (getNumParams() != 2 ||
Chandler Carruthe228ba92010-02-08 18:54:05 +00001190 !Context.hasSameUnqualifiedType(getParamDecl(1)->getType(),
1191 Context.getSizeType()))
Douglas Gregor90916562009-09-29 18:16:17 +00001192 return false;
1193
1194 // This function is a usual deallocation function if there are no
1195 // single-parameter deallocation functions of the same kind.
1196 for (DeclContext::lookup_const_result R = getDeclContext()->lookup(getDeclName());
1197 R.first != R.second; ++R.first) {
1198 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*R.first))
1199 if (FD->getNumParams() == 1)
1200 return false;
1201 }
1202
1203 return true;
1204}
1205
Douglas Gregor06a9f362010-05-01 20:49:11 +00001206bool CXXMethodDecl::isCopyAssignmentOperator() const {
Sean Huntffe37fd2011-05-25 20:50:04 +00001207 // C++0x [class.copy]p17:
Douglas Gregor06a9f362010-05-01 20:49:11 +00001208 // A user-declared copy assignment operator X::operator= is a non-static
1209 // non-template member function of class X with exactly one parameter of
1210 // type X, X&, const X&, volatile X& or const volatile X&.
1211 if (/*operator=*/getOverloadedOperator() != OO_Equal ||
1212 /*non-static*/ isStatic() ||
Sean Huntffe37fd2011-05-25 20:50:04 +00001213 /*non-template*/getPrimaryTemplate() || getDescribedFunctionTemplate())
Douglas Gregor06a9f362010-05-01 20:49:11 +00001214 return false;
1215
1216 QualType ParamType = getParamDecl(0)->getType();
1217 if (const LValueReferenceType *Ref = ParamType->getAs<LValueReferenceType>())
1218 ParamType = Ref->getPointeeType();
1219
1220 ASTContext &Context = getASTContext();
1221 QualType ClassType
1222 = Context.getCanonicalType(Context.getTypeDeclType(getParent()));
1223 return Context.hasSameUnqualifiedType(ClassType, ParamType);
1224}
1225
Sean Huntffe37fd2011-05-25 20:50:04 +00001226bool CXXMethodDecl::isMoveAssignmentOperator() const {
1227 // C++0x [class.copy]p19:
1228 // A user-declared move assignment operator X::operator= is a non-static
1229 // non-template member function of class X with exactly one parameter of type
1230 // X&&, const X&&, volatile X&&, or const volatile X&&.
1231 if (getOverloadedOperator() != OO_Equal || isStatic() ||
1232 getPrimaryTemplate() || getDescribedFunctionTemplate())
1233 return false;
1234
1235 QualType ParamType = getParamDecl(0)->getType();
1236 if (!isa<RValueReferenceType>(ParamType))
1237 return false;
1238 ParamType = ParamType->getPointeeType();
1239
1240 ASTContext &Context = getASTContext();
1241 QualType ClassType
1242 = Context.getCanonicalType(Context.getTypeDeclType(getParent()));
1243 return Context.hasSameUnqualifiedType(ClassType, ParamType);
1244}
1245
Anders Carlsson05eb2442009-05-16 23:58:37 +00001246void CXXMethodDecl::addOverriddenMethod(const CXXMethodDecl *MD) {
Anders Carlsson3aaf4862009-12-04 05:51:56 +00001247 assert(MD->isCanonicalDecl() && "Method is not canonical!");
Anders Carlssonc076c452010-01-30 17:42:34 +00001248 assert(!MD->getParent()->isDependentContext() &&
1249 "Can't add an overridden method to a class template!");
1250
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001251 getASTContext().addOverriddenMethod(this, MD);
Anders Carlsson05eb2442009-05-16 23:58:37 +00001252}
1253
1254CXXMethodDecl::method_iterator CXXMethodDecl::begin_overridden_methods() const {
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001255 return getASTContext().overridden_methods_begin(this);
Anders Carlsson05eb2442009-05-16 23:58:37 +00001256}
1257
1258CXXMethodDecl::method_iterator CXXMethodDecl::end_overridden_methods() const {
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001259 return getASTContext().overridden_methods_end(this);
Anders Carlsson05eb2442009-05-16 23:58:37 +00001260}
1261
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001262unsigned CXXMethodDecl::size_overridden_methods() const {
1263 return getASTContext().overridden_methods_size(this);
1264}
1265
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001266QualType CXXMethodDecl::getThisType(ASTContext &C) const {
Argyrios Kyrtzidisb0d178d2008-10-24 22:28:18 +00001267 // C++ 9.3.2p1: The type of this in a member function of a class X is X*.
1268 // If the member function is declared const, the type of this is const X*,
1269 // if the member function is declared volatile, the type of this is
1270 // volatile X*, and if the member function is declared const volatile,
1271 // the type of this is const volatile X*.
1272
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001273 assert(isInstance() && "No 'this' for static methods!");
Anders Carlsson31a08752009-06-13 02:59:33 +00001274
John McCall3cb0ebd2010-03-10 03:28:59 +00001275 QualType ClassTy = C.getTypeDeclType(getParent());
John McCall0953e762009-09-24 19:53:00 +00001276 ClassTy = C.getQualifiedType(ClassTy,
1277 Qualifiers::fromCVRMask(getTypeQualifiers()));
Anders Carlsson4e579922009-07-10 21:35:09 +00001278 return C.getPointerType(ClassTy);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001279}
1280
Eli Friedmand7d7f672009-12-06 20:50:05 +00001281bool CXXMethodDecl::hasInlineBody() const {
Douglas Gregorbd6d6192010-01-05 19:06:31 +00001282 // If this function is a template instantiation, look at the template from
1283 // which it was instantiated.
1284 const FunctionDecl *CheckFn = getTemplateInstantiationPattern();
1285 if (!CheckFn)
1286 CheckFn = this;
1287
Eli Friedmand7d7f672009-12-06 20:50:05 +00001288 const FunctionDecl *fn;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001289 return CheckFn->hasBody(fn) && !fn->isOutOfLine();
Eli Friedmand7d7f672009-12-06 20:50:05 +00001290}
1291
Sean Huntcbb67482011-01-08 20:30:50 +00001292CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1293 TypeSourceInfo *TInfo, bool IsVirtual,
1294 SourceLocation L, Expr *Init,
1295 SourceLocation R,
1296 SourceLocation EllipsisLoc)
Sean Huntf51d0b62011-01-08 23:01:16 +00001297 : Initializee(TInfo), MemberOrEllipsisLocation(EllipsisLoc), Init(Init),
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00001298 LParenLoc(L), RParenLoc(R), IsVirtual(IsVirtual), IsWritten(false),
1299 SourceOrderOrNumArrayIndices(0)
Douglas Gregor802ab452009-12-02 22:36:29 +00001300{
Douglas Gregor7ad83902008-11-05 04:29:56 +00001301}
1302
Sean Huntcbb67482011-01-08 20:30:50 +00001303CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1304 FieldDecl *Member,
1305 SourceLocation MemberLoc,
1306 SourceLocation L, Expr *Init,
1307 SourceLocation R)
Sean Huntf51d0b62011-01-08 23:01:16 +00001308 : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init),
Francois Pichet00eb3f92010-12-04 09:14:42 +00001309 LParenLoc(L), RParenLoc(R), IsVirtual(false),
1310 IsWritten(false), SourceOrderOrNumArrayIndices(0)
1311{
1312}
1313
Sean Huntcbb67482011-01-08 20:30:50 +00001314CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1315 IndirectFieldDecl *Member,
1316 SourceLocation MemberLoc,
1317 SourceLocation L, Expr *Init,
1318 SourceLocation R)
Sean Huntf51d0b62011-01-08 23:01:16 +00001319 : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init),
Francois Pichet00eb3f92010-12-04 09:14:42 +00001320 LParenLoc(L), RParenLoc(R), IsVirtual(false),
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00001321 IsWritten(false), SourceOrderOrNumArrayIndices(0)
Douglas Gregor802ab452009-12-02 22:36:29 +00001322{
Douglas Gregor7ad83902008-11-05 04:29:56 +00001323}
1324
Sean Huntcbb67482011-01-08 20:30:50 +00001325CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
Sean Hunt41717662011-02-26 19:13:13 +00001326 SourceLocation D, SourceLocation L,
1327 CXXConstructorDecl *Target, Expr *Init,
1328 SourceLocation R)
1329 : Initializee(Target), MemberOrEllipsisLocation(D), Init(Init),
1330 LParenLoc(L), RParenLoc(R), IsVirtual(false),
1331 IsWritten(false), SourceOrderOrNumArrayIndices(0)
1332{
1333}
1334
1335CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00001336 FieldDecl *Member,
1337 SourceLocation MemberLoc,
1338 SourceLocation L, Expr *Init,
1339 SourceLocation R,
1340 VarDecl **Indices,
1341 unsigned NumIndices)
Sean Huntf51d0b62011-01-08 23:01:16 +00001342 : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init),
Francois Pichet00eb3f92010-12-04 09:14:42 +00001343 LParenLoc(L), RParenLoc(R), IsVirtual(false),
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00001344 IsWritten(false), SourceOrderOrNumArrayIndices(NumIndices)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001345{
1346 VarDecl **MyIndices = reinterpret_cast<VarDecl **> (this + 1);
1347 memcpy(MyIndices, Indices, NumIndices * sizeof(VarDecl *));
1348}
1349
Sean Huntcbb67482011-01-08 20:30:50 +00001350CXXCtorInitializer *CXXCtorInitializer::Create(ASTContext &Context,
1351 FieldDecl *Member,
1352 SourceLocation MemberLoc,
1353 SourceLocation L, Expr *Init,
1354 SourceLocation R,
1355 VarDecl **Indices,
1356 unsigned NumIndices) {
1357 void *Mem = Context.Allocate(sizeof(CXXCtorInitializer) +
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001358 sizeof(VarDecl *) * NumIndices,
Sean Huntcbb67482011-01-08 20:30:50 +00001359 llvm::alignOf<CXXCtorInitializer>());
Sean Huntf51d0b62011-01-08 23:01:16 +00001360 return new (Mem) CXXCtorInitializer(Context, Member, MemberLoc, L, Init, R,
1361 Indices, NumIndices);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001362}
1363
Sean Huntcbb67482011-01-08 20:30:50 +00001364TypeLoc CXXCtorInitializer::getBaseClassLoc() const {
Douglas Gregor802ab452009-12-02 22:36:29 +00001365 if (isBaseInitializer())
Sean Huntf51d0b62011-01-08 23:01:16 +00001366 return Initializee.get<TypeSourceInfo*>()->getTypeLoc();
Douglas Gregor802ab452009-12-02 22:36:29 +00001367 else
1368 return TypeLoc();
1369}
1370
Sean Huntcbb67482011-01-08 20:30:50 +00001371const Type *CXXCtorInitializer::getBaseClass() const {
Douglas Gregor802ab452009-12-02 22:36:29 +00001372 if (isBaseInitializer())
Sean Huntf51d0b62011-01-08 23:01:16 +00001373 return Initializee.get<TypeSourceInfo*>()->getType().getTypePtr();
Douglas Gregor802ab452009-12-02 22:36:29 +00001374 else
1375 return 0;
1376}
1377
Sean Huntcbb67482011-01-08 20:30:50 +00001378SourceLocation CXXCtorInitializer::getSourceLocation() const {
Sean Hunt41717662011-02-26 19:13:13 +00001379 if (isAnyMemberInitializer() || isDelegatingInitializer())
Douglas Gregor802ab452009-12-02 22:36:29 +00001380 return getMemberLocation();
Richard Smith7a614d82011-06-11 17:19:42 +00001381
1382 if (isInClassMemberInitializer())
1383 return getAnyMember()->getLocation();
Douglas Gregor802ab452009-12-02 22:36:29 +00001384
Abramo Bagnarabd054db2010-05-20 10:00:11 +00001385 return getBaseClassLoc().getLocalSourceRange().getBegin();
Douglas Gregor802ab452009-12-02 22:36:29 +00001386}
1387
Sean Huntcbb67482011-01-08 20:30:50 +00001388SourceRange CXXCtorInitializer::getSourceRange() const {
Richard Smith7a614d82011-06-11 17:19:42 +00001389 if (isInClassMemberInitializer()) {
1390 FieldDecl *D = getAnyMember();
1391 if (Expr *I = D->getInClassInitializer())
1392 return I->getSourceRange();
1393 return SourceRange();
1394 }
1395
Douglas Gregor802ab452009-12-02 22:36:29 +00001396 return SourceRange(getSourceLocation(), getRParenLoc());
Douglas Gregor7ad83902008-11-05 04:29:56 +00001397}
1398
Douglas Gregorb48fe382008-10-31 09:07:45 +00001399CXXConstructorDecl *
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001400CXXConstructorDecl::Create(ASTContext &C, EmptyShell Empty) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001401 return new (C) CXXConstructorDecl(0, SourceLocation(), DeclarationNameInfo(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001402 QualType(), 0, false, false, false, false);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001403}
1404
1405CXXConstructorDecl *
Douglas Gregorb48fe382008-10-31 09:07:45 +00001406CXXConstructorDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001407 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00001408 const DeclarationNameInfo &NameInfo,
John McCalla93c9342009-12-07 02:54:59 +00001409 QualType T, TypeSourceInfo *TInfo,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001410 bool isExplicit, bool isInline,
1411 bool isImplicitlyDeclared, bool isConstexpr) {
Abramo Bagnara25777432010-08-11 22:01:17 +00001412 assert(NameInfo.getName().getNameKind()
1413 == DeclarationName::CXXConstructorName &&
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001414 "Name must refer to a constructor");
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001415 return new (C) CXXConstructorDecl(RD, StartLoc, NameInfo, T, TInfo,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001416 isExplicit, isInline, isImplicitlyDeclared,
1417 isConstexpr);
Douglas Gregorb48fe382008-10-31 09:07:45 +00001418}
1419
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001420bool CXXConstructorDecl::isDefaultConstructor() const {
1421 // C++ [class.ctor]p5:
Douglas Gregor64bffa92008-11-05 16:20:31 +00001422 // A default constructor for a class X is a constructor of class
1423 // X that can be called without an argument.
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001424 return (getNumParams() == 0) ||
Anders Carlssonda3f4e22009-08-25 05:12:04 +00001425 (getNumParams() > 0 && getParamDecl(0)->hasDefaultArg());
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001426}
1427
Mike Stump1eb44332009-09-09 15:08:12 +00001428bool
Douglas Gregor9e9199d2009-12-22 00:34:07 +00001429CXXConstructorDecl::isCopyConstructor(unsigned &TypeQuals) const {
Douglas Gregorcc15f012011-01-21 19:38:21 +00001430 return isCopyOrMoveConstructor(TypeQuals) &&
1431 getParamDecl(0)->getType()->isLValueReferenceType();
1432}
1433
1434bool CXXConstructorDecl::isMoveConstructor(unsigned &TypeQuals) const {
1435 return isCopyOrMoveConstructor(TypeQuals) &&
1436 getParamDecl(0)->getType()->isRValueReferenceType();
1437}
1438
1439/// \brief Determine whether this is a copy or move constructor.
1440bool CXXConstructorDecl::isCopyOrMoveConstructor(unsigned &TypeQuals) const {
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001441 // C++ [class.copy]p2:
Douglas Gregor64bffa92008-11-05 16:20:31 +00001442 // A non-template constructor for class X is a copy constructor
1443 // if its first parameter is of type X&, const X&, volatile X& or
1444 // const volatile X&, and either there are no other parameters
1445 // or else all other parameters have default arguments (8.3.6).
Douglas Gregorcc15f012011-01-21 19:38:21 +00001446 // C++0x [class.copy]p3:
1447 // A non-template constructor for class X is a move constructor if its
1448 // first parameter is of type X&&, const X&&, volatile X&&, or
1449 // const volatile X&&, and either there are no other parameters or else
1450 // all other parameters have default arguments.
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001451 if ((getNumParams() < 1) ||
Douglas Gregor77da3f42009-10-13 23:45:19 +00001452 (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()) ||
Douglas Gregorfd476482009-11-13 23:59:09 +00001453 (getPrimaryTemplate() != 0) ||
Douglas Gregor77da3f42009-10-13 23:45:19 +00001454 (getDescribedFunctionTemplate() != 0))
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001455 return false;
Douglas Gregorcc15f012011-01-21 19:38:21 +00001456
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001457 const ParmVarDecl *Param = getParamDecl(0);
Douglas Gregorcc15f012011-01-21 19:38:21 +00001458
1459 // Do we have a reference type?
1460 const ReferenceType *ParamRefType = Param->getType()->getAs<ReferenceType>();
Douglas Gregorfd476482009-11-13 23:59:09 +00001461 if (!ParamRefType)
1462 return false;
Douglas Gregorcc15f012011-01-21 19:38:21 +00001463
Douglas Gregorfd476482009-11-13 23:59:09 +00001464 // Is it a reference to our class type?
Douglas Gregor9e9199d2009-12-22 00:34:07 +00001465 ASTContext &Context = getASTContext();
1466
Douglas Gregorfd476482009-11-13 23:59:09 +00001467 CanQualType PointeeType
1468 = Context.getCanonicalType(ParamRefType->getPointeeType());
Douglas Gregor14e0b3d2009-09-15 20:50:23 +00001469 CanQualType ClassTy
1470 = Context.getCanonicalType(Context.getTagDeclType(getParent()));
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001471 if (PointeeType.getUnqualifiedType() != ClassTy)
1472 return false;
Douglas Gregorcc15f012011-01-21 19:38:21 +00001473
John McCall0953e762009-09-24 19:53:00 +00001474 // FIXME: other qualifiers?
Douglas Gregorcc15f012011-01-21 19:38:21 +00001475
1476 // We have a copy or move constructor.
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001477 TypeQuals = PointeeType.getCVRQualifiers();
Douglas Gregorcc15f012011-01-21 19:38:21 +00001478 return true;
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001479}
1480
Anders Carlssonfaccd722009-08-28 16:57:08 +00001481bool CXXConstructorDecl::isConvertingConstructor(bool AllowExplicit) const {
Douglas Gregor60d62c22008-10-31 16:23:19 +00001482 // C++ [class.conv.ctor]p1:
1483 // A constructor declared without the function-specifier explicit
1484 // that can be called with a single parameter specifies a
1485 // conversion from the type of its first parameter to the type of
1486 // its class. Such a constructor is called a converting
1487 // constructor.
Anders Carlssonfaccd722009-08-28 16:57:08 +00001488 if (isExplicit() && !AllowExplicit)
Douglas Gregor60d62c22008-10-31 16:23:19 +00001489 return false;
1490
Mike Stump1eb44332009-09-09 15:08:12 +00001491 return (getNumParams() == 0 &&
John McCall183700f2009-09-21 23:43:11 +00001492 getType()->getAs<FunctionProtoType>()->isVariadic()) ||
Douglas Gregor60d62c22008-10-31 16:23:19 +00001493 (getNumParams() == 1) ||
Anders Carlssonae0b4e72009-06-06 04:14:07 +00001494 (getNumParams() > 1 && getParamDecl(1)->hasDefaultArg());
Douglas Gregor60d62c22008-10-31 16:23:19 +00001495}
Douglas Gregorb48fe382008-10-31 09:07:45 +00001496
Douglas Gregor6493cc52010-11-08 17:16:59 +00001497bool CXXConstructorDecl::isSpecializationCopyingObject() const {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001498 if ((getNumParams() < 1) ||
1499 (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()) ||
1500 (getPrimaryTemplate() == 0) ||
1501 (getDescribedFunctionTemplate() != 0))
1502 return false;
1503
1504 const ParmVarDecl *Param = getParamDecl(0);
1505
1506 ASTContext &Context = getASTContext();
1507 CanQualType ParamType = Context.getCanonicalType(Param->getType());
1508
Douglas Gregor66724ea2009-11-14 01:20:54 +00001509 // Is it the same as our our class type?
1510 CanQualType ClassTy
1511 = Context.getCanonicalType(Context.getTagDeclType(getParent()));
1512 if (ParamType.getUnqualifiedType() != ClassTy)
1513 return false;
1514
1515 return true;
1516}
1517
Sebastian Redlf677ea32011-02-05 19:23:19 +00001518const CXXConstructorDecl *CXXConstructorDecl::getInheritedConstructor() const {
1519 // Hack: we store the inherited constructor in the overridden method table
1520 method_iterator It = begin_overridden_methods();
1521 if (It == end_overridden_methods())
1522 return 0;
1523
1524 return cast<CXXConstructorDecl>(*It);
1525}
1526
1527void
1528CXXConstructorDecl::setInheritedConstructor(const CXXConstructorDecl *BaseCtor){
1529 // Hack: we store the inherited constructor in the overridden method table
1530 assert(size_overridden_methods() == 0 && "Base ctor already set.");
1531 addOverriddenMethod(BaseCtor);
1532}
1533
Douglas Gregor42a552f2008-11-05 20:51:48 +00001534CXXDestructorDecl *
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001535CXXDestructorDecl::Create(ASTContext &C, EmptyShell Empty) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001536 return new (C) CXXDestructorDecl(0, SourceLocation(), DeclarationNameInfo(),
Craig Silversteinb41d8992010-10-21 00:44:50 +00001537 QualType(), 0, false, false);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001538}
1539
1540CXXDestructorDecl *
Douglas Gregor42a552f2008-11-05 20:51:48 +00001541CXXDestructorDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001542 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00001543 const DeclarationNameInfo &NameInfo,
Craig Silversteinb41d8992010-10-21 00:44:50 +00001544 QualType T, TypeSourceInfo *TInfo,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001545 bool isInline, bool isImplicitlyDeclared) {
Abramo Bagnara25777432010-08-11 22:01:17 +00001546 assert(NameInfo.getName().getNameKind()
1547 == DeclarationName::CXXDestructorName &&
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001548 "Name must refer to a destructor");
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001549 return new (C) CXXDestructorDecl(RD, StartLoc, NameInfo, T, TInfo, isInline,
Abramo Bagnara25777432010-08-11 22:01:17 +00001550 isImplicitlyDeclared);
Douglas Gregor42a552f2008-11-05 20:51:48 +00001551}
1552
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001553CXXConversionDecl *
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001554CXXConversionDecl::Create(ASTContext &C, EmptyShell Empty) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001555 return new (C) CXXConversionDecl(0, SourceLocation(), DeclarationNameInfo(),
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001556 QualType(), 0, false, false, false,
Douglas Gregorf5251602011-03-08 17:10:18 +00001557 SourceLocation());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001558}
1559
1560CXXConversionDecl *
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001561CXXConversionDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001562 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00001563 const DeclarationNameInfo &NameInfo,
John McCalla93c9342009-12-07 02:54:59 +00001564 QualType T, TypeSourceInfo *TInfo,
Douglas Gregorf5251602011-03-08 17:10:18 +00001565 bool isInline, bool isExplicit,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001566 bool isConstexpr, SourceLocation EndLocation) {
Abramo Bagnara25777432010-08-11 22:01:17 +00001567 assert(NameInfo.getName().getNameKind()
1568 == DeclarationName::CXXConversionFunctionName &&
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001569 "Name must refer to a conversion function");
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001570 return new (C) CXXConversionDecl(RD, StartLoc, NameInfo, T, TInfo,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001571 isInline, isExplicit, isConstexpr,
1572 EndLocation);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001573}
1574
Chris Lattner21ef7ae2008-11-04 16:51:42 +00001575LinkageSpecDecl *LinkageSpecDecl::Create(ASTContext &C,
Mike Stump1eb44332009-09-09 15:08:12 +00001576 DeclContext *DC,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001577 SourceLocation ExternLoc,
1578 SourceLocation LangLoc,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00001579 LanguageIDs Lang,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00001580 SourceLocation RBraceLoc) {
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001581 return new (C) LinkageSpecDecl(DC, ExternLoc, LangLoc, Lang, RBraceLoc);
Douglas Gregorf44515a2008-12-16 22:23:02 +00001582}
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001583
1584UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC,
1585 SourceLocation L,
1586 SourceLocation NamespaceLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00001587 NestedNameSpecifierLoc QualifierLoc,
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001588 SourceLocation IdentLoc,
Sebastian Redleb0d8c92009-11-23 15:34:23 +00001589 NamedDecl *Used,
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001590 DeclContext *CommonAncestor) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00001591 if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Used))
1592 Used = NS->getOriginalNamespace();
Douglas Gregordb992412011-02-25 16:33:46 +00001593 return new (C) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc,
1594 IdentLoc, Used, CommonAncestor);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001595}
1596
Sebastian Redleb0d8c92009-11-23 15:34:23 +00001597NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() {
1598 if (NamespaceAliasDecl *NA =
1599 dyn_cast_or_null<NamespaceAliasDecl>(NominatedNamespace))
1600 return NA->getNamespace();
1601 return cast_or_null<NamespaceDecl>(NominatedNamespace);
1602}
1603
Mike Stump1eb44332009-09-09 15:08:12 +00001604NamespaceAliasDecl *NamespaceAliasDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregor0a35bce2010-09-01 03:07:18 +00001605 SourceLocation UsingLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001606 SourceLocation AliasLoc,
1607 IdentifierInfo *Alias,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00001608 NestedNameSpecifierLoc QualifierLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001609 SourceLocation IdentLoc,
Anders Carlsson68771c72009-03-28 22:58:02 +00001610 NamedDecl *Namespace) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00001611 if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Namespace))
1612 Namespace = NS->getOriginalNamespace();
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00001613 return new (C) NamespaceAliasDecl(DC, UsingLoc, AliasLoc, Alias,
1614 QualifierLoc, IdentLoc, Namespace);
Anders Carlsson68771c72009-03-28 22:58:02 +00001615}
1616
Argyrios Kyrtzidis826faa22010-11-10 05:40:41 +00001617UsingDecl *UsingShadowDecl::getUsingDecl() const {
1618 const UsingShadowDecl *Shadow = this;
1619 while (const UsingShadowDecl *NextShadow =
1620 dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow))
1621 Shadow = NextShadow;
1622 return cast<UsingDecl>(Shadow->UsingOrNextShadow);
1623}
1624
1625void UsingDecl::addShadowDecl(UsingShadowDecl *S) {
1626 assert(std::find(shadow_begin(), shadow_end(), S) == shadow_end() &&
1627 "declaration already in set");
1628 assert(S->getUsingDecl() == this);
1629
1630 if (FirstUsingShadow)
1631 S->UsingOrNextShadow = FirstUsingShadow;
1632 FirstUsingShadow = S;
1633}
1634
1635void UsingDecl::removeShadowDecl(UsingShadowDecl *S) {
1636 assert(std::find(shadow_begin(), shadow_end(), S) != shadow_end() &&
1637 "declaration not in set");
1638 assert(S->getUsingDecl() == this);
1639
1640 // Remove S from the shadow decl chain. This is O(n) but hopefully rare.
1641
1642 if (FirstUsingShadow == S) {
1643 FirstUsingShadow = dyn_cast<UsingShadowDecl>(S->UsingOrNextShadow);
1644 S->UsingOrNextShadow = this;
1645 return;
1646 }
1647
1648 UsingShadowDecl *Prev = FirstUsingShadow;
1649 while (Prev->UsingOrNextShadow != S)
1650 Prev = cast<UsingShadowDecl>(Prev->UsingOrNextShadow);
1651 Prev->UsingOrNextShadow = S->UsingOrNextShadow;
1652 S->UsingOrNextShadow = this;
1653}
1654
Douglas Gregordc355712011-02-25 00:36:19 +00001655UsingDecl *UsingDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation UL,
1656 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001657 const DeclarationNameInfo &NameInfo,
1658 bool IsTypeNameArg) {
Douglas Gregordc355712011-02-25 00:36:19 +00001659 return new (C) UsingDecl(DC, UL, QualifierLoc, NameInfo, IsTypeNameArg);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001660}
1661
John McCall7ba107a2009-11-18 02:36:19 +00001662UnresolvedUsingValueDecl *
1663UnresolvedUsingValueDecl::Create(ASTContext &C, DeclContext *DC,
1664 SourceLocation UsingLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00001665 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001666 const DeclarationNameInfo &NameInfo) {
John McCall7ba107a2009-11-18 02:36:19 +00001667 return new (C) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00001668 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00001669}
1670
1671UnresolvedUsingTypenameDecl *
1672UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC,
1673 SourceLocation UsingLoc,
1674 SourceLocation TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00001675 NestedNameSpecifierLoc QualifierLoc,
John McCall7ba107a2009-11-18 02:36:19 +00001676 SourceLocation TargetNameLoc,
1677 DeclarationName TargetName) {
1678 return new (C) UnresolvedUsingTypenameDecl(DC, UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00001679 QualifierLoc, TargetNameLoc,
John McCall7ba107a2009-11-18 02:36:19 +00001680 TargetName.getAsIdentifierInfo());
Anders Carlsson665b49c2009-08-28 05:30:28 +00001681}
1682
Anders Carlssonfb311762009-03-14 00:25:26 +00001683StaticAssertDecl *StaticAssertDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001684 SourceLocation StaticAssertLoc,
1685 Expr *AssertExpr,
1686 StringLiteral *Message,
1687 SourceLocation RParenLoc) {
1688 return new (C) StaticAssertDecl(DC, StaticAssertLoc, AssertExpr, Message,
1689 RParenLoc);
Anders Carlssonfb311762009-03-14 00:25:26 +00001690}
1691
Anders Carlsson05bf2c72009-03-26 23:46:50 +00001692static const char *getAccessName(AccessSpecifier AS) {
1693 switch (AS) {
1694 default:
1695 case AS_none:
1696 assert("Invalid access specifier!");
1697 return 0;
1698 case AS_public:
1699 return "public";
1700 case AS_private:
1701 return "private";
1702 case AS_protected:
1703 return "protected";
1704 }
1705}
1706
1707const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB,
1708 AccessSpecifier AS) {
1709 return DB << getAccessName(AS);
1710}