blob: d2549eedd577d50f5f6890213c55ac8cdc6788f4 [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 Gregor76852c22011-11-01 01:16:03 +000020#include "clang/AST/ExprCXX.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000021#include "clang/AST/TypeLoc.h"
Douglas Gregor7d7e6722008-11-12 23:21:09 +000022#include "clang/Basic/IdentifierTable.h"
Douglas Gregorfdfab6b2008-12-23 21:31:30 +000023#include "llvm/ADT/STLExtras.h"
Fariborz Jahanianfaebcbb2009-09-12 19:52:10 +000024#include "llvm/ADT/SmallPtrSet.h"
Ted Kremenek4b7c9832008-09-05 17:16:31 +000025using namespace clang;
26
27//===----------------------------------------------------------------------===//
28// Decl Allocation/Deallocation Method Implementations
29//===----------------------------------------------------------------------===//
Douglas Gregor72c3f312008-12-05 18:15:24 +000030
David Blaikie99ba9e32011-12-20 02:48:34 +000031void AccessSpecDecl::anchor() { }
32
Douglas Gregor1e68ecc2012-01-05 21:55:30 +000033AccessSpecDecl *AccessSpecDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
34 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(AccessSpecDecl));
35 return new (Mem) AccessSpecDecl(EmptyShell());
36}
37
John McCall86ff3082010-02-04 22:26:26 +000038CXXRecordDecl::DefinitionData::DefinitionData(CXXRecordDecl *D)
39 : UserDeclaredConstructor(false), UserDeclaredCopyConstructor(false),
Sean Huntffe37fd2011-05-25 20:50:04 +000040 UserDeclaredMoveConstructor(false), UserDeclaredCopyAssignment(false),
41 UserDeclaredMoveAssignment(false), UserDeclaredDestructor(false),
Eli Friedman97c134e2009-08-15 22:23:00 +000042 Aggregate(true), PlainOldData(true), Empty(true), Polymorphic(false),
Chandler Carruthec997dc2011-04-30 10:07:30 +000043 Abstract(false), IsStandardLayout(true), HasNoNonEmptyBases(true),
Chandler Carrutha8225442011-04-30 09:17:45 +000044 HasPrivateFields(false), HasProtectedFields(false), HasPublicFields(false),
Argyrios Kyrtzidis4fe19b52012-01-26 18:28:08 +000045 HasMutableFields(false), HasOnlyCMembers(true),
Richard Smithd079abf2012-05-07 01:07:30 +000046 HasInClassInitializer(false),
Argyrios Kyrtzidis277b1562012-01-23 16:58:45 +000047 HasTrivialDefaultConstructor(true),
Richard Smith61802452011-12-22 02:22:31 +000048 HasConstexprNonCopyMoveConstructor(false),
49 DefaultedDefaultConstructorIsConstexpr(true),
Richard Smithd3861ce2012-06-10 07:07:24 +000050 HasConstexprDefaultConstructor(false), HasTrivialCopyConstructor(true),
Sean Hunt023df372011-05-09 18:22:59 +000051 HasTrivialMoveConstructor(true), HasTrivialCopyAssignment(true),
52 HasTrivialMoveAssignment(true), HasTrivialDestructor(true),
Richard Smithdfefb842012-02-25 07:33:38 +000053 HasIrrelevantDestructor(true),
Sean Hunt023df372011-05-09 18:22:59 +000054 HasNonLiteralTypeFieldsOrBases(false), ComputedVisibleConversions(false),
Sean Huntcdee3fe2011-05-11 22:34:38 +000055 UserProvidedDefaultConstructor(false), DeclaredDefaultConstructor(false),
Sean Huntffe37fd2011-05-25 20:50:04 +000056 DeclaredCopyConstructor(false), DeclaredMoveConstructor(false),
57 DeclaredCopyAssignment(false), DeclaredMoveAssignment(false),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000058 DeclaredDestructor(false), FailedImplicitMoveConstructor(false),
Eli Friedman72899c32012-01-07 04:59:52 +000059 FailedImplicitMoveAssignment(false), IsLambda(false), NumBases(0),
60 NumVBases(0), Bases(), VBases(), Definition(D), FirstFriend(0) {
John McCall86ff3082010-02-04 22:26:26 +000061}
62
Benjamin Krameree3096a2012-07-04 17:03:33 +000063CXXBaseSpecifier *CXXRecordDecl::DefinitionData::getBasesSlowCase() const {
64 return Bases.get(Definition->getASTContext().getExternalSource());
65}
66
67CXXBaseSpecifier *CXXRecordDecl::DefinitionData::getVBasesSlowCase() const {
68 return VBases.get(Definition->getASTContext().getExternalSource());
69}
70
John McCall86ff3082010-02-04 22:26:26 +000071CXXRecordDecl::CXXRecordDecl(Kind K, TagKind TK, DeclContext *DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000072 SourceLocation StartLoc, SourceLocation IdLoc,
73 IdentifierInfo *Id, CXXRecordDecl *PrevDecl)
74 : RecordDecl(K, TK, DC, StartLoc, IdLoc, Id, PrevDecl),
John McCall86ff3082010-02-04 22:26:26 +000075 DefinitionData(PrevDecl ? PrevDecl->DefinitionData : 0),
Douglas Gregord475b8d2009-03-25 21:17:03 +000076 TemplateOrInstantiation() { }
Douglas Gregor7d7e6722008-11-12 23:21:09 +000077
Jay Foad4ba2a172011-01-12 09:06:06 +000078CXXRecordDecl *CXXRecordDecl::Create(const ASTContext &C, TagKind TK,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000079 DeclContext *DC, SourceLocation StartLoc,
80 SourceLocation IdLoc, IdentifierInfo *Id,
Douglas Gregoraafc0cc2009-05-15 19:11:46 +000081 CXXRecordDecl* PrevDecl,
82 bool DelayTypeCreation) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000083 CXXRecordDecl* R = new (C) CXXRecordDecl(CXXRecord, TK, DC, StartLoc, IdLoc,
84 Id, PrevDecl);
Mike Stump1eb44332009-09-09 15:08:12 +000085
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +000086 // FIXME: DelayTypeCreation seems like such a hack
Douglas Gregoraafc0cc2009-05-15 19:11:46 +000087 if (!DelayTypeCreation)
Mike Stump1eb44332009-09-09 15:08:12 +000088 C.getTypeDeclType(R, PrevDecl);
Ted Kremenek4b7c9832008-09-05 17:16:31 +000089 return R;
90}
91
Douglas Gregorda8962a2012-02-13 15:44:47 +000092CXXRecordDecl *CXXRecordDecl::CreateLambda(const ASTContext &C, DeclContext *DC,
Douglas Gregorf4b7de12012-02-21 19:11:17 +000093 SourceLocation Loc, bool Dependent) {
Douglas Gregorda8962a2012-02-13 15:44:47 +000094 CXXRecordDecl* R = new (C) CXXRecordDecl(CXXRecord, TTK_Class, DC, Loc, Loc,
95 0, 0);
96 R->IsBeingDefined = true;
Douglas Gregorf4b7de12012-02-21 19:11:17 +000097 R->DefinitionData = new (C) struct LambdaDefinitionData(R, Dependent);
Douglas Gregorda8962a2012-02-13 15:44:47 +000098 C.getTypeDeclType(R, /*PrevDecl=*/0);
99 return R;
100}
101
Douglas Gregor1e68ecc2012-01-05 21:55:30 +0000102CXXRecordDecl *
103CXXRecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) {
104 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(CXXRecordDecl));
105 return new (Mem) CXXRecordDecl(CXXRecord, TTK_Struct, 0, SourceLocation(),
106 SourceLocation(), 0, 0);
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +0000107}
108
Mike Stump1eb44332009-09-09 15:08:12 +0000109void
Douglas Gregor2d5b7032010-02-11 01:30:34 +0000110CXXRecordDecl::setBases(CXXBaseSpecifier const * const *Bases,
Douglas Gregor57c856b2008-10-23 18:13:27 +0000111 unsigned NumBases) {
Douglas Gregor2d5b7032010-02-11 01:30:34 +0000112 ASTContext &C = getASTContext();
Douglas Gregor64bffa92008-11-05 16:20:31 +0000113
Douglas Gregor7c789c12010-10-29 22:39:52 +0000114 if (!data().Bases.isOffset() && data().NumBases > 0)
115 C.Deallocate(data().getBases());
Mike Stump1eb44332009-09-09 15:08:12 +0000116
Richard Smithdd677232011-10-18 20:08:55 +0000117 if (NumBases) {
118 // C++ [dcl.init.aggr]p1:
119 // An aggregate is [...] a class with [...] no base classes [...].
120 data().Aggregate = false;
121
122 // C++ [class]p4:
123 // A POD-struct is an aggregate class...
124 data().PlainOldData = false;
125 }
126
Anders Carlsson6f6de732010-03-29 05:13:12 +0000127 // The set of seen virtual base types.
Anders Carlsson1c363932010-03-29 19:49:09 +0000128 llvm::SmallPtrSet<CanQualType, 8> SeenVBaseTypes;
Anders Carlsson6f6de732010-03-29 05:13:12 +0000129
130 // The virtual bases of this class.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000131 SmallVector<const CXXBaseSpecifier *, 8> VBases;
Mike Stump1eb44332009-09-09 15:08:12 +0000132
John McCall86ff3082010-02-04 22:26:26 +0000133 data().Bases = new(C) CXXBaseSpecifier [NumBases];
134 data().NumBases = NumBases;
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000135 for (unsigned i = 0; i < NumBases; ++i) {
Douglas Gregor7c789c12010-10-29 22:39:52 +0000136 data().getBases()[i] = *Bases[i];
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000137 // Keep track of inherited vbases for this base class.
138 const CXXBaseSpecifier *Base = Bases[i];
139 QualType BaseType = Base->getType();
Douglas Gregor5fe8c042010-02-27 00:25:28 +0000140 // Skip dependent types; we can't do any checking on them now.
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000141 if (BaseType->isDependentType())
142 continue;
143 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +0000144 = cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
Anders Carlsson6f6de732010-03-29 05:13:12 +0000145
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000146 // A class with a non-empty base class is not empty.
147 // FIXME: Standard ref?
Chandler Carrutha8225442011-04-30 09:17:45 +0000148 if (!BaseClassDecl->isEmpty()) {
149 if (!data().Empty) {
150 // C++0x [class]p7:
151 // A standard-layout class is a class that:
152 // [...]
153 // -- either has no non-static data members in the most derived
154 // class and at most one base class with non-static data members,
155 // or has no base classes with non-static data members, and
156 // If this is the second non-empty base, then neither of these two
157 // clauses can be true.
Chandler Carruthec997dc2011-04-30 10:07:30 +0000158 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000159 }
160
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000161 data().Empty = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000162 data().HasNoNonEmptyBases = false;
163 }
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000164
Douglas Gregor85606eb2010-09-28 20:50:54 +0000165 // C++ [class.virtual]p1:
166 // A class that declares or inherits a virtual function is called a
167 // polymorphic class.
168 if (BaseClassDecl->isPolymorphic())
169 data().Polymorphic = true;
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000170
Chandler Carrutha8225442011-04-30 09:17:45 +0000171 // C++0x [class]p7:
172 // A standard-layout class is a class that: [...]
173 // -- has no non-standard-layout base classes
Chandler Carruthec997dc2011-04-30 10:07:30 +0000174 if (!BaseClassDecl->isStandardLayout())
175 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000176
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000177 // Record if this base is the first non-literal field or base.
178 if (!hasNonLiteralTypeFieldsOrBases() && !BaseType->isLiteralType())
179 data().HasNonLiteralTypeFieldsOrBases = true;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000180
Anders Carlsson6f6de732010-03-29 05:13:12 +0000181 // Now go through all virtual bases of this base and add them.
Mike Stump1eb44332009-09-09 15:08:12 +0000182 for (CXXRecordDecl::base_class_iterator VBase =
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000183 BaseClassDecl->vbases_begin(),
184 E = BaseClassDecl->vbases_end(); VBase != E; ++VBase) {
Anders Carlsson6f6de732010-03-29 05:13:12 +0000185 // Add this base if it's not already in the list.
Anders Carlsson1c363932010-03-29 19:49:09 +0000186 if (SeenVBaseTypes.insert(C.getCanonicalType(VBase->getType())))
Anders Carlsson6f6de732010-03-29 05:13:12 +0000187 VBases.push_back(VBase);
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000188 }
Anders Carlsson6f6de732010-03-29 05:13:12 +0000189
190 if (Base->isVirtual()) {
191 // Add this base if it's not already in the list.
Anders Carlsson1c363932010-03-29 19:49:09 +0000192 if (SeenVBaseTypes.insert(C.getCanonicalType(BaseType)))
Anders Carlsson6f6de732010-03-29 05:13:12 +0000193 VBases.push_back(Base);
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000194
195 // C++0x [meta.unary.prop] is_empty:
196 // T is a class type, but not a union type, with ... no virtual base
197 // classes
198 data().Empty = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000199
200 // C++ [class.ctor]p5:
Sean Hunt023df372011-05-09 18:22:59 +0000201 // A default constructor is trivial [...] if:
202 // -- its class has [...] no virtual bases
203 data().HasTrivialDefaultConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000204
205 // C++0x [class.copy]p13:
206 // A copy/move constructor for class X is trivial if it is neither
207 // user-provided nor deleted and if
208 // -- class X has no virtual functions and no virtual base classes, and
Douglas Gregor85606eb2010-09-28 20:50:54 +0000209 data().HasTrivialCopyConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000210 data().HasTrivialMoveConstructor = false;
211
212 // C++0x [class.copy]p27:
213 // A copy/move assignment operator for class X is trivial if it is
214 // neither user-provided nor deleted and if
215 // -- class X has no virtual functions and no virtual base classes, and
Douglas Gregor85606eb2010-09-28 20:50:54 +0000216 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000217 data().HasTrivialMoveAssignment = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000218
219 // C++0x [class]p7:
220 // A standard-layout class is a class that: [...]
221 // -- has [...] no virtual base classes
Chandler Carruthec997dc2011-04-30 10:07:30 +0000222 data().IsStandardLayout = false;
Richard Smith61802452011-12-22 02:22:31 +0000223
224 // C++11 [dcl.constexpr]p4:
225 // In the definition of a constexpr constructor [...]
226 // -- the class shall not have any virtual base classes
227 data().DefaultedDefaultConstructorIsConstexpr = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000228 } else {
229 // C++ [class.ctor]p5:
Sean Hunt023df372011-05-09 18:22:59 +0000230 // A default constructor is trivial [...] if:
231 // -- all the direct base classes of its class have trivial default
232 // constructors.
233 if (!BaseClassDecl->hasTrivialDefaultConstructor())
234 data().HasTrivialDefaultConstructor = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000235
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000236 // C++0x [class.copy]p13:
237 // A copy/move constructor for class X is trivial if [...]
238 // [...]
239 // -- the constructor selected to copy/move each direct base class
240 // subobject is trivial, and
241 // FIXME: C++0x: We need to only consider the selected constructor
242 // instead of all of them.
Douglas Gregor85606eb2010-09-28 20:50:54 +0000243 if (!BaseClassDecl->hasTrivialCopyConstructor())
244 data().HasTrivialCopyConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000245 if (!BaseClassDecl->hasTrivialMoveConstructor())
246 data().HasTrivialMoveConstructor = false;
247
248 // C++0x [class.copy]p27:
249 // A copy/move assignment operator for class X is trivial if [...]
250 // [...]
251 // -- the assignment operator selected to copy/move each direct base
252 // class subobject is trivial, and
253 // FIXME: C++0x: We need to only consider the selected operator instead
254 // of all of them.
Douglas Gregor85606eb2010-09-28 20:50:54 +0000255 if (!BaseClassDecl->hasTrivialCopyAssignment())
256 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000257 if (!BaseClassDecl->hasTrivialMoveAssignment())
258 data().HasTrivialMoveAssignment = false;
Richard Smith61802452011-12-22 02:22:31 +0000259
260 // C++11 [class.ctor]p6:
Richard Smithde8facc2012-01-11 18:26:05 +0000261 // If that user-written default constructor would satisfy the
Richard Smith61802452011-12-22 02:22:31 +0000262 // requirements of a constexpr constructor, the implicitly-defined
263 // default constructor is constexpr.
264 if (!BaseClassDecl->hasConstexprDefaultConstructor())
265 data().DefaultedDefaultConstructorIsConstexpr = false;
Anders Carlsson6f6de732010-03-29 05:13:12 +0000266 }
Douglas Gregor85606eb2010-09-28 20:50:54 +0000267
268 // C++ [class.ctor]p3:
269 // A destructor is trivial if all the direct base classes of its class
270 // have trivial destructors.
271 if (!BaseClassDecl->hasTrivialDestructor())
272 data().HasTrivialDestructor = false;
Richard Smithdfefb842012-02-25 07:33:38 +0000273
274 if (!BaseClassDecl->hasIrrelevantDestructor())
275 data().HasIrrelevantDestructor = false;
276
John McCallf85e1932011-06-15 23:02:42 +0000277 // A class has an Objective-C object member if... or any of its bases
278 // has an Objective-C object member.
279 if (BaseClassDecl->hasObjectMember())
280 setHasObjectMember(true);
281
Douglas Gregor2bb11012011-05-13 01:05:07 +0000282 // Keep track of the presence of mutable fields.
283 if (BaseClassDecl->hasMutableFields())
284 data().HasMutableFields = true;
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000285 }
Anders Carlsson6f6de732010-03-29 05:13:12 +0000286
287 if (VBases.empty())
288 return;
289
290 // Create base specifier for any direct or indirect virtual bases.
291 data().VBases = new (C) CXXBaseSpecifier[VBases.size()];
292 data().NumVBases = VBases.size();
Richard Smith9f8ee2e2011-07-12 23:49:11 +0000293 for (int I = 0, E = VBases.size(); I != E; ++I)
294 data().getVBases()[I] = *VBases[I];
Douglas Gregor57c856b2008-10-23 18:13:27 +0000295}
296
Douglas Gregor9edad9b2010-01-14 17:47:39 +0000297/// Callback function for CXXRecordDecl::forallBases that acknowledges
298/// that it saw a base class.
299static bool SawBase(const CXXRecordDecl *, void *) {
300 return true;
301}
302
303bool CXXRecordDecl::hasAnyDependentBases() const {
304 if (!isDependentContext())
305 return false;
306
307 return !forallBases(SawBase, 0);
308}
309
Sean Huntffe37fd2011-05-25 20:50:04 +0000310bool CXXRecordDecl::hasConstCopyConstructor() const {
311 return getCopyConstructor(Qualifiers::Const) != 0;
Fariborz Jahanian485f0872009-06-22 23:34:40 +0000312}
313
Chandler Carruthb7e95892011-04-23 10:47:28 +0000314bool CXXRecordDecl::isTriviallyCopyable() const {
315 // C++0x [class]p5:
316 // A trivially copyable class is a class that:
317 // -- has no non-trivial copy constructors,
318 if (!hasTrivialCopyConstructor()) return false;
319 // -- has no non-trivial move constructors,
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000320 if (!hasTrivialMoveConstructor()) return false;
Chandler Carruthb7e95892011-04-23 10:47:28 +0000321 // -- has no non-trivial copy assignment operators,
322 if (!hasTrivialCopyAssignment()) return false;
323 // -- has no non-trivial move assignment operators, and
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000324 if (!hasTrivialMoveAssignment()) return false;
Chandler Carruthb7e95892011-04-23 10:47:28 +0000325 // -- has a trivial destructor.
326 if (!hasTrivialDestructor()) return false;
327
328 return true;
329}
330
Douglas Gregor0d405db2010-07-01 20:59:04 +0000331/// \brief Perform a simplistic form of overload resolution that only considers
332/// cv-qualifiers on a single parameter, and return the best overload candidate
333/// (if there is one).
334static CXXMethodDecl *
335GetBestOverloadCandidateSimple(
Chris Lattner5f9e2722011-07-23 10:55:15 +0000336 const SmallVectorImpl<std::pair<CXXMethodDecl *, Qualifiers> > &Cands) {
Douglas Gregor0d405db2010-07-01 20:59:04 +0000337 if (Cands.empty())
338 return 0;
339 if (Cands.size() == 1)
340 return Cands[0].first;
341
342 unsigned Best = 0, N = Cands.size();
343 for (unsigned I = 1; I != N; ++I)
Douglas Gregor61d0b6b2011-04-28 00:56:09 +0000344 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
Douglas Gregor0d405db2010-07-01 20:59:04 +0000345 Best = I;
346
Benjamin Kramer2cd7f412012-07-30 15:53:26 +0000347 for (unsigned I = 0; I != N; ++I)
348 if (I != Best && Cands[Best].second.compatiblyIncludes(Cands[I].second))
Douglas Gregor0d405db2010-07-01 20:59:04 +0000349 return 0;
350
351 return Cands[Best].first;
352}
353
Sean Huntffe37fd2011-05-25 20:50:04 +0000354CXXConstructorDecl *CXXRecordDecl::getCopyConstructor(unsigned TypeQuals) const{
355 ASTContext &Context = getASTContext();
Sebastian Redl64b45f72009-01-05 20:52:13 +0000356 QualType ClassType
357 = Context.getTypeDeclType(const_cast<CXXRecordDecl*>(this));
Mike Stump1eb44332009-09-09 15:08:12 +0000358 DeclarationName ConstructorName
Douglas Gregor9e7d9de2008-12-15 21:24:18 +0000359 = Context.DeclarationNames.getCXXConstructorName(
Fariborz Jahanian485f0872009-06-22 23:34:40 +0000360 Context.getCanonicalType(ClassType));
361 unsigned FoundTQs;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000362 SmallVector<std::pair<CXXMethodDecl *, Qualifiers>, 4> Found;
Douglas Gregorfdfab6b2008-12-23 21:31:30 +0000363 DeclContext::lookup_const_iterator Con, ConEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000364 for (llvm::tie(Con, ConEnd) = this->lookup(ConstructorName);
Douglas Gregorfdfab6b2008-12-23 21:31:30 +0000365 Con != ConEnd; ++Con) {
Douglas Gregord93bacf2009-09-04 14:46:39 +0000366 // C++ [class.copy]p2:
367 // A non-template constructor for class X is a copy constructor if [...]
368 if (isa<FunctionTemplateDecl>(*Con))
369 continue;
370
Douglas Gregor0d405db2010-07-01 20:59:04 +0000371 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
372 if (Constructor->isCopyConstructor(FoundTQs)) {
John McCall0953e762009-09-24 19:53:00 +0000373 if (((TypeQuals & Qualifiers::Const) == (FoundTQs & Qualifiers::Const)) ||
374 (!(TypeQuals & Qualifiers::Const) && (FoundTQs & Qualifiers::Const)))
Douglas Gregor0d405db2010-07-01 20:59:04 +0000375 Found.push_back(std::make_pair(
376 const_cast<CXXConstructorDecl *>(Constructor),
377 Qualifiers::fromCVRMask(FoundTQs)));
Fariborz Jahanian485f0872009-06-22 23:34:40 +0000378 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000379 }
Douglas Gregor0d405db2010-07-01 20:59:04 +0000380
381 return cast_or_null<CXXConstructorDecl>(
382 GetBestOverloadCandidateSimple(Found));
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000383}
384
Sean Huntffe37fd2011-05-25 20:50:04 +0000385CXXConstructorDecl *CXXRecordDecl::getMoveConstructor() const {
386 for (ctor_iterator I = ctor_begin(), E = ctor_end(); I != E; ++I)
387 if (I->isMoveConstructor())
David Blaikie581deb32012-06-06 20:45:41 +0000388 return *I;
Sean Huntffe37fd2011-05-25 20:50:04 +0000389
390 return 0;
391}
392
Douglas Gregorb87786f2010-07-01 17:48:08 +0000393CXXMethodDecl *CXXRecordDecl::getCopyAssignmentOperator(bool ArgIsConst) const {
394 ASTContext &Context = getASTContext();
395 QualType Class = Context.getTypeDeclType(const_cast<CXXRecordDecl *>(this));
396 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
397
Chris Lattner5f9e2722011-07-23 10:55:15 +0000398 SmallVector<std::pair<CXXMethodDecl *, Qualifiers>, 4> Found;
Douglas Gregorb87786f2010-07-01 17:48:08 +0000399 DeclContext::lookup_const_iterator Op, OpEnd;
400 for (llvm::tie(Op, OpEnd) = this->lookup(Name); Op != OpEnd; ++Op) {
401 // C++ [class.copy]p9:
402 // A user-declared copy assignment operator is a non-static non-template
403 // member function of class X with exactly one parameter of type X, X&,
404 // const X&, volatile X& or const volatile X&.
405 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
406 if (!Method || Method->isStatic() || Method->getPrimaryTemplate())
407 continue;
408
409 const FunctionProtoType *FnType
410 = Method->getType()->getAs<FunctionProtoType>();
411 assert(FnType && "Overloaded operator has no prototype.");
412 // Don't assert on this; an invalid decl might have been left in the AST.
413 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
414 continue;
415
416 QualType ArgType = FnType->getArgType(0);
417 Qualifiers Quals;
418 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()) {
419 ArgType = Ref->getPointeeType();
420 // If we have a const argument and we have a reference to a non-const,
421 // this function does not match.
422 if (ArgIsConst && !ArgType.isConstQualified())
423 continue;
424
425 Quals = ArgType.getQualifiers();
426 } else {
427 // By-value copy-assignment operators are treated like const X&
428 // copy-assignment operators.
429 Quals = Qualifiers::fromCVRMask(Qualifiers::Const);
430 }
431
432 if (!Context.hasSameUnqualifiedType(ArgType, Class))
433 continue;
434
435 // Save this copy-assignment operator. It might be "the one".
436 Found.push_back(std::make_pair(const_cast<CXXMethodDecl *>(Method), Quals));
437 }
438
439 // Use a simplistic form of overload resolution to find the candidate.
440 return GetBestOverloadCandidateSimple(Found);
441}
442
Sean Huntffe37fd2011-05-25 20:50:04 +0000443CXXMethodDecl *CXXRecordDecl::getMoveAssignmentOperator() const {
444 for (method_iterator I = method_begin(), E = method_end(); I != E; ++I)
445 if (I->isMoveAssignmentOperator())
David Blaikie581deb32012-06-06 20:45:41 +0000446 return *I;
Sean Huntffe37fd2011-05-25 20:50:04 +0000447
448 return 0;
449}
450
Douglas Gregor21386642010-09-28 21:55:22 +0000451void CXXRecordDecl::markedVirtualFunctionPure() {
452 // C++ [class.abstract]p2:
453 // A class is abstract if it has at least one pure virtual function.
454 data().Abstract = true;
455}
456
Richard Smith3f5f5582012-06-08 21:09:22 +0000457void CXXRecordDecl::markedConstructorConstexpr(CXXConstructorDecl *CD) {
Richard Smithd3861ce2012-06-10 07:07:24 +0000458 if (!CD->isCopyOrMoveConstructor())
Richard Smith3f5f5582012-06-08 21:09:22 +0000459 data().HasConstexprNonCopyMoveConstructor = true;
460
461 if (CD->isDefaultConstructor())
462 data().HasConstexprDefaultConstructor = true;
463}
464
Douglas Gregor21386642010-09-28 21:55:22 +0000465void CXXRecordDecl::addedMember(Decl *D) {
Joao Matos17d35c32012-08-31 22:18:20 +0000466 if (!D->isImplicit() &&
467 !isa<FieldDecl>(D) &&
468 !isa<IndirectFieldDecl>(D) &&
469 (!isa<TagDecl>(D) || cast<TagDecl>(D)->getTagKind() == TTK_Class ||
470 cast<TagDecl>(D)->getTagKind() == TTK_Interface))
471 data().HasOnlyCMembers = false;
472
473 // Ignore friends and invalid declarations.
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000474 if (D->getFriendObjectKind() || D->isInvalidDecl())
Douglas Gregor5c0646b2010-09-27 21:17:54 +0000475 return;
476
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000477 FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D);
478 if (FunTmpl)
479 D = FunTmpl->getTemplatedDecl();
480
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000481 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
482 if (Method->isVirtual()) {
483 // C++ [dcl.init.aggr]p1:
484 // An aggregate is an array or a class with [...] no virtual functions.
485 data().Aggregate = false;
486
487 // C++ [class]p4:
488 // A POD-struct is an aggregate class...
489 data().PlainOldData = false;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000490
491 // Virtual functions make the class non-empty.
492 // FIXME: Standard ref?
493 data().Empty = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000494
495 // C++ [class.virtual]p1:
496 // A class that declares or inherits a virtual function is called a
497 // polymorphic class.
498 data().Polymorphic = true;
499
Sean Hunt023df372011-05-09 18:22:59 +0000500 // C++0x [class.ctor]p5
501 // A default constructor is trivial [...] if:
502 // -- its class has no virtual functions [...]
503 data().HasTrivialDefaultConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000504
505 // C++0x [class.copy]p13:
506 // A copy/move constructor for class X is trivial if [...]
507 // -- class X has no virtual functions [...]
Douglas Gregor85606eb2010-09-28 20:50:54 +0000508 data().HasTrivialCopyConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000509 data().HasTrivialMoveConstructor = false;
510
511 // C++0x [class.copy]p27:
512 // A copy/move assignment operator for class X is trivial if [...]
513 // -- class X has no virtual functions [...]
Douglas Gregor85606eb2010-09-28 20:50:54 +0000514 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000515 data().HasTrivialMoveAssignment = false;
Douglas Gregor45fa5602011-11-07 20:56:01 +0000516
Chandler Carrutha8225442011-04-30 09:17:45 +0000517 // C++0x [class]p7:
518 // A standard-layout class is a class that: [...]
519 // -- has no virtual functions
Chandler Carruthec997dc2011-04-30 10:07:30 +0000520 data().IsStandardLayout = false;
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000521 }
522 }
523
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000524 if (D->isImplicit()) {
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +0000525 // Notify that an implicit member was added after the definition
526 // was completed.
527 if (!isBeingDefined())
528 if (ASTMutationListener *L = getASTMutationListener())
529 L->AddedCXXImplicitMember(data().Definition, D);
Argyrios Kyrtzidis046c03b2010-10-20 23:48:42 +0000530
Sean Huntffe37fd2011-05-25 20:50:04 +0000531 // If this is a special member function, note that it was added and then
532 // return early.
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000533 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Richard Smith61802452011-12-22 02:22:31 +0000534 if (Constructor->isDefaultConstructor()) {
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000535 data().DeclaredDefaultConstructor = true;
Richard Smith61802452011-12-22 02:22:31 +0000536 if (Constructor->isConstexpr()) {
537 data().HasConstexprDefaultConstructor = true;
538 data().HasConstexprNonCopyMoveConstructor = true;
539 }
540 } else if (Constructor->isCopyConstructor()) {
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000541 data().DeclaredCopyConstructor = true;
Richard Smith61802452011-12-22 02:22:31 +0000542 } else if (Constructor->isMoveConstructor()) {
Sean Huntffe37fd2011-05-25 20:50:04 +0000543 data().DeclaredMoveConstructor = true;
Richard Smith61802452011-12-22 02:22:31 +0000544 } else
Sean Huntffe37fd2011-05-25 20:50:04 +0000545 goto NotASpecialMember;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000546 return;
Sean Huntffe37fd2011-05-25 20:50:04 +0000547 } else if (isa<CXXDestructorDecl>(D)) {
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000548 data().DeclaredDestructor = true;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000549 return;
Sean Huntffe37fd2011-05-25 20:50:04 +0000550 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
551 if (Method->isCopyAssignmentOperator())
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000552 data().DeclaredCopyAssignment = true;
Sean Huntffe37fd2011-05-25 20:50:04 +0000553 else if (Method->isMoveAssignmentOperator())
554 data().DeclaredMoveAssignment = true;
555 else
556 goto NotASpecialMember;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000557 return;
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000558 }
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000559
Sean Huntffe37fd2011-05-25 20:50:04 +0000560NotASpecialMember:;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000561 // Any other implicit declarations are handled like normal declarations.
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000562 }
563
564 // Handle (user-declared) constructors.
565 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
566 // Note that we have a user-declared constructor.
567 data().UserDeclaredConstructor = true;
568
Richard Smith017ab772011-09-05 02:13:09 +0000569 // Technically, "user-provided" is only defined for special member
570 // functions, but the intent of the standard is clearly that it should apply
571 // to all functions.
572 bool UserProvided = Constructor->isUserProvided();
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000573
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000574 if (Constructor->isDefaultConstructor()) {
575 data().DeclaredDefaultConstructor = true;
Richard Smith017ab772011-09-05 02:13:09 +0000576 if (UserProvided) {
Richard Smith61802452011-12-22 02:22:31 +0000577 // C++0x [class.ctor]p5:
578 // A default constructor is trivial if it is not user-provided [...]
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000579 data().HasTrivialDefaultConstructor = false;
Sean Huntcdee3fe2011-05-11 22:34:38 +0000580 data().UserProvidedDefaultConstructor = true;
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000581 }
Richard Smith61802452011-12-22 02:22:31 +0000582 if (Constructor->isConstexpr()) {
583 data().HasConstexprDefaultConstructor = true;
584 data().HasConstexprNonCopyMoveConstructor = true;
585 }
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000586 }
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000587
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000588 // Note when we have a user-declared copy or move constructor, which will
589 // suppress the implicit declaration of those constructors.
590 if (!FunTmpl) {
591 if (Constructor->isCopyConstructor()) {
592 data().UserDeclaredCopyConstructor = true;
593 data().DeclaredCopyConstructor = true;
594
595 // C++0x [class.copy]p13:
Sean Hunt023df372011-05-09 18:22:59 +0000596 // A copy/move constructor for class X is trivial if it is not
597 // user-provided [...]
Richard Smith017ab772011-09-05 02:13:09 +0000598 if (UserProvided)
Sean Hunt023df372011-05-09 18:22:59 +0000599 data().HasTrivialCopyConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000600 } else if (Constructor->isMoveConstructor()) {
Sean Huntffe37fd2011-05-25 20:50:04 +0000601 data().UserDeclaredMoveConstructor = true;
602 data().DeclaredMoveConstructor = true;
603
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000604 // C++0x [class.copy]p13:
Sean Hunt023df372011-05-09 18:22:59 +0000605 // A copy/move constructor for class X is trivial if it is not
606 // user-provided [...]
Richard Smith017ab772011-09-05 02:13:09 +0000607 if (UserProvided)
Sean Hunt023df372011-05-09 18:22:59 +0000608 data().HasTrivialMoveConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000609 }
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000610 }
Richard Smith6b8bc072011-08-10 18:11:37 +0000611 if (Constructor->isConstexpr() && !Constructor->isCopyOrMoveConstructor()) {
612 // Record if we see any constexpr constructors which are neither copy
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000613 // nor move constructors.
Richard Smith6b8bc072011-08-10 18:11:37 +0000614 data().HasConstexprNonCopyMoveConstructor = true;
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000615 }
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000616
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000617 // C++ [dcl.init.aggr]p1:
618 // An aggregate is an array or a class with no user-declared
619 // constructors [...].
620 // C++0x [dcl.init.aggr]p1:
621 // An aggregate is an array or a class with no user-provided
622 // constructors [...].
David Blaikie4e4d0842012-03-11 07:00:24 +0000623 if (!getASTContext().getLangOpts().CPlusPlus0x || UserProvided)
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000624 data().Aggregate = false;
625
626 // C++ [class]p4:
627 // A POD-struct is an aggregate class [...]
628 // Since the POD bit is meant to be C++03 POD-ness, clear it even if the
629 // type is technically an aggregate in C++0x since it wouldn't be in 03.
630 data().PlainOldData = false;
631
Douglas Gregor5c0646b2010-09-27 21:17:54 +0000632 return;
633 }
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000634
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000635 // Handle (user-declared) destructors.
Sean Huntcf34e752011-05-16 22:41:40 +0000636 if (CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000637 data().DeclaredDestructor = true;
638 data().UserDeclaredDestructor = true;
Richard Smithdfefb842012-02-25 07:33:38 +0000639 data().HasIrrelevantDestructor = false;
640
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000641 // C++ [class]p4:
642 // A POD-struct is an aggregate class that has [...] no user-defined
643 // destructor.
Sean Huntcf34e752011-05-16 22:41:40 +0000644 // This bit is the C++03 POD bit, not the 0x one.
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000645 data().PlainOldData = false;
646
Douglas Gregor45fa5602011-11-07 20:56:01 +0000647 // C++11 [class.dtor]p5:
648 // A destructor is trivial if it is not user-provided and if
649 // -- the destructor is not virtual.
Richard Smithd3861ce2012-06-10 07:07:24 +0000650 if (DD->isUserProvided() || DD->isVirtual())
Sean Huntcf34e752011-05-16 22:41:40 +0000651 data().HasTrivialDestructor = false;
Richard Smithd3861ce2012-06-10 07:07:24 +0000652
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000653 return;
654 }
Douglas Gregor5c0646b2010-09-27 21:17:54 +0000655
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000656 // Handle (user-declared) member functions.
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000657 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Sean Huntffe37fd2011-05-25 20:50:04 +0000658 if (Method->isCopyAssignmentOperator()) {
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000659 // C++ [class]p4:
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000660 // A POD-struct is an aggregate class that [...] has no user-defined
661 // copy assignment operator [...].
Sean Huntcf34e752011-05-16 22:41:40 +0000662 // This is the C++03 bit only.
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000663 data().PlainOldData = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000664
Sean Huntffe37fd2011-05-25 20:50:04 +0000665 // This is a copy assignment operator.
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000666
Sean Huntffe37fd2011-05-25 20:50:04 +0000667 // Suppress the implicit declaration of a copy constructor.
668 data().UserDeclaredCopyAssignment = true;
669 data().DeclaredCopyAssignment = true;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000670
Sean Huntffe37fd2011-05-25 20:50:04 +0000671 // C++0x [class.copy]p27:
672 // A copy/move assignment operator for class X is trivial if it is
673 // neither user-provided nor deleted [...]
674 if (Method->isUserProvided())
675 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000676
Sean Huntffe37fd2011-05-25 20:50:04 +0000677 return;
678 }
679
680 if (Method->isMoveAssignmentOperator()) {
681 // This is an extension in C++03 mode, but we'll keep consistency by
682 // taking a move assignment operator to induce non-POD-ness
683 data().PlainOldData = false;
684
685 // This is a move assignment operator.
686 data().UserDeclaredMoveAssignment = true;
687 data().DeclaredMoveAssignment = true;
688
689 // C++0x [class.copy]p27:
690 // A copy/move assignment operator for class X is trivial if it is
691 // neither user-provided nor deleted [...]
692 if (Method->isUserProvided())
693 data().HasTrivialMoveAssignment = false;
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000694 }
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000695
Douglas Gregore80622f2010-09-29 04:25:11 +0000696 // Keep the list of conversion functions up-to-date.
697 if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
698 // We don't record specializations.
699 if (Conversion->getPrimaryTemplate())
700 return;
701
702 // FIXME: We intentionally don't use the decl's access here because it
703 // hasn't been set yet. That's really just a misdesign in Sema.
704
705 if (FunTmpl) {
Douglas Gregoref96ee02012-01-14 16:38:05 +0000706 if (FunTmpl->getPreviousDecl())
707 data().Conversions.replace(FunTmpl->getPreviousDecl(),
Douglas Gregore80622f2010-09-29 04:25:11 +0000708 FunTmpl);
709 else
710 data().Conversions.addDecl(FunTmpl);
711 } else {
Douglas Gregoref96ee02012-01-14 16:38:05 +0000712 if (Conversion->getPreviousDecl())
713 data().Conversions.replace(Conversion->getPreviousDecl(),
Douglas Gregore80622f2010-09-29 04:25:11 +0000714 Conversion);
715 else
716 data().Conversions.addDecl(Conversion);
717 }
718 }
719
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000720 return;
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000721 }
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000722
723 // Handle non-static data members.
724 if (FieldDecl *Field = dyn_cast<FieldDecl>(D)) {
Douglas Gregord61db332011-10-10 17:22:13 +0000725 // C++ [class.bit]p2:
726 // A declaration for a bit-field that omits the identifier declares an
727 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
728 // initialized.
729 if (Field->isUnnamedBitfield())
730 return;
731
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000732 // C++ [dcl.init.aggr]p1:
733 // An aggregate is an array or a class (clause 9) with [...] no
734 // private or protected non-static data members (clause 11).
735 //
736 // A POD must be an aggregate.
737 if (D->getAccess() == AS_private || D->getAccess() == AS_protected) {
738 data().Aggregate = false;
739 data().PlainOldData = false;
740 }
Chandler Carrutha8225442011-04-30 09:17:45 +0000741
742 // C++0x [class]p7:
743 // A standard-layout class is a class that:
744 // [...]
745 // -- has the same access control for all non-static data members,
746 switch (D->getAccess()) {
747 case AS_private: data().HasPrivateFields = true; break;
748 case AS_protected: data().HasProtectedFields = true; break;
749 case AS_public: data().HasPublicFields = true; break;
David Blaikieb219cfc2011-09-23 05:06:16 +0000750 case AS_none: llvm_unreachable("Invalid access specifier");
Chandler Carrutha8225442011-04-30 09:17:45 +0000751 };
752 if ((data().HasPrivateFields + data().HasProtectedFields +
753 data().HasPublicFields) > 1)
Chandler Carruthec997dc2011-04-30 10:07:30 +0000754 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000755
Douglas Gregor2bb11012011-05-13 01:05:07 +0000756 // Keep track of the presence of mutable fields.
757 if (Field->isMutable())
758 data().HasMutableFields = true;
759
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000760 // C++0x [class]p9:
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000761 // A POD struct is a class that is both a trivial class and a
762 // standard-layout class, and has no non-static data members of type
763 // non-POD struct, non-POD union (or array of such types).
John McCallf85e1932011-06-15 23:02:42 +0000764 //
765 // Automatic Reference Counting: the presence of a member of Objective-C pointer type
766 // that does not explicitly have no lifetime makes the class a non-POD.
767 // However, we delay setting PlainOldData to false in this case so that
768 // Sema has a chance to diagnostic causes where the same class will be
Douglas Gregor3fe52ff2012-07-23 04:23:39 +0000769 // non-POD with Automatic Reference Counting but a POD without ARC.
John McCallf85e1932011-06-15 23:02:42 +0000770 // In this case, the class will become a non-POD class when we complete
771 // the definition.
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000772 ASTContext &Context = getASTContext();
773 QualType T = Context.getBaseElementType(Field->getType());
John McCallf85e1932011-06-15 23:02:42 +0000774 if (T->isObjCRetainableType() || T.isObjCGCStrong()) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000775 if (!Context.getLangOpts().ObjCAutoRefCount ||
John McCallf85e1932011-06-15 23:02:42 +0000776 T.getObjCLifetime() != Qualifiers::OCL_ExplicitNone)
777 setHasObjectMember(true);
778 } else if (!T.isPODType(Context))
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000779 data().PlainOldData = false;
John McCallf85e1932011-06-15 23:02:42 +0000780
Chandler Carrutha8225442011-04-30 09:17:45 +0000781 if (T->isReferenceType()) {
Sean Hunt023df372011-05-09 18:22:59 +0000782 data().HasTrivialDefaultConstructor = false;
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000783
Chandler Carrutha8225442011-04-30 09:17:45 +0000784 // C++0x [class]p7:
785 // A standard-layout class is a class that:
786 // -- has no non-static data members of type [...] reference,
Chandler Carruthec997dc2011-04-30 10:07:30 +0000787 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000788 }
789
Richard Smith86c3ae42012-02-13 03:54:03 +0000790 // Record if this field is the first non-literal or volatile field or base.
791 if (!T->isLiteralType() || T.isVolatileQualified())
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000792 data().HasNonLiteralTypeFieldsOrBases = true;
793
Richard Smith7a614d82011-06-11 17:19:42 +0000794 if (Field->hasInClassInitializer()) {
Richard Smithd079abf2012-05-07 01:07:30 +0000795 data().HasInClassInitializer = true;
796
797 // C++11 [class]p5:
Richard Smith7a614d82011-06-11 17:19:42 +0000798 // A default constructor is trivial if [...] no non-static data member
799 // of its class has a brace-or-equal-initializer.
800 data().HasTrivialDefaultConstructor = false;
801
Richard Smithd079abf2012-05-07 01:07:30 +0000802 // C++11 [dcl.init.aggr]p1:
Richard Smith7a614d82011-06-11 17:19:42 +0000803 // An aggregate is a [...] class with [...] no
804 // brace-or-equal-initializers for non-static data members.
805 data().Aggregate = false;
806
Richard Smithd079abf2012-05-07 01:07:30 +0000807 // C++11 [class]p10:
Richard Smith7a614d82011-06-11 17:19:42 +0000808 // A POD struct is [...] a trivial class.
809 data().PlainOldData = false;
810 }
811
Douglas Gregor85606eb2010-09-28 20:50:54 +0000812 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
813 CXXRecordDecl* FieldRec = cast<CXXRecordDecl>(RecordTy->getDecl());
814 if (FieldRec->getDefinition()) {
Sean Hunt023df372011-05-09 18:22:59 +0000815 // C++0x [class.ctor]p5:
Richard Smith61802452011-12-22 02:22:31 +0000816 // A default constructor is trivial [...] if:
Sean Hunt023df372011-05-09 18:22:59 +0000817 // -- for all the non-static data members of its class that are of
818 // class type (or array thereof), each such class has a trivial
819 // default constructor.
820 if (!FieldRec->hasTrivialDefaultConstructor())
821 data().HasTrivialDefaultConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000822
823 // C++0x [class.copy]p13:
824 // A copy/move constructor for class X is trivial if [...]
825 // [...]
826 // -- for each non-static data member of X that is of class type (or
827 // an array thereof), the constructor selected to copy/move that
828 // member is trivial;
829 // FIXME: C++0x: We don't correctly model 'selected' constructors.
Douglas Gregor85606eb2010-09-28 20:50:54 +0000830 if (!FieldRec->hasTrivialCopyConstructor())
831 data().HasTrivialCopyConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000832 if (!FieldRec->hasTrivialMoveConstructor())
833 data().HasTrivialMoveConstructor = false;
834
835 // C++0x [class.copy]p27:
836 // A copy/move assignment operator for class X is trivial if [...]
837 // [...]
838 // -- for each non-static data member of X that is of class type (or
839 // an array thereof), the assignment operator selected to
840 // copy/move that member is trivial;
841 // FIXME: C++0x: We don't correctly model 'selected' operators.
Douglas Gregor85606eb2010-09-28 20:50:54 +0000842 if (!FieldRec->hasTrivialCopyAssignment())
843 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000844 if (!FieldRec->hasTrivialMoveAssignment())
845 data().HasTrivialMoveAssignment = false;
846
Douglas Gregor85606eb2010-09-28 20:50:54 +0000847 if (!FieldRec->hasTrivialDestructor())
848 data().HasTrivialDestructor = false;
Richard Smithdfefb842012-02-25 07:33:38 +0000849 if (!FieldRec->hasIrrelevantDestructor())
850 data().HasIrrelevantDestructor = false;
John McCallf85e1932011-06-15 23:02:42 +0000851 if (FieldRec->hasObjectMember())
852 setHasObjectMember(true);
Chandler Carrutha8225442011-04-30 09:17:45 +0000853
854 // C++0x [class]p7:
855 // A standard-layout class is a class that:
856 // -- has no non-static data members of type non-standard-layout
857 // class (or array of such types) [...]
Chandler Carruthec997dc2011-04-30 10:07:30 +0000858 if (!FieldRec->isStandardLayout())
859 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000860
861 // C++0x [class]p7:
862 // A standard-layout class is a class that:
863 // [...]
864 // -- has no base classes of the same type as the first non-static
865 // data member.
866 // We don't want to expend bits in the state of the record decl
867 // tracking whether this is the first non-static data member so we
868 // cheat a bit and use some of the existing state: the empty bit.
869 // Virtual bases and virtual methods make a class non-empty, but they
870 // also make it non-standard-layout so we needn't check here.
871 // A non-empty base class may leave the class standard-layout, but not
872 // if we have arrived here, and have at least on non-static data
Chandler Carruthec997dc2011-04-30 10:07:30 +0000873 // member. If IsStandardLayout remains true, then the first non-static
Chandler Carrutha8225442011-04-30 09:17:45 +0000874 // data member must come through here with Empty still true, and Empty
875 // will subsequently be set to false below.
Chandler Carruthec997dc2011-04-30 10:07:30 +0000876 if (data().IsStandardLayout && data().Empty) {
Chandler Carrutha8225442011-04-30 09:17:45 +0000877 for (CXXRecordDecl::base_class_const_iterator BI = bases_begin(),
878 BE = bases_end();
879 BI != BE; ++BI) {
880 if (Context.hasSameUnqualifiedType(BI->getType(), T)) {
Chandler Carruthec997dc2011-04-30 10:07:30 +0000881 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000882 break;
883 }
884 }
885 }
Douglas Gregor2bb11012011-05-13 01:05:07 +0000886
887 // Keep track of the presence of mutable fields.
888 if (FieldRec->hasMutableFields())
889 data().HasMutableFields = true;
Richard Smith61802452011-12-22 02:22:31 +0000890
891 // C++11 [class.copy]p13:
892 // If the implicitly-defined constructor would satisfy the
893 // requirements of a constexpr constructor, the implicitly-defined
894 // constructor is constexpr.
895 // C++11 [dcl.constexpr]p4:
896 // -- every constructor involved in initializing non-static data
897 // members [...] shall be a constexpr constructor
898 if (!Field->hasInClassInitializer() &&
Richard Smithd079abf2012-05-07 01:07:30 +0000899 !FieldRec->hasConstexprDefaultConstructor() && !isUnion())
Richard Smith61802452011-12-22 02:22:31 +0000900 // The standard requires any in-class initializer to be a constant
901 // expression. We consider this to be a defect.
902 data().DefaultedDefaultConstructorIsConstexpr = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000903 }
Richard Smith61802452011-12-22 02:22:31 +0000904 } else {
905 // Base element type of field is a non-class type.
Richard Smithd3861ce2012-06-10 07:07:24 +0000906 if (!T->isLiteralType() ||
907 (!Field->hasInClassInitializer() && !isUnion()))
Richard Smith61802452011-12-22 02:22:31 +0000908 data().DefaultedDefaultConstructorIsConstexpr = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000909 }
Chandler Carrutha8225442011-04-30 09:17:45 +0000910
911 // C++0x [class]p7:
912 // A standard-layout class is a class that:
913 // [...]
914 // -- either has no non-static data members in the most derived
915 // class and at most one base class with non-static data members,
916 // or has no base classes with non-static data members, and
917 // At this point we know that we have a non-static data member, so the last
918 // clause holds.
919 if (!data().HasNoNonEmptyBases)
Chandler Carruthec997dc2011-04-30 10:07:30 +0000920 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000921
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000922 // If this is not a zero-length bit-field, then the class is not empty.
923 if (data().Empty) {
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000924 if (!Field->isBitField() ||
925 (!Field->getBitWidth()->isTypeDependent() &&
926 !Field->getBitWidth()->isValueDependent() &&
927 Field->getBitWidthValue(Context) != 0))
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000928 data().Empty = false;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000929 }
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000930 }
Douglas Gregore80622f2010-09-29 04:25:11 +0000931
932 // Handle using declarations of conversion functions.
933 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(D))
934 if (Shadow->getDeclName().getNameKind()
935 == DeclarationName::CXXConversionFunctionName)
936 data().Conversions.addDecl(Shadow, Shadow->getAccess());
Joao Matos17d35c32012-08-31 22:18:20 +0000937}
938
939bool CXXRecordDecl::isCLike() const {
940 if (getTagKind() == TTK_Class || getTagKind() == TTK_Interface ||
941 !TemplateOrInstantiation.isNull())
942 return false;
943 if (!hasDefinition())
944 return true;
Argyrios Kyrtzidis277b1562012-01-23 16:58:45 +0000945
Argyrios Kyrtzidisc2214112012-02-01 06:36:44 +0000946 return isPOD() && data().HasOnlyCMembers;
Argyrios Kyrtzidis277b1562012-01-23 16:58:45 +0000947}
948
Douglas Gregor4d8d22b2012-02-10 07:45:31 +0000949void CXXRecordDecl::getCaptureFields(
950 llvm::DenseMap<const VarDecl *, FieldDecl *> &Captures,
Eli Friedman41105ad2012-02-11 00:18:00 +0000951 FieldDecl *&ThisCapture) const {
Douglas Gregor4d8d22b2012-02-10 07:45:31 +0000952 Captures.clear();
953 ThisCapture = 0;
954
Douglas Gregorda8962a2012-02-13 15:44:47 +0000955 LambdaDefinitionData &Lambda = getLambdaData();
Douglas Gregor4d8d22b2012-02-10 07:45:31 +0000956 RecordDecl::field_iterator Field = field_begin();
Douglas Gregor7ae282f2012-02-13 17:20:40 +0000957 for (LambdaExpr::Capture *C = Lambda.Captures, *CEnd = C + Lambda.NumCaptures;
Douglas Gregor4d8d22b2012-02-10 07:45:31 +0000958 C != CEnd; ++C, ++Field) {
959 if (C->capturesThis()) {
David Blaikie581deb32012-06-06 20:45:41 +0000960 ThisCapture = *Field;
Douglas Gregor4d8d22b2012-02-10 07:45:31 +0000961 continue;
962 }
963
David Blaikie581deb32012-06-06 20:45:41 +0000964 Captures[C->getCapturedVar()] = *Field;
Douglas Gregor4d8d22b2012-02-10 07:45:31 +0000965 }
966}
967
968
John McCallb05b5f32010-03-15 09:07:48 +0000969static CanQualType GetConversionType(ASTContext &Context, NamedDecl *Conv) {
970 QualType T;
John McCall32daa422010-03-31 01:36:47 +0000971 if (isa<UsingShadowDecl>(Conv))
972 Conv = cast<UsingShadowDecl>(Conv)->getTargetDecl();
John McCallb05b5f32010-03-15 09:07:48 +0000973 if (FunctionTemplateDecl *ConvTemp = dyn_cast<FunctionTemplateDecl>(Conv))
974 T = ConvTemp->getTemplatedDecl()->getResultType();
975 else
976 T = cast<CXXConversionDecl>(Conv)->getConversionType();
977 return Context.getCanonicalType(T);
Fariborz Jahanian0351a1e2009-10-07 20:43:36 +0000978}
979
John McCallb05b5f32010-03-15 09:07:48 +0000980/// Collect the visible conversions of a base class.
981///
James Dennetta1253502012-06-15 22:28:09 +0000982/// \param Record a base class of the class we're considering
John McCallb05b5f32010-03-15 09:07:48 +0000983/// \param InVirtual whether this base class is a virtual base (or a base
984/// of a virtual base)
985/// \param Access the access along the inheritance path to this base
986/// \param ParentHiddenTypes the conversions provided by the inheritors
987/// of this base
988/// \param Output the set to which to add conversions from non-virtual bases
989/// \param VOutput the set to which to add conversions from virtual bases
990/// \param HiddenVBaseCs the set of conversions which were hidden in a
991/// virtual base along some inheritance path
992static void CollectVisibleConversions(ASTContext &Context,
993 CXXRecordDecl *Record,
994 bool InVirtual,
995 AccessSpecifier Access,
996 const llvm::SmallPtrSet<CanQualType, 8> &ParentHiddenTypes,
997 UnresolvedSetImpl &Output,
998 UnresolvedSetImpl &VOutput,
999 llvm::SmallPtrSet<NamedDecl*, 8> &HiddenVBaseCs) {
1000 // The set of types which have conversions in this class or its
1001 // subclasses. As an optimization, we don't copy the derived set
1002 // unless it might change.
1003 const llvm::SmallPtrSet<CanQualType, 8> *HiddenTypes = &ParentHiddenTypes;
1004 llvm::SmallPtrSet<CanQualType, 8> HiddenTypesBuffer;
1005
1006 // Collect the direct conversions and figure out which conversions
1007 // will be hidden in the subclasses.
1008 UnresolvedSetImpl &Cs = *Record->getConversionFunctions();
1009 if (!Cs.empty()) {
1010 HiddenTypesBuffer = ParentHiddenTypes;
1011 HiddenTypes = &HiddenTypesBuffer;
1012
1013 for (UnresolvedSetIterator I = Cs.begin(), E = Cs.end(); I != E; ++I) {
Richard Smithf108c632012-05-06 00:04:32 +00001014 CanQualType ConvType(GetConversionType(Context, I.getDecl()));
1015 bool Hidden = ParentHiddenTypes.count(ConvType);
1016 if (!Hidden)
1017 HiddenTypesBuffer.insert(ConvType);
John McCallb05b5f32010-03-15 09:07:48 +00001018
1019 // If this conversion is hidden and we're in a virtual base,
1020 // remember that it's hidden along some inheritance path.
1021 if (Hidden && InVirtual)
1022 HiddenVBaseCs.insert(cast<NamedDecl>(I.getDecl()->getCanonicalDecl()));
1023
1024 // If this conversion isn't hidden, add it to the appropriate output.
1025 else if (!Hidden) {
1026 AccessSpecifier IAccess
1027 = CXXRecordDecl::MergeAccess(Access, I.getAccess());
1028
1029 if (InVirtual)
1030 VOutput.addDecl(I.getDecl(), IAccess);
Fariborz Jahanian62509212009-09-12 18:26:03 +00001031 else
John McCallb05b5f32010-03-15 09:07:48 +00001032 Output.addDecl(I.getDecl(), IAccess);
Fariborz Jahanian53462782009-09-11 21:44:33 +00001033 }
1034 }
1035 }
Sebastian Redl9994a342009-10-25 17:03:50 +00001036
John McCallb05b5f32010-03-15 09:07:48 +00001037 // Collect information recursively from any base classes.
1038 for (CXXRecordDecl::base_class_iterator
1039 I = Record->bases_begin(), E = Record->bases_end(); I != E; ++I) {
1040 const RecordType *RT = I->getType()->getAs<RecordType>();
1041 if (!RT) continue;
Sebastian Redl9994a342009-10-25 17:03:50 +00001042
John McCallb05b5f32010-03-15 09:07:48 +00001043 AccessSpecifier BaseAccess
1044 = CXXRecordDecl::MergeAccess(Access, I->getAccessSpecifier());
1045 bool BaseInVirtual = InVirtual || I->isVirtual();
Sebastian Redl9994a342009-10-25 17:03:50 +00001046
John McCallb05b5f32010-03-15 09:07:48 +00001047 CXXRecordDecl *Base = cast<CXXRecordDecl>(RT->getDecl());
1048 CollectVisibleConversions(Context, Base, BaseInVirtual, BaseAccess,
1049 *HiddenTypes, Output, VOutput, HiddenVBaseCs);
Fariborz Jahanian53462782009-09-11 21:44:33 +00001050 }
John McCallb05b5f32010-03-15 09:07:48 +00001051}
Sebastian Redl9994a342009-10-25 17:03:50 +00001052
John McCallb05b5f32010-03-15 09:07:48 +00001053/// Collect the visible conversions of a class.
1054///
1055/// This would be extremely straightforward if it weren't for virtual
1056/// bases. It might be worth special-casing that, really.
1057static void CollectVisibleConversions(ASTContext &Context,
1058 CXXRecordDecl *Record,
1059 UnresolvedSetImpl &Output) {
1060 // The collection of all conversions in virtual bases that we've
1061 // found. These will be added to the output as long as they don't
1062 // appear in the hidden-conversions set.
1063 UnresolvedSet<8> VBaseCs;
1064
1065 // The set of conversions in virtual bases that we've determined to
1066 // be hidden.
1067 llvm::SmallPtrSet<NamedDecl*, 8> HiddenVBaseCs;
1068
1069 // The set of types hidden by classes derived from this one.
1070 llvm::SmallPtrSet<CanQualType, 8> HiddenTypes;
1071
1072 // Go ahead and collect the direct conversions and add them to the
1073 // hidden-types set.
1074 UnresolvedSetImpl &Cs = *Record->getConversionFunctions();
1075 Output.append(Cs.begin(), Cs.end());
1076 for (UnresolvedSetIterator I = Cs.begin(), E = Cs.end(); I != E; ++I)
1077 HiddenTypes.insert(GetConversionType(Context, I.getDecl()));
1078
1079 // Recursively collect conversions from base classes.
1080 for (CXXRecordDecl::base_class_iterator
1081 I = Record->bases_begin(), E = Record->bases_end(); I != E; ++I) {
1082 const RecordType *RT = I->getType()->getAs<RecordType>();
1083 if (!RT) continue;
1084
1085 CollectVisibleConversions(Context, cast<CXXRecordDecl>(RT->getDecl()),
1086 I->isVirtual(), I->getAccessSpecifier(),
1087 HiddenTypes, Output, VBaseCs, HiddenVBaseCs);
1088 }
1089
1090 // Add any unhidden conversions provided by virtual bases.
1091 for (UnresolvedSetIterator I = VBaseCs.begin(), E = VBaseCs.end();
1092 I != E; ++I) {
1093 if (!HiddenVBaseCs.count(cast<NamedDecl>(I.getDecl()->getCanonicalDecl())))
1094 Output.addDecl(I.getDecl(), I.getAccess());
Fariborz Jahanian53462782009-09-11 21:44:33 +00001095 }
Fariborz Jahanian62509212009-09-12 18:26:03 +00001096}
1097
1098/// getVisibleConversionFunctions - get all conversion functions visible
1099/// in current class; including conversion function templates.
John McCalleec51cf2010-01-20 00:46:10 +00001100const UnresolvedSetImpl *CXXRecordDecl::getVisibleConversionFunctions() {
Fariborz Jahanian62509212009-09-12 18:26:03 +00001101 // If root class, all conversions are visible.
1102 if (bases_begin() == bases_end())
John McCall86ff3082010-02-04 22:26:26 +00001103 return &data().Conversions;
Fariborz Jahanian62509212009-09-12 18:26:03 +00001104 // If visible conversion list is already evaluated, return it.
John McCall86ff3082010-02-04 22:26:26 +00001105 if (data().ComputedVisibleConversions)
1106 return &data().VisibleConversions;
John McCallb05b5f32010-03-15 09:07:48 +00001107 CollectVisibleConversions(getASTContext(), this, data().VisibleConversions);
John McCall86ff3082010-02-04 22:26:26 +00001108 data().ComputedVisibleConversions = true;
1109 return &data().VisibleConversions;
Fariborz Jahanian53462782009-09-11 21:44:33 +00001110}
1111
John McCall32daa422010-03-31 01:36:47 +00001112void CXXRecordDecl::removeConversion(const NamedDecl *ConvDecl) {
1113 // This operation is O(N) but extremely rare. Sema only uses it to
1114 // remove UsingShadowDecls in a class that were followed by a direct
1115 // declaration, e.g.:
1116 // class A : B {
1117 // using B::operator int;
1118 // operator int();
1119 // };
1120 // This is uncommon by itself and even more uncommon in conjunction
1121 // with sufficiently large numbers of directly-declared conversions
1122 // that asymptotic behavior matters.
1123
1124 UnresolvedSetImpl &Convs = *getConversionFunctions();
1125 for (unsigned I = 0, E = Convs.size(); I != E; ++I) {
1126 if (Convs[I].getDecl() == ConvDecl) {
1127 Convs.erase(I);
1128 assert(std::find(Convs.begin(), Convs.end(), ConvDecl) == Convs.end()
1129 && "conversion was found multiple times in unresolved set");
1130 return;
1131 }
1132 }
1133
1134 llvm_unreachable("conversion not found in set!");
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001135}
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00001136
Douglas Gregorf6b11852009-10-08 15:14:33 +00001137CXXRecordDecl *CXXRecordDecl::getInstantiatedFromMemberClass() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001138 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo())
Douglas Gregorf6b11852009-10-08 15:14:33 +00001139 return cast<CXXRecordDecl>(MSInfo->getInstantiatedFrom());
1140
1141 return 0;
1142}
1143
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001144MemberSpecializationInfo *CXXRecordDecl::getMemberSpecializationInfo() const {
1145 return TemplateOrInstantiation.dyn_cast<MemberSpecializationInfo *>();
1146}
1147
Douglas Gregorf6b11852009-10-08 15:14:33 +00001148void
1149CXXRecordDecl::setInstantiationOfMemberClass(CXXRecordDecl *RD,
1150 TemplateSpecializationKind TSK) {
1151 assert(TemplateOrInstantiation.isNull() &&
1152 "Previous template or instantiation?");
1153 assert(!isa<ClassTemplateSpecializationDecl>(this));
1154 TemplateOrInstantiation
1155 = new (getASTContext()) MemberSpecializationInfo(RD, TSK);
1156}
1157
Anders Carlssonb13e3572009-12-07 06:33:48 +00001158TemplateSpecializationKind CXXRecordDecl::getTemplateSpecializationKind() const{
1159 if (const ClassTemplateSpecializationDecl *Spec
Douglas Gregorf6b11852009-10-08 15:14:33 +00001160 = dyn_cast<ClassTemplateSpecializationDecl>(this))
1161 return Spec->getSpecializationKind();
1162
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001163 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo())
Douglas Gregorf6b11852009-10-08 15:14:33 +00001164 return MSInfo->getTemplateSpecializationKind();
1165
1166 return TSK_Undeclared;
1167}
1168
1169void
1170CXXRecordDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK) {
1171 if (ClassTemplateSpecializationDecl *Spec
1172 = dyn_cast<ClassTemplateSpecializationDecl>(this)) {
1173 Spec->setSpecializationKind(TSK);
1174 return;
1175 }
1176
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001177 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) {
Douglas Gregorf6b11852009-10-08 15:14:33 +00001178 MSInfo->setTemplateSpecializationKind(TSK);
1179 return;
1180 }
1181
David Blaikieb219cfc2011-09-23 05:06:16 +00001182 llvm_unreachable("Not a class template or member class specialization");
Douglas Gregorf6b11852009-10-08 15:14:33 +00001183}
1184
Douglas Gregor1d110e02010-07-01 14:13:13 +00001185CXXDestructorDecl *CXXRecordDecl::getDestructor() const {
1186 ASTContext &Context = getASTContext();
Anders Carlsson7267c162009-05-29 21:03:38 +00001187 QualType ClassType = Context.getTypeDeclType(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001188
1189 DeclarationName Name
Douglas Gregor50d62d12009-08-05 05:36:45 +00001190 = Context.DeclarationNames.getCXXDestructorName(
1191 Context.getCanonicalType(ClassType));
Anders Carlsson7267c162009-05-29 21:03:38 +00001192
John McCallc0bf4622010-02-23 00:48:20 +00001193 DeclContext::lookup_const_iterator I, E;
Mike Stump1eb44332009-09-09 15:08:12 +00001194 llvm::tie(I, E) = lookup(Name);
Sebastian Redld4b25cb2010-09-02 23:19:42 +00001195 if (I == E)
1196 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001197
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00001198 CXXDestructorDecl *Dtor = cast<CXXDestructorDecl>(*I);
Anders Carlsson7267c162009-05-29 21:03:38 +00001199 return Dtor;
1200}
1201
Douglas Gregorda2142f2011-02-19 18:51:44 +00001202void CXXRecordDecl::completeDefinition() {
1203 completeDefinition(0);
1204}
1205
1206void CXXRecordDecl::completeDefinition(CXXFinalOverriderMap *FinalOverriders) {
1207 RecordDecl::completeDefinition();
1208
David Blaikie4e4d0842012-03-11 07:00:24 +00001209 if (hasObjectMember() && getASTContext().getLangOpts().ObjCAutoRefCount) {
John McCallf85e1932011-06-15 23:02:42 +00001210 // Objective-C Automatic Reference Counting:
1211 // If a class has a non-static data member of Objective-C pointer
1212 // type (or array thereof), it is a non-POD type and its
Douglas Gregor3fe52ff2012-07-23 04:23:39 +00001213 // default constructor (if any), copy constructor, move constructor,
1214 // copy assignment operator, move assignment operator, and destructor are
1215 // non-trivial.
John McCallf85e1932011-06-15 23:02:42 +00001216 struct DefinitionData &Data = data();
1217 Data.PlainOldData = false;
1218 Data.HasTrivialDefaultConstructor = false;
1219 Data.HasTrivialCopyConstructor = false;
Douglas Gregor3fe52ff2012-07-23 04:23:39 +00001220 Data.HasTrivialMoveConstructor = false;
John McCallf85e1932011-06-15 23:02:42 +00001221 Data.HasTrivialCopyAssignment = false;
Douglas Gregor3fe52ff2012-07-23 04:23:39 +00001222 Data.HasTrivialMoveAssignment = false;
John McCallf85e1932011-06-15 23:02:42 +00001223 Data.HasTrivialDestructor = false;
Richard Smithdfefb842012-02-25 07:33:38 +00001224 Data.HasIrrelevantDestructor = false;
John McCallf85e1932011-06-15 23:02:42 +00001225 }
1226
Douglas Gregor7a39dd02010-09-29 00:15:42 +00001227 // If the class may be abstract (but hasn't been marked as such), check for
1228 // any pure final overriders.
1229 if (mayBeAbstract()) {
1230 CXXFinalOverriderMap MyFinalOverriders;
1231 if (!FinalOverriders) {
1232 getFinalOverriders(MyFinalOverriders);
1233 FinalOverriders = &MyFinalOverriders;
1234 }
1235
1236 bool Done = false;
1237 for (CXXFinalOverriderMap::iterator M = FinalOverriders->begin(),
1238 MEnd = FinalOverriders->end();
1239 M != MEnd && !Done; ++M) {
1240 for (OverridingMethods::iterator SO = M->second.begin(),
1241 SOEnd = M->second.end();
1242 SO != SOEnd && !Done; ++SO) {
1243 assert(SO->second.size() > 0 &&
1244 "All virtual functions have overridding virtual functions");
1245
1246 // C++ [class.abstract]p4:
1247 // A class is abstract if it contains or inherits at least one
1248 // pure virtual function for which the final overrider is pure
1249 // virtual.
1250 if (SO->second.front().Method->isPure()) {
1251 data().Abstract = true;
1252 Done = true;
1253 break;
1254 }
1255 }
1256 }
1257 }
Douglas Gregore80622f2010-09-29 04:25:11 +00001258
1259 // Set access bits correctly on the directly-declared conversions.
1260 for (UnresolvedSetIterator I = data().Conversions.begin(),
1261 E = data().Conversions.end();
1262 I != E; ++I)
1263 data().Conversions.setAccess(I, (*I)->getAccess());
Douglas Gregor7a39dd02010-09-29 00:15:42 +00001264}
1265
1266bool CXXRecordDecl::mayBeAbstract() const {
1267 if (data().Abstract || isInvalidDecl() || !data().Polymorphic ||
1268 isDependentContext())
1269 return false;
1270
1271 for (CXXRecordDecl::base_class_const_iterator B = bases_begin(),
1272 BEnd = bases_end();
1273 B != BEnd; ++B) {
1274 CXXRecordDecl *BaseDecl
1275 = cast<CXXRecordDecl>(B->getType()->getAs<RecordType>()->getDecl());
1276 if (BaseDecl->isAbstract())
1277 return true;
1278 }
1279
1280 return false;
1281}
1282
David Blaikie99ba9e32011-12-20 02:48:34 +00001283void CXXMethodDecl::anchor() { }
1284
Rafael Espindola0b4fe502012-06-26 17:45:31 +00001285static bool recursivelyOverrides(const CXXMethodDecl *DerivedMD,
1286 const CXXMethodDecl *BaseMD) {
1287 for (CXXMethodDecl::method_iterator I = DerivedMD->begin_overridden_methods(),
1288 E = DerivedMD->end_overridden_methods(); I != E; ++I) {
1289 const CXXMethodDecl *MD = *I;
1290 if (MD->getCanonicalDecl() == BaseMD->getCanonicalDecl())
1291 return true;
1292 if (recursivelyOverrides(MD, BaseMD))
1293 return true;
1294 }
1295 return false;
1296}
1297
1298CXXMethodDecl *
Jordan Rose4e79fdf2012-08-15 20:07:17 +00001299CXXMethodDecl::getCorrespondingMethodInClass(const CXXRecordDecl *RD,
1300 bool MayBeBase) {
Rafael Espindola0b4fe502012-06-26 17:45:31 +00001301 if (this->getParent()->getCanonicalDecl() == RD->getCanonicalDecl())
1302 return this;
1303
1304 // Lookup doesn't work for destructors, so handle them separately.
1305 if (isa<CXXDestructorDecl>(this)) {
1306 CXXMethodDecl *MD = RD->getDestructor();
Jordan Rose4e79fdf2012-08-15 20:07:17 +00001307 if (MD) {
1308 if (recursivelyOverrides(MD, this))
1309 return MD;
1310 if (MayBeBase && recursivelyOverrides(this, MD))
1311 return MD;
1312 }
Rafael Espindola0b4fe502012-06-26 17:45:31 +00001313 return NULL;
1314 }
1315
1316 lookup_const_result Candidates = RD->lookup(getDeclName());
1317 for (NamedDecl * const * I = Candidates.first; I != Candidates.second; ++I) {
1318 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*I);
1319 if (!MD)
1320 continue;
1321 if (recursivelyOverrides(MD, this))
1322 return MD;
Jordan Rose4e79fdf2012-08-15 20:07:17 +00001323 if (MayBeBase && recursivelyOverrides(this, MD))
1324 return MD;
Rafael Espindola0b4fe502012-06-26 17:45:31 +00001325 }
1326
1327 for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(),
1328 E = RD->bases_end(); I != E; ++I) {
1329 const RecordType *RT = I->getType()->getAs<RecordType>();
1330 if (!RT)
1331 continue;
1332 const CXXRecordDecl *Base = cast<CXXRecordDecl>(RT->getDecl());
1333 CXXMethodDecl *T = this->getCorrespondingMethodInClass(Base);
1334 if (T)
1335 return T;
1336 }
1337
1338 return NULL;
1339}
1340
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001341CXXMethodDecl *
1342CXXMethodDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001343 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00001344 const DeclarationNameInfo &NameInfo,
John McCalla93c9342009-12-07 02:54:59 +00001345 QualType T, TypeSourceInfo *TInfo,
Douglas Gregorf5251602011-03-08 17:10:18 +00001346 bool isStatic, StorageClass SCAsWritten, bool isInline,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001347 bool isConstexpr, SourceLocation EndLocation) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001348 return new (C) CXXMethodDecl(CXXMethod, RD, StartLoc, NameInfo, T, TInfo,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001349 isStatic, SCAsWritten, isInline, isConstexpr,
1350 EndLocation);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001351}
1352
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001353CXXMethodDecl *CXXMethodDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1354 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(CXXMethodDecl));
1355 return new (Mem) CXXMethodDecl(CXXMethod, 0, SourceLocation(),
1356 DeclarationNameInfo(), QualType(),
1357 0, false, SC_None, false, false,
1358 SourceLocation());
1359}
1360
Douglas Gregor90916562009-09-29 18:16:17 +00001361bool CXXMethodDecl::isUsualDeallocationFunction() const {
1362 if (getOverloadedOperator() != OO_Delete &&
1363 getOverloadedOperator() != OO_Array_Delete)
1364 return false;
Douglas Gregor6d908702010-02-26 05:06:18 +00001365
1366 // C++ [basic.stc.dynamic.deallocation]p2:
1367 // A template instance is never a usual deallocation function,
1368 // regardless of its signature.
1369 if (getPrimaryTemplate())
1370 return false;
1371
Douglas Gregor90916562009-09-29 18:16:17 +00001372 // C++ [basic.stc.dynamic.deallocation]p2:
1373 // If a class T has a member deallocation function named operator delete
1374 // with exactly one parameter, then that function is a usual (non-placement)
1375 // deallocation function. [...]
1376 if (getNumParams() == 1)
1377 return true;
1378
1379 // C++ [basic.stc.dynamic.deallocation]p2:
1380 // [...] If class T does not declare such an operator delete but does
1381 // declare a member deallocation function named operator delete with
1382 // exactly two parameters, the second of which has type std::size_t (18.1),
1383 // then this function is a usual deallocation function.
1384 ASTContext &Context = getASTContext();
1385 if (getNumParams() != 2 ||
Chandler Carruthe228ba92010-02-08 18:54:05 +00001386 !Context.hasSameUnqualifiedType(getParamDecl(1)->getType(),
1387 Context.getSizeType()))
Douglas Gregor90916562009-09-29 18:16:17 +00001388 return false;
1389
1390 // This function is a usual deallocation function if there are no
1391 // single-parameter deallocation functions of the same kind.
1392 for (DeclContext::lookup_const_result R = getDeclContext()->lookup(getDeclName());
1393 R.first != R.second; ++R.first) {
1394 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*R.first))
1395 if (FD->getNumParams() == 1)
1396 return false;
1397 }
1398
1399 return true;
1400}
1401
Douglas Gregor06a9f362010-05-01 20:49:11 +00001402bool CXXMethodDecl::isCopyAssignmentOperator() const {
Sean Huntffe37fd2011-05-25 20:50:04 +00001403 // C++0x [class.copy]p17:
Douglas Gregor06a9f362010-05-01 20:49:11 +00001404 // A user-declared copy assignment operator X::operator= is a non-static
1405 // non-template member function of class X with exactly one parameter of
1406 // type X, X&, const X&, volatile X& or const volatile X&.
1407 if (/*operator=*/getOverloadedOperator() != OO_Equal ||
1408 /*non-static*/ isStatic() ||
Sean Huntffe37fd2011-05-25 20:50:04 +00001409 /*non-template*/getPrimaryTemplate() || getDescribedFunctionTemplate())
Douglas Gregor06a9f362010-05-01 20:49:11 +00001410 return false;
1411
1412 QualType ParamType = getParamDecl(0)->getType();
1413 if (const LValueReferenceType *Ref = ParamType->getAs<LValueReferenceType>())
1414 ParamType = Ref->getPointeeType();
1415
1416 ASTContext &Context = getASTContext();
1417 QualType ClassType
1418 = Context.getCanonicalType(Context.getTypeDeclType(getParent()));
1419 return Context.hasSameUnqualifiedType(ClassType, ParamType);
1420}
1421
Sean Huntffe37fd2011-05-25 20:50:04 +00001422bool CXXMethodDecl::isMoveAssignmentOperator() const {
1423 // C++0x [class.copy]p19:
1424 // A user-declared move assignment operator X::operator= is a non-static
1425 // non-template member function of class X with exactly one parameter of type
1426 // X&&, const X&&, volatile X&&, or const volatile X&&.
1427 if (getOverloadedOperator() != OO_Equal || isStatic() ||
1428 getPrimaryTemplate() || getDescribedFunctionTemplate())
1429 return false;
1430
1431 QualType ParamType = getParamDecl(0)->getType();
1432 if (!isa<RValueReferenceType>(ParamType))
1433 return false;
1434 ParamType = ParamType->getPointeeType();
1435
1436 ASTContext &Context = getASTContext();
1437 QualType ClassType
1438 = Context.getCanonicalType(Context.getTypeDeclType(getParent()));
1439 return Context.hasSameUnqualifiedType(ClassType, ParamType);
1440}
1441
Anders Carlsson05eb2442009-05-16 23:58:37 +00001442void CXXMethodDecl::addOverriddenMethod(const CXXMethodDecl *MD) {
Anders Carlsson3aaf4862009-12-04 05:51:56 +00001443 assert(MD->isCanonicalDecl() && "Method is not canonical!");
Anders Carlssonc076c452010-01-30 17:42:34 +00001444 assert(!MD->getParent()->isDependentContext() &&
1445 "Can't add an overridden method to a class template!");
Eli Friedman540659e2012-03-10 01:39:01 +00001446 assert(MD->isVirtual() && "Method is not virtual!");
Anders Carlssonc076c452010-01-30 17:42:34 +00001447
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001448 getASTContext().addOverriddenMethod(this, MD);
Anders Carlsson05eb2442009-05-16 23:58:37 +00001449}
1450
1451CXXMethodDecl::method_iterator CXXMethodDecl::begin_overridden_methods() const {
Eli Friedman540659e2012-03-10 01:39:01 +00001452 if (isa<CXXConstructorDecl>(this)) return 0;
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001453 return getASTContext().overridden_methods_begin(this);
Anders Carlsson05eb2442009-05-16 23:58:37 +00001454}
1455
1456CXXMethodDecl::method_iterator CXXMethodDecl::end_overridden_methods() const {
Eli Friedman540659e2012-03-10 01:39:01 +00001457 if (isa<CXXConstructorDecl>(this)) return 0;
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001458 return getASTContext().overridden_methods_end(this);
Anders Carlsson05eb2442009-05-16 23:58:37 +00001459}
1460
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001461unsigned CXXMethodDecl::size_overridden_methods() const {
Eli Friedman540659e2012-03-10 01:39:01 +00001462 if (isa<CXXConstructorDecl>(this)) return 0;
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001463 return getASTContext().overridden_methods_size(this);
1464}
1465
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001466QualType CXXMethodDecl::getThisType(ASTContext &C) const {
Argyrios Kyrtzidisb0d178d2008-10-24 22:28:18 +00001467 // C++ 9.3.2p1: The type of this in a member function of a class X is X*.
1468 // If the member function is declared const, the type of this is const X*,
1469 // if the member function is declared volatile, the type of this is
1470 // volatile X*, and if the member function is declared const volatile,
1471 // the type of this is const volatile X*.
1472
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001473 assert(isInstance() && "No 'this' for static methods!");
Anders Carlsson31a08752009-06-13 02:59:33 +00001474
John McCall3cb0ebd2010-03-10 03:28:59 +00001475 QualType ClassTy = C.getTypeDeclType(getParent());
John McCall0953e762009-09-24 19:53:00 +00001476 ClassTy = C.getQualifiedType(ClassTy,
1477 Qualifiers::fromCVRMask(getTypeQualifiers()));
Anders Carlsson4e579922009-07-10 21:35:09 +00001478 return C.getPointerType(ClassTy);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001479}
1480
Eli Friedmand7d7f672009-12-06 20:50:05 +00001481bool CXXMethodDecl::hasInlineBody() const {
Douglas Gregorbd6d6192010-01-05 19:06:31 +00001482 // If this function is a template instantiation, look at the template from
1483 // which it was instantiated.
1484 const FunctionDecl *CheckFn = getTemplateInstantiationPattern();
1485 if (!CheckFn)
1486 CheckFn = this;
1487
Eli Friedmand7d7f672009-12-06 20:50:05 +00001488 const FunctionDecl *fn;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001489 return CheckFn->hasBody(fn) && !fn->isOutOfLine();
Eli Friedmand7d7f672009-12-06 20:50:05 +00001490}
1491
Douglas Gregor27dd7d92012-02-17 03:02:34 +00001492bool CXXMethodDecl::isLambdaStaticInvoker() const {
1493 return getParent()->isLambda() &&
1494 getIdentifier() && getIdentifier()->getName() == "__invoke";
1495}
1496
1497
Sean Huntcbb67482011-01-08 20:30:50 +00001498CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1499 TypeSourceInfo *TInfo, bool IsVirtual,
1500 SourceLocation L, Expr *Init,
1501 SourceLocation R,
1502 SourceLocation EllipsisLoc)
Sean Huntf51d0b62011-01-08 23:01:16 +00001503 : Initializee(TInfo), MemberOrEllipsisLocation(EllipsisLoc), Init(Init),
Douglas Gregor76852c22011-11-01 01:16:03 +00001504 LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(IsVirtual),
1505 IsWritten(false), SourceOrderOrNumArrayIndices(0)
Douglas Gregor802ab452009-12-02 22:36:29 +00001506{
Douglas Gregor7ad83902008-11-05 04:29:56 +00001507}
1508
Sean Huntcbb67482011-01-08 20:30:50 +00001509CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1510 FieldDecl *Member,
1511 SourceLocation MemberLoc,
1512 SourceLocation L, Expr *Init,
1513 SourceLocation R)
Sean Huntf51d0b62011-01-08 23:01:16 +00001514 : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init),
Douglas Gregor76852c22011-11-01 01:16:03 +00001515 LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(false),
Francois Pichet00eb3f92010-12-04 09:14:42 +00001516 IsWritten(false), SourceOrderOrNumArrayIndices(0)
1517{
1518}
1519
Sean Huntcbb67482011-01-08 20:30:50 +00001520CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1521 IndirectFieldDecl *Member,
1522 SourceLocation MemberLoc,
1523 SourceLocation L, Expr *Init,
1524 SourceLocation R)
Sean Huntf51d0b62011-01-08 23:01:16 +00001525 : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init),
Douglas Gregor76852c22011-11-01 01:16:03 +00001526 LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(false),
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00001527 IsWritten(false), SourceOrderOrNumArrayIndices(0)
Douglas Gregor802ab452009-12-02 22:36:29 +00001528{
Douglas Gregor7ad83902008-11-05 04:29:56 +00001529}
1530
Sean Huntcbb67482011-01-08 20:30:50 +00001531CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
Douglas Gregor76852c22011-11-01 01:16:03 +00001532 TypeSourceInfo *TInfo,
1533 SourceLocation L, Expr *Init,
Sean Hunt41717662011-02-26 19:13:13 +00001534 SourceLocation R)
Douglas Gregor76852c22011-11-01 01:16:03 +00001535 : Initializee(TInfo), MemberOrEllipsisLocation(), Init(Init),
1536 LParenLoc(L), RParenLoc(R), IsDelegating(true), IsVirtual(false),
Sean Hunt41717662011-02-26 19:13:13 +00001537 IsWritten(false), SourceOrderOrNumArrayIndices(0)
1538{
1539}
1540
1541CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00001542 FieldDecl *Member,
1543 SourceLocation MemberLoc,
1544 SourceLocation L, Expr *Init,
1545 SourceLocation R,
1546 VarDecl **Indices,
1547 unsigned NumIndices)
Sean Huntf51d0b62011-01-08 23:01:16 +00001548 : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init),
Francois Pichet00eb3f92010-12-04 09:14:42 +00001549 LParenLoc(L), RParenLoc(R), IsVirtual(false),
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00001550 IsWritten(false), SourceOrderOrNumArrayIndices(NumIndices)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001551{
1552 VarDecl **MyIndices = reinterpret_cast<VarDecl **> (this + 1);
1553 memcpy(MyIndices, Indices, NumIndices * sizeof(VarDecl *));
1554}
1555
Sean Huntcbb67482011-01-08 20:30:50 +00001556CXXCtorInitializer *CXXCtorInitializer::Create(ASTContext &Context,
1557 FieldDecl *Member,
1558 SourceLocation MemberLoc,
1559 SourceLocation L, Expr *Init,
1560 SourceLocation R,
1561 VarDecl **Indices,
1562 unsigned NumIndices) {
1563 void *Mem = Context.Allocate(sizeof(CXXCtorInitializer) +
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001564 sizeof(VarDecl *) * NumIndices,
Sean Huntcbb67482011-01-08 20:30:50 +00001565 llvm::alignOf<CXXCtorInitializer>());
Sean Huntf51d0b62011-01-08 23:01:16 +00001566 return new (Mem) CXXCtorInitializer(Context, Member, MemberLoc, L, Init, R,
1567 Indices, NumIndices);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001568}
1569
Sean Huntcbb67482011-01-08 20:30:50 +00001570TypeLoc CXXCtorInitializer::getBaseClassLoc() const {
Douglas Gregor802ab452009-12-02 22:36:29 +00001571 if (isBaseInitializer())
Sean Huntf51d0b62011-01-08 23:01:16 +00001572 return Initializee.get<TypeSourceInfo*>()->getTypeLoc();
Douglas Gregor802ab452009-12-02 22:36:29 +00001573 else
1574 return TypeLoc();
1575}
1576
Sean Huntcbb67482011-01-08 20:30:50 +00001577const Type *CXXCtorInitializer::getBaseClass() const {
Douglas Gregor802ab452009-12-02 22:36:29 +00001578 if (isBaseInitializer())
Sean Huntf51d0b62011-01-08 23:01:16 +00001579 return Initializee.get<TypeSourceInfo*>()->getType().getTypePtr();
Douglas Gregor802ab452009-12-02 22:36:29 +00001580 else
1581 return 0;
1582}
1583
Sean Huntcbb67482011-01-08 20:30:50 +00001584SourceLocation CXXCtorInitializer::getSourceLocation() const {
Douglas Gregor76852c22011-11-01 01:16:03 +00001585 if (isAnyMemberInitializer())
Douglas Gregor802ab452009-12-02 22:36:29 +00001586 return getMemberLocation();
Richard Smith7a614d82011-06-11 17:19:42 +00001587
1588 if (isInClassMemberInitializer())
1589 return getAnyMember()->getLocation();
Douglas Gregor802ab452009-12-02 22:36:29 +00001590
Douglas Gregor76852c22011-11-01 01:16:03 +00001591 if (TypeSourceInfo *TSInfo = Initializee.get<TypeSourceInfo*>())
1592 return TSInfo->getTypeLoc().getLocalSourceRange().getBegin();
1593
1594 return SourceLocation();
Douglas Gregor802ab452009-12-02 22:36:29 +00001595}
1596
Sean Huntcbb67482011-01-08 20:30:50 +00001597SourceRange CXXCtorInitializer::getSourceRange() const {
Richard Smith7a614d82011-06-11 17:19:42 +00001598 if (isInClassMemberInitializer()) {
1599 FieldDecl *D = getAnyMember();
1600 if (Expr *I = D->getInClassInitializer())
1601 return I->getSourceRange();
1602 return SourceRange();
1603 }
1604
Douglas Gregor802ab452009-12-02 22:36:29 +00001605 return SourceRange(getSourceLocation(), getRParenLoc());
Douglas Gregor7ad83902008-11-05 04:29:56 +00001606}
1607
David Blaikie99ba9e32011-12-20 02:48:34 +00001608void CXXConstructorDecl::anchor() { }
1609
Douglas Gregorb48fe382008-10-31 09:07:45 +00001610CXXConstructorDecl *
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001611CXXConstructorDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1612 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(CXXConstructorDecl));
1613 return new (Mem) CXXConstructorDecl(0, SourceLocation(),DeclarationNameInfo(),
1614 QualType(), 0, false, false, false,false);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001615}
1616
1617CXXConstructorDecl *
Douglas Gregorb48fe382008-10-31 09:07:45 +00001618CXXConstructorDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001619 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00001620 const DeclarationNameInfo &NameInfo,
John McCalla93c9342009-12-07 02:54:59 +00001621 QualType T, TypeSourceInfo *TInfo,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001622 bool isExplicit, bool isInline,
1623 bool isImplicitlyDeclared, bool isConstexpr) {
Abramo Bagnara25777432010-08-11 22:01:17 +00001624 assert(NameInfo.getName().getNameKind()
1625 == DeclarationName::CXXConstructorName &&
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001626 "Name must refer to a constructor");
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001627 return new (C) CXXConstructorDecl(RD, StartLoc, NameInfo, T, TInfo,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001628 isExplicit, isInline, isImplicitlyDeclared,
1629 isConstexpr);
Douglas Gregorb48fe382008-10-31 09:07:45 +00001630}
1631
Douglas Gregor76852c22011-11-01 01:16:03 +00001632CXXConstructorDecl *CXXConstructorDecl::getTargetConstructor() const {
1633 assert(isDelegatingConstructor() && "Not a delegating constructor!");
1634 Expr *E = (*init_begin())->getInit()->IgnoreImplicit();
1635 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(E))
1636 return Construct->getConstructor();
1637
1638 return 0;
1639}
1640
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001641bool CXXConstructorDecl::isDefaultConstructor() const {
1642 // C++ [class.ctor]p5:
Douglas Gregor64bffa92008-11-05 16:20:31 +00001643 // A default constructor for a class X is a constructor of class
1644 // X that can be called without an argument.
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001645 return (getNumParams() == 0) ||
Anders Carlssonda3f4e22009-08-25 05:12:04 +00001646 (getNumParams() > 0 && getParamDecl(0)->hasDefaultArg());
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001647}
1648
Mike Stump1eb44332009-09-09 15:08:12 +00001649bool
Douglas Gregor9e9199d2009-12-22 00:34:07 +00001650CXXConstructorDecl::isCopyConstructor(unsigned &TypeQuals) const {
Douglas Gregorcc15f012011-01-21 19:38:21 +00001651 return isCopyOrMoveConstructor(TypeQuals) &&
1652 getParamDecl(0)->getType()->isLValueReferenceType();
1653}
1654
1655bool CXXConstructorDecl::isMoveConstructor(unsigned &TypeQuals) const {
1656 return isCopyOrMoveConstructor(TypeQuals) &&
1657 getParamDecl(0)->getType()->isRValueReferenceType();
1658}
1659
1660/// \brief Determine whether this is a copy or move constructor.
1661bool CXXConstructorDecl::isCopyOrMoveConstructor(unsigned &TypeQuals) const {
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001662 // C++ [class.copy]p2:
Douglas Gregor64bffa92008-11-05 16:20:31 +00001663 // A non-template constructor for class X is a copy constructor
1664 // if its first parameter is of type X&, const X&, volatile X& or
1665 // const volatile X&, and either there are no other parameters
1666 // or else all other parameters have default arguments (8.3.6).
Douglas Gregorcc15f012011-01-21 19:38:21 +00001667 // C++0x [class.copy]p3:
1668 // A non-template constructor for class X is a move constructor if its
1669 // first parameter is of type X&&, const X&&, volatile X&&, or
1670 // const volatile X&&, and either there are no other parameters or else
1671 // all other parameters have default arguments.
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001672 if ((getNumParams() < 1) ||
Douglas Gregor77da3f42009-10-13 23:45:19 +00001673 (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()) ||
Douglas Gregorfd476482009-11-13 23:59:09 +00001674 (getPrimaryTemplate() != 0) ||
Douglas Gregor77da3f42009-10-13 23:45:19 +00001675 (getDescribedFunctionTemplate() != 0))
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001676 return false;
Douglas Gregorcc15f012011-01-21 19:38:21 +00001677
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001678 const ParmVarDecl *Param = getParamDecl(0);
Douglas Gregorcc15f012011-01-21 19:38:21 +00001679
1680 // Do we have a reference type?
1681 const ReferenceType *ParamRefType = Param->getType()->getAs<ReferenceType>();
Douglas Gregorfd476482009-11-13 23:59:09 +00001682 if (!ParamRefType)
1683 return false;
Douglas Gregorcc15f012011-01-21 19:38:21 +00001684
Douglas Gregorfd476482009-11-13 23:59:09 +00001685 // Is it a reference to our class type?
Douglas Gregor9e9199d2009-12-22 00:34:07 +00001686 ASTContext &Context = getASTContext();
1687
Douglas Gregorfd476482009-11-13 23:59:09 +00001688 CanQualType PointeeType
1689 = Context.getCanonicalType(ParamRefType->getPointeeType());
Douglas Gregor14e0b3d2009-09-15 20:50:23 +00001690 CanQualType ClassTy
1691 = Context.getCanonicalType(Context.getTagDeclType(getParent()));
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001692 if (PointeeType.getUnqualifiedType() != ClassTy)
1693 return false;
Douglas Gregorcc15f012011-01-21 19:38:21 +00001694
John McCall0953e762009-09-24 19:53:00 +00001695 // FIXME: other qualifiers?
Douglas Gregorcc15f012011-01-21 19:38:21 +00001696
1697 // We have a copy or move constructor.
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001698 TypeQuals = PointeeType.getCVRQualifiers();
Douglas Gregorcc15f012011-01-21 19:38:21 +00001699 return true;
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001700}
1701
Anders Carlssonfaccd722009-08-28 16:57:08 +00001702bool CXXConstructorDecl::isConvertingConstructor(bool AllowExplicit) const {
Douglas Gregor60d62c22008-10-31 16:23:19 +00001703 // C++ [class.conv.ctor]p1:
1704 // A constructor declared without the function-specifier explicit
1705 // that can be called with a single parameter specifies a
1706 // conversion from the type of its first parameter to the type of
1707 // its class. Such a constructor is called a converting
1708 // constructor.
Anders Carlssonfaccd722009-08-28 16:57:08 +00001709 if (isExplicit() && !AllowExplicit)
Douglas Gregor60d62c22008-10-31 16:23:19 +00001710 return false;
1711
Mike Stump1eb44332009-09-09 15:08:12 +00001712 return (getNumParams() == 0 &&
John McCall183700f2009-09-21 23:43:11 +00001713 getType()->getAs<FunctionProtoType>()->isVariadic()) ||
Douglas Gregor60d62c22008-10-31 16:23:19 +00001714 (getNumParams() == 1) ||
Douglas Gregor113c4442012-06-05 23:44:51 +00001715 (getNumParams() > 1 &&
1716 (getParamDecl(1)->hasDefaultArg() ||
1717 getParamDecl(1)->isParameterPack()));
Douglas Gregor60d62c22008-10-31 16:23:19 +00001718}
Douglas Gregorb48fe382008-10-31 09:07:45 +00001719
Douglas Gregor6493cc52010-11-08 17:16:59 +00001720bool CXXConstructorDecl::isSpecializationCopyingObject() const {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001721 if ((getNumParams() < 1) ||
1722 (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()) ||
1723 (getPrimaryTemplate() == 0) ||
1724 (getDescribedFunctionTemplate() != 0))
1725 return false;
1726
1727 const ParmVarDecl *Param = getParamDecl(0);
1728
1729 ASTContext &Context = getASTContext();
1730 CanQualType ParamType = Context.getCanonicalType(Param->getType());
1731
Douglas Gregor66724ea2009-11-14 01:20:54 +00001732 // Is it the same as our our class type?
1733 CanQualType ClassTy
1734 = Context.getCanonicalType(Context.getTagDeclType(getParent()));
1735 if (ParamType.getUnqualifiedType() != ClassTy)
1736 return false;
1737
1738 return true;
1739}
1740
Sebastian Redlf677ea32011-02-05 19:23:19 +00001741const CXXConstructorDecl *CXXConstructorDecl::getInheritedConstructor() const {
1742 // Hack: we store the inherited constructor in the overridden method table
Eli Friedman540659e2012-03-10 01:39:01 +00001743 method_iterator It = getASTContext().overridden_methods_begin(this);
1744 if (It == getASTContext().overridden_methods_end(this))
Sebastian Redlf677ea32011-02-05 19:23:19 +00001745 return 0;
1746
1747 return cast<CXXConstructorDecl>(*It);
1748}
1749
1750void
1751CXXConstructorDecl::setInheritedConstructor(const CXXConstructorDecl *BaseCtor){
1752 // Hack: we store the inherited constructor in the overridden method table
Eli Friedman540659e2012-03-10 01:39:01 +00001753 assert(getASTContext().overridden_methods_size(this) == 0 &&
1754 "Base ctor already set.");
1755 getASTContext().addOverriddenMethod(this, BaseCtor);
Sebastian Redlf677ea32011-02-05 19:23:19 +00001756}
1757
David Blaikie99ba9e32011-12-20 02:48:34 +00001758void CXXDestructorDecl::anchor() { }
1759
Douglas Gregor42a552f2008-11-05 20:51:48 +00001760CXXDestructorDecl *
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001761CXXDestructorDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1762 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(CXXDestructorDecl));
1763 return new (Mem) CXXDestructorDecl(0, SourceLocation(), DeclarationNameInfo(),
Craig Silversteinb41d8992010-10-21 00:44:50 +00001764 QualType(), 0, false, false);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001765}
1766
1767CXXDestructorDecl *
Douglas Gregor42a552f2008-11-05 20:51:48 +00001768CXXDestructorDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001769 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00001770 const DeclarationNameInfo &NameInfo,
Craig Silversteinb41d8992010-10-21 00:44:50 +00001771 QualType T, TypeSourceInfo *TInfo,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001772 bool isInline, bool isImplicitlyDeclared) {
Abramo Bagnara25777432010-08-11 22:01:17 +00001773 assert(NameInfo.getName().getNameKind()
1774 == DeclarationName::CXXDestructorName &&
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001775 "Name must refer to a destructor");
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001776 return new (C) CXXDestructorDecl(RD, StartLoc, NameInfo, T, TInfo, isInline,
Abramo Bagnara25777432010-08-11 22:01:17 +00001777 isImplicitlyDeclared);
Douglas Gregor42a552f2008-11-05 20:51:48 +00001778}
1779
David Blaikie99ba9e32011-12-20 02:48:34 +00001780void CXXConversionDecl::anchor() { }
1781
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001782CXXConversionDecl *
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001783CXXConversionDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1784 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(CXXConversionDecl));
1785 return new (Mem) CXXConversionDecl(0, SourceLocation(), DeclarationNameInfo(),
1786 QualType(), 0, false, false, false,
1787 SourceLocation());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001788}
1789
1790CXXConversionDecl *
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001791CXXConversionDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001792 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00001793 const DeclarationNameInfo &NameInfo,
John McCalla93c9342009-12-07 02:54:59 +00001794 QualType T, TypeSourceInfo *TInfo,
Douglas Gregorf5251602011-03-08 17:10:18 +00001795 bool isInline, bool isExplicit,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001796 bool isConstexpr, SourceLocation EndLocation) {
Abramo Bagnara25777432010-08-11 22:01:17 +00001797 assert(NameInfo.getName().getNameKind()
1798 == DeclarationName::CXXConversionFunctionName &&
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001799 "Name must refer to a conversion function");
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001800 return new (C) CXXConversionDecl(RD, StartLoc, NameInfo, T, TInfo,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001801 isInline, isExplicit, isConstexpr,
1802 EndLocation);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001803}
1804
Douglas Gregorf6e2e022012-02-16 01:06:16 +00001805bool CXXConversionDecl::isLambdaToBlockPointerConversion() const {
1806 return isImplicit() && getParent()->isLambda() &&
1807 getConversionType()->isBlockPointerType();
1808}
1809
David Blaikie99ba9e32011-12-20 02:48:34 +00001810void LinkageSpecDecl::anchor() { }
1811
Chris Lattner21ef7ae2008-11-04 16:51:42 +00001812LinkageSpecDecl *LinkageSpecDecl::Create(ASTContext &C,
Mike Stump1eb44332009-09-09 15:08:12 +00001813 DeclContext *DC,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001814 SourceLocation ExternLoc,
1815 SourceLocation LangLoc,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00001816 LanguageIDs Lang,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00001817 SourceLocation RBraceLoc) {
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001818 return new (C) LinkageSpecDecl(DC, ExternLoc, LangLoc, Lang, RBraceLoc);
Douglas Gregorf44515a2008-12-16 22:23:02 +00001819}
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001820
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001821LinkageSpecDecl *LinkageSpecDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1822 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(LinkageSpecDecl));
1823 return new (Mem) LinkageSpecDecl(0, SourceLocation(), SourceLocation(),
1824 lang_c, SourceLocation());
1825}
1826
David Blaikie99ba9e32011-12-20 02:48:34 +00001827void UsingDirectiveDecl::anchor() { }
1828
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001829UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC,
1830 SourceLocation L,
1831 SourceLocation NamespaceLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00001832 NestedNameSpecifierLoc QualifierLoc,
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001833 SourceLocation IdentLoc,
Sebastian Redleb0d8c92009-11-23 15:34:23 +00001834 NamedDecl *Used,
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001835 DeclContext *CommonAncestor) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00001836 if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Used))
1837 Used = NS->getOriginalNamespace();
Douglas Gregordb992412011-02-25 16:33:46 +00001838 return new (C) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc,
1839 IdentLoc, Used, CommonAncestor);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001840}
1841
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001842UsingDirectiveDecl *
1843UsingDirectiveDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1844 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(UsingDirectiveDecl));
1845 return new (Mem) UsingDirectiveDecl(0, SourceLocation(), SourceLocation(),
1846 NestedNameSpecifierLoc(),
1847 SourceLocation(), 0, 0);
1848}
1849
Sebastian Redleb0d8c92009-11-23 15:34:23 +00001850NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() {
1851 if (NamespaceAliasDecl *NA =
1852 dyn_cast_or_null<NamespaceAliasDecl>(NominatedNamespace))
1853 return NA->getNamespace();
1854 return cast_or_null<NamespaceDecl>(NominatedNamespace);
1855}
1856
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001857void NamespaceDecl::anchor() { }
1858
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00001859NamespaceDecl::NamespaceDecl(DeclContext *DC, bool Inline,
1860 SourceLocation StartLoc,
1861 SourceLocation IdLoc, IdentifierInfo *Id,
1862 NamespaceDecl *PrevDecl)
1863 : NamedDecl(Namespace, DC, IdLoc, Id), DeclContext(Namespace),
1864 LocStart(StartLoc), RBraceLoc(), AnonOrFirstNamespaceAndInline(0, Inline)
1865{
1866 setPreviousDeclaration(PrevDecl);
1867
1868 if (PrevDecl)
1869 AnonOrFirstNamespaceAndInline.setPointer(PrevDecl->getOriginalNamespace());
1870}
1871
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001872NamespaceDecl *NamespaceDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00001873 bool Inline, SourceLocation StartLoc,
1874 SourceLocation IdLoc, IdentifierInfo *Id,
1875 NamespaceDecl *PrevDecl) {
1876 return new (C) NamespaceDecl(DC, Inline, StartLoc, IdLoc, Id, PrevDecl);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001877}
1878
1879NamespaceDecl *NamespaceDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1880 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(NamespaceDecl));
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00001881 return new (Mem) NamespaceDecl(0, false, SourceLocation(), SourceLocation(),
1882 0, 0);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001883}
1884
David Blaikie99ba9e32011-12-20 02:48:34 +00001885void NamespaceAliasDecl::anchor() { }
1886
Mike Stump1eb44332009-09-09 15:08:12 +00001887NamespaceAliasDecl *NamespaceAliasDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregor0a35bce2010-09-01 03:07:18 +00001888 SourceLocation UsingLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001889 SourceLocation AliasLoc,
1890 IdentifierInfo *Alias,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00001891 NestedNameSpecifierLoc QualifierLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001892 SourceLocation IdentLoc,
Anders Carlsson68771c72009-03-28 22:58:02 +00001893 NamedDecl *Namespace) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00001894 if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Namespace))
1895 Namespace = NS->getOriginalNamespace();
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00001896 return new (C) NamespaceAliasDecl(DC, UsingLoc, AliasLoc, Alias,
1897 QualifierLoc, IdentLoc, Namespace);
Anders Carlsson68771c72009-03-28 22:58:02 +00001898}
1899
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001900NamespaceAliasDecl *
1901NamespaceAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1902 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(NamespaceAliasDecl));
1903 return new (Mem) NamespaceAliasDecl(0, SourceLocation(), SourceLocation(), 0,
1904 NestedNameSpecifierLoc(),
1905 SourceLocation(), 0);
1906}
1907
David Blaikie99ba9e32011-12-20 02:48:34 +00001908void UsingShadowDecl::anchor() { }
1909
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001910UsingShadowDecl *
1911UsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1912 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(UsingShadowDecl));
1913 return new (Mem) UsingShadowDecl(0, SourceLocation(), 0, 0);
1914}
1915
Argyrios Kyrtzidis826faa22010-11-10 05:40:41 +00001916UsingDecl *UsingShadowDecl::getUsingDecl() const {
1917 const UsingShadowDecl *Shadow = this;
1918 while (const UsingShadowDecl *NextShadow =
1919 dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow))
1920 Shadow = NextShadow;
1921 return cast<UsingDecl>(Shadow->UsingOrNextShadow);
1922}
1923
David Blaikie99ba9e32011-12-20 02:48:34 +00001924void UsingDecl::anchor() { }
1925
Argyrios Kyrtzidis826faa22010-11-10 05:40:41 +00001926void UsingDecl::addShadowDecl(UsingShadowDecl *S) {
1927 assert(std::find(shadow_begin(), shadow_end(), S) == shadow_end() &&
1928 "declaration already in set");
1929 assert(S->getUsingDecl() == this);
1930
Benjamin Kramer9bc6fb62012-01-07 19:09:05 +00001931 if (FirstUsingShadow.getPointer())
1932 S->UsingOrNextShadow = FirstUsingShadow.getPointer();
1933 FirstUsingShadow.setPointer(S);
Argyrios Kyrtzidis826faa22010-11-10 05:40:41 +00001934}
1935
1936void UsingDecl::removeShadowDecl(UsingShadowDecl *S) {
1937 assert(std::find(shadow_begin(), shadow_end(), S) != shadow_end() &&
1938 "declaration not in set");
1939 assert(S->getUsingDecl() == this);
1940
1941 // Remove S from the shadow decl chain. This is O(n) but hopefully rare.
1942
Benjamin Kramer9bc6fb62012-01-07 19:09:05 +00001943 if (FirstUsingShadow.getPointer() == S) {
1944 FirstUsingShadow.setPointer(
1945 dyn_cast<UsingShadowDecl>(S->UsingOrNextShadow));
Argyrios Kyrtzidis826faa22010-11-10 05:40:41 +00001946 S->UsingOrNextShadow = this;
1947 return;
1948 }
1949
Benjamin Kramer9bc6fb62012-01-07 19:09:05 +00001950 UsingShadowDecl *Prev = FirstUsingShadow.getPointer();
Argyrios Kyrtzidis826faa22010-11-10 05:40:41 +00001951 while (Prev->UsingOrNextShadow != S)
1952 Prev = cast<UsingShadowDecl>(Prev->UsingOrNextShadow);
1953 Prev->UsingOrNextShadow = S->UsingOrNextShadow;
1954 S->UsingOrNextShadow = this;
1955}
1956
Douglas Gregordc355712011-02-25 00:36:19 +00001957UsingDecl *UsingDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation UL,
1958 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001959 const DeclarationNameInfo &NameInfo,
1960 bool IsTypeNameArg) {
Douglas Gregordc355712011-02-25 00:36:19 +00001961 return new (C) UsingDecl(DC, UL, QualifierLoc, NameInfo, IsTypeNameArg);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001962}
1963
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001964UsingDecl *UsingDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1965 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(UsingDecl));
1966 return new (Mem) UsingDecl(0, SourceLocation(), NestedNameSpecifierLoc(),
1967 DeclarationNameInfo(), false);
1968}
1969
David Blaikie99ba9e32011-12-20 02:48:34 +00001970void UnresolvedUsingValueDecl::anchor() { }
1971
John McCall7ba107a2009-11-18 02:36:19 +00001972UnresolvedUsingValueDecl *
1973UnresolvedUsingValueDecl::Create(ASTContext &C, DeclContext *DC,
1974 SourceLocation UsingLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00001975 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001976 const DeclarationNameInfo &NameInfo) {
John McCall7ba107a2009-11-18 02:36:19 +00001977 return new (C) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00001978 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00001979}
1980
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001981UnresolvedUsingValueDecl *
1982UnresolvedUsingValueDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1983 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(UnresolvedUsingValueDecl));
1984 return new (Mem) UnresolvedUsingValueDecl(0, QualType(), SourceLocation(),
1985 NestedNameSpecifierLoc(),
1986 DeclarationNameInfo());
1987}
1988
David Blaikie99ba9e32011-12-20 02:48:34 +00001989void UnresolvedUsingTypenameDecl::anchor() { }
1990
John McCall7ba107a2009-11-18 02:36:19 +00001991UnresolvedUsingTypenameDecl *
1992UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC,
1993 SourceLocation UsingLoc,
1994 SourceLocation TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00001995 NestedNameSpecifierLoc QualifierLoc,
John McCall7ba107a2009-11-18 02:36:19 +00001996 SourceLocation TargetNameLoc,
1997 DeclarationName TargetName) {
1998 return new (C) UnresolvedUsingTypenameDecl(DC, UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00001999 QualifierLoc, TargetNameLoc,
John McCall7ba107a2009-11-18 02:36:19 +00002000 TargetName.getAsIdentifierInfo());
Anders Carlsson665b49c2009-08-28 05:30:28 +00002001}
2002
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002003UnresolvedUsingTypenameDecl *
2004UnresolvedUsingTypenameDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
2005 void *Mem = AllocateDeserializedDecl(C, ID,
2006 sizeof(UnresolvedUsingTypenameDecl));
2007 return new (Mem) UnresolvedUsingTypenameDecl(0, SourceLocation(),
2008 SourceLocation(),
2009 NestedNameSpecifierLoc(),
2010 SourceLocation(),
2011 0);
2012}
2013
David Blaikie99ba9e32011-12-20 02:48:34 +00002014void StaticAssertDecl::anchor() { }
2015
Anders Carlssonfb311762009-03-14 00:25:26 +00002016StaticAssertDecl *StaticAssertDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002017 SourceLocation StaticAssertLoc,
2018 Expr *AssertExpr,
2019 StringLiteral *Message,
Richard Smithe3f470a2012-07-11 22:37:56 +00002020 SourceLocation RParenLoc,
2021 bool Failed) {
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00002022 return new (C) StaticAssertDecl(DC, StaticAssertLoc, AssertExpr, Message,
Richard Smithe3f470a2012-07-11 22:37:56 +00002023 RParenLoc, Failed);
Anders Carlssonfb311762009-03-14 00:25:26 +00002024}
2025
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002026StaticAssertDecl *StaticAssertDecl::CreateDeserialized(ASTContext &C,
2027 unsigned ID) {
2028 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(StaticAssertDecl));
Richard Smithe3f470a2012-07-11 22:37:56 +00002029 return new (Mem) StaticAssertDecl(0, SourceLocation(), 0, 0,
2030 SourceLocation(), false);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00002031}
2032
Anders Carlsson05bf2c72009-03-26 23:46:50 +00002033static const char *getAccessName(AccessSpecifier AS) {
2034 switch (AS) {
Anders Carlsson05bf2c72009-03-26 23:46:50 +00002035 case AS_none:
David Blaikieb219cfc2011-09-23 05:06:16 +00002036 llvm_unreachable("Invalid access specifier!");
Anders Carlsson05bf2c72009-03-26 23:46:50 +00002037 case AS_public:
2038 return "public";
2039 case AS_private:
2040 return "private";
2041 case AS_protected:
2042 return "protected";
2043 }
David Blaikie561d3ab2012-01-17 02:30:50 +00002044 llvm_unreachable("Invalid access specifier!");
Anders Carlsson05bf2c72009-03-26 23:46:50 +00002045}
2046
2047const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB,
2048 AccessSpecifier AS) {
2049 return DB << getAccessName(AS);
2050}
Richard Smithf15fda02012-02-02 01:16:57 +00002051
2052const PartialDiagnostic &clang::operator<<(const PartialDiagnostic &DB,
2053 AccessSpecifier AS) {
2054 return DB << getAccessName(AS);
2055}