blob: 9e82a1a84c8f7c886874a192142842e7e0eccd7a [file] [log] [blame]
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001//===--- DeclCXX.cpp - C++ Declaration AST Node Implementation ------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the C++ related Decl classes.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/DeclCXX.h"
Douglas Gregord475b8d2009-03-25 21:17:03 +000015#include "clang/AST/DeclTemplate.h"
Ted Kremenek4b7c9832008-09-05 17:16:31 +000016#include "clang/AST/ASTContext.h"
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +000017#include "clang/AST/ASTMutationListener.h"
Douglas Gregor7a39dd02010-09-29 00:15:42 +000018#include "clang/AST/CXXInheritance.h"
Anders Carlssonfb311762009-03-14 00:25:26 +000019#include "clang/AST/Expr.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000020#include "clang/AST/TypeLoc.h"
Douglas Gregor7d7e6722008-11-12 23:21:09 +000021#include "clang/Basic/IdentifierTable.h"
Douglas Gregorfdfab6b2008-12-23 21:31:30 +000022#include "llvm/ADT/STLExtras.h"
Fariborz Jahanianfaebcbb2009-09-12 19:52:10 +000023#include "llvm/ADT/SmallPtrSet.h"
Ted Kremenek4b7c9832008-09-05 17:16:31 +000024using namespace clang;
25
26//===----------------------------------------------------------------------===//
27// Decl Allocation/Deallocation Method Implementations
28//===----------------------------------------------------------------------===//
Douglas Gregor72c3f312008-12-05 18:15:24 +000029
John McCall86ff3082010-02-04 22:26:26 +000030CXXRecordDecl::DefinitionData::DefinitionData(CXXRecordDecl *D)
31 : UserDeclaredConstructor(false), UserDeclaredCopyConstructor(false),
Sean Huntffe37fd2011-05-25 20:50:04 +000032 UserDeclaredMoveConstructor(false), UserDeclaredCopyAssignment(false),
33 UserDeclaredMoveAssignment(false), UserDeclaredDestructor(false),
Eli Friedman97c134e2009-08-15 22:23:00 +000034 Aggregate(true), PlainOldData(true), Empty(true), Polymorphic(false),
Chandler Carruthec997dc2011-04-30 10:07:30 +000035 Abstract(false), IsStandardLayout(true), HasNoNonEmptyBases(true),
Chandler Carrutha8225442011-04-30 09:17:45 +000036 HasPrivateFields(false), HasProtectedFields(false), HasPublicFields(false),
Douglas Gregor2bb11012011-05-13 01:05:07 +000037 HasMutableFields(false), HasTrivialDefaultConstructor(true),
Sean Hunt023df372011-05-09 18:22:59 +000038 HasConstExprNonCopyMoveConstructor(false), HasTrivialCopyConstructor(true),
39 HasTrivialMoveConstructor(true), HasTrivialCopyAssignment(true),
40 HasTrivialMoveAssignment(true), HasTrivialDestructor(true),
41 HasNonLiteralTypeFieldsOrBases(false), ComputedVisibleConversions(false),
Sean Huntcdee3fe2011-05-11 22:34:38 +000042 UserProvidedDefaultConstructor(false), DeclaredDefaultConstructor(false),
Sean Huntffe37fd2011-05-25 20:50:04 +000043 DeclaredCopyConstructor(false), DeclaredMoveConstructor(false),
44 DeclaredCopyAssignment(false), DeclaredMoveAssignment(false),
Sean Hunt37b8c9e2011-05-09 21:45:35 +000045 DeclaredDestructor(false), NumBases(0), NumVBases(0), Bases(), VBases(),
46 Definition(D), FirstFriend(0) {
John McCall86ff3082010-02-04 22:26:26 +000047}
48
49CXXRecordDecl::CXXRecordDecl(Kind K, TagKind TK, DeclContext *DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000050 SourceLocation StartLoc, SourceLocation IdLoc,
51 IdentifierInfo *Id, CXXRecordDecl *PrevDecl)
52 : RecordDecl(K, TK, DC, StartLoc, IdLoc, Id, PrevDecl),
John McCall86ff3082010-02-04 22:26:26 +000053 DefinitionData(PrevDecl ? PrevDecl->DefinitionData : 0),
Douglas Gregord475b8d2009-03-25 21:17:03 +000054 TemplateOrInstantiation() { }
Douglas Gregor7d7e6722008-11-12 23:21:09 +000055
Jay Foad4ba2a172011-01-12 09:06:06 +000056CXXRecordDecl *CXXRecordDecl::Create(const ASTContext &C, TagKind TK,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000057 DeclContext *DC, SourceLocation StartLoc,
58 SourceLocation IdLoc, IdentifierInfo *Id,
Douglas Gregoraafc0cc2009-05-15 19:11:46 +000059 CXXRecordDecl* PrevDecl,
60 bool DelayTypeCreation) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000061 CXXRecordDecl* R = new (C) CXXRecordDecl(CXXRecord, TK, DC, StartLoc, IdLoc,
62 Id, PrevDecl);
Mike Stump1eb44332009-09-09 15:08:12 +000063
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +000064 // FIXME: DelayTypeCreation seems like such a hack
Douglas Gregoraafc0cc2009-05-15 19:11:46 +000065 if (!DelayTypeCreation)
Mike Stump1eb44332009-09-09 15:08:12 +000066 C.getTypeDeclType(R, PrevDecl);
Ted Kremenek4b7c9832008-09-05 17:16:31 +000067 return R;
68}
69
Jay Foad4ba2a172011-01-12 09:06:06 +000070CXXRecordDecl *CXXRecordDecl::Create(const ASTContext &C, EmptyShell Empty) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000071 return new (C) CXXRecordDecl(CXXRecord, TTK_Struct, 0, SourceLocation(),
72 SourceLocation(), 0, 0);
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +000073}
74
Mike Stump1eb44332009-09-09 15:08:12 +000075void
Douglas Gregor2d5b7032010-02-11 01:30:34 +000076CXXRecordDecl::setBases(CXXBaseSpecifier const * const *Bases,
Douglas Gregor57c856b2008-10-23 18:13:27 +000077 unsigned NumBases) {
Douglas Gregor2d5b7032010-02-11 01:30:34 +000078 ASTContext &C = getASTContext();
79
Mike Stump1eb44332009-09-09 15:08:12 +000080 // C++ [dcl.init.aggr]p1:
Douglas Gregor64bffa92008-11-05 16:20:31 +000081 // An aggregate is an array or a class (clause 9) with [...]
82 // no base classes [...].
John McCall86ff3082010-02-04 22:26:26 +000083 data().Aggregate = false;
Douglas Gregor64bffa92008-11-05 16:20:31 +000084
Douglas Gregor7c789c12010-10-29 22:39:52 +000085 if (!data().Bases.isOffset() && data().NumBases > 0)
86 C.Deallocate(data().getBases());
Mike Stump1eb44332009-09-09 15:08:12 +000087
Anders Carlsson6f6de732010-03-29 05:13:12 +000088 // The set of seen virtual base types.
Anders Carlsson1c363932010-03-29 19:49:09 +000089 llvm::SmallPtrSet<CanQualType, 8> SeenVBaseTypes;
Anders Carlsson6f6de732010-03-29 05:13:12 +000090
91 // The virtual bases of this class.
92 llvm::SmallVector<const CXXBaseSpecifier *, 8> VBases;
Mike Stump1eb44332009-09-09 15:08:12 +000093
John McCall86ff3082010-02-04 22:26:26 +000094 data().Bases = new(C) CXXBaseSpecifier [NumBases];
95 data().NumBases = NumBases;
Fariborz Jahanian40c072f2009-07-10 20:13:23 +000096 for (unsigned i = 0; i < NumBases; ++i) {
Douglas Gregor7c789c12010-10-29 22:39:52 +000097 data().getBases()[i] = *Bases[i];
Fariborz Jahanian40c072f2009-07-10 20:13:23 +000098 // Keep track of inherited vbases for this base class.
99 const CXXBaseSpecifier *Base = Bases[i];
100 QualType BaseType = Base->getType();
Douglas Gregor5fe8c042010-02-27 00:25:28 +0000101 // Skip dependent types; we can't do any checking on them now.
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000102 if (BaseType->isDependentType())
103 continue;
104 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +0000105 = cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
Anders Carlsson6f6de732010-03-29 05:13:12 +0000106
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000107 // C++ [dcl.init.aggr]p1:
108 // An aggregate is [...] a class with [...] no base classes [...].
109 data().Aggregate = false;
110
111 // C++ [class]p4:
112 // A POD-struct is an aggregate class...
113 data().PlainOldData = false;
114
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000115 // A class with a non-empty base class is not empty.
116 // FIXME: Standard ref?
Chandler Carrutha8225442011-04-30 09:17:45 +0000117 if (!BaseClassDecl->isEmpty()) {
118 if (!data().Empty) {
119 // C++0x [class]p7:
120 // A standard-layout class is a class that:
121 // [...]
122 // -- either has no non-static data members in the most derived
123 // class and at most one base class with non-static data members,
124 // or has no base classes with non-static data members, and
125 // If this is the second non-empty base, then neither of these two
126 // clauses can be true.
Chandler Carruthec997dc2011-04-30 10:07:30 +0000127 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000128 }
129
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000130 data().Empty = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000131 data().HasNoNonEmptyBases = false;
132 }
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000133
Douglas Gregor85606eb2010-09-28 20:50:54 +0000134 // C++ [class.virtual]p1:
135 // A class that declares or inherits a virtual function is called a
136 // polymorphic class.
137 if (BaseClassDecl->isPolymorphic())
138 data().Polymorphic = true;
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000139
Chandler Carrutha8225442011-04-30 09:17:45 +0000140 // C++0x [class]p7:
141 // A standard-layout class is a class that: [...]
142 // -- has no non-standard-layout base classes
Chandler Carruthec997dc2011-04-30 10:07:30 +0000143 if (!BaseClassDecl->isStandardLayout())
144 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000145
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000146 // Record if this base is the first non-literal field or base.
147 if (!hasNonLiteralTypeFieldsOrBases() && !BaseType->isLiteralType())
148 data().HasNonLiteralTypeFieldsOrBases = true;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000149
Anders Carlsson6f6de732010-03-29 05:13:12 +0000150 // Now go through all virtual bases of this base and add them.
Mike Stump1eb44332009-09-09 15:08:12 +0000151 for (CXXRecordDecl::base_class_iterator VBase =
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000152 BaseClassDecl->vbases_begin(),
153 E = BaseClassDecl->vbases_end(); VBase != E; ++VBase) {
Anders Carlsson6f6de732010-03-29 05:13:12 +0000154 // Add this base if it's not already in the list.
Anders Carlsson1c363932010-03-29 19:49:09 +0000155 if (SeenVBaseTypes.insert(C.getCanonicalType(VBase->getType())))
Anders Carlsson6f6de732010-03-29 05:13:12 +0000156 VBases.push_back(VBase);
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000157 }
Anders Carlsson6f6de732010-03-29 05:13:12 +0000158
159 if (Base->isVirtual()) {
160 // Add this base if it's not already in the list.
Anders Carlsson1c363932010-03-29 19:49:09 +0000161 if (SeenVBaseTypes.insert(C.getCanonicalType(BaseType)))
Anders Carlsson6f6de732010-03-29 05:13:12 +0000162 VBases.push_back(Base);
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000163
164 // C++0x [meta.unary.prop] is_empty:
165 // T is a class type, but not a union type, with ... no virtual base
166 // classes
167 data().Empty = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000168
169 // C++ [class.ctor]p5:
Sean Hunt023df372011-05-09 18:22:59 +0000170 // A default constructor is trivial [...] if:
171 // -- its class has [...] no virtual bases
172 data().HasTrivialDefaultConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000173
174 // C++0x [class.copy]p13:
175 // A copy/move constructor for class X is trivial if it is neither
176 // user-provided nor deleted and if
177 // -- class X has no virtual functions and no virtual base classes, and
Douglas Gregor85606eb2010-09-28 20:50:54 +0000178 data().HasTrivialCopyConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000179 data().HasTrivialMoveConstructor = false;
180
181 // C++0x [class.copy]p27:
182 // A copy/move assignment operator for class X is trivial if it is
183 // neither user-provided nor deleted and if
184 // -- class X has no virtual functions and no virtual base classes, and
Douglas Gregor85606eb2010-09-28 20:50:54 +0000185 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000186 data().HasTrivialMoveAssignment = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000187
188 // C++0x [class]p7:
189 // A standard-layout class is a class that: [...]
190 // -- has [...] no virtual base classes
Chandler Carruthec997dc2011-04-30 10:07:30 +0000191 data().IsStandardLayout = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000192 } else {
193 // C++ [class.ctor]p5:
Sean Hunt023df372011-05-09 18:22:59 +0000194 // A default constructor is trivial [...] if:
195 // -- all the direct base classes of its class have trivial default
196 // constructors.
197 if (!BaseClassDecl->hasTrivialDefaultConstructor())
198 data().HasTrivialDefaultConstructor = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000199
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000200 // C++0x [class.copy]p13:
201 // A copy/move constructor for class X is trivial if [...]
202 // [...]
203 // -- the constructor selected to copy/move each direct base class
204 // subobject is trivial, and
205 // FIXME: C++0x: We need to only consider the selected constructor
206 // instead of all of them.
Douglas Gregor85606eb2010-09-28 20:50:54 +0000207 if (!BaseClassDecl->hasTrivialCopyConstructor())
208 data().HasTrivialCopyConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000209 if (!BaseClassDecl->hasTrivialMoveConstructor())
210 data().HasTrivialMoveConstructor = false;
211
212 // C++0x [class.copy]p27:
213 // A copy/move assignment operator for class X is trivial if [...]
214 // [...]
215 // -- the assignment operator selected to copy/move each direct base
216 // class subobject is trivial, and
217 // FIXME: C++0x: We need to only consider the selected operator instead
218 // of all of them.
Douglas Gregor85606eb2010-09-28 20:50:54 +0000219 if (!BaseClassDecl->hasTrivialCopyAssignment())
220 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000221 if (!BaseClassDecl->hasTrivialMoveAssignment())
222 data().HasTrivialMoveAssignment = false;
Anders Carlsson6f6de732010-03-29 05:13:12 +0000223 }
Douglas Gregor85606eb2010-09-28 20:50:54 +0000224
225 // C++ [class.ctor]p3:
226 // A destructor is trivial if all the direct base classes of its class
227 // have trivial destructors.
228 if (!BaseClassDecl->hasTrivialDestructor())
229 data().HasTrivialDestructor = false;
Douglas Gregor2bb11012011-05-13 01:05:07 +0000230
231 // Keep track of the presence of mutable fields.
232 if (BaseClassDecl->hasMutableFields())
233 data().HasMutableFields = true;
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000234 }
Anders Carlsson6f6de732010-03-29 05:13:12 +0000235
236 if (VBases.empty())
237 return;
238
239 // Create base specifier for any direct or indirect virtual bases.
240 data().VBases = new (C) CXXBaseSpecifier[VBases.size()];
241 data().NumVBases = VBases.size();
242 for (int I = 0, E = VBases.size(); I != E; ++I) {
Nick Lewycky56062202010-07-26 16:56:01 +0000243 TypeSourceInfo *VBaseTypeInfo = VBases[I]->getTypeSourceInfo();
244
Anders Carlsson6f6de732010-03-29 05:13:12 +0000245 // Skip dependent types; we can't do any checking on them now.
Nick Lewycky56062202010-07-26 16:56:01 +0000246 if (VBaseTypeInfo->getType()->isDependentType())
Anders Carlsson6f6de732010-03-29 05:13:12 +0000247 continue;
248
Nick Lewycky56062202010-07-26 16:56:01 +0000249 CXXRecordDecl *VBaseClassDecl = cast<CXXRecordDecl>(
250 VBaseTypeInfo->getType()->getAs<RecordType>()->getDecl());
Anders Carlsson6f6de732010-03-29 05:13:12 +0000251
Douglas Gregor7c789c12010-10-29 22:39:52 +0000252 data().getVBases()[I] =
Anders Carlsson6f6de732010-03-29 05:13:12 +0000253 CXXBaseSpecifier(VBaseClassDecl->getSourceRange(), true,
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000254 VBaseClassDecl->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000255 VBases[I]->getAccessSpecifier(), VBaseTypeInfo,
256 SourceLocation());
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000257 }
Douglas Gregor57c856b2008-10-23 18:13:27 +0000258}
259
Douglas Gregor9edad9b2010-01-14 17:47:39 +0000260/// Callback function for CXXRecordDecl::forallBases that acknowledges
261/// that it saw a base class.
262static bool SawBase(const CXXRecordDecl *, void *) {
263 return true;
264}
265
266bool CXXRecordDecl::hasAnyDependentBases() const {
267 if (!isDependentContext())
268 return false;
269
270 return !forallBases(SawBase, 0);
271}
272
Sean Huntffe37fd2011-05-25 20:50:04 +0000273bool CXXRecordDecl::hasConstCopyConstructor() const {
274 return getCopyConstructor(Qualifiers::Const) != 0;
Fariborz Jahanian485f0872009-06-22 23:34:40 +0000275}
276
Chandler Carruthb7e95892011-04-23 10:47:28 +0000277bool CXXRecordDecl::isTriviallyCopyable() const {
278 // C++0x [class]p5:
279 // A trivially copyable class is a class that:
280 // -- has no non-trivial copy constructors,
281 if (!hasTrivialCopyConstructor()) return false;
282 // -- has no non-trivial move constructors,
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000283 if (!hasTrivialMoveConstructor()) return false;
Chandler Carruthb7e95892011-04-23 10:47:28 +0000284 // -- has no non-trivial copy assignment operators,
285 if (!hasTrivialCopyAssignment()) return false;
286 // -- has no non-trivial move assignment operators, and
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000287 if (!hasTrivialMoveAssignment()) return false;
Chandler Carruthb7e95892011-04-23 10:47:28 +0000288 // -- has a trivial destructor.
289 if (!hasTrivialDestructor()) return false;
290
291 return true;
292}
293
Douglas Gregor0d405db2010-07-01 20:59:04 +0000294/// \brief Perform a simplistic form of overload resolution that only considers
295/// cv-qualifiers on a single parameter, and return the best overload candidate
296/// (if there is one).
297static CXXMethodDecl *
298GetBestOverloadCandidateSimple(
299 const llvm::SmallVectorImpl<std::pair<CXXMethodDecl *, Qualifiers> > &Cands) {
300 if (Cands.empty())
301 return 0;
302 if (Cands.size() == 1)
303 return Cands[0].first;
304
305 unsigned Best = 0, N = Cands.size();
306 for (unsigned I = 1; I != N; ++I)
Douglas Gregor61d0b6b2011-04-28 00:56:09 +0000307 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
Douglas Gregor0d405db2010-07-01 20:59:04 +0000308 Best = I;
309
310 for (unsigned I = 1; I != N; ++I)
Douglas Gregor61d0b6b2011-04-28 00:56:09 +0000311 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
Douglas Gregor0d405db2010-07-01 20:59:04 +0000312 return 0;
313
314 return Cands[Best].first;
315}
316
Sean Huntffe37fd2011-05-25 20:50:04 +0000317CXXConstructorDecl *CXXRecordDecl::getCopyConstructor(unsigned TypeQuals) const{
318 ASTContext &Context = getASTContext();
Sebastian Redl64b45f72009-01-05 20:52:13 +0000319 QualType ClassType
320 = Context.getTypeDeclType(const_cast<CXXRecordDecl*>(this));
Mike Stump1eb44332009-09-09 15:08:12 +0000321 DeclarationName ConstructorName
Douglas Gregor9e7d9de2008-12-15 21:24:18 +0000322 = Context.DeclarationNames.getCXXConstructorName(
Fariborz Jahanian485f0872009-06-22 23:34:40 +0000323 Context.getCanonicalType(ClassType));
324 unsigned FoundTQs;
Douglas Gregor0d405db2010-07-01 20:59:04 +0000325 llvm::SmallVector<std::pair<CXXMethodDecl *, Qualifiers>, 4> Found;
Douglas Gregorfdfab6b2008-12-23 21:31:30 +0000326 DeclContext::lookup_const_iterator Con, ConEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000327 for (llvm::tie(Con, ConEnd) = this->lookup(ConstructorName);
Douglas Gregorfdfab6b2008-12-23 21:31:30 +0000328 Con != ConEnd; ++Con) {
Douglas Gregord93bacf2009-09-04 14:46:39 +0000329 // C++ [class.copy]p2:
330 // A non-template constructor for class X is a copy constructor if [...]
331 if (isa<FunctionTemplateDecl>(*Con))
332 continue;
333
Douglas Gregor0d405db2010-07-01 20:59:04 +0000334 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
335 if (Constructor->isCopyConstructor(FoundTQs)) {
John McCall0953e762009-09-24 19:53:00 +0000336 if (((TypeQuals & Qualifiers::Const) == (FoundTQs & Qualifiers::Const)) ||
337 (!(TypeQuals & Qualifiers::Const) && (FoundTQs & Qualifiers::Const)))
Douglas Gregor0d405db2010-07-01 20:59:04 +0000338 Found.push_back(std::make_pair(
339 const_cast<CXXConstructorDecl *>(Constructor),
340 Qualifiers::fromCVRMask(FoundTQs)));
Fariborz Jahanian485f0872009-06-22 23:34:40 +0000341 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000342 }
Douglas Gregor0d405db2010-07-01 20:59:04 +0000343
344 return cast_or_null<CXXConstructorDecl>(
345 GetBestOverloadCandidateSimple(Found));
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000346}
347
Sean Huntffe37fd2011-05-25 20:50:04 +0000348CXXConstructorDecl *CXXRecordDecl::getMoveConstructor() const {
349 for (ctor_iterator I = ctor_begin(), E = ctor_end(); I != E; ++I)
350 if (I->isMoveConstructor())
351 return *I;
352
353 return 0;
354}
355
Douglas Gregorb87786f2010-07-01 17:48:08 +0000356CXXMethodDecl *CXXRecordDecl::getCopyAssignmentOperator(bool ArgIsConst) const {
357 ASTContext &Context = getASTContext();
358 QualType Class = Context.getTypeDeclType(const_cast<CXXRecordDecl *>(this));
359 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
360
361 llvm::SmallVector<std::pair<CXXMethodDecl *, Qualifiers>, 4> Found;
362 DeclContext::lookup_const_iterator Op, OpEnd;
363 for (llvm::tie(Op, OpEnd) = this->lookup(Name); Op != OpEnd; ++Op) {
364 // C++ [class.copy]p9:
365 // A user-declared copy assignment operator is a non-static non-template
366 // member function of class X with exactly one parameter of type X, X&,
367 // const X&, volatile X& or const volatile X&.
368 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
369 if (!Method || Method->isStatic() || Method->getPrimaryTemplate())
370 continue;
371
372 const FunctionProtoType *FnType
373 = Method->getType()->getAs<FunctionProtoType>();
374 assert(FnType && "Overloaded operator has no prototype.");
375 // Don't assert on this; an invalid decl might have been left in the AST.
376 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
377 continue;
378
379 QualType ArgType = FnType->getArgType(0);
380 Qualifiers Quals;
381 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()) {
382 ArgType = Ref->getPointeeType();
383 // If we have a const argument and we have a reference to a non-const,
384 // this function does not match.
385 if (ArgIsConst && !ArgType.isConstQualified())
386 continue;
387
388 Quals = ArgType.getQualifiers();
389 } else {
390 // By-value copy-assignment operators are treated like const X&
391 // copy-assignment operators.
392 Quals = Qualifiers::fromCVRMask(Qualifiers::Const);
393 }
394
395 if (!Context.hasSameUnqualifiedType(ArgType, Class))
396 continue;
397
398 // Save this copy-assignment operator. It might be "the one".
399 Found.push_back(std::make_pair(const_cast<CXXMethodDecl *>(Method), Quals));
400 }
401
402 // Use a simplistic form of overload resolution to find the candidate.
403 return GetBestOverloadCandidateSimple(Found);
404}
405
Sean Huntffe37fd2011-05-25 20:50:04 +0000406CXXMethodDecl *CXXRecordDecl::getMoveAssignmentOperator() const {
407 for (method_iterator I = method_begin(), E = method_end(); I != E; ++I)
408 if (I->isMoveAssignmentOperator())
409 return *I;
410
411 return 0;
412}
413
Douglas Gregor21386642010-09-28 21:55:22 +0000414void CXXRecordDecl::markedVirtualFunctionPure() {
415 // C++ [class.abstract]p2:
416 // A class is abstract if it has at least one pure virtual function.
417 data().Abstract = true;
418}
419
420void CXXRecordDecl::addedMember(Decl *D) {
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000421 // Ignore friends and invalid declarations.
422 if (D->getFriendObjectKind() || D->isInvalidDecl())
Douglas Gregor5c0646b2010-09-27 21:17:54 +0000423 return;
424
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000425 FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D);
426 if (FunTmpl)
427 D = FunTmpl->getTemplatedDecl();
428
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000429 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
430 if (Method->isVirtual()) {
431 // C++ [dcl.init.aggr]p1:
432 // An aggregate is an array or a class with [...] no virtual functions.
433 data().Aggregate = false;
434
435 // C++ [class]p4:
436 // A POD-struct is an aggregate class...
437 data().PlainOldData = false;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000438
439 // Virtual functions make the class non-empty.
440 // FIXME: Standard ref?
441 data().Empty = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000442
443 // C++ [class.virtual]p1:
444 // A class that declares or inherits a virtual function is called a
445 // polymorphic class.
446 data().Polymorphic = true;
447
Sean Hunt023df372011-05-09 18:22:59 +0000448 // C++0x [class.ctor]p5
449 // A default constructor is trivial [...] if:
450 // -- its class has no virtual functions [...]
451 data().HasTrivialDefaultConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000452
453 // C++0x [class.copy]p13:
454 // A copy/move constructor for class X is trivial if [...]
455 // -- class X has no virtual functions [...]
Douglas Gregor85606eb2010-09-28 20:50:54 +0000456 data().HasTrivialCopyConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000457 data().HasTrivialMoveConstructor = false;
458
459 // C++0x [class.copy]p27:
460 // A copy/move assignment operator for class X is trivial if [...]
461 // -- class X has no virtual functions [...]
Douglas Gregor85606eb2010-09-28 20:50:54 +0000462 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000463 data().HasTrivialMoveAssignment = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000464 // FIXME: Destructor?
Chandler Carrutha8225442011-04-30 09:17:45 +0000465
466 // C++0x [class]p7:
467 // A standard-layout class is a class that: [...]
468 // -- has no virtual functions
Chandler Carruthec997dc2011-04-30 10:07:30 +0000469 data().IsStandardLayout = false;
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000470 }
471 }
472
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000473 if (D->isImplicit()) {
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +0000474 // Notify that an implicit member was added after the definition
475 // was completed.
476 if (!isBeingDefined())
477 if (ASTMutationListener *L = getASTMutationListener())
478 L->AddedCXXImplicitMember(data().Definition, D);
Argyrios Kyrtzidis046c03b2010-10-20 23:48:42 +0000479
Sean Huntffe37fd2011-05-25 20:50:04 +0000480 // If this is a special member function, note that it was added and then
481 // return early.
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000482 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Sean Huntffe37fd2011-05-25 20:50:04 +0000483 if (Constructor->isDefaultConstructor())
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000484 data().DeclaredDefaultConstructor = true;
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000485 else if (Constructor->isCopyConstructor())
486 data().DeclaredCopyConstructor = true;
Sean Huntffe37fd2011-05-25 20:50:04 +0000487 else if (Constructor->isMoveConstructor())
488 data().DeclaredMoveConstructor = true;
489 else
490 goto NotASpecialMember;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000491 return;
Sean Huntffe37fd2011-05-25 20:50:04 +0000492 } else if (isa<CXXDestructorDecl>(D)) {
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000493 data().DeclaredDestructor = true;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000494 return;
Sean Huntffe37fd2011-05-25 20:50:04 +0000495 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
496 if (Method->isCopyAssignmentOperator())
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000497 data().DeclaredCopyAssignment = true;
Sean Huntffe37fd2011-05-25 20:50:04 +0000498 else if (Method->isMoveAssignmentOperator())
499 data().DeclaredMoveAssignment = true;
500 else
501 goto NotASpecialMember;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000502 return;
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000503 }
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000504
Sean Huntffe37fd2011-05-25 20:50:04 +0000505NotASpecialMember:;
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000506 // Any other implicit declarations are handled like normal declarations.
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000507 }
508
509 // Handle (user-declared) constructors.
510 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
511 // Note that we have a user-declared constructor.
512 data().UserDeclaredConstructor = true;
513
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000514 // FIXME: Under C++0x, /only/ special member functions may be user-provided.
515 // This is probably a defect.
516 bool UserProvided = false;
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000517
Sean Hunt023df372011-05-09 18:22:59 +0000518 // C++0x [class.ctor]p5:
519 // A default constructor is trivial if it is not user-provided [...]
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000520 if (Constructor->isDefaultConstructor()) {
521 data().DeclaredDefaultConstructor = true;
522 if (Constructor->isUserProvided()) {
523 data().HasTrivialDefaultConstructor = false;
Sean Huntcdee3fe2011-05-11 22:34:38 +0000524 data().UserProvidedDefaultConstructor = true;
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000525 UserProvided = true;
526 }
527 }
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000528
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000529 // Note when we have a user-declared copy or move constructor, which will
530 // suppress the implicit declaration of those constructors.
531 if (!FunTmpl) {
532 if (Constructor->isCopyConstructor()) {
533 data().UserDeclaredCopyConstructor = true;
534 data().DeclaredCopyConstructor = true;
535
536 // C++0x [class.copy]p13:
Sean Hunt023df372011-05-09 18:22:59 +0000537 // A copy/move constructor for class X is trivial if it is not
538 // user-provided [...]
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000539 if (Constructor->isUserProvided()) {
Sean Hunt023df372011-05-09 18:22:59 +0000540 data().HasTrivialCopyConstructor = false;
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000541 UserProvided = true;
542 }
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000543 } else if (Constructor->isMoveConstructor()) {
Sean Huntffe37fd2011-05-25 20:50:04 +0000544 data().UserDeclaredMoveConstructor = true;
545 data().DeclaredMoveConstructor = true;
546
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000547 // C++0x [class.copy]p13:
Sean Hunt023df372011-05-09 18:22:59 +0000548 // A copy/move constructor for class X is trivial if it is not
549 // user-provided [...]
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000550 if (Constructor->isUserProvided()) {
Sean Hunt023df372011-05-09 18:22:59 +0000551 data().HasTrivialMoveConstructor = false;
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000552 UserProvided = true;
553 }
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000554 }
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000555 }
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000556 if (Constructor->isConstExpr() &&
557 !Constructor->isCopyOrMoveConstructor()) {
558 // Record if we see any constexpr constructors which are niether copy
559 // nor move constructors.
560 data().HasConstExprNonCopyMoveConstructor = true;
561 }
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000562
Sean Hunt37b8c9e2011-05-09 21:45:35 +0000563 // C++ [dcl.init.aggr]p1:
564 // An aggregate is an array or a class with no user-declared
565 // constructors [...].
566 // C++0x [dcl.init.aggr]p1:
567 // An aggregate is an array or a class with no user-provided
568 // constructors [...].
569 if (!getASTContext().getLangOptions().CPlusPlus0x || UserProvided)
570 data().Aggregate = false;
571
572 // C++ [class]p4:
573 // A POD-struct is an aggregate class [...]
574 // Since the POD bit is meant to be C++03 POD-ness, clear it even if the
575 // type is technically an aggregate in C++0x since it wouldn't be in 03.
576 data().PlainOldData = false;
577
Douglas Gregor5c0646b2010-09-27 21:17:54 +0000578 return;
579 }
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000580
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000581 // Handle (user-declared) destructors.
Sean Huntcf34e752011-05-16 22:41:40 +0000582 if (CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000583 data().DeclaredDestructor = true;
584 data().UserDeclaredDestructor = true;
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000585
586 // C++ [class]p4:
587 // A POD-struct is an aggregate class that has [...] no user-defined
588 // destructor.
Sean Huntcf34e752011-05-16 22:41:40 +0000589 // This bit is the C++03 POD bit, not the 0x one.
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000590 data().PlainOldData = false;
591
Sean Huntcf34e752011-05-16 22:41:40 +0000592 // C++0x [class.dtor]p5:
593 // A destructor is trivial if it is not user-provided and [...]
594 if (DD->isUserProvided())
595 data().HasTrivialDestructor = false;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000596
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000597 return;
598 }
Douglas Gregor5c0646b2010-09-27 21:17:54 +0000599
Douglas Gregor0ed2e082010-09-27 22:48:58 +0000600 // Handle (user-declared) member functions.
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000601 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Sean Huntffe37fd2011-05-25 20:50:04 +0000602 if (Method->isCopyAssignmentOperator()) {
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000603 // C++ [class]p4:
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000604 // A POD-struct is an aggregate class that [...] has no user-defined
605 // copy assignment operator [...].
Sean Huntcf34e752011-05-16 22:41:40 +0000606 // This is the C++03 bit only.
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000607 data().PlainOldData = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000608
Sean Huntffe37fd2011-05-25 20:50:04 +0000609 // This is a copy assignment operator.
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000610
Sean Huntffe37fd2011-05-25 20:50:04 +0000611 // Suppress the implicit declaration of a copy constructor.
612 data().UserDeclaredCopyAssignment = true;
613 data().DeclaredCopyAssignment = true;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000614
Sean Huntffe37fd2011-05-25 20:50:04 +0000615 // C++0x [class.copy]p27:
616 // A copy/move assignment operator for class X is trivial if it is
617 // neither user-provided nor deleted [...]
618 if (Method->isUserProvided())
619 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000620
Sean Huntffe37fd2011-05-25 20:50:04 +0000621 return;
622 }
623
624 if (Method->isMoveAssignmentOperator()) {
625 // This is an extension in C++03 mode, but we'll keep consistency by
626 // taking a move assignment operator to induce non-POD-ness
627 data().PlainOldData = false;
628
629 // This is a move assignment operator.
630 data().UserDeclaredMoveAssignment = true;
631 data().DeclaredMoveAssignment = true;
632
633 // C++0x [class.copy]p27:
634 // A copy/move assignment operator for class X is trivial if it is
635 // neither user-provided nor deleted [...]
636 if (Method->isUserProvided())
637 data().HasTrivialMoveAssignment = false;
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000638 }
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000639
Douglas Gregore80622f2010-09-29 04:25:11 +0000640 // Keep the list of conversion functions up-to-date.
641 if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
642 // We don't record specializations.
643 if (Conversion->getPrimaryTemplate())
644 return;
645
646 // FIXME: We intentionally don't use the decl's access here because it
647 // hasn't been set yet. That's really just a misdesign in Sema.
648
649 if (FunTmpl) {
650 if (FunTmpl->getPreviousDeclaration())
651 data().Conversions.replace(FunTmpl->getPreviousDeclaration(),
652 FunTmpl);
653 else
654 data().Conversions.addDecl(FunTmpl);
655 } else {
656 if (Conversion->getPreviousDeclaration())
657 data().Conversions.replace(Conversion->getPreviousDeclaration(),
658 Conversion);
659 else
660 data().Conversions.addDecl(Conversion);
661 }
662 }
663
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000664 return;
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000665 }
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000666
667 // Handle non-static data members.
668 if (FieldDecl *Field = dyn_cast<FieldDecl>(D)) {
669 // C++ [dcl.init.aggr]p1:
670 // An aggregate is an array or a class (clause 9) with [...] no
671 // private or protected non-static data members (clause 11).
672 //
673 // A POD must be an aggregate.
674 if (D->getAccess() == AS_private || D->getAccess() == AS_protected) {
675 data().Aggregate = false;
676 data().PlainOldData = false;
677 }
Chandler Carrutha8225442011-04-30 09:17:45 +0000678
679 // C++0x [class]p7:
680 // A standard-layout class is a class that:
681 // [...]
682 // -- has the same access control for all non-static data members,
683 switch (D->getAccess()) {
684 case AS_private: data().HasPrivateFields = true; break;
685 case AS_protected: data().HasProtectedFields = true; break;
686 case AS_public: data().HasPublicFields = true; break;
687 case AS_none: assert(0 && "Invalid access specifier");
688 };
689 if ((data().HasPrivateFields + data().HasProtectedFields +
690 data().HasPublicFields) > 1)
Chandler Carruthec997dc2011-04-30 10:07:30 +0000691 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000692
Douglas Gregor2bb11012011-05-13 01:05:07 +0000693 // Keep track of the presence of mutable fields.
694 if (Field->isMutable())
695 data().HasMutableFields = true;
696
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000697 // C++0x [class]p9:
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000698 // A POD struct is a class that is both a trivial class and a
699 // standard-layout class, and has no non-static data members of type
700 // non-POD struct, non-POD union (or array of such types).
701 ASTContext &Context = getASTContext();
702 QualType T = Context.getBaseElementType(Field->getType());
703 if (!T->isPODType())
704 data().PlainOldData = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000705 if (T->isReferenceType()) {
Sean Hunt023df372011-05-09 18:22:59 +0000706 data().HasTrivialDefaultConstructor = false;
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000707
Chandler Carrutha8225442011-04-30 09:17:45 +0000708 // C++0x [class]p7:
709 // A standard-layout class is a class that:
710 // -- has no non-static data members of type [...] reference,
Chandler Carruthec997dc2011-04-30 10:07:30 +0000711 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000712 }
713
Chandler Carruth9b6347c2011-04-24 02:49:34 +0000714 // Record if this field is the first non-literal field or base.
715 if (!hasNonLiteralTypeFieldsOrBases() && !T->isLiteralType())
716 data().HasNonLiteralTypeFieldsOrBases = true;
717
Douglas Gregor85606eb2010-09-28 20:50:54 +0000718 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
719 CXXRecordDecl* FieldRec = cast<CXXRecordDecl>(RecordTy->getDecl());
720 if (FieldRec->getDefinition()) {
Sean Hunt023df372011-05-09 18:22:59 +0000721 // C++0x [class.ctor]p5:
722 // A defulat constructor is trivial [...] if:
723 // -- for all the non-static data members of its class that are of
724 // class type (or array thereof), each such class has a trivial
725 // default constructor.
726 if (!FieldRec->hasTrivialDefaultConstructor())
727 data().HasTrivialDefaultConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000728
729 // C++0x [class.copy]p13:
730 // A copy/move constructor for class X is trivial if [...]
731 // [...]
732 // -- for each non-static data member of X that is of class type (or
733 // an array thereof), the constructor selected to copy/move that
734 // member is trivial;
735 // FIXME: C++0x: We don't correctly model 'selected' constructors.
Douglas Gregor85606eb2010-09-28 20:50:54 +0000736 if (!FieldRec->hasTrivialCopyConstructor())
737 data().HasTrivialCopyConstructor = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000738 if (!FieldRec->hasTrivialMoveConstructor())
739 data().HasTrivialMoveConstructor = false;
740
741 // C++0x [class.copy]p27:
742 // A copy/move assignment operator for class X is trivial if [...]
743 // [...]
744 // -- for each non-static data member of X that is of class type (or
745 // an array thereof), the assignment operator selected to
746 // copy/move that member is trivial;
747 // FIXME: C++0x: We don't correctly model 'selected' operators.
Douglas Gregor85606eb2010-09-28 20:50:54 +0000748 if (!FieldRec->hasTrivialCopyAssignment())
749 data().HasTrivialCopyAssignment = false;
Chandler Carruth4d6e5a22011-04-23 23:10:33 +0000750 if (!FieldRec->hasTrivialMoveAssignment())
751 data().HasTrivialMoveAssignment = false;
752
Douglas Gregor85606eb2010-09-28 20:50:54 +0000753 if (!FieldRec->hasTrivialDestructor())
754 data().HasTrivialDestructor = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000755
756 // C++0x [class]p7:
757 // A standard-layout class is a class that:
758 // -- has no non-static data members of type non-standard-layout
759 // class (or array of such types) [...]
Chandler Carruthec997dc2011-04-30 10:07:30 +0000760 if (!FieldRec->isStandardLayout())
761 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000762
763 // C++0x [class]p7:
764 // A standard-layout class is a class that:
765 // [...]
766 // -- has no base classes of the same type as the first non-static
767 // data member.
768 // We don't want to expend bits in the state of the record decl
769 // tracking whether this is the first non-static data member so we
770 // cheat a bit and use some of the existing state: the empty bit.
771 // Virtual bases and virtual methods make a class non-empty, but they
772 // also make it non-standard-layout so we needn't check here.
773 // A non-empty base class may leave the class standard-layout, but not
774 // if we have arrived here, and have at least on non-static data
Chandler Carruthec997dc2011-04-30 10:07:30 +0000775 // member. If IsStandardLayout remains true, then the first non-static
Chandler Carrutha8225442011-04-30 09:17:45 +0000776 // data member must come through here with Empty still true, and Empty
777 // will subsequently be set to false below.
Chandler Carruthec997dc2011-04-30 10:07:30 +0000778 if (data().IsStandardLayout && data().Empty) {
Chandler Carrutha8225442011-04-30 09:17:45 +0000779 for (CXXRecordDecl::base_class_const_iterator BI = bases_begin(),
780 BE = bases_end();
781 BI != BE; ++BI) {
782 if (Context.hasSameUnqualifiedType(BI->getType(), T)) {
Chandler Carruthec997dc2011-04-30 10:07:30 +0000783 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000784 break;
785 }
786 }
787 }
Douglas Gregor2bb11012011-05-13 01:05:07 +0000788
789 // Keep track of the presence of mutable fields.
790 if (FieldRec->hasMutableFields())
791 data().HasMutableFields = true;
Douglas Gregor85606eb2010-09-28 20:50:54 +0000792 }
793 }
Chandler Carrutha8225442011-04-30 09:17:45 +0000794
795 // C++0x [class]p7:
796 // A standard-layout class is a class that:
797 // [...]
798 // -- either has no non-static data members in the most derived
799 // class and at most one base class with non-static data members,
800 // or has no base classes with non-static data members, and
801 // At this point we know that we have a non-static data member, so the last
802 // clause holds.
803 if (!data().HasNoNonEmptyBases)
Chandler Carruthec997dc2011-04-30 10:07:30 +0000804 data().IsStandardLayout = false;
Chandler Carrutha8225442011-04-30 09:17:45 +0000805
Douglas Gregor2cf9d652010-09-28 20:38:10 +0000806 // If this is not a zero-length bit-field, then the class is not empty.
807 if (data().Empty) {
808 if (!Field->getBitWidth())
809 data().Empty = false;
810 else if (!Field->getBitWidth()->isTypeDependent() &&
811 !Field->getBitWidth()->isValueDependent()) {
812 llvm::APSInt Bits;
813 if (Field->getBitWidth()->isIntegerConstantExpr(Bits, Context))
814 if (!!Bits)
815 data().Empty = false;
816 }
817 }
Douglas Gregor9fe183a2010-09-28 19:45:33 +0000818 }
Douglas Gregore80622f2010-09-29 04:25:11 +0000819
820 // Handle using declarations of conversion functions.
821 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(D))
822 if (Shadow->getDeclName().getNameKind()
823 == DeclarationName::CXXConversionFunctionName)
824 data().Conversions.addDecl(Shadow, Shadow->getAccess());
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000825}
826
John McCallb05b5f32010-03-15 09:07:48 +0000827static CanQualType GetConversionType(ASTContext &Context, NamedDecl *Conv) {
828 QualType T;
John McCall32daa422010-03-31 01:36:47 +0000829 if (isa<UsingShadowDecl>(Conv))
830 Conv = cast<UsingShadowDecl>(Conv)->getTargetDecl();
John McCallb05b5f32010-03-15 09:07:48 +0000831 if (FunctionTemplateDecl *ConvTemp = dyn_cast<FunctionTemplateDecl>(Conv))
832 T = ConvTemp->getTemplatedDecl()->getResultType();
833 else
834 T = cast<CXXConversionDecl>(Conv)->getConversionType();
835 return Context.getCanonicalType(T);
Fariborz Jahanian0351a1e2009-10-07 20:43:36 +0000836}
837
John McCallb05b5f32010-03-15 09:07:48 +0000838/// Collect the visible conversions of a base class.
839///
840/// \param Base a base class of the class we're considering
841/// \param InVirtual whether this base class is a virtual base (or a base
842/// of a virtual base)
843/// \param Access the access along the inheritance path to this base
844/// \param ParentHiddenTypes the conversions provided by the inheritors
845/// of this base
846/// \param Output the set to which to add conversions from non-virtual bases
847/// \param VOutput the set to which to add conversions from virtual bases
848/// \param HiddenVBaseCs the set of conversions which were hidden in a
849/// virtual base along some inheritance path
850static void CollectVisibleConversions(ASTContext &Context,
851 CXXRecordDecl *Record,
852 bool InVirtual,
853 AccessSpecifier Access,
854 const llvm::SmallPtrSet<CanQualType, 8> &ParentHiddenTypes,
855 UnresolvedSetImpl &Output,
856 UnresolvedSetImpl &VOutput,
857 llvm::SmallPtrSet<NamedDecl*, 8> &HiddenVBaseCs) {
858 // The set of types which have conversions in this class or its
859 // subclasses. As an optimization, we don't copy the derived set
860 // unless it might change.
861 const llvm::SmallPtrSet<CanQualType, 8> *HiddenTypes = &ParentHiddenTypes;
862 llvm::SmallPtrSet<CanQualType, 8> HiddenTypesBuffer;
863
864 // Collect the direct conversions and figure out which conversions
865 // will be hidden in the subclasses.
866 UnresolvedSetImpl &Cs = *Record->getConversionFunctions();
867 if (!Cs.empty()) {
868 HiddenTypesBuffer = ParentHiddenTypes;
869 HiddenTypes = &HiddenTypesBuffer;
870
871 for (UnresolvedSetIterator I = Cs.begin(), E = Cs.end(); I != E; ++I) {
872 bool Hidden =
873 !HiddenTypesBuffer.insert(GetConversionType(Context, I.getDecl()));
874
875 // If this conversion is hidden and we're in a virtual base,
876 // remember that it's hidden along some inheritance path.
877 if (Hidden && InVirtual)
878 HiddenVBaseCs.insert(cast<NamedDecl>(I.getDecl()->getCanonicalDecl()));
879
880 // If this conversion isn't hidden, add it to the appropriate output.
881 else if (!Hidden) {
882 AccessSpecifier IAccess
883 = CXXRecordDecl::MergeAccess(Access, I.getAccess());
884
885 if (InVirtual)
886 VOutput.addDecl(I.getDecl(), IAccess);
Fariborz Jahanian62509212009-09-12 18:26:03 +0000887 else
John McCallb05b5f32010-03-15 09:07:48 +0000888 Output.addDecl(I.getDecl(), IAccess);
Fariborz Jahanian53462782009-09-11 21:44:33 +0000889 }
890 }
891 }
Sebastian Redl9994a342009-10-25 17:03:50 +0000892
John McCallb05b5f32010-03-15 09:07:48 +0000893 // Collect information recursively from any base classes.
894 for (CXXRecordDecl::base_class_iterator
895 I = Record->bases_begin(), E = Record->bases_end(); I != E; ++I) {
896 const RecordType *RT = I->getType()->getAs<RecordType>();
897 if (!RT) continue;
Sebastian Redl9994a342009-10-25 17:03:50 +0000898
John McCallb05b5f32010-03-15 09:07:48 +0000899 AccessSpecifier BaseAccess
900 = CXXRecordDecl::MergeAccess(Access, I->getAccessSpecifier());
901 bool BaseInVirtual = InVirtual || I->isVirtual();
Sebastian Redl9994a342009-10-25 17:03:50 +0000902
John McCallb05b5f32010-03-15 09:07:48 +0000903 CXXRecordDecl *Base = cast<CXXRecordDecl>(RT->getDecl());
904 CollectVisibleConversions(Context, Base, BaseInVirtual, BaseAccess,
905 *HiddenTypes, Output, VOutput, HiddenVBaseCs);
Fariborz Jahanian53462782009-09-11 21:44:33 +0000906 }
John McCallb05b5f32010-03-15 09:07:48 +0000907}
Sebastian Redl9994a342009-10-25 17:03:50 +0000908
John McCallb05b5f32010-03-15 09:07:48 +0000909/// Collect the visible conversions of a class.
910///
911/// This would be extremely straightforward if it weren't for virtual
912/// bases. It might be worth special-casing that, really.
913static void CollectVisibleConversions(ASTContext &Context,
914 CXXRecordDecl *Record,
915 UnresolvedSetImpl &Output) {
916 // The collection of all conversions in virtual bases that we've
917 // found. These will be added to the output as long as they don't
918 // appear in the hidden-conversions set.
919 UnresolvedSet<8> VBaseCs;
920
921 // The set of conversions in virtual bases that we've determined to
922 // be hidden.
923 llvm::SmallPtrSet<NamedDecl*, 8> HiddenVBaseCs;
924
925 // The set of types hidden by classes derived from this one.
926 llvm::SmallPtrSet<CanQualType, 8> HiddenTypes;
927
928 // Go ahead and collect the direct conversions and add them to the
929 // hidden-types set.
930 UnresolvedSetImpl &Cs = *Record->getConversionFunctions();
931 Output.append(Cs.begin(), Cs.end());
932 for (UnresolvedSetIterator I = Cs.begin(), E = Cs.end(); I != E; ++I)
933 HiddenTypes.insert(GetConversionType(Context, I.getDecl()));
934
935 // Recursively collect conversions from base classes.
936 for (CXXRecordDecl::base_class_iterator
937 I = Record->bases_begin(), E = Record->bases_end(); I != E; ++I) {
938 const RecordType *RT = I->getType()->getAs<RecordType>();
939 if (!RT) continue;
940
941 CollectVisibleConversions(Context, cast<CXXRecordDecl>(RT->getDecl()),
942 I->isVirtual(), I->getAccessSpecifier(),
943 HiddenTypes, Output, VBaseCs, HiddenVBaseCs);
944 }
945
946 // Add any unhidden conversions provided by virtual bases.
947 for (UnresolvedSetIterator I = VBaseCs.begin(), E = VBaseCs.end();
948 I != E; ++I) {
949 if (!HiddenVBaseCs.count(cast<NamedDecl>(I.getDecl()->getCanonicalDecl())))
950 Output.addDecl(I.getDecl(), I.getAccess());
Fariborz Jahanian53462782009-09-11 21:44:33 +0000951 }
Fariborz Jahanian62509212009-09-12 18:26:03 +0000952}
953
954/// getVisibleConversionFunctions - get all conversion functions visible
955/// in current class; including conversion function templates.
John McCalleec51cf2010-01-20 00:46:10 +0000956const UnresolvedSetImpl *CXXRecordDecl::getVisibleConversionFunctions() {
Fariborz Jahanian62509212009-09-12 18:26:03 +0000957 // If root class, all conversions are visible.
958 if (bases_begin() == bases_end())
John McCall86ff3082010-02-04 22:26:26 +0000959 return &data().Conversions;
Fariborz Jahanian62509212009-09-12 18:26:03 +0000960 // If visible conversion list is already evaluated, return it.
John McCall86ff3082010-02-04 22:26:26 +0000961 if (data().ComputedVisibleConversions)
962 return &data().VisibleConversions;
John McCallb05b5f32010-03-15 09:07:48 +0000963 CollectVisibleConversions(getASTContext(), this, data().VisibleConversions);
John McCall86ff3082010-02-04 22:26:26 +0000964 data().ComputedVisibleConversions = true;
965 return &data().VisibleConversions;
Fariborz Jahanian53462782009-09-11 21:44:33 +0000966}
967
John McCall32daa422010-03-31 01:36:47 +0000968void CXXRecordDecl::removeConversion(const NamedDecl *ConvDecl) {
969 // This operation is O(N) but extremely rare. Sema only uses it to
970 // remove UsingShadowDecls in a class that were followed by a direct
971 // declaration, e.g.:
972 // class A : B {
973 // using B::operator int;
974 // operator int();
975 // };
976 // This is uncommon by itself and even more uncommon in conjunction
977 // with sufficiently large numbers of directly-declared conversions
978 // that asymptotic behavior matters.
979
980 UnresolvedSetImpl &Convs = *getConversionFunctions();
981 for (unsigned I = 0, E = Convs.size(); I != E; ++I) {
982 if (Convs[I].getDecl() == ConvDecl) {
983 Convs.erase(I);
984 assert(std::find(Convs.begin(), Convs.end(), ConvDecl) == Convs.end()
985 && "conversion was found multiple times in unresolved set");
986 return;
987 }
988 }
989
990 llvm_unreachable("conversion not found in set!");
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000991}
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +0000992
Douglas Gregorf6b11852009-10-08 15:14:33 +0000993CXXRecordDecl *CXXRecordDecl::getInstantiatedFromMemberClass() const {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +0000994 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000995 return cast<CXXRecordDecl>(MSInfo->getInstantiatedFrom());
996
997 return 0;
998}
999
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001000MemberSpecializationInfo *CXXRecordDecl::getMemberSpecializationInfo() const {
1001 return TemplateOrInstantiation.dyn_cast<MemberSpecializationInfo *>();
1002}
1003
Douglas Gregorf6b11852009-10-08 15:14:33 +00001004void
1005CXXRecordDecl::setInstantiationOfMemberClass(CXXRecordDecl *RD,
1006 TemplateSpecializationKind TSK) {
1007 assert(TemplateOrInstantiation.isNull() &&
1008 "Previous template or instantiation?");
1009 assert(!isa<ClassTemplateSpecializationDecl>(this));
1010 TemplateOrInstantiation
1011 = new (getASTContext()) MemberSpecializationInfo(RD, TSK);
1012}
1013
Anders Carlssonb13e3572009-12-07 06:33:48 +00001014TemplateSpecializationKind CXXRecordDecl::getTemplateSpecializationKind() const{
1015 if (const ClassTemplateSpecializationDecl *Spec
Douglas Gregorf6b11852009-10-08 15:14:33 +00001016 = dyn_cast<ClassTemplateSpecializationDecl>(this))
1017 return Spec->getSpecializationKind();
1018
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001019 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo())
Douglas Gregorf6b11852009-10-08 15:14:33 +00001020 return MSInfo->getTemplateSpecializationKind();
1021
1022 return TSK_Undeclared;
1023}
1024
1025void
1026CXXRecordDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK) {
1027 if (ClassTemplateSpecializationDecl *Spec
1028 = dyn_cast<ClassTemplateSpecializationDecl>(this)) {
1029 Spec->setSpecializationKind(TSK);
1030 return;
1031 }
1032
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00001033 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) {
Douglas Gregorf6b11852009-10-08 15:14:33 +00001034 MSInfo->setTemplateSpecializationKind(TSK);
1035 return;
1036 }
1037
1038 assert(false && "Not a class template or member class specialization");
1039}
1040
Douglas Gregor1d110e02010-07-01 14:13:13 +00001041CXXDestructorDecl *CXXRecordDecl::getDestructor() const {
1042 ASTContext &Context = getASTContext();
Anders Carlsson7267c162009-05-29 21:03:38 +00001043 QualType ClassType = Context.getTypeDeclType(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001044
1045 DeclarationName Name
Douglas Gregor50d62d12009-08-05 05:36:45 +00001046 = Context.DeclarationNames.getCXXDestructorName(
1047 Context.getCanonicalType(ClassType));
Anders Carlsson7267c162009-05-29 21:03:38 +00001048
John McCallc0bf4622010-02-23 00:48:20 +00001049 DeclContext::lookup_const_iterator I, E;
Mike Stump1eb44332009-09-09 15:08:12 +00001050 llvm::tie(I, E) = lookup(Name);
Sebastian Redld4b25cb2010-09-02 23:19:42 +00001051 if (I == E)
1052 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001053
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00001054 CXXDestructorDecl *Dtor = cast<CXXDestructorDecl>(*I);
Anders Carlsson7267c162009-05-29 21:03:38 +00001055 return Dtor;
1056}
1057
Douglas Gregorda2142f2011-02-19 18:51:44 +00001058void CXXRecordDecl::completeDefinition() {
1059 completeDefinition(0);
1060}
1061
1062void CXXRecordDecl::completeDefinition(CXXFinalOverriderMap *FinalOverriders) {
1063 RecordDecl::completeDefinition();
1064
Douglas Gregor7a39dd02010-09-29 00:15:42 +00001065 // If the class may be abstract (but hasn't been marked as such), check for
1066 // any pure final overriders.
1067 if (mayBeAbstract()) {
1068 CXXFinalOverriderMap MyFinalOverriders;
1069 if (!FinalOverriders) {
1070 getFinalOverriders(MyFinalOverriders);
1071 FinalOverriders = &MyFinalOverriders;
1072 }
1073
1074 bool Done = false;
1075 for (CXXFinalOverriderMap::iterator M = FinalOverriders->begin(),
1076 MEnd = FinalOverriders->end();
1077 M != MEnd && !Done; ++M) {
1078 for (OverridingMethods::iterator SO = M->second.begin(),
1079 SOEnd = M->second.end();
1080 SO != SOEnd && !Done; ++SO) {
1081 assert(SO->second.size() > 0 &&
1082 "All virtual functions have overridding virtual functions");
1083
1084 // C++ [class.abstract]p4:
1085 // A class is abstract if it contains or inherits at least one
1086 // pure virtual function for which the final overrider is pure
1087 // virtual.
1088 if (SO->second.front().Method->isPure()) {
1089 data().Abstract = true;
1090 Done = true;
1091 break;
1092 }
1093 }
1094 }
1095 }
Douglas Gregore80622f2010-09-29 04:25:11 +00001096
1097 // Set access bits correctly on the directly-declared conversions.
1098 for (UnresolvedSetIterator I = data().Conversions.begin(),
1099 E = data().Conversions.end();
1100 I != E; ++I)
1101 data().Conversions.setAccess(I, (*I)->getAccess());
Douglas Gregor7a39dd02010-09-29 00:15:42 +00001102}
1103
1104bool CXXRecordDecl::mayBeAbstract() const {
1105 if (data().Abstract || isInvalidDecl() || !data().Polymorphic ||
1106 isDependentContext())
1107 return false;
1108
1109 for (CXXRecordDecl::base_class_const_iterator B = bases_begin(),
1110 BEnd = bases_end();
1111 B != BEnd; ++B) {
1112 CXXRecordDecl *BaseDecl
1113 = cast<CXXRecordDecl>(B->getType()->getAs<RecordType>()->getDecl());
1114 if (BaseDecl->isAbstract())
1115 return true;
1116 }
1117
1118 return false;
1119}
1120
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001121CXXMethodDecl *
1122CXXMethodDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001123 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00001124 const DeclarationNameInfo &NameInfo,
John McCalla93c9342009-12-07 02:54:59 +00001125 QualType T, TypeSourceInfo *TInfo,
Douglas Gregorf5251602011-03-08 17:10:18 +00001126 bool isStatic, StorageClass SCAsWritten, bool isInline,
1127 SourceLocation EndLocation) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001128 return new (C) CXXMethodDecl(CXXMethod, RD, StartLoc, NameInfo, T, TInfo,
Douglas Gregorf5251602011-03-08 17:10:18 +00001129 isStatic, SCAsWritten, isInline, EndLocation);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001130}
1131
Douglas Gregor90916562009-09-29 18:16:17 +00001132bool CXXMethodDecl::isUsualDeallocationFunction() const {
1133 if (getOverloadedOperator() != OO_Delete &&
1134 getOverloadedOperator() != OO_Array_Delete)
1135 return false;
Douglas Gregor6d908702010-02-26 05:06:18 +00001136
1137 // C++ [basic.stc.dynamic.deallocation]p2:
1138 // A template instance is never a usual deallocation function,
1139 // regardless of its signature.
1140 if (getPrimaryTemplate())
1141 return false;
1142
Douglas Gregor90916562009-09-29 18:16:17 +00001143 // C++ [basic.stc.dynamic.deallocation]p2:
1144 // If a class T has a member deallocation function named operator delete
1145 // with exactly one parameter, then that function is a usual (non-placement)
1146 // deallocation function. [...]
1147 if (getNumParams() == 1)
1148 return true;
1149
1150 // C++ [basic.stc.dynamic.deallocation]p2:
1151 // [...] If class T does not declare such an operator delete but does
1152 // declare a member deallocation function named operator delete with
1153 // exactly two parameters, the second of which has type std::size_t (18.1),
1154 // then this function is a usual deallocation function.
1155 ASTContext &Context = getASTContext();
1156 if (getNumParams() != 2 ||
Chandler Carruthe228ba92010-02-08 18:54:05 +00001157 !Context.hasSameUnqualifiedType(getParamDecl(1)->getType(),
1158 Context.getSizeType()))
Douglas Gregor90916562009-09-29 18:16:17 +00001159 return false;
1160
1161 // This function is a usual deallocation function if there are no
1162 // single-parameter deallocation functions of the same kind.
1163 for (DeclContext::lookup_const_result R = getDeclContext()->lookup(getDeclName());
1164 R.first != R.second; ++R.first) {
1165 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*R.first))
1166 if (FD->getNumParams() == 1)
1167 return false;
1168 }
1169
1170 return true;
1171}
1172
Douglas Gregor06a9f362010-05-01 20:49:11 +00001173bool CXXMethodDecl::isCopyAssignmentOperator() const {
Sean Huntffe37fd2011-05-25 20:50:04 +00001174 // C++0x [class.copy]p17:
Douglas Gregor06a9f362010-05-01 20:49:11 +00001175 // A user-declared copy assignment operator X::operator= is a non-static
1176 // non-template member function of class X with exactly one parameter of
1177 // type X, X&, const X&, volatile X& or const volatile X&.
1178 if (/*operator=*/getOverloadedOperator() != OO_Equal ||
1179 /*non-static*/ isStatic() ||
Sean Huntffe37fd2011-05-25 20:50:04 +00001180 /*non-template*/getPrimaryTemplate() || getDescribedFunctionTemplate())
Douglas Gregor06a9f362010-05-01 20:49:11 +00001181 return false;
1182
1183 QualType ParamType = getParamDecl(0)->getType();
1184 if (const LValueReferenceType *Ref = ParamType->getAs<LValueReferenceType>())
1185 ParamType = Ref->getPointeeType();
1186
1187 ASTContext &Context = getASTContext();
1188 QualType ClassType
1189 = Context.getCanonicalType(Context.getTypeDeclType(getParent()));
1190 return Context.hasSameUnqualifiedType(ClassType, ParamType);
1191}
1192
Sean Huntffe37fd2011-05-25 20:50:04 +00001193bool CXXMethodDecl::isMoveAssignmentOperator() const {
1194 // C++0x [class.copy]p19:
1195 // A user-declared move assignment operator X::operator= is a non-static
1196 // non-template member function of class X with exactly one parameter of type
1197 // X&&, const X&&, volatile X&&, or const volatile X&&.
1198 if (getOverloadedOperator() != OO_Equal || isStatic() ||
1199 getPrimaryTemplate() || getDescribedFunctionTemplate())
1200 return false;
1201
1202 QualType ParamType = getParamDecl(0)->getType();
1203 if (!isa<RValueReferenceType>(ParamType))
1204 return false;
1205 ParamType = ParamType->getPointeeType();
1206
1207 ASTContext &Context = getASTContext();
1208 QualType ClassType
1209 = Context.getCanonicalType(Context.getTypeDeclType(getParent()));
1210 return Context.hasSameUnqualifiedType(ClassType, ParamType);
1211}
1212
Anders Carlsson05eb2442009-05-16 23:58:37 +00001213void CXXMethodDecl::addOverriddenMethod(const CXXMethodDecl *MD) {
Anders Carlsson3aaf4862009-12-04 05:51:56 +00001214 assert(MD->isCanonicalDecl() && "Method is not canonical!");
Anders Carlssonc076c452010-01-30 17:42:34 +00001215 assert(!MD->getParent()->isDependentContext() &&
1216 "Can't add an overridden method to a class template!");
1217
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001218 getASTContext().addOverriddenMethod(this, MD);
Anders Carlsson05eb2442009-05-16 23:58:37 +00001219}
1220
1221CXXMethodDecl::method_iterator CXXMethodDecl::begin_overridden_methods() const {
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001222 return getASTContext().overridden_methods_begin(this);
Anders Carlsson05eb2442009-05-16 23:58:37 +00001223}
1224
1225CXXMethodDecl::method_iterator CXXMethodDecl::end_overridden_methods() const {
Douglas Gregor7d10b7e2010-03-02 23:58:15 +00001226 return getASTContext().overridden_methods_end(this);
Anders Carlsson05eb2442009-05-16 23:58:37 +00001227}
1228
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001229unsigned CXXMethodDecl::size_overridden_methods() const {
1230 return getASTContext().overridden_methods_size(this);
1231}
1232
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001233QualType CXXMethodDecl::getThisType(ASTContext &C) const {
Argyrios Kyrtzidisb0d178d2008-10-24 22:28:18 +00001234 // C++ 9.3.2p1: The type of this in a member function of a class X is X*.
1235 // If the member function is declared const, the type of this is const X*,
1236 // if the member function is declared volatile, the type of this is
1237 // volatile X*, and if the member function is declared const volatile,
1238 // the type of this is const volatile X*.
1239
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001240 assert(isInstance() && "No 'this' for static methods!");
Anders Carlsson31a08752009-06-13 02:59:33 +00001241
John McCall3cb0ebd2010-03-10 03:28:59 +00001242 QualType ClassTy = C.getTypeDeclType(getParent());
John McCall0953e762009-09-24 19:53:00 +00001243 ClassTy = C.getQualifiedType(ClassTy,
1244 Qualifiers::fromCVRMask(getTypeQualifiers()));
Anders Carlsson4e579922009-07-10 21:35:09 +00001245 return C.getPointerType(ClassTy);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001246}
1247
Eli Friedmand7d7f672009-12-06 20:50:05 +00001248bool CXXMethodDecl::hasInlineBody() const {
Douglas Gregorbd6d6192010-01-05 19:06:31 +00001249 // If this function is a template instantiation, look at the template from
1250 // which it was instantiated.
1251 const FunctionDecl *CheckFn = getTemplateInstantiationPattern();
1252 if (!CheckFn)
1253 CheckFn = this;
1254
Eli Friedmand7d7f672009-12-06 20:50:05 +00001255 const FunctionDecl *fn;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001256 return CheckFn->hasBody(fn) && !fn->isOutOfLine();
Eli Friedmand7d7f672009-12-06 20:50:05 +00001257}
1258
Sean Huntcbb67482011-01-08 20:30:50 +00001259CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1260 TypeSourceInfo *TInfo, bool IsVirtual,
1261 SourceLocation L, Expr *Init,
1262 SourceLocation R,
1263 SourceLocation EllipsisLoc)
Sean Huntf51d0b62011-01-08 23:01:16 +00001264 : Initializee(TInfo), MemberOrEllipsisLocation(EllipsisLoc), Init(Init),
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00001265 LParenLoc(L), RParenLoc(R), IsVirtual(IsVirtual), IsWritten(false),
1266 SourceOrderOrNumArrayIndices(0)
Douglas Gregor802ab452009-12-02 22:36:29 +00001267{
Douglas Gregor7ad83902008-11-05 04:29:56 +00001268}
1269
Sean Huntcbb67482011-01-08 20:30:50 +00001270CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1271 FieldDecl *Member,
1272 SourceLocation MemberLoc,
1273 SourceLocation L, Expr *Init,
1274 SourceLocation R)
Sean Huntf51d0b62011-01-08 23:01:16 +00001275 : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init),
Francois Pichet00eb3f92010-12-04 09:14:42 +00001276 LParenLoc(L), RParenLoc(R), IsVirtual(false),
1277 IsWritten(false), SourceOrderOrNumArrayIndices(0)
1278{
1279}
1280
Sean Huntcbb67482011-01-08 20:30:50 +00001281CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1282 IndirectFieldDecl *Member,
1283 SourceLocation MemberLoc,
1284 SourceLocation L, Expr *Init,
1285 SourceLocation R)
Sean Huntf51d0b62011-01-08 23:01:16 +00001286 : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init),
Francois Pichet00eb3f92010-12-04 09:14:42 +00001287 LParenLoc(L), RParenLoc(R), IsVirtual(false),
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00001288 IsWritten(false), SourceOrderOrNumArrayIndices(0)
Douglas Gregor802ab452009-12-02 22:36:29 +00001289{
Douglas Gregor7ad83902008-11-05 04:29:56 +00001290}
1291
Sean Huntcbb67482011-01-08 20:30:50 +00001292CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
Sean Hunt41717662011-02-26 19:13:13 +00001293 SourceLocation D, SourceLocation L,
1294 CXXConstructorDecl *Target, Expr *Init,
1295 SourceLocation R)
1296 : Initializee(Target), MemberOrEllipsisLocation(D), Init(Init),
1297 LParenLoc(L), RParenLoc(R), IsVirtual(false),
1298 IsWritten(false), SourceOrderOrNumArrayIndices(0)
1299{
1300}
1301
1302CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00001303 FieldDecl *Member,
1304 SourceLocation MemberLoc,
1305 SourceLocation L, Expr *Init,
1306 SourceLocation R,
1307 VarDecl **Indices,
1308 unsigned NumIndices)
Sean Huntf51d0b62011-01-08 23:01:16 +00001309 : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init),
Francois Pichet00eb3f92010-12-04 09:14:42 +00001310 LParenLoc(L), RParenLoc(R), IsVirtual(false),
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00001311 IsWritten(false), SourceOrderOrNumArrayIndices(NumIndices)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001312{
1313 VarDecl **MyIndices = reinterpret_cast<VarDecl **> (this + 1);
1314 memcpy(MyIndices, Indices, NumIndices * sizeof(VarDecl *));
1315}
1316
Sean Huntcbb67482011-01-08 20:30:50 +00001317CXXCtorInitializer *CXXCtorInitializer::Create(ASTContext &Context,
1318 FieldDecl *Member,
1319 SourceLocation MemberLoc,
1320 SourceLocation L, Expr *Init,
1321 SourceLocation R,
1322 VarDecl **Indices,
1323 unsigned NumIndices) {
1324 void *Mem = Context.Allocate(sizeof(CXXCtorInitializer) +
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001325 sizeof(VarDecl *) * NumIndices,
Sean Huntcbb67482011-01-08 20:30:50 +00001326 llvm::alignOf<CXXCtorInitializer>());
Sean Huntf51d0b62011-01-08 23:01:16 +00001327 return new (Mem) CXXCtorInitializer(Context, Member, MemberLoc, L, Init, R,
1328 Indices, NumIndices);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001329}
1330
Sean Huntcbb67482011-01-08 20:30:50 +00001331TypeLoc CXXCtorInitializer::getBaseClassLoc() const {
Douglas Gregor802ab452009-12-02 22:36:29 +00001332 if (isBaseInitializer())
Sean Huntf51d0b62011-01-08 23:01:16 +00001333 return Initializee.get<TypeSourceInfo*>()->getTypeLoc();
Douglas Gregor802ab452009-12-02 22:36:29 +00001334 else
1335 return TypeLoc();
1336}
1337
Sean Huntcbb67482011-01-08 20:30:50 +00001338const Type *CXXCtorInitializer::getBaseClass() const {
Douglas Gregor802ab452009-12-02 22:36:29 +00001339 if (isBaseInitializer())
Sean Huntf51d0b62011-01-08 23:01:16 +00001340 return Initializee.get<TypeSourceInfo*>()->getType().getTypePtr();
Douglas Gregor802ab452009-12-02 22:36:29 +00001341 else
1342 return 0;
1343}
1344
Sean Huntcbb67482011-01-08 20:30:50 +00001345SourceLocation CXXCtorInitializer::getSourceLocation() const {
Sean Hunt41717662011-02-26 19:13:13 +00001346 if (isAnyMemberInitializer() || isDelegatingInitializer())
Douglas Gregor802ab452009-12-02 22:36:29 +00001347 return getMemberLocation();
1348
Abramo Bagnarabd054db2010-05-20 10:00:11 +00001349 return getBaseClassLoc().getLocalSourceRange().getBegin();
Douglas Gregor802ab452009-12-02 22:36:29 +00001350}
1351
Sean Huntcbb67482011-01-08 20:30:50 +00001352SourceRange CXXCtorInitializer::getSourceRange() const {
Douglas Gregor802ab452009-12-02 22:36:29 +00001353 return SourceRange(getSourceLocation(), getRParenLoc());
Douglas Gregor7ad83902008-11-05 04:29:56 +00001354}
1355
Douglas Gregorb48fe382008-10-31 09:07:45 +00001356CXXConstructorDecl *
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001357CXXConstructorDecl::Create(ASTContext &C, EmptyShell Empty) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001358 return new (C) CXXConstructorDecl(0, SourceLocation(), DeclarationNameInfo(),
Sean Hunt5f802e52011-05-06 00:11:07 +00001359 QualType(), 0, false, false, false);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001360}
1361
1362CXXConstructorDecl *
Douglas Gregorb48fe382008-10-31 09:07:45 +00001363CXXConstructorDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001364 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00001365 const DeclarationNameInfo &NameInfo,
John McCalla93c9342009-12-07 02:54:59 +00001366 QualType T, TypeSourceInfo *TInfo,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001367 bool isExplicit,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001368 bool isInline,
Sean Hunt5f802e52011-05-06 00:11:07 +00001369 bool isImplicitlyDeclared) {
Abramo Bagnara25777432010-08-11 22:01:17 +00001370 assert(NameInfo.getName().getNameKind()
1371 == DeclarationName::CXXConstructorName &&
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001372 "Name must refer to a constructor");
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001373 return new (C) CXXConstructorDecl(RD, StartLoc, NameInfo, T, TInfo,
Sean Hunt5f802e52011-05-06 00:11:07 +00001374 isExplicit, isInline, isImplicitlyDeclared);
Douglas Gregorb48fe382008-10-31 09:07:45 +00001375}
1376
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001377bool CXXConstructorDecl::isDefaultConstructor() const {
1378 // C++ [class.ctor]p5:
Douglas Gregor64bffa92008-11-05 16:20:31 +00001379 // A default constructor for a class X is a constructor of class
1380 // X that can be called without an argument.
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001381 return (getNumParams() == 0) ||
Anders Carlssonda3f4e22009-08-25 05:12:04 +00001382 (getNumParams() > 0 && getParamDecl(0)->hasDefaultArg());
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001383}
1384
Mike Stump1eb44332009-09-09 15:08:12 +00001385bool
Douglas Gregor9e9199d2009-12-22 00:34:07 +00001386CXXConstructorDecl::isCopyConstructor(unsigned &TypeQuals) const {
Douglas Gregorcc15f012011-01-21 19:38:21 +00001387 return isCopyOrMoveConstructor(TypeQuals) &&
1388 getParamDecl(0)->getType()->isLValueReferenceType();
1389}
1390
1391bool CXXConstructorDecl::isMoveConstructor(unsigned &TypeQuals) const {
1392 return isCopyOrMoveConstructor(TypeQuals) &&
1393 getParamDecl(0)->getType()->isRValueReferenceType();
1394}
1395
1396/// \brief Determine whether this is a copy or move constructor.
1397bool CXXConstructorDecl::isCopyOrMoveConstructor(unsigned &TypeQuals) const {
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001398 // C++ [class.copy]p2:
Douglas Gregor64bffa92008-11-05 16:20:31 +00001399 // A non-template constructor for class X is a copy constructor
1400 // if its first parameter is of type X&, const X&, volatile X& or
1401 // const volatile X&, and either there are no other parameters
1402 // or else all other parameters have default arguments (8.3.6).
Douglas Gregorcc15f012011-01-21 19:38:21 +00001403 // C++0x [class.copy]p3:
1404 // A non-template constructor for class X is a move constructor if its
1405 // first parameter is of type X&&, const X&&, volatile X&&, or
1406 // const volatile X&&, and either there are no other parameters or else
1407 // all other parameters have default arguments.
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001408 if ((getNumParams() < 1) ||
Douglas Gregor77da3f42009-10-13 23:45:19 +00001409 (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()) ||
Douglas Gregorfd476482009-11-13 23:59:09 +00001410 (getPrimaryTemplate() != 0) ||
Douglas Gregor77da3f42009-10-13 23:45:19 +00001411 (getDescribedFunctionTemplate() != 0))
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001412 return false;
Douglas Gregorcc15f012011-01-21 19:38:21 +00001413
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001414 const ParmVarDecl *Param = getParamDecl(0);
Douglas Gregorcc15f012011-01-21 19:38:21 +00001415
1416 // Do we have a reference type?
1417 const ReferenceType *ParamRefType = Param->getType()->getAs<ReferenceType>();
Douglas Gregorfd476482009-11-13 23:59:09 +00001418 if (!ParamRefType)
1419 return false;
Douglas Gregorcc15f012011-01-21 19:38:21 +00001420
Douglas Gregorfd476482009-11-13 23:59:09 +00001421 // Is it a reference to our class type?
Douglas Gregor9e9199d2009-12-22 00:34:07 +00001422 ASTContext &Context = getASTContext();
1423
Douglas Gregorfd476482009-11-13 23:59:09 +00001424 CanQualType PointeeType
1425 = Context.getCanonicalType(ParamRefType->getPointeeType());
Douglas Gregor14e0b3d2009-09-15 20:50:23 +00001426 CanQualType ClassTy
1427 = Context.getCanonicalType(Context.getTagDeclType(getParent()));
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001428 if (PointeeType.getUnqualifiedType() != ClassTy)
1429 return false;
Douglas Gregorcc15f012011-01-21 19:38:21 +00001430
John McCall0953e762009-09-24 19:53:00 +00001431 // FIXME: other qualifiers?
Douglas Gregorcc15f012011-01-21 19:38:21 +00001432
1433 // We have a copy or move constructor.
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001434 TypeQuals = PointeeType.getCVRQualifiers();
Douglas Gregorcc15f012011-01-21 19:38:21 +00001435 return true;
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001436}
1437
Anders Carlssonfaccd722009-08-28 16:57:08 +00001438bool CXXConstructorDecl::isConvertingConstructor(bool AllowExplicit) const {
Douglas Gregor60d62c22008-10-31 16:23:19 +00001439 // C++ [class.conv.ctor]p1:
1440 // A constructor declared without the function-specifier explicit
1441 // that can be called with a single parameter specifies a
1442 // conversion from the type of its first parameter to the type of
1443 // its class. Such a constructor is called a converting
1444 // constructor.
Anders Carlssonfaccd722009-08-28 16:57:08 +00001445 if (isExplicit() && !AllowExplicit)
Douglas Gregor60d62c22008-10-31 16:23:19 +00001446 return false;
1447
Mike Stump1eb44332009-09-09 15:08:12 +00001448 return (getNumParams() == 0 &&
John McCall183700f2009-09-21 23:43:11 +00001449 getType()->getAs<FunctionProtoType>()->isVariadic()) ||
Douglas Gregor60d62c22008-10-31 16:23:19 +00001450 (getNumParams() == 1) ||
Anders Carlssonae0b4e72009-06-06 04:14:07 +00001451 (getNumParams() > 1 && getParamDecl(1)->hasDefaultArg());
Douglas Gregor60d62c22008-10-31 16:23:19 +00001452}
Douglas Gregorb48fe382008-10-31 09:07:45 +00001453
Douglas Gregor6493cc52010-11-08 17:16:59 +00001454bool CXXConstructorDecl::isSpecializationCopyingObject() const {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001455 if ((getNumParams() < 1) ||
1456 (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()) ||
1457 (getPrimaryTemplate() == 0) ||
1458 (getDescribedFunctionTemplate() != 0))
1459 return false;
1460
1461 const ParmVarDecl *Param = getParamDecl(0);
1462
1463 ASTContext &Context = getASTContext();
1464 CanQualType ParamType = Context.getCanonicalType(Param->getType());
1465
Douglas Gregor66724ea2009-11-14 01:20:54 +00001466 // Is it the same as our our class type?
1467 CanQualType ClassTy
1468 = Context.getCanonicalType(Context.getTagDeclType(getParent()));
1469 if (ParamType.getUnqualifiedType() != ClassTy)
1470 return false;
1471
1472 return true;
1473}
1474
Sebastian Redlf677ea32011-02-05 19:23:19 +00001475const CXXConstructorDecl *CXXConstructorDecl::getInheritedConstructor() const {
1476 // Hack: we store the inherited constructor in the overridden method table
1477 method_iterator It = begin_overridden_methods();
1478 if (It == end_overridden_methods())
1479 return 0;
1480
1481 return cast<CXXConstructorDecl>(*It);
1482}
1483
1484void
1485CXXConstructorDecl::setInheritedConstructor(const CXXConstructorDecl *BaseCtor){
1486 // Hack: we store the inherited constructor in the overridden method table
1487 assert(size_overridden_methods() == 0 && "Base ctor already set.");
1488 addOverriddenMethod(BaseCtor);
1489}
1490
Douglas Gregor42a552f2008-11-05 20:51:48 +00001491CXXDestructorDecl *
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001492CXXDestructorDecl::Create(ASTContext &C, EmptyShell Empty) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001493 return new (C) CXXDestructorDecl(0, SourceLocation(), DeclarationNameInfo(),
Craig Silversteinb41d8992010-10-21 00:44:50 +00001494 QualType(), 0, false, false);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001495}
1496
1497CXXDestructorDecl *
Douglas Gregor42a552f2008-11-05 20:51:48 +00001498CXXDestructorDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001499 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00001500 const DeclarationNameInfo &NameInfo,
Craig Silversteinb41d8992010-10-21 00:44:50 +00001501 QualType T, TypeSourceInfo *TInfo,
1502 bool isInline,
Douglas Gregor42a552f2008-11-05 20:51:48 +00001503 bool isImplicitlyDeclared) {
Abramo Bagnara25777432010-08-11 22:01:17 +00001504 assert(NameInfo.getName().getNameKind()
1505 == DeclarationName::CXXDestructorName &&
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001506 "Name must refer to a destructor");
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001507 return new (C) CXXDestructorDecl(RD, StartLoc, NameInfo, T, TInfo, isInline,
Abramo Bagnara25777432010-08-11 22:01:17 +00001508 isImplicitlyDeclared);
Douglas Gregor42a552f2008-11-05 20:51:48 +00001509}
1510
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001511CXXConversionDecl *
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001512CXXConversionDecl::Create(ASTContext &C, EmptyShell Empty) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001513 return new (C) CXXConversionDecl(0, SourceLocation(), DeclarationNameInfo(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001514 QualType(), 0, false, false,
1515 SourceLocation());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001516}
1517
1518CXXConversionDecl *
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001519CXXConversionDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001520 SourceLocation StartLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +00001521 const DeclarationNameInfo &NameInfo,
John McCalla93c9342009-12-07 02:54:59 +00001522 QualType T, TypeSourceInfo *TInfo,
Douglas Gregorf5251602011-03-08 17:10:18 +00001523 bool isInline, bool isExplicit,
1524 SourceLocation EndLocation) {
Abramo Bagnara25777432010-08-11 22:01:17 +00001525 assert(NameInfo.getName().getNameKind()
1526 == DeclarationName::CXXConversionFunctionName &&
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001527 "Name must refer to a conversion function");
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001528 return new (C) CXXConversionDecl(RD, StartLoc, NameInfo, T, TInfo,
Douglas Gregorf5251602011-03-08 17:10:18 +00001529 isInline, isExplicit, EndLocation);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001530}
1531
Chris Lattner21ef7ae2008-11-04 16:51:42 +00001532LinkageSpecDecl *LinkageSpecDecl::Create(ASTContext &C,
Mike Stump1eb44332009-09-09 15:08:12 +00001533 DeclContext *DC,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001534 SourceLocation ExternLoc,
1535 SourceLocation LangLoc,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00001536 LanguageIDs Lang,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00001537 SourceLocation RBraceLoc) {
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001538 return new (C) LinkageSpecDecl(DC, ExternLoc, LangLoc, Lang, RBraceLoc);
Douglas Gregorf44515a2008-12-16 22:23:02 +00001539}
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001540
1541UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC,
1542 SourceLocation L,
1543 SourceLocation NamespaceLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00001544 NestedNameSpecifierLoc QualifierLoc,
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001545 SourceLocation IdentLoc,
Sebastian Redleb0d8c92009-11-23 15:34:23 +00001546 NamedDecl *Used,
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001547 DeclContext *CommonAncestor) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00001548 if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Used))
1549 Used = NS->getOriginalNamespace();
Douglas Gregordb992412011-02-25 16:33:46 +00001550 return new (C) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc,
1551 IdentLoc, Used, CommonAncestor);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001552}
1553
Sebastian Redleb0d8c92009-11-23 15:34:23 +00001554NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() {
1555 if (NamespaceAliasDecl *NA =
1556 dyn_cast_or_null<NamespaceAliasDecl>(NominatedNamespace))
1557 return NA->getNamespace();
1558 return cast_or_null<NamespaceDecl>(NominatedNamespace);
1559}
1560
Mike Stump1eb44332009-09-09 15:08:12 +00001561NamespaceAliasDecl *NamespaceAliasDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregor0a35bce2010-09-01 03:07:18 +00001562 SourceLocation UsingLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001563 SourceLocation AliasLoc,
1564 IdentifierInfo *Alias,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00001565 NestedNameSpecifierLoc QualifierLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001566 SourceLocation IdentLoc,
Anders Carlsson68771c72009-03-28 22:58:02 +00001567 NamedDecl *Namespace) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00001568 if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Namespace))
1569 Namespace = NS->getOriginalNamespace();
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00001570 return new (C) NamespaceAliasDecl(DC, UsingLoc, AliasLoc, Alias,
1571 QualifierLoc, IdentLoc, Namespace);
Anders Carlsson68771c72009-03-28 22:58:02 +00001572}
1573
Argyrios Kyrtzidis826faa22010-11-10 05:40:41 +00001574UsingDecl *UsingShadowDecl::getUsingDecl() const {
1575 const UsingShadowDecl *Shadow = this;
1576 while (const UsingShadowDecl *NextShadow =
1577 dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow))
1578 Shadow = NextShadow;
1579 return cast<UsingDecl>(Shadow->UsingOrNextShadow);
1580}
1581
1582void UsingDecl::addShadowDecl(UsingShadowDecl *S) {
1583 assert(std::find(shadow_begin(), shadow_end(), S) == shadow_end() &&
1584 "declaration already in set");
1585 assert(S->getUsingDecl() == this);
1586
1587 if (FirstUsingShadow)
1588 S->UsingOrNextShadow = FirstUsingShadow;
1589 FirstUsingShadow = S;
1590}
1591
1592void UsingDecl::removeShadowDecl(UsingShadowDecl *S) {
1593 assert(std::find(shadow_begin(), shadow_end(), S) != shadow_end() &&
1594 "declaration not in set");
1595 assert(S->getUsingDecl() == this);
1596
1597 // Remove S from the shadow decl chain. This is O(n) but hopefully rare.
1598
1599 if (FirstUsingShadow == S) {
1600 FirstUsingShadow = dyn_cast<UsingShadowDecl>(S->UsingOrNextShadow);
1601 S->UsingOrNextShadow = this;
1602 return;
1603 }
1604
1605 UsingShadowDecl *Prev = FirstUsingShadow;
1606 while (Prev->UsingOrNextShadow != S)
1607 Prev = cast<UsingShadowDecl>(Prev->UsingOrNextShadow);
1608 Prev->UsingOrNextShadow = S->UsingOrNextShadow;
1609 S->UsingOrNextShadow = this;
1610}
1611
Douglas Gregordc355712011-02-25 00:36:19 +00001612UsingDecl *UsingDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation UL,
1613 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001614 const DeclarationNameInfo &NameInfo,
1615 bool IsTypeNameArg) {
Douglas Gregordc355712011-02-25 00:36:19 +00001616 return new (C) UsingDecl(DC, UL, QualifierLoc, NameInfo, IsTypeNameArg);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001617}
1618
John McCall7ba107a2009-11-18 02:36:19 +00001619UnresolvedUsingValueDecl *
1620UnresolvedUsingValueDecl::Create(ASTContext &C, DeclContext *DC,
1621 SourceLocation UsingLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00001622 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001623 const DeclarationNameInfo &NameInfo) {
John McCall7ba107a2009-11-18 02:36:19 +00001624 return new (C) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00001625 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00001626}
1627
1628UnresolvedUsingTypenameDecl *
1629UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC,
1630 SourceLocation UsingLoc,
1631 SourceLocation TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00001632 NestedNameSpecifierLoc QualifierLoc,
John McCall7ba107a2009-11-18 02:36:19 +00001633 SourceLocation TargetNameLoc,
1634 DeclarationName TargetName) {
1635 return new (C) UnresolvedUsingTypenameDecl(DC, UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00001636 QualifierLoc, TargetNameLoc,
John McCall7ba107a2009-11-18 02:36:19 +00001637 TargetName.getAsIdentifierInfo());
Anders Carlsson665b49c2009-08-28 05:30:28 +00001638}
1639
Anders Carlssonfb311762009-03-14 00:25:26 +00001640StaticAssertDecl *StaticAssertDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001641 SourceLocation StaticAssertLoc,
1642 Expr *AssertExpr,
1643 StringLiteral *Message,
1644 SourceLocation RParenLoc) {
1645 return new (C) StaticAssertDecl(DC, StaticAssertLoc, AssertExpr, Message,
1646 RParenLoc);
Anders Carlssonfb311762009-03-14 00:25:26 +00001647}
1648
Anders Carlsson05bf2c72009-03-26 23:46:50 +00001649static const char *getAccessName(AccessSpecifier AS) {
1650 switch (AS) {
1651 default:
1652 case AS_none:
1653 assert("Invalid access specifier!");
1654 return 0;
1655 case AS_public:
1656 return "public";
1657 case AS_private:
1658 return "private";
1659 case AS_protected:
1660 return "protected";
1661 }
1662}
1663
1664const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB,
1665 AccessSpecifier AS) {
1666 return DB << getAccessName(AS);
1667}