blob: b5b3f12f5e1ff24766ab5f5d7929b2b323032293 [file] [log] [blame]
Ted Kremenek21475702008-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 Gregor8ea8fd42009-03-25 21:17:03 +000015#include "clang/AST/DeclTemplate.h"
Ted Kremenek21475702008-09-05 17:16:31 +000016#include "clang/AST/ASTContext.h"
Argyrios Kyrtzidis65ad5692010-10-24 17:26:36 +000017#include "clang/AST/ASTMutationListener.h"
Douglas Gregor8fb95122010-09-29 00:15:42 +000018#include "clang/AST/CXXInheritance.h"
Anders Carlsson5bbe1d72009-03-14 00:25:26 +000019#include "clang/AST/Expr.h"
Douglas Gregord73f3dd2011-11-01 01:16:03 +000020#include "clang/AST/ExprCXX.h"
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +000021#include "clang/AST/TypeLoc.h"
Douglas Gregorb6acda02008-11-12 23:21:09 +000022#include "clang/Basic/IdentifierTable.h"
Douglas Gregor74a34442008-12-23 21:31:30 +000023#include "llvm/ADT/STLExtras.h"
Fariborz Jahaniana9540492009-09-12 19:52:10 +000024#include "llvm/ADT/SmallPtrSet.h"
Ted Kremenek21475702008-09-05 17:16:31 +000025using namespace clang;
26
27//===----------------------------------------------------------------------===//
28// Decl Allocation/Deallocation Method Implementations
29//===----------------------------------------------------------------------===//
Douglas Gregor5101c242008-12-05 18:15:24 +000030
David Blaikie68e081d2011-12-20 02:48:34 +000031void AccessSpecDecl::anchor() { }
32
Douglas Gregor72172e92012-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 McCall67da35c2010-02-04 22:26:26 +000038CXXRecordDecl::DefinitionData::DefinitionData(CXXRecordDecl *D)
39 : UserDeclaredConstructor(false), UserDeclaredCopyConstructor(false),
Alexis Huntfcaeae42011-05-25 20:50:04 +000040 UserDeclaredMoveConstructor(false), UserDeclaredCopyAssignment(false),
41 UserDeclaredMoveAssignment(false), UserDeclaredDestructor(false),
Eli Friedmanc80ca682009-08-15 22:23:00 +000042 Aggregate(true), PlainOldData(true), Empty(true), Polymorphic(false),
Chandler Carruth583edf82011-04-30 10:07:30 +000043 Abstract(false), IsStandardLayout(true), HasNoNonEmptyBases(true),
Chandler Carruthb1963742011-04-30 09:17:45 +000044 HasPrivateFields(false), HasProtectedFields(false), HasPublicFields(false),
Argyrios Kyrtzidisb2e31e42012-01-26 18:28:08 +000045 HasMutableFields(false), HasOnlyCMembers(true),
Argyrios Kyrtzidis5c4e0652012-01-23 16:58:45 +000046 HasTrivialDefaultConstructor(true),
Richard Smithcc36f692011-12-22 02:22:31 +000047 HasConstexprNonCopyMoveConstructor(false),
48 DefaultedDefaultConstructorIsConstexpr(true),
49 DefaultedCopyConstructorIsConstexpr(true),
50 DefaultedMoveConstructorIsConstexpr(true),
51 HasConstexprDefaultConstructor(false), HasConstexprCopyConstructor(false),
52 HasConstexprMoveConstructor(false), HasTrivialCopyConstructor(true),
Alexis Huntf479f1b2011-05-09 18:22:59 +000053 HasTrivialMoveConstructor(true), HasTrivialCopyAssignment(true),
54 HasTrivialMoveAssignment(true), HasTrivialDestructor(true),
55 HasNonLiteralTypeFieldsOrBases(false), ComputedVisibleConversions(false),
Alexis Huntea6f0322011-05-11 22:34:38 +000056 UserProvidedDefaultConstructor(false), DeclaredDefaultConstructor(false),
Alexis Huntfcaeae42011-05-25 20:50:04 +000057 DeclaredCopyConstructor(false), DeclaredMoveConstructor(false),
58 DeclaredCopyAssignment(false), DeclaredMoveAssignment(false),
Sebastian Redl22653ba2011-08-30 19:58:05 +000059 DeclaredDestructor(false), FailedImplicitMoveConstructor(false),
Eli Friedman73a04092012-01-07 04:59:52 +000060 FailedImplicitMoveAssignment(false), IsLambda(false), NumBases(0),
61 NumVBases(0), Bases(), VBases(), Definition(D), FirstFriend(0) {
John McCall67da35c2010-02-04 22:26:26 +000062}
63
64CXXRecordDecl::CXXRecordDecl(Kind K, TagKind TK, DeclContext *DC,
Abramo Bagnara29c2d462011-03-09 14:09:51 +000065 SourceLocation StartLoc, SourceLocation IdLoc,
66 IdentifierInfo *Id, CXXRecordDecl *PrevDecl)
67 : RecordDecl(K, TK, DC, StartLoc, IdLoc, Id, PrevDecl),
John McCall67da35c2010-02-04 22:26:26 +000068 DefinitionData(PrevDecl ? PrevDecl->DefinitionData : 0),
Douglas Gregor8ea8fd42009-03-25 21:17:03 +000069 TemplateOrInstantiation() { }
Douglas Gregorb6acda02008-11-12 23:21:09 +000070
Jay Foad39c79802011-01-12 09:06:06 +000071CXXRecordDecl *CXXRecordDecl::Create(const ASTContext &C, TagKind TK,
Abramo Bagnara29c2d462011-03-09 14:09:51 +000072 DeclContext *DC, SourceLocation StartLoc,
73 SourceLocation IdLoc, IdentifierInfo *Id,
Douglas Gregor1ec5e9f2009-05-15 19:11:46 +000074 CXXRecordDecl* PrevDecl,
75 bool DelayTypeCreation) {
Abramo Bagnara29c2d462011-03-09 14:09:51 +000076 CXXRecordDecl* R = new (C) CXXRecordDecl(CXXRecord, TK, DC, StartLoc, IdLoc,
77 Id, PrevDecl);
Mike Stump11289f42009-09-09 15:08:12 +000078
Douglas Gregorb6b8f9e2009-07-29 23:36:44 +000079 // FIXME: DelayTypeCreation seems like such a hack
Douglas Gregor1ec5e9f2009-05-15 19:11:46 +000080 if (!DelayTypeCreation)
Mike Stump11289f42009-09-09 15:08:12 +000081 C.getTypeDeclType(R, PrevDecl);
Ted Kremenek21475702008-09-05 17:16:31 +000082 return R;
83}
84
Douglas Gregorc8a73492012-02-13 15:44:47 +000085CXXRecordDecl *CXXRecordDecl::CreateLambda(const ASTContext &C, DeclContext *DC,
86 SourceLocation Loc) {
87 CXXRecordDecl* R = new (C) CXXRecordDecl(CXXRecord, TTK_Class, DC, Loc, Loc,
88 0, 0);
89 R->IsBeingDefined = true;
90 R->DefinitionData = new (C) struct LambdaDefinitionData(R);
91 C.getTypeDeclType(R, /*PrevDecl=*/0);
92 return R;
93}
94
Douglas Gregor72172e92012-01-05 21:55:30 +000095CXXRecordDecl *
96CXXRecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) {
97 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(CXXRecordDecl));
98 return new (Mem) CXXRecordDecl(CXXRecord, TTK_Struct, 0, SourceLocation(),
99 SourceLocation(), 0, 0);
Argyrios Kyrtzidis39f0e302010-07-02 11:54:55 +0000100}
101
Mike Stump11289f42009-09-09 15:08:12 +0000102void
Douglas Gregor4a62bdf2010-02-11 01:30:34 +0000103CXXRecordDecl::setBases(CXXBaseSpecifier const * const *Bases,
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000104 unsigned NumBases) {
Douglas Gregor4a62bdf2010-02-11 01:30:34 +0000105 ASTContext &C = getASTContext();
Douglas Gregorcfd8ddc2008-11-05 16:20:31 +0000106
Douglas Gregord4c5ed02010-10-29 22:39:52 +0000107 if (!data().Bases.isOffset() && data().NumBases > 0)
108 C.Deallocate(data().getBases());
Mike Stump11289f42009-09-09 15:08:12 +0000109
Richard Smithaed32b42011-10-18 20:08:55 +0000110 if (NumBases) {
111 // C++ [dcl.init.aggr]p1:
112 // An aggregate is [...] a class with [...] no base classes [...].
113 data().Aggregate = false;
114
115 // C++ [class]p4:
116 // A POD-struct is an aggregate class...
117 data().PlainOldData = false;
118 }
119
Anders Carlssonabb20e62010-03-29 05:13:12 +0000120 // The set of seen virtual base types.
Anders Carlssone47380f2010-03-29 19:49:09 +0000121 llvm::SmallPtrSet<CanQualType, 8> SeenVBaseTypes;
Anders Carlssonabb20e62010-03-29 05:13:12 +0000122
123 // The virtual bases of this class.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000124 SmallVector<const CXXBaseSpecifier *, 8> VBases;
Mike Stump11289f42009-09-09 15:08:12 +0000125
John McCall67da35c2010-02-04 22:26:26 +0000126 data().Bases = new(C) CXXBaseSpecifier [NumBases];
127 data().NumBases = NumBases;
Fariborz Jahanian3554b5a2009-07-10 20:13:23 +0000128 for (unsigned i = 0; i < NumBases; ++i) {
Douglas Gregord4c5ed02010-10-29 22:39:52 +0000129 data().getBases()[i] = *Bases[i];
Fariborz Jahanian3554b5a2009-07-10 20:13:23 +0000130 // Keep track of inherited vbases for this base class.
131 const CXXBaseSpecifier *Base = Bases[i];
132 QualType BaseType = Base->getType();
Douglas Gregorbeab56e2010-02-27 00:25:28 +0000133 // Skip dependent types; we can't do any checking on them now.
Fariborz Jahanian3554b5a2009-07-10 20:13:23 +0000134 if (BaseType->isDependentType())
135 continue;
136 CXXRecordDecl *BaseClassDecl
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000137 = cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
Anders Carlssonabb20e62010-03-29 05:13:12 +0000138
Douglas Gregor9d5938a2010-09-28 20:38:10 +0000139 // A class with a non-empty base class is not empty.
140 // FIXME: Standard ref?
Chandler Carruthb1963742011-04-30 09:17:45 +0000141 if (!BaseClassDecl->isEmpty()) {
142 if (!data().Empty) {
143 // C++0x [class]p7:
144 // A standard-layout class is a class that:
145 // [...]
146 // -- either has no non-static data members in the most derived
147 // class and at most one base class with non-static data members,
148 // or has no base classes with non-static data members, and
149 // If this is the second non-empty base, then neither of these two
150 // clauses can be true.
Chandler Carruth583edf82011-04-30 10:07:30 +0000151 data().IsStandardLayout = false;
Chandler Carruthb1963742011-04-30 09:17:45 +0000152 }
153
Douglas Gregor9d5938a2010-09-28 20:38:10 +0000154 data().Empty = false;
Chandler Carruthb1963742011-04-30 09:17:45 +0000155 data().HasNoNonEmptyBases = false;
156 }
Douglas Gregor9d5938a2010-09-28 20:38:10 +0000157
Douglas Gregor11c024b2010-09-28 20:50:54 +0000158 // C++ [class.virtual]p1:
159 // A class that declares or inherits a virtual function is called a
160 // polymorphic class.
161 if (BaseClassDecl->isPolymorphic())
162 data().Polymorphic = true;
Chandler Carruthe71d0622011-04-24 02:49:34 +0000163
Chandler Carruthb1963742011-04-30 09:17:45 +0000164 // C++0x [class]p7:
165 // A standard-layout class is a class that: [...]
166 // -- has no non-standard-layout base classes
Chandler Carruth583edf82011-04-30 10:07:30 +0000167 if (!BaseClassDecl->isStandardLayout())
168 data().IsStandardLayout = false;
Chandler Carruthb1963742011-04-30 09:17:45 +0000169
Chandler Carruthe71d0622011-04-24 02:49:34 +0000170 // Record if this base is the first non-literal field or base.
171 if (!hasNonLiteralTypeFieldsOrBases() && !BaseType->isLiteralType())
172 data().HasNonLiteralTypeFieldsOrBases = true;
Douglas Gregor11c024b2010-09-28 20:50:54 +0000173
Anders Carlssonabb20e62010-03-29 05:13:12 +0000174 // Now go through all virtual bases of this base and add them.
Mike Stump11289f42009-09-09 15:08:12 +0000175 for (CXXRecordDecl::base_class_iterator VBase =
Fariborz Jahanian3554b5a2009-07-10 20:13:23 +0000176 BaseClassDecl->vbases_begin(),
177 E = BaseClassDecl->vbases_end(); VBase != E; ++VBase) {
Anders Carlssonabb20e62010-03-29 05:13:12 +0000178 // Add this base if it's not already in the list.
Anders Carlssone47380f2010-03-29 19:49:09 +0000179 if (SeenVBaseTypes.insert(C.getCanonicalType(VBase->getType())))
Anders Carlssonabb20e62010-03-29 05:13:12 +0000180 VBases.push_back(VBase);
Fariborz Jahanian3554b5a2009-07-10 20:13:23 +0000181 }
Anders Carlssonabb20e62010-03-29 05:13:12 +0000182
183 if (Base->isVirtual()) {
184 // Add this base if it's not already in the list.
Anders Carlssone47380f2010-03-29 19:49:09 +0000185 if (SeenVBaseTypes.insert(C.getCanonicalType(BaseType)))
Anders Carlssonabb20e62010-03-29 05:13:12 +0000186 VBases.push_back(Base);
Douglas Gregor9d5938a2010-09-28 20:38:10 +0000187
188 // C++0x [meta.unary.prop] is_empty:
189 // T is a class type, but not a union type, with ... no virtual base
190 // classes
191 data().Empty = false;
Douglas Gregor11c024b2010-09-28 20:50:54 +0000192
193 // C++ [class.ctor]p5:
Alexis Huntf479f1b2011-05-09 18:22:59 +0000194 // A default constructor is trivial [...] if:
195 // -- its class has [...] no virtual bases
196 data().HasTrivialDefaultConstructor = false;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000197
198 // C++0x [class.copy]p13:
199 // A copy/move constructor for class X is trivial if it is neither
200 // user-provided nor deleted and if
201 // -- class X has no virtual functions and no virtual base classes, and
Douglas Gregor11c024b2010-09-28 20:50:54 +0000202 data().HasTrivialCopyConstructor = false;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000203 data().HasTrivialMoveConstructor = false;
204
205 // C++0x [class.copy]p27:
206 // A copy/move assignment operator for class X is trivial if it is
207 // neither user-provided nor deleted and if
208 // -- class X has no virtual functions and no virtual base classes, and
Douglas Gregor11c024b2010-09-28 20:50:54 +0000209 data().HasTrivialCopyAssignment = false;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000210 data().HasTrivialMoveAssignment = false;
Chandler Carruthb1963742011-04-30 09:17:45 +0000211
212 // C++0x [class]p7:
213 // A standard-layout class is a class that: [...]
214 // -- has [...] no virtual base classes
Chandler Carruth583edf82011-04-30 10:07:30 +0000215 data().IsStandardLayout = false;
Richard Smithcc36f692011-12-22 02:22:31 +0000216
217 // C++11 [dcl.constexpr]p4:
218 // In the definition of a constexpr constructor [...]
219 // -- the class shall not have any virtual base classes
220 data().DefaultedDefaultConstructorIsConstexpr = false;
221 data().DefaultedCopyConstructorIsConstexpr = false;
222 data().DefaultedMoveConstructorIsConstexpr = false;
Douglas Gregor11c024b2010-09-28 20:50:54 +0000223 } else {
224 // C++ [class.ctor]p5:
Alexis Huntf479f1b2011-05-09 18:22:59 +0000225 // A default constructor is trivial [...] if:
226 // -- all the direct base classes of its class have trivial default
227 // constructors.
228 if (!BaseClassDecl->hasTrivialDefaultConstructor())
229 data().HasTrivialDefaultConstructor = false;
Douglas Gregor11c024b2010-09-28 20:50:54 +0000230
Chandler Carruthad7d4042011-04-23 23:10:33 +0000231 // C++0x [class.copy]p13:
232 // A copy/move constructor for class X is trivial if [...]
233 // [...]
234 // -- the constructor selected to copy/move each direct base class
235 // subobject is trivial, and
236 // FIXME: C++0x: We need to only consider the selected constructor
237 // instead of all of them.
Douglas Gregor11c024b2010-09-28 20:50:54 +0000238 if (!BaseClassDecl->hasTrivialCopyConstructor())
239 data().HasTrivialCopyConstructor = false;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000240 if (!BaseClassDecl->hasTrivialMoveConstructor())
241 data().HasTrivialMoveConstructor = false;
242
243 // C++0x [class.copy]p27:
244 // A copy/move assignment operator for class X is trivial if [...]
245 // [...]
246 // -- the assignment operator selected to copy/move each direct base
247 // class subobject is trivial, and
248 // FIXME: C++0x: We need to only consider the selected operator instead
249 // of all of them.
Douglas Gregor11c024b2010-09-28 20:50:54 +0000250 if (!BaseClassDecl->hasTrivialCopyAssignment())
251 data().HasTrivialCopyAssignment = false;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000252 if (!BaseClassDecl->hasTrivialMoveAssignment())
253 data().HasTrivialMoveAssignment = false;
Richard Smithcc36f692011-12-22 02:22:31 +0000254
255 // C++11 [class.ctor]p6:
Richard Smithc101e612012-01-11 18:26:05 +0000256 // If that user-written default constructor would satisfy the
Richard Smithcc36f692011-12-22 02:22:31 +0000257 // requirements of a constexpr constructor, the implicitly-defined
258 // default constructor is constexpr.
259 if (!BaseClassDecl->hasConstexprDefaultConstructor())
260 data().DefaultedDefaultConstructorIsConstexpr = false;
261
262 // C++11 [class.copy]p13:
263 // If the implicitly-defined constructor would satisfy the requirements
264 // of a constexpr constructor, the implicitly-defined constructor is
265 // constexpr.
266 // C++11 [dcl.constexpr]p4:
267 // -- every constructor involved in initializing [...] base class
268 // sub-objects shall be a constexpr constructor
269 if (!BaseClassDecl->hasConstexprCopyConstructor())
270 data().DefaultedCopyConstructorIsConstexpr = false;
271 if (BaseClassDecl->hasDeclaredMoveConstructor() ||
272 BaseClassDecl->needsImplicitMoveConstructor())
273 // FIXME: If the implicit move constructor generated for the base class
274 // would be ill-formed, the implicit move constructor generated for the
275 // derived class calls the base class' copy constructor.
276 data().DefaultedMoveConstructorIsConstexpr &=
Richard Smithc101e612012-01-11 18:26:05 +0000277 BaseClassDecl->hasConstexprMoveConstructor();
Richard Smithcc36f692011-12-22 02:22:31 +0000278 else if (!BaseClassDecl->hasConstexprCopyConstructor())
279 data().DefaultedMoveConstructorIsConstexpr = false;
Anders Carlssonabb20e62010-03-29 05:13:12 +0000280 }
Douglas Gregor11c024b2010-09-28 20:50:54 +0000281
282 // C++ [class.ctor]p3:
283 // A destructor is trivial if all the direct base classes of its class
284 // have trivial destructors.
285 if (!BaseClassDecl->hasTrivialDestructor())
286 data().HasTrivialDestructor = false;
Douglas Gregor61226d32011-05-13 01:05:07 +0000287
John McCall31168b02011-06-15 23:02:42 +0000288 // A class has an Objective-C object member if... or any of its bases
289 // has an Objective-C object member.
290 if (BaseClassDecl->hasObjectMember())
291 setHasObjectMember(true);
292
Douglas Gregor61226d32011-05-13 01:05:07 +0000293 // Keep track of the presence of mutable fields.
294 if (BaseClassDecl->hasMutableFields())
295 data().HasMutableFields = true;
Fariborz Jahanian3554b5a2009-07-10 20:13:23 +0000296 }
Anders Carlssonabb20e62010-03-29 05:13:12 +0000297
298 if (VBases.empty())
299 return;
300
301 // Create base specifier for any direct or indirect virtual bases.
302 data().VBases = new (C) CXXBaseSpecifier[VBases.size()];
303 data().NumVBases = VBases.size();
Richard Smith26935e62011-07-12 23:49:11 +0000304 for (int I = 0, E = VBases.size(); I != E; ++I)
305 data().getVBases()[I] = *VBases[I];
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000306}
307
Douglas Gregord2e6a452010-01-14 17:47:39 +0000308/// Callback function for CXXRecordDecl::forallBases that acknowledges
309/// that it saw a base class.
310static bool SawBase(const CXXRecordDecl *, void *) {
311 return true;
312}
313
314bool CXXRecordDecl::hasAnyDependentBases() const {
315 if (!isDependentContext())
316 return false;
317
318 return !forallBases(SawBase, 0);
319}
320
Alexis Huntfcaeae42011-05-25 20:50:04 +0000321bool CXXRecordDecl::hasConstCopyConstructor() const {
322 return getCopyConstructor(Qualifiers::Const) != 0;
Fariborz Jahanian477d2422009-06-22 23:34:40 +0000323}
324
Chandler Carrutha3e1f9a2011-04-23 10:47:28 +0000325bool CXXRecordDecl::isTriviallyCopyable() const {
326 // C++0x [class]p5:
327 // A trivially copyable class is a class that:
328 // -- has no non-trivial copy constructors,
329 if (!hasTrivialCopyConstructor()) return false;
330 // -- has no non-trivial move constructors,
Chandler Carruthad7d4042011-04-23 23:10:33 +0000331 if (!hasTrivialMoveConstructor()) return false;
Chandler Carrutha3e1f9a2011-04-23 10:47:28 +0000332 // -- has no non-trivial copy assignment operators,
333 if (!hasTrivialCopyAssignment()) return false;
334 // -- has no non-trivial move assignment operators, and
Chandler Carruthad7d4042011-04-23 23:10:33 +0000335 if (!hasTrivialMoveAssignment()) return false;
Chandler Carrutha3e1f9a2011-04-23 10:47:28 +0000336 // -- has a trivial destructor.
337 if (!hasTrivialDestructor()) return false;
338
339 return true;
340}
341
Douglas Gregor8453ddb2010-07-01 20:59:04 +0000342/// \brief Perform a simplistic form of overload resolution that only considers
343/// cv-qualifiers on a single parameter, and return the best overload candidate
344/// (if there is one).
345static CXXMethodDecl *
346GetBestOverloadCandidateSimple(
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000347 const SmallVectorImpl<std::pair<CXXMethodDecl *, Qualifiers> > &Cands) {
Douglas Gregor8453ddb2010-07-01 20:59:04 +0000348 if (Cands.empty())
349 return 0;
350 if (Cands.size() == 1)
351 return Cands[0].first;
352
353 unsigned Best = 0, N = Cands.size();
354 for (unsigned I = 1; I != N; ++I)
Douglas Gregor1d684c22011-04-28 00:56:09 +0000355 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
Douglas Gregor8453ddb2010-07-01 20:59:04 +0000356 Best = I;
357
358 for (unsigned I = 1; I != N; ++I)
Douglas Gregor1d684c22011-04-28 00:56:09 +0000359 if (Cands[Best].second.compatiblyIncludes(Cands[I].second))
Douglas Gregor8453ddb2010-07-01 20:59:04 +0000360 return 0;
361
362 return Cands[Best].first;
363}
364
Alexis Huntfcaeae42011-05-25 20:50:04 +0000365CXXConstructorDecl *CXXRecordDecl::getCopyConstructor(unsigned TypeQuals) const{
366 ASTContext &Context = getASTContext();
Sebastian Redlbaad4e72009-01-05 20:52:13 +0000367 QualType ClassType
368 = Context.getTypeDeclType(const_cast<CXXRecordDecl*>(this));
Mike Stump11289f42009-09-09 15:08:12 +0000369 DeclarationName ConstructorName
Douglas Gregor1349b452008-12-15 21:24:18 +0000370 = Context.DeclarationNames.getCXXConstructorName(
Fariborz Jahanian477d2422009-06-22 23:34:40 +0000371 Context.getCanonicalType(ClassType));
372 unsigned FoundTQs;
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000373 SmallVector<std::pair<CXXMethodDecl *, Qualifiers>, 4> Found;
Douglas Gregor74a34442008-12-23 21:31:30 +0000374 DeclContext::lookup_const_iterator Con, ConEnd;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000375 for (llvm::tie(Con, ConEnd) = this->lookup(ConstructorName);
Douglas Gregor74a34442008-12-23 21:31:30 +0000376 Con != ConEnd; ++Con) {
Douglas Gregor2d2282e2009-09-04 14:46:39 +0000377 // C++ [class.copy]p2:
378 // A non-template constructor for class X is a copy constructor if [...]
379 if (isa<FunctionTemplateDecl>(*Con))
380 continue;
381
Douglas Gregor8453ddb2010-07-01 20:59:04 +0000382 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
383 if (Constructor->isCopyConstructor(FoundTQs)) {
John McCall8ccfcb52009-09-24 19:53:00 +0000384 if (((TypeQuals & Qualifiers::Const) == (FoundTQs & Qualifiers::Const)) ||
385 (!(TypeQuals & Qualifiers::Const) && (FoundTQs & Qualifiers::Const)))
Douglas Gregor8453ddb2010-07-01 20:59:04 +0000386 Found.push_back(std::make_pair(
387 const_cast<CXXConstructorDecl *>(Constructor),
388 Qualifiers::fromCVRMask(FoundTQs)));
Fariborz Jahanian477d2422009-06-22 23:34:40 +0000389 }
Douglas Gregor05379422008-11-03 17:51:48 +0000390 }
Douglas Gregor8453ddb2010-07-01 20:59:04 +0000391
392 return cast_or_null<CXXConstructorDecl>(
393 GetBestOverloadCandidateSimple(Found));
Douglas Gregor05379422008-11-03 17:51:48 +0000394}
395
Alexis Huntfcaeae42011-05-25 20:50:04 +0000396CXXConstructorDecl *CXXRecordDecl::getMoveConstructor() const {
397 for (ctor_iterator I = ctor_begin(), E = ctor_end(); I != E; ++I)
398 if (I->isMoveConstructor())
399 return *I;
400
401 return 0;
402}
403
Douglas Gregor68e11362010-07-01 17:48:08 +0000404CXXMethodDecl *CXXRecordDecl::getCopyAssignmentOperator(bool ArgIsConst) const {
405 ASTContext &Context = getASTContext();
406 QualType Class = Context.getTypeDeclType(const_cast<CXXRecordDecl *>(this));
407 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
408
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000409 SmallVector<std::pair<CXXMethodDecl *, Qualifiers>, 4> Found;
Douglas Gregor68e11362010-07-01 17:48:08 +0000410 DeclContext::lookup_const_iterator Op, OpEnd;
411 for (llvm::tie(Op, OpEnd) = this->lookup(Name); Op != OpEnd; ++Op) {
412 // C++ [class.copy]p9:
413 // A user-declared copy assignment operator is a non-static non-template
414 // member function of class X with exactly one parameter of type X, X&,
415 // const X&, volatile X& or const volatile X&.
416 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
417 if (!Method || Method->isStatic() || Method->getPrimaryTemplate())
418 continue;
419
420 const FunctionProtoType *FnType
421 = Method->getType()->getAs<FunctionProtoType>();
422 assert(FnType && "Overloaded operator has no prototype.");
423 // Don't assert on this; an invalid decl might have been left in the AST.
424 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
425 continue;
426
427 QualType ArgType = FnType->getArgType(0);
428 Qualifiers Quals;
429 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()) {
430 ArgType = Ref->getPointeeType();
431 // If we have a const argument and we have a reference to a non-const,
432 // this function does not match.
433 if (ArgIsConst && !ArgType.isConstQualified())
434 continue;
435
436 Quals = ArgType.getQualifiers();
437 } else {
438 // By-value copy-assignment operators are treated like const X&
439 // copy-assignment operators.
440 Quals = Qualifiers::fromCVRMask(Qualifiers::Const);
441 }
442
443 if (!Context.hasSameUnqualifiedType(ArgType, Class))
444 continue;
445
446 // Save this copy-assignment operator. It might be "the one".
447 Found.push_back(std::make_pair(const_cast<CXXMethodDecl *>(Method), Quals));
448 }
449
450 // Use a simplistic form of overload resolution to find the candidate.
451 return GetBestOverloadCandidateSimple(Found);
452}
453
Alexis Huntfcaeae42011-05-25 20:50:04 +0000454CXXMethodDecl *CXXRecordDecl::getMoveAssignmentOperator() const {
455 for (method_iterator I = method_begin(), E = method_end(); I != E; ++I)
456 if (I->isMoveAssignmentOperator())
457 return *I;
458
459 return 0;
460}
461
Douglas Gregor7d9120c2010-09-28 21:55:22 +0000462void CXXRecordDecl::markedVirtualFunctionPure() {
463 // C++ [class.abstract]p2:
464 // A class is abstract if it has at least one pure virtual function.
465 data().Abstract = true;
466}
467
468void CXXRecordDecl::addedMember(Decl *D) {
Argyrios Kyrtzidisb2e31e42012-01-26 18:28:08 +0000469 if (!D->isImplicit() &&
470 !isa<FieldDecl>(D) &&
471 !isa<IndirectFieldDecl>(D) &&
472 (!isa<TagDecl>(D) || cast<TagDecl>(D)->getTagKind() == TTK_Class))
473 data().HasOnlyCMembers = false;
Argyrios Kyrtzidis5c4e0652012-01-23 16:58:45 +0000474
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000475 // Ignore friends and invalid declarations.
476 if (D->getFriendObjectKind() || D->isInvalidDecl())
Douglas Gregord30e79f2010-09-27 21:17:54 +0000477 return;
478
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000479 FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D);
480 if (FunTmpl)
481 D = FunTmpl->getTemplatedDecl();
482
Douglas Gregora832d3e2010-09-28 19:45:33 +0000483 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
484 if (Method->isVirtual()) {
485 // C++ [dcl.init.aggr]p1:
486 // An aggregate is an array or a class with [...] no virtual functions.
487 data().Aggregate = false;
488
489 // C++ [class]p4:
490 // A POD-struct is an aggregate class...
491 data().PlainOldData = false;
Douglas Gregor9d5938a2010-09-28 20:38:10 +0000492
493 // Virtual functions make the class non-empty.
494 // FIXME: Standard ref?
495 data().Empty = false;
Douglas Gregor11c024b2010-09-28 20:50:54 +0000496
497 // C++ [class.virtual]p1:
498 // A class that declares or inherits a virtual function is called a
499 // polymorphic class.
500 data().Polymorphic = true;
501
Alexis Huntf479f1b2011-05-09 18:22:59 +0000502 // C++0x [class.ctor]p5
503 // A default constructor is trivial [...] if:
504 // -- its class has no virtual functions [...]
505 data().HasTrivialDefaultConstructor = false;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000506
507 // C++0x [class.copy]p13:
508 // A copy/move constructor for class X is trivial if [...]
509 // -- class X has no virtual functions [...]
Douglas Gregor11c024b2010-09-28 20:50:54 +0000510 data().HasTrivialCopyConstructor = false;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000511 data().HasTrivialMoveConstructor = false;
512
513 // C++0x [class.copy]p27:
514 // A copy/move assignment operator for class X is trivial if [...]
515 // -- class X has no virtual functions [...]
Douglas Gregor11c024b2010-09-28 20:50:54 +0000516 data().HasTrivialCopyAssignment = false;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000517 data().HasTrivialMoveAssignment = false;
Douglas Gregor5d1b4e32011-11-07 20:56:01 +0000518
Chandler Carruthb1963742011-04-30 09:17:45 +0000519 // C++0x [class]p7:
520 // A standard-layout class is a class that: [...]
521 // -- has no virtual functions
Chandler Carruth583edf82011-04-30 10:07:30 +0000522 data().IsStandardLayout = false;
Douglas Gregora832d3e2010-09-28 19:45:33 +0000523 }
524 }
525
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000526 if (D->isImplicit()) {
Argyrios Kyrtzidise16a5302010-10-24 17:26:54 +0000527 // Notify that an implicit member was added after the definition
528 // was completed.
529 if (!isBeingDefined())
530 if (ASTMutationListener *L = getASTMutationListener())
531 L->AddedCXXImplicitMember(data().Definition, D);
Argyrios Kyrtzidis00f52662010-10-20 23:48:42 +0000532
Alexis Huntfcaeae42011-05-25 20:50:04 +0000533 // If this is a special member function, note that it was added and then
534 // return early.
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000535 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Richard Smithcc36f692011-12-22 02:22:31 +0000536 if (Constructor->isDefaultConstructor()) {
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000537 data().DeclaredDefaultConstructor = true;
Richard Smithcc36f692011-12-22 02:22:31 +0000538 if (Constructor->isConstexpr()) {
539 data().HasConstexprDefaultConstructor = true;
540 data().HasConstexprNonCopyMoveConstructor = true;
541 }
542 } else if (Constructor->isCopyConstructor()) {
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000543 data().DeclaredCopyConstructor = true;
Richard Smithcc36f692011-12-22 02:22:31 +0000544 if (Constructor->isConstexpr())
545 data().HasConstexprCopyConstructor = true;
546 } else if (Constructor->isMoveConstructor()) {
Alexis Huntfcaeae42011-05-25 20:50:04 +0000547 data().DeclaredMoveConstructor = true;
Richard Smithcc36f692011-12-22 02:22:31 +0000548 if (Constructor->isConstexpr())
549 data().HasConstexprMoveConstructor = true;
550 } else
Alexis Huntfcaeae42011-05-25 20:50:04 +0000551 goto NotASpecialMember;
Douglas Gregor9d5938a2010-09-28 20:38:10 +0000552 return;
Alexis Huntfcaeae42011-05-25 20:50:04 +0000553 } else if (isa<CXXDestructorDecl>(D)) {
Douglas Gregor8f9ebe52010-09-27 22:48:58 +0000554 data().DeclaredDestructor = true;
Douglas Gregor9d5938a2010-09-28 20:38:10 +0000555 return;
Alexis Huntfcaeae42011-05-25 20:50:04 +0000556 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
557 if (Method->isCopyAssignmentOperator())
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000558 data().DeclaredCopyAssignment = true;
Alexis Huntfcaeae42011-05-25 20:50:04 +0000559 else if (Method->isMoveAssignmentOperator())
560 data().DeclaredMoveAssignment = true;
561 else
562 goto NotASpecialMember;
Douglas Gregor9d5938a2010-09-28 20:38:10 +0000563 return;
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000564 }
Douglas Gregor9d5938a2010-09-28 20:38:10 +0000565
Alexis Huntfcaeae42011-05-25 20:50:04 +0000566NotASpecialMember:;
Douglas Gregor9d5938a2010-09-28 20:38:10 +0000567 // Any other implicit declarations are handled like normal declarations.
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000568 }
569
570 // Handle (user-declared) constructors.
571 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
572 // Note that we have a user-declared constructor.
573 data().UserDeclaredConstructor = true;
574
Richard Smitha5285072011-09-05 02:13:09 +0000575 // Technically, "user-provided" is only defined for special member
576 // functions, but the intent of the standard is clearly that it should apply
577 // to all functions.
578 bool UserProvided = Constructor->isUserProvided();
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000579
Alexis Hunt88c75c32011-05-09 21:45:35 +0000580 if (Constructor->isDefaultConstructor()) {
581 data().DeclaredDefaultConstructor = true;
Richard Smitha5285072011-09-05 02:13:09 +0000582 if (UserProvided) {
Richard Smithcc36f692011-12-22 02:22:31 +0000583 // C++0x [class.ctor]p5:
584 // A default constructor is trivial if it is not user-provided [...]
Alexis Hunt88c75c32011-05-09 21:45:35 +0000585 data().HasTrivialDefaultConstructor = false;
Alexis Huntea6f0322011-05-11 22:34:38 +0000586 data().UserProvidedDefaultConstructor = true;
Alexis Hunt88c75c32011-05-09 21:45:35 +0000587 }
Richard Smithcc36f692011-12-22 02:22:31 +0000588 if (Constructor->isConstexpr()) {
589 data().HasConstexprDefaultConstructor = true;
590 data().HasConstexprNonCopyMoveConstructor = true;
591 }
Alexis Hunt88c75c32011-05-09 21:45:35 +0000592 }
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000593
Chandler Carruthad7d4042011-04-23 23:10:33 +0000594 // Note when we have a user-declared copy or move constructor, which will
595 // suppress the implicit declaration of those constructors.
596 if (!FunTmpl) {
597 if (Constructor->isCopyConstructor()) {
598 data().UserDeclaredCopyConstructor = true;
599 data().DeclaredCopyConstructor = true;
600
601 // C++0x [class.copy]p13:
Alexis Huntf479f1b2011-05-09 18:22:59 +0000602 // A copy/move constructor for class X is trivial if it is not
603 // user-provided [...]
Richard Smitha5285072011-09-05 02:13:09 +0000604 if (UserProvided)
Alexis Huntf479f1b2011-05-09 18:22:59 +0000605 data().HasTrivialCopyConstructor = false;
Richard Smithcc36f692011-12-22 02:22:31 +0000606
607 if (Constructor->isConstexpr())
608 data().HasConstexprCopyConstructor = true;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000609 } else if (Constructor->isMoveConstructor()) {
Alexis Huntfcaeae42011-05-25 20:50:04 +0000610 data().UserDeclaredMoveConstructor = true;
611 data().DeclaredMoveConstructor = true;
612
Chandler Carruthad7d4042011-04-23 23:10:33 +0000613 // C++0x [class.copy]p13:
Alexis Huntf479f1b2011-05-09 18:22:59 +0000614 // A copy/move constructor for class X is trivial if it is not
615 // user-provided [...]
Richard Smitha5285072011-09-05 02:13:09 +0000616 if (UserProvided)
Alexis Huntf479f1b2011-05-09 18:22:59 +0000617 data().HasTrivialMoveConstructor = false;
Richard Smithcc36f692011-12-22 02:22:31 +0000618
619 if (Constructor->isConstexpr())
620 data().HasConstexprMoveConstructor = true;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000621 }
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000622 }
Richard Smith111af8d2011-08-10 18:11:37 +0000623 if (Constructor->isConstexpr() && !Constructor->isCopyOrMoveConstructor()) {
624 // Record if we see any constexpr constructors which are neither copy
Chandler Carruthe71d0622011-04-24 02:49:34 +0000625 // nor move constructors.
Richard Smith111af8d2011-08-10 18:11:37 +0000626 data().HasConstexprNonCopyMoveConstructor = true;
Chandler Carruthe71d0622011-04-24 02:49:34 +0000627 }
Chandler Carruthad7d4042011-04-23 23:10:33 +0000628
Alexis Hunt88c75c32011-05-09 21:45:35 +0000629 // C++ [dcl.init.aggr]p1:
630 // An aggregate is an array or a class with no user-declared
631 // constructors [...].
632 // C++0x [dcl.init.aggr]p1:
633 // An aggregate is an array or a class with no user-provided
634 // constructors [...].
635 if (!getASTContext().getLangOptions().CPlusPlus0x || UserProvided)
636 data().Aggregate = false;
637
638 // C++ [class]p4:
639 // A POD-struct is an aggregate class [...]
640 // Since the POD bit is meant to be C++03 POD-ness, clear it even if the
641 // type is technically an aggregate in C++0x since it wouldn't be in 03.
642 data().PlainOldData = false;
643
Douglas Gregord30e79f2010-09-27 21:17:54 +0000644 return;
645 }
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000646
Douglas Gregor8f9ebe52010-09-27 22:48:58 +0000647 // Handle (user-declared) destructors.
Alexis Hunt97ab5542011-05-16 22:41:40 +0000648 if (CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor8f9ebe52010-09-27 22:48:58 +0000649 data().DeclaredDestructor = true;
650 data().UserDeclaredDestructor = true;
Douglas Gregora832d3e2010-09-28 19:45:33 +0000651
652 // C++ [class]p4:
653 // A POD-struct is an aggregate class that has [...] no user-defined
654 // destructor.
Alexis Hunt97ab5542011-05-16 22:41:40 +0000655 // This bit is the C++03 POD bit, not the 0x one.
Douglas Gregora832d3e2010-09-28 19:45:33 +0000656 data().PlainOldData = false;
657
Douglas Gregor5d1b4e32011-11-07 20:56:01 +0000658 // C++11 [class.dtor]p5:
659 // A destructor is trivial if it is not user-provided and if
660 // -- the destructor is not virtual.
Richard Smithcc36f692011-12-22 02:22:31 +0000661 if (DD->isUserProvided() || DD->isVirtual()) {
Alexis Hunt97ab5542011-05-16 22:41:40 +0000662 data().HasTrivialDestructor = false;
Richard Smithcc36f692011-12-22 02:22:31 +0000663 // C++11 [dcl.constexpr]p1:
664 // The constexpr specifier shall be applied only to [...] the
665 // declaration of a static data member of a literal type.
666 // C++11 [basic.types]p10:
667 // A type is a literal type if it is [...] a class type that [...] has
668 // a trivial destructor.
669 data().DefaultedDefaultConstructorIsConstexpr = false;
670 data().DefaultedCopyConstructorIsConstexpr = false;
671 data().DefaultedMoveConstructorIsConstexpr = false;
672 }
Douglas Gregor11c024b2010-09-28 20:50:54 +0000673
Douglas Gregor8f9ebe52010-09-27 22:48:58 +0000674 return;
675 }
Douglas Gregord30e79f2010-09-27 21:17:54 +0000676
Douglas Gregor8f9ebe52010-09-27 22:48:58 +0000677 // Handle (user-declared) member functions.
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000678 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Alexis Huntfcaeae42011-05-25 20:50:04 +0000679 if (Method->isCopyAssignmentOperator()) {
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000680 // C++ [class]p4:
Chandler Carruthad7d4042011-04-23 23:10:33 +0000681 // A POD-struct is an aggregate class that [...] has no user-defined
682 // copy assignment operator [...].
Alexis Hunt97ab5542011-05-16 22:41:40 +0000683 // This is the C++03 bit only.
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000684 data().PlainOldData = false;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000685
Alexis Huntfcaeae42011-05-25 20:50:04 +0000686 // This is a copy assignment operator.
Chandler Carruthad7d4042011-04-23 23:10:33 +0000687
Alexis Huntfcaeae42011-05-25 20:50:04 +0000688 // Suppress the implicit declaration of a copy constructor.
689 data().UserDeclaredCopyAssignment = true;
690 data().DeclaredCopyAssignment = true;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000691
Alexis Huntfcaeae42011-05-25 20:50:04 +0000692 // C++0x [class.copy]p27:
693 // A copy/move assignment operator for class X is trivial if it is
694 // neither user-provided nor deleted [...]
695 if (Method->isUserProvided())
696 data().HasTrivialCopyAssignment = false;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000697
Alexis Huntfcaeae42011-05-25 20:50:04 +0000698 return;
699 }
700
701 if (Method->isMoveAssignmentOperator()) {
702 // This is an extension in C++03 mode, but we'll keep consistency by
703 // taking a move assignment operator to induce non-POD-ness
704 data().PlainOldData = false;
705
706 // This is a move assignment operator.
707 data().UserDeclaredMoveAssignment = true;
708 data().DeclaredMoveAssignment = true;
709
710 // C++0x [class.copy]p27:
711 // A copy/move assignment operator for class X is trivial if it is
712 // neither user-provided nor deleted [...]
713 if (Method->isUserProvided())
714 data().HasTrivialMoveAssignment = false;
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000715 }
Chandler Carruthad7d4042011-04-23 23:10:33 +0000716
Douglas Gregor457104e2010-09-29 04:25:11 +0000717 // Keep the list of conversion functions up-to-date.
718 if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
719 // We don't record specializations.
720 if (Conversion->getPrimaryTemplate())
721 return;
722
723 // FIXME: We intentionally don't use the decl's access here because it
724 // hasn't been set yet. That's really just a misdesign in Sema.
725
726 if (FunTmpl) {
Douglas Gregorec9fd132012-01-14 16:38:05 +0000727 if (FunTmpl->getPreviousDecl())
728 data().Conversions.replace(FunTmpl->getPreviousDecl(),
Douglas Gregor457104e2010-09-29 04:25:11 +0000729 FunTmpl);
730 else
731 data().Conversions.addDecl(FunTmpl);
732 } else {
Douglas Gregorec9fd132012-01-14 16:38:05 +0000733 if (Conversion->getPreviousDecl())
734 data().Conversions.replace(Conversion->getPreviousDecl(),
Douglas Gregor457104e2010-09-29 04:25:11 +0000735 Conversion);
736 else
737 data().Conversions.addDecl(Conversion);
738 }
739 }
740
Douglas Gregora1ce1f82010-09-27 22:06:20 +0000741 return;
Douglas Gregor8a273912009-07-22 18:25:24 +0000742 }
Douglas Gregora832d3e2010-09-28 19:45:33 +0000743
744 // Handle non-static data members.
745 if (FieldDecl *Field = dyn_cast<FieldDecl>(D)) {
Douglas Gregor556e5862011-10-10 17:22:13 +0000746 // C++ [class.bit]p2:
747 // A declaration for a bit-field that omits the identifier declares an
748 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
749 // initialized.
750 if (Field->isUnnamedBitfield())
751 return;
752
Douglas Gregora832d3e2010-09-28 19:45:33 +0000753 // C++ [dcl.init.aggr]p1:
754 // An aggregate is an array or a class (clause 9) with [...] no
755 // private or protected non-static data members (clause 11).
756 //
757 // A POD must be an aggregate.
758 if (D->getAccess() == AS_private || D->getAccess() == AS_protected) {
759 data().Aggregate = false;
760 data().PlainOldData = false;
761 }
Chandler Carruthb1963742011-04-30 09:17:45 +0000762
763 // C++0x [class]p7:
764 // A standard-layout class is a class that:
765 // [...]
766 // -- has the same access control for all non-static data members,
767 switch (D->getAccess()) {
768 case AS_private: data().HasPrivateFields = true; break;
769 case AS_protected: data().HasProtectedFields = true; break;
770 case AS_public: data().HasPublicFields = true; break;
David Blaikie83d382b2011-09-23 05:06:16 +0000771 case AS_none: llvm_unreachable("Invalid access specifier");
Chandler Carruthb1963742011-04-30 09:17:45 +0000772 };
773 if ((data().HasPrivateFields + data().HasProtectedFields +
774 data().HasPublicFields) > 1)
Chandler Carruth583edf82011-04-30 10:07:30 +0000775 data().IsStandardLayout = false;
Chandler Carruthb1963742011-04-30 09:17:45 +0000776
Douglas Gregor61226d32011-05-13 01:05:07 +0000777 // Keep track of the presence of mutable fields.
778 if (Field->isMutable())
779 data().HasMutableFields = true;
780
Chandler Carruthad7d4042011-04-23 23:10:33 +0000781 // C++0x [class]p9:
Douglas Gregora832d3e2010-09-28 19:45:33 +0000782 // A POD struct is a class that is both a trivial class and a
783 // standard-layout class, and has no non-static data members of type
784 // non-POD struct, non-POD union (or array of such types).
John McCall31168b02011-06-15 23:02:42 +0000785 //
786 // Automatic Reference Counting: the presence of a member of Objective-C pointer type
787 // that does not explicitly have no lifetime makes the class a non-POD.
788 // However, we delay setting PlainOldData to false in this case so that
789 // Sema has a chance to diagnostic causes where the same class will be
790 // non-POD with Automatic Reference Counting but a POD without Instant Objects.
791 // In this case, the class will become a non-POD class when we complete
792 // the definition.
Douglas Gregora832d3e2010-09-28 19:45:33 +0000793 ASTContext &Context = getASTContext();
794 QualType T = Context.getBaseElementType(Field->getType());
John McCall31168b02011-06-15 23:02:42 +0000795 if (T->isObjCRetainableType() || T.isObjCGCStrong()) {
796 if (!Context.getLangOptions().ObjCAutoRefCount ||
797 T.getObjCLifetime() != Qualifiers::OCL_ExplicitNone)
798 setHasObjectMember(true);
799 } else if (!T.isPODType(Context))
Douglas Gregora832d3e2010-09-28 19:45:33 +0000800 data().PlainOldData = false;
John McCall31168b02011-06-15 23:02:42 +0000801
Chandler Carruthb1963742011-04-30 09:17:45 +0000802 if (T->isReferenceType()) {
Alexis Huntf479f1b2011-05-09 18:22:59 +0000803 data().HasTrivialDefaultConstructor = false;
Chandler Carruthe71d0622011-04-24 02:49:34 +0000804
Chandler Carruthb1963742011-04-30 09:17:45 +0000805 // C++0x [class]p7:
806 // A standard-layout class is a class that:
807 // -- has no non-static data members of type [...] reference,
Chandler Carruth583edf82011-04-30 10:07:30 +0000808 data().IsStandardLayout = false;
Chandler Carruthb1963742011-04-30 09:17:45 +0000809 }
810
Richard Smith3607ffe2012-02-13 03:54:03 +0000811 // Record if this field is the first non-literal or volatile field or base.
812 if (!T->isLiteralType() || T.isVolatileQualified())
Chandler Carruthe71d0622011-04-24 02:49:34 +0000813 data().HasNonLiteralTypeFieldsOrBases = true;
814
Richard Smith938f40b2011-06-11 17:19:42 +0000815 if (Field->hasInClassInitializer()) {
816 // C++0x [class]p5:
817 // A default constructor is trivial if [...] no non-static data member
818 // of its class has a brace-or-equal-initializer.
819 data().HasTrivialDefaultConstructor = false;
820
821 // C++0x [dcl.init.aggr]p1:
822 // An aggregate is a [...] class with [...] no
823 // brace-or-equal-initializers for non-static data members.
824 data().Aggregate = false;
825
826 // C++0x [class]p10:
827 // A POD struct is [...] a trivial class.
828 data().PlainOldData = false;
829 }
830
Douglas Gregor11c024b2010-09-28 20:50:54 +0000831 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
832 CXXRecordDecl* FieldRec = cast<CXXRecordDecl>(RecordTy->getDecl());
833 if (FieldRec->getDefinition()) {
Alexis Huntf479f1b2011-05-09 18:22:59 +0000834 // C++0x [class.ctor]p5:
Richard Smithcc36f692011-12-22 02:22:31 +0000835 // A default constructor is trivial [...] if:
Alexis Huntf479f1b2011-05-09 18:22:59 +0000836 // -- for all the non-static data members of its class that are of
837 // class type (or array thereof), each such class has a trivial
838 // default constructor.
839 if (!FieldRec->hasTrivialDefaultConstructor())
840 data().HasTrivialDefaultConstructor = false;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000841
842 // C++0x [class.copy]p13:
843 // A copy/move constructor for class X is trivial if [...]
844 // [...]
845 // -- for each non-static data member of X that is of class type (or
846 // an array thereof), the constructor selected to copy/move that
847 // member is trivial;
848 // FIXME: C++0x: We don't correctly model 'selected' constructors.
Douglas Gregor11c024b2010-09-28 20:50:54 +0000849 if (!FieldRec->hasTrivialCopyConstructor())
850 data().HasTrivialCopyConstructor = false;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000851 if (!FieldRec->hasTrivialMoveConstructor())
852 data().HasTrivialMoveConstructor = false;
853
854 // C++0x [class.copy]p27:
855 // A copy/move assignment operator for class X is trivial if [...]
856 // [...]
857 // -- for each non-static data member of X that is of class type (or
858 // an array thereof), the assignment operator selected to
859 // copy/move that member is trivial;
860 // FIXME: C++0x: We don't correctly model 'selected' operators.
Douglas Gregor11c024b2010-09-28 20:50:54 +0000861 if (!FieldRec->hasTrivialCopyAssignment())
862 data().HasTrivialCopyAssignment = false;
Chandler Carruthad7d4042011-04-23 23:10:33 +0000863 if (!FieldRec->hasTrivialMoveAssignment())
864 data().HasTrivialMoveAssignment = false;
865
Douglas Gregor11c024b2010-09-28 20:50:54 +0000866 if (!FieldRec->hasTrivialDestructor())
867 data().HasTrivialDestructor = false;
John McCall31168b02011-06-15 23:02:42 +0000868 if (FieldRec->hasObjectMember())
869 setHasObjectMember(true);
Chandler Carruthb1963742011-04-30 09:17:45 +0000870
871 // C++0x [class]p7:
872 // A standard-layout class is a class that:
873 // -- has no non-static data members of type non-standard-layout
874 // class (or array of such types) [...]
Chandler Carruth583edf82011-04-30 10:07:30 +0000875 if (!FieldRec->isStandardLayout())
876 data().IsStandardLayout = false;
Chandler Carruthb1963742011-04-30 09:17:45 +0000877
878 // C++0x [class]p7:
879 // A standard-layout class is a class that:
880 // [...]
881 // -- has no base classes of the same type as the first non-static
882 // data member.
883 // We don't want to expend bits in the state of the record decl
884 // tracking whether this is the first non-static data member so we
885 // cheat a bit and use some of the existing state: the empty bit.
886 // Virtual bases and virtual methods make a class non-empty, but they
887 // also make it non-standard-layout so we needn't check here.
888 // A non-empty base class may leave the class standard-layout, but not
889 // if we have arrived here, and have at least on non-static data
Chandler Carruth583edf82011-04-30 10:07:30 +0000890 // member. If IsStandardLayout remains true, then the first non-static
Chandler Carruthb1963742011-04-30 09:17:45 +0000891 // data member must come through here with Empty still true, and Empty
892 // will subsequently be set to false below.
Chandler Carruth583edf82011-04-30 10:07:30 +0000893 if (data().IsStandardLayout && data().Empty) {
Chandler Carruthb1963742011-04-30 09:17:45 +0000894 for (CXXRecordDecl::base_class_const_iterator BI = bases_begin(),
895 BE = bases_end();
896 BI != BE; ++BI) {
897 if (Context.hasSameUnqualifiedType(BI->getType(), T)) {
Chandler Carruth583edf82011-04-30 10:07:30 +0000898 data().IsStandardLayout = false;
Chandler Carruthb1963742011-04-30 09:17:45 +0000899 break;
900 }
901 }
902 }
Douglas Gregor61226d32011-05-13 01:05:07 +0000903
904 // Keep track of the presence of mutable fields.
905 if (FieldRec->hasMutableFields())
906 data().HasMutableFields = true;
Richard Smithcc36f692011-12-22 02:22:31 +0000907
908 // C++11 [class.copy]p13:
909 // If the implicitly-defined constructor would satisfy the
910 // requirements of a constexpr constructor, the implicitly-defined
911 // constructor is constexpr.
912 // C++11 [dcl.constexpr]p4:
913 // -- every constructor involved in initializing non-static data
914 // members [...] shall be a constexpr constructor
915 if (!Field->hasInClassInitializer() &&
916 !FieldRec->hasConstexprDefaultConstructor())
917 // The standard requires any in-class initializer to be a constant
918 // expression. We consider this to be a defect.
919 data().DefaultedDefaultConstructorIsConstexpr = false;
920
921 if (!FieldRec->hasConstexprCopyConstructor())
922 data().DefaultedCopyConstructorIsConstexpr = false;
923
924 if (FieldRec->hasDeclaredMoveConstructor() ||
925 FieldRec->needsImplicitMoveConstructor())
926 // FIXME: If the implicit move constructor generated for the member's
927 // class would be ill-formed, the implicit move constructor generated
928 // for this class calls the member's copy constructor.
929 data().DefaultedMoveConstructorIsConstexpr &=
930 FieldRec->hasConstexprMoveConstructor();
931 else if (!FieldRec->hasConstexprCopyConstructor())
932 data().DefaultedMoveConstructorIsConstexpr = false;
Douglas Gregor11c024b2010-09-28 20:50:54 +0000933 }
Richard Smithcc36f692011-12-22 02:22:31 +0000934 } else {
935 // Base element type of field is a non-class type.
936 if (!T->isLiteralType()) {
937 data().DefaultedDefaultConstructorIsConstexpr = false;
938 data().DefaultedCopyConstructorIsConstexpr = false;
939 data().DefaultedMoveConstructorIsConstexpr = false;
940 } else if (!Field->hasInClassInitializer())
941 data().DefaultedDefaultConstructorIsConstexpr = false;
Douglas Gregor11c024b2010-09-28 20:50:54 +0000942 }
Chandler Carruthb1963742011-04-30 09:17:45 +0000943
944 // C++0x [class]p7:
945 // A standard-layout class is a class that:
946 // [...]
947 // -- either has no non-static data members in the most derived
948 // class and at most one base class with non-static data members,
949 // or has no base classes with non-static data members, and
950 // At this point we know that we have a non-static data member, so the last
951 // clause holds.
952 if (!data().HasNoNonEmptyBases)
Chandler Carruth583edf82011-04-30 10:07:30 +0000953 data().IsStandardLayout = false;
Chandler Carruthb1963742011-04-30 09:17:45 +0000954
Douglas Gregor9d5938a2010-09-28 20:38:10 +0000955 // If this is not a zero-length bit-field, then the class is not empty.
956 if (data().Empty) {
Richard Smithcaf33902011-10-10 18:28:20 +0000957 if (!Field->isBitField() ||
958 (!Field->getBitWidth()->isTypeDependent() &&
959 !Field->getBitWidth()->isValueDependent() &&
960 Field->getBitWidthValue(Context) != 0))
Douglas Gregor9d5938a2010-09-28 20:38:10 +0000961 data().Empty = false;
Douglas Gregor9d5938a2010-09-28 20:38:10 +0000962 }
Douglas Gregora832d3e2010-09-28 19:45:33 +0000963 }
Douglas Gregor457104e2010-09-29 04:25:11 +0000964
965 // Handle using declarations of conversion functions.
966 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(D))
967 if (Shadow->getDeclName().getNameKind()
968 == DeclarationName::CXXConversionFunctionName)
969 data().Conversions.addDecl(Shadow, Shadow->getAccess());
Douglas Gregoreebb5c12008-10-31 20:25:05 +0000970}
971
Argyrios Kyrtzidis5c4e0652012-01-23 16:58:45 +0000972bool CXXRecordDecl::isCLike() const {
973 if (getTagKind() == TTK_Class || !TemplateOrInstantiation.isNull())
974 return false;
975 if (!hasDefinition())
976 return true;
977
Argyrios Kyrtzidisc3c9ee52012-02-01 06:36:44 +0000978 return isPOD() && data().HasOnlyCMembers;
Argyrios Kyrtzidis5c4e0652012-01-23 16:58:45 +0000979}
980
Douglas Gregor9c702202012-02-10 07:45:31 +0000981void CXXRecordDecl::getCaptureFields(
982 llvm::DenseMap<const VarDecl *, FieldDecl *> &Captures,
Eli Friedman7e7da2d2012-02-11 00:18:00 +0000983 FieldDecl *&ThisCapture) const {
Douglas Gregor9c702202012-02-10 07:45:31 +0000984 Captures.clear();
985 ThisCapture = 0;
986
Douglas Gregorc8a73492012-02-13 15:44:47 +0000987 LambdaDefinitionData &Lambda = getLambdaData();
Douglas Gregor9c702202012-02-10 07:45:31 +0000988 RecordDecl::field_iterator Field = field_begin();
Douglas Gregore5561632012-02-13 17:20:40 +0000989 for (LambdaExpr::Capture *C = Lambda.Captures, *CEnd = C + Lambda.NumCaptures;
Douglas Gregor9c702202012-02-10 07:45:31 +0000990 C != CEnd; ++C, ++Field) {
991 if (C->capturesThis()) {
992 ThisCapture = *Field;
993 continue;
994 }
995
996 Captures[C->getCapturedVar()] = *Field;
997 }
998}
999
1000
John McCall1e3a1a72010-03-15 09:07:48 +00001001static CanQualType GetConversionType(ASTContext &Context, NamedDecl *Conv) {
1002 QualType T;
John McCallda4458e2010-03-31 01:36:47 +00001003 if (isa<UsingShadowDecl>(Conv))
1004 Conv = cast<UsingShadowDecl>(Conv)->getTargetDecl();
John McCall1e3a1a72010-03-15 09:07:48 +00001005 if (FunctionTemplateDecl *ConvTemp = dyn_cast<FunctionTemplateDecl>(Conv))
1006 T = ConvTemp->getTemplatedDecl()->getResultType();
1007 else
1008 T = cast<CXXConversionDecl>(Conv)->getConversionType();
1009 return Context.getCanonicalType(T);
Fariborz Jahanian3ee21f12009-10-07 20:43:36 +00001010}
1011
John McCall1e3a1a72010-03-15 09:07:48 +00001012/// Collect the visible conversions of a base class.
1013///
1014/// \param Base a base class of the class we're considering
1015/// \param InVirtual whether this base class is a virtual base (or a base
1016/// of a virtual base)
1017/// \param Access the access along the inheritance path to this base
1018/// \param ParentHiddenTypes the conversions provided by the inheritors
1019/// of this base
1020/// \param Output the set to which to add conversions from non-virtual bases
1021/// \param VOutput the set to which to add conversions from virtual bases
1022/// \param HiddenVBaseCs the set of conversions which were hidden in a
1023/// virtual base along some inheritance path
1024static void CollectVisibleConversions(ASTContext &Context,
1025 CXXRecordDecl *Record,
1026 bool InVirtual,
1027 AccessSpecifier Access,
1028 const llvm::SmallPtrSet<CanQualType, 8> &ParentHiddenTypes,
1029 UnresolvedSetImpl &Output,
1030 UnresolvedSetImpl &VOutput,
1031 llvm::SmallPtrSet<NamedDecl*, 8> &HiddenVBaseCs) {
1032 // The set of types which have conversions in this class or its
1033 // subclasses. As an optimization, we don't copy the derived set
1034 // unless it might change.
1035 const llvm::SmallPtrSet<CanQualType, 8> *HiddenTypes = &ParentHiddenTypes;
1036 llvm::SmallPtrSet<CanQualType, 8> HiddenTypesBuffer;
1037
1038 // Collect the direct conversions and figure out which conversions
1039 // will be hidden in the subclasses.
1040 UnresolvedSetImpl &Cs = *Record->getConversionFunctions();
1041 if (!Cs.empty()) {
1042 HiddenTypesBuffer = ParentHiddenTypes;
1043 HiddenTypes = &HiddenTypesBuffer;
1044
1045 for (UnresolvedSetIterator I = Cs.begin(), E = Cs.end(); I != E; ++I) {
1046 bool Hidden =
1047 !HiddenTypesBuffer.insert(GetConversionType(Context, I.getDecl()));
1048
1049 // If this conversion is hidden and we're in a virtual base,
1050 // remember that it's hidden along some inheritance path.
1051 if (Hidden && InVirtual)
1052 HiddenVBaseCs.insert(cast<NamedDecl>(I.getDecl()->getCanonicalDecl()));
1053
1054 // If this conversion isn't hidden, add it to the appropriate output.
1055 else if (!Hidden) {
1056 AccessSpecifier IAccess
1057 = CXXRecordDecl::MergeAccess(Access, I.getAccess());
1058
1059 if (InVirtual)
1060 VOutput.addDecl(I.getDecl(), IAccess);
Fariborz Jahanianb394f502009-09-12 18:26:03 +00001061 else
John McCall1e3a1a72010-03-15 09:07:48 +00001062 Output.addDecl(I.getDecl(), IAccess);
Fariborz Jahanianb54ccb22009-09-11 21:44:33 +00001063 }
1064 }
1065 }
Sebastian Redl1054fae2009-10-25 17:03:50 +00001066
John McCall1e3a1a72010-03-15 09:07:48 +00001067 // Collect information recursively from any base classes.
1068 for (CXXRecordDecl::base_class_iterator
1069 I = Record->bases_begin(), E = Record->bases_end(); I != E; ++I) {
1070 const RecordType *RT = I->getType()->getAs<RecordType>();
1071 if (!RT) continue;
Sebastian Redl1054fae2009-10-25 17:03:50 +00001072
John McCall1e3a1a72010-03-15 09:07:48 +00001073 AccessSpecifier BaseAccess
1074 = CXXRecordDecl::MergeAccess(Access, I->getAccessSpecifier());
1075 bool BaseInVirtual = InVirtual || I->isVirtual();
Sebastian Redl1054fae2009-10-25 17:03:50 +00001076
John McCall1e3a1a72010-03-15 09:07:48 +00001077 CXXRecordDecl *Base = cast<CXXRecordDecl>(RT->getDecl());
1078 CollectVisibleConversions(Context, Base, BaseInVirtual, BaseAccess,
1079 *HiddenTypes, Output, VOutput, HiddenVBaseCs);
Fariborz Jahanianb54ccb22009-09-11 21:44:33 +00001080 }
John McCall1e3a1a72010-03-15 09:07:48 +00001081}
Sebastian Redl1054fae2009-10-25 17:03:50 +00001082
John McCall1e3a1a72010-03-15 09:07:48 +00001083/// Collect the visible conversions of a class.
1084///
1085/// This would be extremely straightforward if it weren't for virtual
1086/// bases. It might be worth special-casing that, really.
1087static void CollectVisibleConversions(ASTContext &Context,
1088 CXXRecordDecl *Record,
1089 UnresolvedSetImpl &Output) {
1090 // The collection of all conversions in virtual bases that we've
1091 // found. These will be added to the output as long as they don't
1092 // appear in the hidden-conversions set.
1093 UnresolvedSet<8> VBaseCs;
1094
1095 // The set of conversions in virtual bases that we've determined to
1096 // be hidden.
1097 llvm::SmallPtrSet<NamedDecl*, 8> HiddenVBaseCs;
1098
1099 // The set of types hidden by classes derived from this one.
1100 llvm::SmallPtrSet<CanQualType, 8> HiddenTypes;
1101
1102 // Go ahead and collect the direct conversions and add them to the
1103 // hidden-types set.
1104 UnresolvedSetImpl &Cs = *Record->getConversionFunctions();
1105 Output.append(Cs.begin(), Cs.end());
1106 for (UnresolvedSetIterator I = Cs.begin(), E = Cs.end(); I != E; ++I)
1107 HiddenTypes.insert(GetConversionType(Context, I.getDecl()));
1108
1109 // Recursively collect conversions from base classes.
1110 for (CXXRecordDecl::base_class_iterator
1111 I = Record->bases_begin(), E = Record->bases_end(); I != E; ++I) {
1112 const RecordType *RT = I->getType()->getAs<RecordType>();
1113 if (!RT) continue;
1114
1115 CollectVisibleConversions(Context, cast<CXXRecordDecl>(RT->getDecl()),
1116 I->isVirtual(), I->getAccessSpecifier(),
1117 HiddenTypes, Output, VBaseCs, HiddenVBaseCs);
1118 }
1119
1120 // Add any unhidden conversions provided by virtual bases.
1121 for (UnresolvedSetIterator I = VBaseCs.begin(), E = VBaseCs.end();
1122 I != E; ++I) {
1123 if (!HiddenVBaseCs.count(cast<NamedDecl>(I.getDecl()->getCanonicalDecl())))
1124 Output.addDecl(I.getDecl(), I.getAccess());
Fariborz Jahanianb54ccb22009-09-11 21:44:33 +00001125 }
Fariborz Jahanianb394f502009-09-12 18:26:03 +00001126}
1127
1128/// getVisibleConversionFunctions - get all conversion functions visible
1129/// in current class; including conversion function templates.
John McCallad371252010-01-20 00:46:10 +00001130const UnresolvedSetImpl *CXXRecordDecl::getVisibleConversionFunctions() {
Fariborz Jahanianb394f502009-09-12 18:26:03 +00001131 // If root class, all conversions are visible.
1132 if (bases_begin() == bases_end())
John McCall67da35c2010-02-04 22:26:26 +00001133 return &data().Conversions;
Fariborz Jahanianb394f502009-09-12 18:26:03 +00001134 // If visible conversion list is already evaluated, return it.
John McCall67da35c2010-02-04 22:26:26 +00001135 if (data().ComputedVisibleConversions)
1136 return &data().VisibleConversions;
John McCall1e3a1a72010-03-15 09:07:48 +00001137 CollectVisibleConversions(getASTContext(), this, data().VisibleConversions);
John McCall67da35c2010-02-04 22:26:26 +00001138 data().ComputedVisibleConversions = true;
1139 return &data().VisibleConversions;
Fariborz Jahanianb54ccb22009-09-11 21:44:33 +00001140}
1141
John McCallda4458e2010-03-31 01:36:47 +00001142void CXXRecordDecl::removeConversion(const NamedDecl *ConvDecl) {
1143 // This operation is O(N) but extremely rare. Sema only uses it to
1144 // remove UsingShadowDecls in a class that were followed by a direct
1145 // declaration, e.g.:
1146 // class A : B {
1147 // using B::operator int;
1148 // operator int();
1149 // };
1150 // This is uncommon by itself and even more uncommon in conjunction
1151 // with sufficiently large numbers of directly-declared conversions
1152 // that asymptotic behavior matters.
1153
1154 UnresolvedSetImpl &Convs = *getConversionFunctions();
1155 for (unsigned I = 0, E = Convs.size(); I != E; ++I) {
1156 if (Convs[I].getDecl() == ConvDecl) {
1157 Convs.erase(I);
1158 assert(std::find(Convs.begin(), Convs.end(), ConvDecl) == Convs.end()
1159 && "conversion was found multiple times in unresolved set");
1160 return;
1161 }
1162 }
1163
1164 llvm_unreachable("conversion not found in set!");
Douglas Gregor05155d82009-08-21 23:19:43 +00001165}
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00001166
Douglas Gregorbbe8f462009-10-08 15:14:33 +00001167CXXRecordDecl *CXXRecordDecl::getInstantiatedFromMemberClass() const {
Douglas Gregor06db9f52009-10-12 20:18:28 +00001168 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo())
Douglas Gregorbbe8f462009-10-08 15:14:33 +00001169 return cast<CXXRecordDecl>(MSInfo->getInstantiatedFrom());
1170
1171 return 0;
1172}
1173
Douglas Gregor06db9f52009-10-12 20:18:28 +00001174MemberSpecializationInfo *CXXRecordDecl::getMemberSpecializationInfo() const {
1175 return TemplateOrInstantiation.dyn_cast<MemberSpecializationInfo *>();
1176}
1177
Douglas Gregorbbe8f462009-10-08 15:14:33 +00001178void
1179CXXRecordDecl::setInstantiationOfMemberClass(CXXRecordDecl *RD,
1180 TemplateSpecializationKind TSK) {
1181 assert(TemplateOrInstantiation.isNull() &&
1182 "Previous template or instantiation?");
1183 assert(!isa<ClassTemplateSpecializationDecl>(this));
1184 TemplateOrInstantiation
1185 = new (getASTContext()) MemberSpecializationInfo(RD, TSK);
1186}
1187
Anders Carlsson27cfc6e2009-12-07 06:33:48 +00001188TemplateSpecializationKind CXXRecordDecl::getTemplateSpecializationKind() const{
1189 if (const ClassTemplateSpecializationDecl *Spec
Douglas Gregorbbe8f462009-10-08 15:14:33 +00001190 = dyn_cast<ClassTemplateSpecializationDecl>(this))
1191 return Spec->getSpecializationKind();
1192
Douglas Gregor06db9f52009-10-12 20:18:28 +00001193 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo())
Douglas Gregorbbe8f462009-10-08 15:14:33 +00001194 return MSInfo->getTemplateSpecializationKind();
1195
1196 return TSK_Undeclared;
1197}
1198
1199void
1200CXXRecordDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK) {
1201 if (ClassTemplateSpecializationDecl *Spec
1202 = dyn_cast<ClassTemplateSpecializationDecl>(this)) {
1203 Spec->setSpecializationKind(TSK);
1204 return;
1205 }
1206
Douglas Gregor06db9f52009-10-12 20:18:28 +00001207 if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) {
Douglas Gregorbbe8f462009-10-08 15:14:33 +00001208 MSInfo->setTemplateSpecializationKind(TSK);
1209 return;
1210 }
1211
David Blaikie83d382b2011-09-23 05:06:16 +00001212 llvm_unreachable("Not a class template or member class specialization");
Douglas Gregorbbe8f462009-10-08 15:14:33 +00001213}
1214
Douglas Gregorbac74902010-07-01 14:13:13 +00001215CXXDestructorDecl *CXXRecordDecl::getDestructor() const {
1216 ASTContext &Context = getASTContext();
Anders Carlsson0a637412009-05-29 21:03:38 +00001217 QualType ClassType = Context.getTypeDeclType(this);
Mike Stump11289f42009-09-09 15:08:12 +00001218
1219 DeclarationName Name
Douglas Gregor2211d342009-08-05 05:36:45 +00001220 = Context.DeclarationNames.getCXXDestructorName(
1221 Context.getCanonicalType(ClassType));
Anders Carlsson0a637412009-05-29 21:03:38 +00001222
John McCallf8ff7b92010-02-23 00:48:20 +00001223 DeclContext::lookup_const_iterator I, E;
Mike Stump11289f42009-09-09 15:08:12 +00001224 llvm::tie(I, E) = lookup(Name);
Sebastian Redlb469afb2010-09-02 23:19:42 +00001225 if (I == E)
1226 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00001227
Anders Carlssonf98849e2009-12-02 17:15:43 +00001228 CXXDestructorDecl *Dtor = cast<CXXDestructorDecl>(*I);
Anders Carlsson0a637412009-05-29 21:03:38 +00001229 return Dtor;
1230}
1231
Douglas Gregorb11aad82011-02-19 18:51:44 +00001232void CXXRecordDecl::completeDefinition() {
1233 completeDefinition(0);
1234}
1235
1236void CXXRecordDecl::completeDefinition(CXXFinalOverriderMap *FinalOverriders) {
1237 RecordDecl::completeDefinition();
1238
John McCall31168b02011-06-15 23:02:42 +00001239 if (hasObjectMember() && getASTContext().getLangOptions().ObjCAutoRefCount) {
1240 // Objective-C Automatic Reference Counting:
1241 // If a class has a non-static data member of Objective-C pointer
1242 // type (or array thereof), it is a non-POD type and its
1243 // default constructor (if any), copy constructor, copy assignment
1244 // operator, and destructor are non-trivial.
1245 struct DefinitionData &Data = data();
1246 Data.PlainOldData = false;
1247 Data.HasTrivialDefaultConstructor = false;
1248 Data.HasTrivialCopyConstructor = false;
1249 Data.HasTrivialCopyAssignment = false;
1250 Data.HasTrivialDestructor = false;
1251 }
1252
Douglas Gregor8fb95122010-09-29 00:15:42 +00001253 // If the class may be abstract (but hasn't been marked as such), check for
1254 // any pure final overriders.
1255 if (mayBeAbstract()) {
1256 CXXFinalOverriderMap MyFinalOverriders;
1257 if (!FinalOverriders) {
1258 getFinalOverriders(MyFinalOverriders);
1259 FinalOverriders = &MyFinalOverriders;
1260 }
1261
1262 bool Done = false;
1263 for (CXXFinalOverriderMap::iterator M = FinalOverriders->begin(),
1264 MEnd = FinalOverriders->end();
1265 M != MEnd && !Done; ++M) {
1266 for (OverridingMethods::iterator SO = M->second.begin(),
1267 SOEnd = M->second.end();
1268 SO != SOEnd && !Done; ++SO) {
1269 assert(SO->second.size() > 0 &&
1270 "All virtual functions have overridding virtual functions");
1271
1272 // C++ [class.abstract]p4:
1273 // A class is abstract if it contains or inherits at least one
1274 // pure virtual function for which the final overrider is pure
1275 // virtual.
1276 if (SO->second.front().Method->isPure()) {
1277 data().Abstract = true;
1278 Done = true;
1279 break;
1280 }
1281 }
1282 }
1283 }
Douglas Gregor457104e2010-09-29 04:25:11 +00001284
1285 // Set access bits correctly on the directly-declared conversions.
1286 for (UnresolvedSetIterator I = data().Conversions.begin(),
1287 E = data().Conversions.end();
1288 I != E; ++I)
1289 data().Conversions.setAccess(I, (*I)->getAccess());
Douglas Gregor8fb95122010-09-29 00:15:42 +00001290}
1291
1292bool CXXRecordDecl::mayBeAbstract() const {
1293 if (data().Abstract || isInvalidDecl() || !data().Polymorphic ||
1294 isDependentContext())
1295 return false;
1296
1297 for (CXXRecordDecl::base_class_const_iterator B = bases_begin(),
1298 BEnd = bases_end();
1299 B != BEnd; ++B) {
1300 CXXRecordDecl *BaseDecl
1301 = cast<CXXRecordDecl>(B->getType()->getAs<RecordType>()->getDecl());
1302 if (BaseDecl->isAbstract())
1303 return true;
1304 }
1305
1306 return false;
1307}
1308
David Blaikie68e081d2011-12-20 02:48:34 +00001309void CXXMethodDecl::anchor() { }
1310
Ted Kremenek21475702008-09-05 17:16:31 +00001311CXXMethodDecl *
1312CXXMethodDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001313 SourceLocation StartLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001314 const DeclarationNameInfo &NameInfo,
John McCallbcd03502009-12-07 02:54:59 +00001315 QualType T, TypeSourceInfo *TInfo,
Douglas Gregorf2f08062011-03-08 17:10:18 +00001316 bool isStatic, StorageClass SCAsWritten, bool isInline,
Richard Smitha77a0a62011-08-15 21:04:07 +00001317 bool isConstexpr, SourceLocation EndLocation) {
Abramo Bagnaradff19302011-03-08 08:55:46 +00001318 return new (C) CXXMethodDecl(CXXMethod, RD, StartLoc, NameInfo, T, TInfo,
Richard Smitha77a0a62011-08-15 21:04:07 +00001319 isStatic, SCAsWritten, isInline, isConstexpr,
1320 EndLocation);
Ted Kremenek21475702008-09-05 17:16:31 +00001321}
1322
Douglas Gregor72172e92012-01-05 21:55:30 +00001323CXXMethodDecl *CXXMethodDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1324 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(CXXMethodDecl));
1325 return new (Mem) CXXMethodDecl(CXXMethod, 0, SourceLocation(),
1326 DeclarationNameInfo(), QualType(),
1327 0, false, SC_None, false, false,
1328 SourceLocation());
1329}
1330
Douglas Gregorbb3e12f2009-09-29 18:16:17 +00001331bool CXXMethodDecl::isUsualDeallocationFunction() const {
1332 if (getOverloadedOperator() != OO_Delete &&
1333 getOverloadedOperator() != OO_Array_Delete)
1334 return false;
Douglas Gregor6642ca22010-02-26 05:06:18 +00001335
1336 // C++ [basic.stc.dynamic.deallocation]p2:
1337 // A template instance is never a usual deallocation function,
1338 // regardless of its signature.
1339 if (getPrimaryTemplate())
1340 return false;
1341
Douglas Gregorbb3e12f2009-09-29 18:16:17 +00001342 // C++ [basic.stc.dynamic.deallocation]p2:
1343 // If a class T has a member deallocation function named operator delete
1344 // with exactly one parameter, then that function is a usual (non-placement)
1345 // deallocation function. [...]
1346 if (getNumParams() == 1)
1347 return true;
1348
1349 // C++ [basic.stc.dynamic.deallocation]p2:
1350 // [...] If class T does not declare such an operator delete but does
1351 // declare a member deallocation function named operator delete with
1352 // exactly two parameters, the second of which has type std::size_t (18.1),
1353 // then this function is a usual deallocation function.
1354 ASTContext &Context = getASTContext();
1355 if (getNumParams() != 2 ||
Chandler Carruth75cc3592010-02-08 18:54:05 +00001356 !Context.hasSameUnqualifiedType(getParamDecl(1)->getType(),
1357 Context.getSizeType()))
Douglas Gregorbb3e12f2009-09-29 18:16:17 +00001358 return false;
1359
1360 // This function is a usual deallocation function if there are no
1361 // single-parameter deallocation functions of the same kind.
1362 for (DeclContext::lookup_const_result R = getDeclContext()->lookup(getDeclName());
1363 R.first != R.second; ++R.first) {
1364 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*R.first))
1365 if (FD->getNumParams() == 1)
1366 return false;
1367 }
1368
1369 return true;
1370}
1371
Douglas Gregorb139cd52010-05-01 20:49:11 +00001372bool CXXMethodDecl::isCopyAssignmentOperator() const {
Alexis Huntfcaeae42011-05-25 20:50:04 +00001373 // C++0x [class.copy]p17:
Douglas Gregorb139cd52010-05-01 20:49:11 +00001374 // A user-declared copy assignment operator X::operator= is a non-static
1375 // non-template member function of class X with exactly one parameter of
1376 // type X, X&, const X&, volatile X& or const volatile X&.
1377 if (/*operator=*/getOverloadedOperator() != OO_Equal ||
1378 /*non-static*/ isStatic() ||
Alexis Huntfcaeae42011-05-25 20:50:04 +00001379 /*non-template*/getPrimaryTemplate() || getDescribedFunctionTemplate())
Douglas Gregorb139cd52010-05-01 20:49:11 +00001380 return false;
1381
1382 QualType ParamType = getParamDecl(0)->getType();
1383 if (const LValueReferenceType *Ref = ParamType->getAs<LValueReferenceType>())
1384 ParamType = Ref->getPointeeType();
1385
1386 ASTContext &Context = getASTContext();
1387 QualType ClassType
1388 = Context.getCanonicalType(Context.getTypeDeclType(getParent()));
1389 return Context.hasSameUnqualifiedType(ClassType, ParamType);
1390}
1391
Alexis Huntfcaeae42011-05-25 20:50:04 +00001392bool CXXMethodDecl::isMoveAssignmentOperator() const {
1393 // C++0x [class.copy]p19:
1394 // A user-declared move assignment operator X::operator= is a non-static
1395 // non-template member function of class X with exactly one parameter of type
1396 // X&&, const X&&, volatile X&&, or const volatile X&&.
1397 if (getOverloadedOperator() != OO_Equal || isStatic() ||
1398 getPrimaryTemplate() || getDescribedFunctionTemplate())
1399 return false;
1400
1401 QualType ParamType = getParamDecl(0)->getType();
1402 if (!isa<RValueReferenceType>(ParamType))
1403 return false;
1404 ParamType = ParamType->getPointeeType();
1405
1406 ASTContext &Context = getASTContext();
1407 QualType ClassType
1408 = Context.getCanonicalType(Context.getTypeDeclType(getParent()));
1409 return Context.hasSameUnqualifiedType(ClassType, ParamType);
1410}
1411
Anders Carlsson36d87e12009-05-16 23:58:37 +00001412void CXXMethodDecl::addOverriddenMethod(const CXXMethodDecl *MD) {
Anders Carlssonf3935b42009-12-04 05:51:56 +00001413 assert(MD->isCanonicalDecl() && "Method is not canonical!");
Anders Carlssonbd32c432010-01-30 17:42:34 +00001414 assert(!MD->getParent()->isDependentContext() &&
1415 "Can't add an overridden method to a class template!");
1416
Douglas Gregor832940b2010-03-02 23:58:15 +00001417 getASTContext().addOverriddenMethod(this, MD);
Anders Carlsson36d87e12009-05-16 23:58:37 +00001418}
1419
1420CXXMethodDecl::method_iterator CXXMethodDecl::begin_overridden_methods() const {
Douglas Gregor832940b2010-03-02 23:58:15 +00001421 return getASTContext().overridden_methods_begin(this);
Anders Carlsson36d87e12009-05-16 23:58:37 +00001422}
1423
1424CXXMethodDecl::method_iterator CXXMethodDecl::end_overridden_methods() const {
Douglas Gregor832940b2010-03-02 23:58:15 +00001425 return getASTContext().overridden_methods_end(this);
Anders Carlsson36d87e12009-05-16 23:58:37 +00001426}
1427
Argyrios Kyrtzidis6685e8a2010-07-04 21:44:35 +00001428unsigned CXXMethodDecl::size_overridden_methods() const {
1429 return getASTContext().overridden_methods_size(this);
1430}
1431
Ted Kremenek21475702008-09-05 17:16:31 +00001432QualType CXXMethodDecl::getThisType(ASTContext &C) const {
Argyrios Kyrtzidis962c20e2008-10-24 22:28:18 +00001433 // C++ 9.3.2p1: The type of this in a member function of a class X is X*.
1434 // If the member function is declared const, the type of this is const X*,
1435 // if the member function is declared volatile, the type of this is
1436 // volatile X*, and if the member function is declared const volatile,
1437 // the type of this is const volatile X*.
1438
Ted Kremenek21475702008-09-05 17:16:31 +00001439 assert(isInstance() && "No 'this' for static methods!");
Anders Carlsson20ee0ed2009-06-13 02:59:33 +00001440
John McCalle78aac42010-03-10 03:28:59 +00001441 QualType ClassTy = C.getTypeDeclType(getParent());
John McCall8ccfcb52009-09-24 19:53:00 +00001442 ClassTy = C.getQualifiedType(ClassTy,
1443 Qualifiers::fromCVRMask(getTypeQualifiers()));
Anders Carlsson7ca3f6f2009-07-10 21:35:09 +00001444 return C.getPointerType(ClassTy);
Ted Kremenek21475702008-09-05 17:16:31 +00001445}
1446
Eli Friedman71a26d82009-12-06 20:50:05 +00001447bool CXXMethodDecl::hasInlineBody() const {
Douglas Gregora318efd2010-01-05 19:06:31 +00001448 // If this function is a template instantiation, look at the template from
1449 // which it was instantiated.
1450 const FunctionDecl *CheckFn = getTemplateInstantiationPattern();
1451 if (!CheckFn)
1452 CheckFn = this;
1453
Eli Friedman71a26d82009-12-06 20:50:05 +00001454 const FunctionDecl *fn;
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00001455 return CheckFn->hasBody(fn) && !fn->isOutOfLine();
Eli Friedman71a26d82009-12-06 20:50:05 +00001456}
1457
Alexis Hunt1d792652011-01-08 20:30:50 +00001458CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1459 TypeSourceInfo *TInfo, bool IsVirtual,
1460 SourceLocation L, Expr *Init,
1461 SourceLocation R,
1462 SourceLocation EllipsisLoc)
Alexis Hunta50dd462011-01-08 23:01:16 +00001463 : Initializee(TInfo), MemberOrEllipsisLocation(EllipsisLoc), Init(Init),
Douglas Gregord73f3dd2011-11-01 01:16:03 +00001464 LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(IsVirtual),
1465 IsWritten(false), SourceOrderOrNumArrayIndices(0)
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001466{
Douglas Gregore8381c02008-11-05 04:29:56 +00001467}
1468
Alexis Hunt1d792652011-01-08 20:30:50 +00001469CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1470 FieldDecl *Member,
1471 SourceLocation MemberLoc,
1472 SourceLocation L, Expr *Init,
1473 SourceLocation R)
Alexis Hunta50dd462011-01-08 23:01:16 +00001474 : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init),
Douglas Gregord73f3dd2011-11-01 01:16:03 +00001475 LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(false),
Francois Pichetd583da02010-12-04 09:14:42 +00001476 IsWritten(false), SourceOrderOrNumArrayIndices(0)
1477{
1478}
1479
Alexis Hunt1d792652011-01-08 20:30:50 +00001480CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
1481 IndirectFieldDecl *Member,
1482 SourceLocation MemberLoc,
1483 SourceLocation L, Expr *Init,
1484 SourceLocation R)
Alexis Hunta50dd462011-01-08 23:01:16 +00001485 : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init),
Douglas Gregord73f3dd2011-11-01 01:16:03 +00001486 LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(false),
Abramo Bagnara341d7832010-05-26 18:09:23 +00001487 IsWritten(false), SourceOrderOrNumArrayIndices(0)
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001488{
Douglas Gregore8381c02008-11-05 04:29:56 +00001489}
1490
Alexis Hunt1d792652011-01-08 20:30:50 +00001491CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
Douglas Gregord73f3dd2011-11-01 01:16:03 +00001492 TypeSourceInfo *TInfo,
1493 SourceLocation L, Expr *Init,
Alexis Huntc5575cc2011-02-26 19:13:13 +00001494 SourceLocation R)
Douglas Gregord73f3dd2011-11-01 01:16:03 +00001495 : Initializee(TInfo), MemberOrEllipsisLocation(), Init(Init),
1496 LParenLoc(L), RParenLoc(R), IsDelegating(true), IsVirtual(false),
Alexis Huntc5575cc2011-02-26 19:13:13 +00001497 IsWritten(false), SourceOrderOrNumArrayIndices(0)
1498{
1499}
1500
1501CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
Alexis Hunt1d792652011-01-08 20:30:50 +00001502 FieldDecl *Member,
1503 SourceLocation MemberLoc,
1504 SourceLocation L, Expr *Init,
1505 SourceLocation R,
1506 VarDecl **Indices,
1507 unsigned NumIndices)
Alexis Hunta50dd462011-01-08 23:01:16 +00001508 : Initializee(Member), MemberOrEllipsisLocation(MemberLoc), Init(Init),
Francois Pichetd583da02010-12-04 09:14:42 +00001509 LParenLoc(L), RParenLoc(R), IsVirtual(false),
Abramo Bagnara341d7832010-05-26 18:09:23 +00001510 IsWritten(false), SourceOrderOrNumArrayIndices(NumIndices)
Douglas Gregor94f9a482010-05-05 05:51:00 +00001511{
1512 VarDecl **MyIndices = reinterpret_cast<VarDecl **> (this + 1);
1513 memcpy(MyIndices, Indices, NumIndices * sizeof(VarDecl *));
1514}
1515
Alexis Hunt1d792652011-01-08 20:30:50 +00001516CXXCtorInitializer *CXXCtorInitializer::Create(ASTContext &Context,
1517 FieldDecl *Member,
1518 SourceLocation MemberLoc,
1519 SourceLocation L, Expr *Init,
1520 SourceLocation R,
1521 VarDecl **Indices,
1522 unsigned NumIndices) {
1523 void *Mem = Context.Allocate(sizeof(CXXCtorInitializer) +
Douglas Gregor94f9a482010-05-05 05:51:00 +00001524 sizeof(VarDecl *) * NumIndices,
Alexis Hunt1d792652011-01-08 20:30:50 +00001525 llvm::alignOf<CXXCtorInitializer>());
Alexis Hunta50dd462011-01-08 23:01:16 +00001526 return new (Mem) CXXCtorInitializer(Context, Member, MemberLoc, L, Init, R,
1527 Indices, NumIndices);
Douglas Gregor94f9a482010-05-05 05:51:00 +00001528}
1529
Alexis Hunt1d792652011-01-08 20:30:50 +00001530TypeLoc CXXCtorInitializer::getBaseClassLoc() const {
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001531 if (isBaseInitializer())
Alexis Hunta50dd462011-01-08 23:01:16 +00001532 return Initializee.get<TypeSourceInfo*>()->getTypeLoc();
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001533 else
1534 return TypeLoc();
1535}
1536
Alexis Hunt1d792652011-01-08 20:30:50 +00001537const Type *CXXCtorInitializer::getBaseClass() const {
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001538 if (isBaseInitializer())
Alexis Hunta50dd462011-01-08 23:01:16 +00001539 return Initializee.get<TypeSourceInfo*>()->getType().getTypePtr();
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001540 else
1541 return 0;
1542}
1543
Alexis Hunt1d792652011-01-08 20:30:50 +00001544SourceLocation CXXCtorInitializer::getSourceLocation() const {
Douglas Gregord73f3dd2011-11-01 01:16:03 +00001545 if (isAnyMemberInitializer())
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001546 return getMemberLocation();
Richard Smith938f40b2011-06-11 17:19:42 +00001547
1548 if (isInClassMemberInitializer())
1549 return getAnyMember()->getLocation();
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001550
Douglas Gregord73f3dd2011-11-01 01:16:03 +00001551 if (TypeSourceInfo *TSInfo = Initializee.get<TypeSourceInfo*>())
1552 return TSInfo->getTypeLoc().getLocalSourceRange().getBegin();
1553
1554 return SourceLocation();
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001555}
1556
Alexis Hunt1d792652011-01-08 20:30:50 +00001557SourceRange CXXCtorInitializer::getSourceRange() const {
Richard Smith938f40b2011-06-11 17:19:42 +00001558 if (isInClassMemberInitializer()) {
1559 FieldDecl *D = getAnyMember();
1560 if (Expr *I = D->getInClassInitializer())
1561 return I->getSourceRange();
1562 return SourceRange();
1563 }
1564
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001565 return SourceRange(getSourceLocation(), getRParenLoc());
Douglas Gregore8381c02008-11-05 04:29:56 +00001566}
1567
David Blaikie68e081d2011-12-20 02:48:34 +00001568void CXXConstructorDecl::anchor() { }
1569
Douglas Gregor61956c42008-10-31 09:07:45 +00001570CXXConstructorDecl *
Douglas Gregor72172e92012-01-05 21:55:30 +00001571CXXConstructorDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1572 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(CXXConstructorDecl));
1573 return new (Mem) CXXConstructorDecl(0, SourceLocation(),DeclarationNameInfo(),
1574 QualType(), 0, false, false, false,false);
Chris Lattnerca025db2010-05-07 21:43:38 +00001575}
1576
1577CXXConstructorDecl *
Douglas Gregor61956c42008-10-31 09:07:45 +00001578CXXConstructorDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001579 SourceLocation StartLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001580 const DeclarationNameInfo &NameInfo,
John McCallbcd03502009-12-07 02:54:59 +00001581 QualType T, TypeSourceInfo *TInfo,
Richard Smitha77a0a62011-08-15 21:04:07 +00001582 bool isExplicit, bool isInline,
1583 bool isImplicitlyDeclared, bool isConstexpr) {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001584 assert(NameInfo.getName().getNameKind()
1585 == DeclarationName::CXXConstructorName &&
Douglas Gregor77324f32008-11-17 14:58:09 +00001586 "Name must refer to a constructor");
Abramo Bagnaradff19302011-03-08 08:55:46 +00001587 return new (C) CXXConstructorDecl(RD, StartLoc, NameInfo, T, TInfo,
Richard Smitha77a0a62011-08-15 21:04:07 +00001588 isExplicit, isInline, isImplicitlyDeclared,
1589 isConstexpr);
Douglas Gregor61956c42008-10-31 09:07:45 +00001590}
1591
Douglas Gregord73f3dd2011-11-01 01:16:03 +00001592CXXConstructorDecl *CXXConstructorDecl::getTargetConstructor() const {
1593 assert(isDelegatingConstructor() && "Not a delegating constructor!");
1594 Expr *E = (*init_begin())->getInit()->IgnoreImplicit();
1595 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(E))
1596 return Construct->getConstructor();
1597
1598 return 0;
1599}
1600
Douglas Gregoreebb5c12008-10-31 20:25:05 +00001601bool CXXConstructorDecl::isDefaultConstructor() const {
1602 // C++ [class.ctor]p5:
Douglas Gregorcfd8ddc2008-11-05 16:20:31 +00001603 // A default constructor for a class X is a constructor of class
1604 // X that can be called without an argument.
Douglas Gregoreebb5c12008-10-31 20:25:05 +00001605 return (getNumParams() == 0) ||
Anders Carlsson6eb55572009-08-25 05:12:04 +00001606 (getNumParams() > 0 && getParamDecl(0)->hasDefaultArg());
Douglas Gregoreebb5c12008-10-31 20:25:05 +00001607}
1608
Mike Stump11289f42009-09-09 15:08:12 +00001609bool
Douglas Gregor507eb872009-12-22 00:34:07 +00001610CXXConstructorDecl::isCopyConstructor(unsigned &TypeQuals) const {
Douglas Gregorf282a762011-01-21 19:38:21 +00001611 return isCopyOrMoveConstructor(TypeQuals) &&
1612 getParamDecl(0)->getType()->isLValueReferenceType();
1613}
1614
1615bool CXXConstructorDecl::isMoveConstructor(unsigned &TypeQuals) const {
1616 return isCopyOrMoveConstructor(TypeQuals) &&
1617 getParamDecl(0)->getType()->isRValueReferenceType();
1618}
1619
1620/// \brief Determine whether this is a copy or move constructor.
1621bool CXXConstructorDecl::isCopyOrMoveConstructor(unsigned &TypeQuals) const {
Douglas Gregoreebb5c12008-10-31 20:25:05 +00001622 // C++ [class.copy]p2:
Douglas Gregorcfd8ddc2008-11-05 16:20:31 +00001623 // A non-template constructor for class X is a copy constructor
1624 // if its first parameter is of type X&, const X&, volatile X& or
1625 // const volatile X&, and either there are no other parameters
1626 // or else all other parameters have default arguments (8.3.6).
Douglas Gregorf282a762011-01-21 19:38:21 +00001627 // C++0x [class.copy]p3:
1628 // A non-template constructor for class X is a move constructor if its
1629 // first parameter is of type X&&, const X&&, volatile X&&, or
1630 // const volatile X&&, and either there are no other parameters or else
1631 // all other parameters have default arguments.
Douglas Gregoreebb5c12008-10-31 20:25:05 +00001632 if ((getNumParams() < 1) ||
Douglas Gregora14b43b2009-10-13 23:45:19 +00001633 (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()) ||
Douglas Gregorff7028a2009-11-13 23:59:09 +00001634 (getPrimaryTemplate() != 0) ||
Douglas Gregora14b43b2009-10-13 23:45:19 +00001635 (getDescribedFunctionTemplate() != 0))
Douglas Gregoreebb5c12008-10-31 20:25:05 +00001636 return false;
Douglas Gregorf282a762011-01-21 19:38:21 +00001637
Douglas Gregoreebb5c12008-10-31 20:25:05 +00001638 const ParmVarDecl *Param = getParamDecl(0);
Douglas Gregorf282a762011-01-21 19:38:21 +00001639
1640 // Do we have a reference type?
1641 const ReferenceType *ParamRefType = Param->getType()->getAs<ReferenceType>();
Douglas Gregorff7028a2009-11-13 23:59:09 +00001642 if (!ParamRefType)
1643 return false;
Douglas Gregorf282a762011-01-21 19:38:21 +00001644
Douglas Gregorff7028a2009-11-13 23:59:09 +00001645 // Is it a reference to our class type?
Douglas Gregor507eb872009-12-22 00:34:07 +00001646 ASTContext &Context = getASTContext();
1647
Douglas Gregorff7028a2009-11-13 23:59:09 +00001648 CanQualType PointeeType
1649 = Context.getCanonicalType(ParamRefType->getPointeeType());
Douglas Gregorf70b2b42009-09-15 20:50:23 +00001650 CanQualType ClassTy
1651 = Context.getCanonicalType(Context.getTagDeclType(getParent()));
Douglas Gregoreebb5c12008-10-31 20:25:05 +00001652 if (PointeeType.getUnqualifiedType() != ClassTy)
1653 return false;
Douglas Gregorf282a762011-01-21 19:38:21 +00001654
John McCall8ccfcb52009-09-24 19:53:00 +00001655 // FIXME: other qualifiers?
Douglas Gregorf282a762011-01-21 19:38:21 +00001656
1657 // We have a copy or move constructor.
Douglas Gregoreebb5c12008-10-31 20:25:05 +00001658 TypeQuals = PointeeType.getCVRQualifiers();
Douglas Gregorf282a762011-01-21 19:38:21 +00001659 return true;
Douglas Gregoreebb5c12008-10-31 20:25:05 +00001660}
1661
Anders Carlssond20e7952009-08-28 16:57:08 +00001662bool CXXConstructorDecl::isConvertingConstructor(bool AllowExplicit) const {
Douglas Gregor26bee0b2008-10-31 16:23:19 +00001663 // C++ [class.conv.ctor]p1:
1664 // A constructor declared without the function-specifier explicit
1665 // that can be called with a single parameter specifies a
1666 // conversion from the type of its first parameter to the type of
1667 // its class. Such a constructor is called a converting
1668 // constructor.
Anders Carlssond20e7952009-08-28 16:57:08 +00001669 if (isExplicit() && !AllowExplicit)
Douglas Gregor26bee0b2008-10-31 16:23:19 +00001670 return false;
1671
Mike Stump11289f42009-09-09 15:08:12 +00001672 return (getNumParams() == 0 &&
John McCall9dd450b2009-09-21 23:43:11 +00001673 getType()->getAs<FunctionProtoType>()->isVariadic()) ||
Douglas Gregor26bee0b2008-10-31 16:23:19 +00001674 (getNumParams() == 1) ||
Anders Carlsson85446472009-06-06 04:14:07 +00001675 (getNumParams() > 1 && getParamDecl(1)->hasDefaultArg());
Douglas Gregor26bee0b2008-10-31 16:23:19 +00001676}
Douglas Gregor61956c42008-10-31 09:07:45 +00001677
Douglas Gregorbd6b17f2010-11-08 17:16:59 +00001678bool CXXConstructorDecl::isSpecializationCopyingObject() const {
Douglas Gregorffe14e32009-11-14 01:20:54 +00001679 if ((getNumParams() < 1) ||
1680 (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()) ||
1681 (getPrimaryTemplate() == 0) ||
1682 (getDescribedFunctionTemplate() != 0))
1683 return false;
1684
1685 const ParmVarDecl *Param = getParamDecl(0);
1686
1687 ASTContext &Context = getASTContext();
1688 CanQualType ParamType = Context.getCanonicalType(Param->getType());
1689
Douglas Gregorffe14e32009-11-14 01:20:54 +00001690 // Is it the same as our our class type?
1691 CanQualType ClassTy
1692 = Context.getCanonicalType(Context.getTagDeclType(getParent()));
1693 if (ParamType.getUnqualifiedType() != ClassTy)
1694 return false;
1695
1696 return true;
1697}
1698
Sebastian Redl08905022011-02-05 19:23:19 +00001699const CXXConstructorDecl *CXXConstructorDecl::getInheritedConstructor() const {
1700 // Hack: we store the inherited constructor in the overridden method table
1701 method_iterator It = begin_overridden_methods();
1702 if (It == end_overridden_methods())
1703 return 0;
1704
1705 return cast<CXXConstructorDecl>(*It);
1706}
1707
1708void
1709CXXConstructorDecl::setInheritedConstructor(const CXXConstructorDecl *BaseCtor){
1710 // Hack: we store the inherited constructor in the overridden method table
1711 assert(size_overridden_methods() == 0 && "Base ctor already set.");
1712 addOverriddenMethod(BaseCtor);
1713}
1714
David Blaikie68e081d2011-12-20 02:48:34 +00001715void CXXDestructorDecl::anchor() { }
1716
Douglas Gregor831c93f2008-11-05 20:51:48 +00001717CXXDestructorDecl *
Douglas Gregor72172e92012-01-05 21:55:30 +00001718CXXDestructorDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1719 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(CXXDestructorDecl));
1720 return new (Mem) CXXDestructorDecl(0, SourceLocation(), DeclarationNameInfo(),
Craig Silversteinaf8808d2010-10-21 00:44:50 +00001721 QualType(), 0, false, false);
Chris Lattnerca025db2010-05-07 21:43:38 +00001722}
1723
1724CXXDestructorDecl *
Douglas Gregor831c93f2008-11-05 20:51:48 +00001725CXXDestructorDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001726 SourceLocation StartLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001727 const DeclarationNameInfo &NameInfo,
Craig Silversteinaf8808d2010-10-21 00:44:50 +00001728 QualType T, TypeSourceInfo *TInfo,
Richard Smitha77a0a62011-08-15 21:04:07 +00001729 bool isInline, bool isImplicitlyDeclared) {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001730 assert(NameInfo.getName().getNameKind()
1731 == DeclarationName::CXXDestructorName &&
Douglas Gregor77324f32008-11-17 14:58:09 +00001732 "Name must refer to a destructor");
Abramo Bagnaradff19302011-03-08 08:55:46 +00001733 return new (C) CXXDestructorDecl(RD, StartLoc, NameInfo, T, TInfo, isInline,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001734 isImplicitlyDeclared);
Douglas Gregor831c93f2008-11-05 20:51:48 +00001735}
1736
David Blaikie68e081d2011-12-20 02:48:34 +00001737void CXXConversionDecl::anchor() { }
1738
Douglas Gregordbc5daf2008-11-07 20:08:42 +00001739CXXConversionDecl *
Douglas Gregor72172e92012-01-05 21:55:30 +00001740CXXConversionDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1741 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(CXXConversionDecl));
1742 return new (Mem) CXXConversionDecl(0, SourceLocation(), DeclarationNameInfo(),
1743 QualType(), 0, false, false, false,
1744 SourceLocation());
Chris Lattnerca025db2010-05-07 21:43:38 +00001745}
1746
1747CXXConversionDecl *
Douglas Gregordbc5daf2008-11-07 20:08:42 +00001748CXXConversionDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001749 SourceLocation StartLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001750 const DeclarationNameInfo &NameInfo,
John McCallbcd03502009-12-07 02:54:59 +00001751 QualType T, TypeSourceInfo *TInfo,
Douglas Gregorf2f08062011-03-08 17:10:18 +00001752 bool isInline, bool isExplicit,
Richard Smitha77a0a62011-08-15 21:04:07 +00001753 bool isConstexpr, SourceLocation EndLocation) {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001754 assert(NameInfo.getName().getNameKind()
1755 == DeclarationName::CXXConversionFunctionName &&
Douglas Gregor77324f32008-11-17 14:58:09 +00001756 "Name must refer to a conversion function");
Abramo Bagnaradff19302011-03-08 08:55:46 +00001757 return new (C) CXXConversionDecl(RD, StartLoc, NameInfo, T, TInfo,
Richard Smitha77a0a62011-08-15 21:04:07 +00001758 isInline, isExplicit, isConstexpr,
1759 EndLocation);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00001760}
1761
Douglas Gregord3b672c2012-02-16 01:06:16 +00001762bool CXXConversionDecl::isLambdaToBlockPointerConversion() const {
1763 return isImplicit() && getParent()->isLambda() &&
1764 getConversionType()->isBlockPointerType();
1765}
1766
1767Expr *CXXConversionDecl::getLambdaToBlockPointerCopyInit() const {
1768 assert(isLambdaToBlockPointerConversion());
1769 return getASTContext().LambdaBlockPointerInits[this];
1770}
1771
1772void CXXConversionDecl::setLambdaToBlockPointerCopyInit(Expr *Init) {
1773 assert(isLambdaToBlockPointerConversion());
1774 getASTContext().LambdaBlockPointerInits[this] = Init;
1775}
1776
David Blaikie68e081d2011-12-20 02:48:34 +00001777void LinkageSpecDecl::anchor() { }
1778
Chris Lattnerb8c18fa2008-11-04 16:51:42 +00001779LinkageSpecDecl *LinkageSpecDecl::Create(ASTContext &C,
Mike Stump11289f42009-09-09 15:08:12 +00001780 DeclContext *DC,
Abramo Bagnaraea947882011-03-08 16:41:52 +00001781 SourceLocation ExternLoc,
1782 SourceLocation LangLoc,
Abramo Bagnara4a8cda82011-03-03 14:52:38 +00001783 LanguageIDs Lang,
Abramo Bagnara4a8cda82011-03-03 14:52:38 +00001784 SourceLocation RBraceLoc) {
Abramo Bagnaraea947882011-03-08 16:41:52 +00001785 return new (C) LinkageSpecDecl(DC, ExternLoc, LangLoc, Lang, RBraceLoc);
Douglas Gregor29ff7d02008-12-16 22:23:02 +00001786}
Douglas Gregor889ceb72009-02-03 19:21:40 +00001787
Douglas Gregor72172e92012-01-05 21:55:30 +00001788LinkageSpecDecl *LinkageSpecDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1789 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(LinkageSpecDecl));
1790 return new (Mem) LinkageSpecDecl(0, SourceLocation(), SourceLocation(),
1791 lang_c, SourceLocation());
1792}
1793
David Blaikie68e081d2011-12-20 02:48:34 +00001794void UsingDirectiveDecl::anchor() { }
1795
Douglas Gregor889ceb72009-02-03 19:21:40 +00001796UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC,
1797 SourceLocation L,
1798 SourceLocation NamespaceLoc,
Douglas Gregor12441b32011-02-25 16:33:46 +00001799 NestedNameSpecifierLoc QualifierLoc,
Douglas Gregor889ceb72009-02-03 19:21:40 +00001800 SourceLocation IdentLoc,
Sebastian Redla6602e92009-11-23 15:34:23 +00001801 NamedDecl *Used,
Douglas Gregor889ceb72009-02-03 19:21:40 +00001802 DeclContext *CommonAncestor) {
Sebastian Redla6602e92009-11-23 15:34:23 +00001803 if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Used))
1804 Used = NS->getOriginalNamespace();
Douglas Gregor12441b32011-02-25 16:33:46 +00001805 return new (C) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc,
1806 IdentLoc, Used, CommonAncestor);
Douglas Gregor889ceb72009-02-03 19:21:40 +00001807}
1808
Douglas Gregor72172e92012-01-05 21:55:30 +00001809UsingDirectiveDecl *
1810UsingDirectiveDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1811 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(UsingDirectiveDecl));
1812 return new (Mem) UsingDirectiveDecl(0, SourceLocation(), SourceLocation(),
1813 NestedNameSpecifierLoc(),
1814 SourceLocation(), 0, 0);
1815}
1816
Sebastian Redla6602e92009-11-23 15:34:23 +00001817NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() {
1818 if (NamespaceAliasDecl *NA =
1819 dyn_cast_or_null<NamespaceAliasDecl>(NominatedNamespace))
1820 return NA->getNamespace();
1821 return cast_or_null<NamespaceDecl>(NominatedNamespace);
1822}
1823
Douglas Gregor72172e92012-01-05 21:55:30 +00001824void NamespaceDecl::anchor() { }
1825
Douglas Gregore57e7522012-01-07 09:11:48 +00001826NamespaceDecl::NamespaceDecl(DeclContext *DC, bool Inline,
1827 SourceLocation StartLoc,
1828 SourceLocation IdLoc, IdentifierInfo *Id,
1829 NamespaceDecl *PrevDecl)
1830 : NamedDecl(Namespace, DC, IdLoc, Id), DeclContext(Namespace),
1831 LocStart(StartLoc), RBraceLoc(), AnonOrFirstNamespaceAndInline(0, Inline)
1832{
1833 setPreviousDeclaration(PrevDecl);
1834
1835 if (PrevDecl)
1836 AnonOrFirstNamespaceAndInline.setPointer(PrevDecl->getOriginalNamespace());
1837}
1838
Douglas Gregor72172e92012-01-05 21:55:30 +00001839NamespaceDecl *NamespaceDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregore57e7522012-01-07 09:11:48 +00001840 bool Inline, SourceLocation StartLoc,
1841 SourceLocation IdLoc, IdentifierInfo *Id,
1842 NamespaceDecl *PrevDecl) {
1843 return new (C) NamespaceDecl(DC, Inline, StartLoc, IdLoc, Id, PrevDecl);
Douglas Gregor72172e92012-01-05 21:55:30 +00001844}
1845
1846NamespaceDecl *NamespaceDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1847 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(NamespaceDecl));
Douglas Gregore57e7522012-01-07 09:11:48 +00001848 return new (Mem) NamespaceDecl(0, false, SourceLocation(), SourceLocation(),
1849 0, 0);
Douglas Gregor72172e92012-01-05 21:55:30 +00001850}
1851
David Blaikie68e081d2011-12-20 02:48:34 +00001852void NamespaceAliasDecl::anchor() { }
1853
Mike Stump11289f42009-09-09 15:08:12 +00001854NamespaceAliasDecl *NamespaceAliasDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregor01a430132010-09-01 03:07:18 +00001855 SourceLocation UsingLoc,
Mike Stump11289f42009-09-09 15:08:12 +00001856 SourceLocation AliasLoc,
1857 IdentifierInfo *Alias,
Douglas Gregorc05ba2e2011-02-25 17:08:07 +00001858 NestedNameSpecifierLoc QualifierLoc,
Mike Stump11289f42009-09-09 15:08:12 +00001859 SourceLocation IdentLoc,
Anders Carlssonff25fdf2009-03-28 22:58:02 +00001860 NamedDecl *Namespace) {
Sebastian Redla6602e92009-11-23 15:34:23 +00001861 if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Namespace))
1862 Namespace = NS->getOriginalNamespace();
Douglas Gregorc05ba2e2011-02-25 17:08:07 +00001863 return new (C) NamespaceAliasDecl(DC, UsingLoc, AliasLoc, Alias,
1864 QualifierLoc, IdentLoc, Namespace);
Anders Carlssonff25fdf2009-03-28 22:58:02 +00001865}
1866
Douglas Gregor72172e92012-01-05 21:55:30 +00001867NamespaceAliasDecl *
1868NamespaceAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1869 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(NamespaceAliasDecl));
1870 return new (Mem) NamespaceAliasDecl(0, SourceLocation(), SourceLocation(), 0,
1871 NestedNameSpecifierLoc(),
1872 SourceLocation(), 0);
1873}
1874
David Blaikie68e081d2011-12-20 02:48:34 +00001875void UsingShadowDecl::anchor() { }
1876
Douglas Gregor72172e92012-01-05 21:55:30 +00001877UsingShadowDecl *
1878UsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1879 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(UsingShadowDecl));
1880 return new (Mem) UsingShadowDecl(0, SourceLocation(), 0, 0);
1881}
1882
Argyrios Kyrtzidis2703beb2010-11-10 05:40:41 +00001883UsingDecl *UsingShadowDecl::getUsingDecl() const {
1884 const UsingShadowDecl *Shadow = this;
1885 while (const UsingShadowDecl *NextShadow =
1886 dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow))
1887 Shadow = NextShadow;
1888 return cast<UsingDecl>(Shadow->UsingOrNextShadow);
1889}
1890
David Blaikie68e081d2011-12-20 02:48:34 +00001891void UsingDecl::anchor() { }
1892
Argyrios Kyrtzidis2703beb2010-11-10 05:40:41 +00001893void UsingDecl::addShadowDecl(UsingShadowDecl *S) {
1894 assert(std::find(shadow_begin(), shadow_end(), S) == shadow_end() &&
1895 "declaration already in set");
1896 assert(S->getUsingDecl() == this);
1897
Benjamin Kramere78f8ee2012-01-07 19:09:05 +00001898 if (FirstUsingShadow.getPointer())
1899 S->UsingOrNextShadow = FirstUsingShadow.getPointer();
1900 FirstUsingShadow.setPointer(S);
Argyrios Kyrtzidis2703beb2010-11-10 05:40:41 +00001901}
1902
1903void UsingDecl::removeShadowDecl(UsingShadowDecl *S) {
1904 assert(std::find(shadow_begin(), shadow_end(), S) != shadow_end() &&
1905 "declaration not in set");
1906 assert(S->getUsingDecl() == this);
1907
1908 // Remove S from the shadow decl chain. This is O(n) but hopefully rare.
1909
Benjamin Kramere78f8ee2012-01-07 19:09:05 +00001910 if (FirstUsingShadow.getPointer() == S) {
1911 FirstUsingShadow.setPointer(
1912 dyn_cast<UsingShadowDecl>(S->UsingOrNextShadow));
Argyrios Kyrtzidis2703beb2010-11-10 05:40:41 +00001913 S->UsingOrNextShadow = this;
1914 return;
1915 }
1916
Benjamin Kramere78f8ee2012-01-07 19:09:05 +00001917 UsingShadowDecl *Prev = FirstUsingShadow.getPointer();
Argyrios Kyrtzidis2703beb2010-11-10 05:40:41 +00001918 while (Prev->UsingOrNextShadow != S)
1919 Prev = cast<UsingShadowDecl>(Prev->UsingOrNextShadow);
1920 Prev->UsingOrNextShadow = S->UsingOrNextShadow;
1921 S->UsingOrNextShadow = this;
1922}
1923
Douglas Gregora9d87bc2011-02-25 00:36:19 +00001924UsingDecl *UsingDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation UL,
1925 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00001926 const DeclarationNameInfo &NameInfo,
1927 bool IsTypeNameArg) {
Douglas Gregora9d87bc2011-02-25 00:36:19 +00001928 return new (C) UsingDecl(DC, UL, QualifierLoc, NameInfo, IsTypeNameArg);
Douglas Gregorfec52632009-06-20 00:51:54 +00001929}
1930
Douglas Gregor72172e92012-01-05 21:55:30 +00001931UsingDecl *UsingDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1932 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(UsingDecl));
1933 return new (Mem) UsingDecl(0, SourceLocation(), NestedNameSpecifierLoc(),
1934 DeclarationNameInfo(), false);
1935}
1936
David Blaikie68e081d2011-12-20 02:48:34 +00001937void UnresolvedUsingValueDecl::anchor() { }
1938
John McCalle61f2ba2009-11-18 02:36:19 +00001939UnresolvedUsingValueDecl *
1940UnresolvedUsingValueDecl::Create(ASTContext &C, DeclContext *DC,
1941 SourceLocation UsingLoc,
Douglas Gregora9d87bc2011-02-25 00:36:19 +00001942 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00001943 const DeclarationNameInfo &NameInfo) {
John McCalle61f2ba2009-11-18 02:36:19 +00001944 return new (C) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc,
Douglas Gregora9d87bc2011-02-25 00:36:19 +00001945 QualifierLoc, NameInfo);
John McCalle61f2ba2009-11-18 02:36:19 +00001946}
1947
Douglas Gregor72172e92012-01-05 21:55:30 +00001948UnresolvedUsingValueDecl *
1949UnresolvedUsingValueDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1950 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(UnresolvedUsingValueDecl));
1951 return new (Mem) UnresolvedUsingValueDecl(0, QualType(), SourceLocation(),
1952 NestedNameSpecifierLoc(),
1953 DeclarationNameInfo());
1954}
1955
David Blaikie68e081d2011-12-20 02:48:34 +00001956void UnresolvedUsingTypenameDecl::anchor() { }
1957
John McCalle61f2ba2009-11-18 02:36:19 +00001958UnresolvedUsingTypenameDecl *
1959UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC,
1960 SourceLocation UsingLoc,
1961 SourceLocation TypenameLoc,
Douglas Gregora9d87bc2011-02-25 00:36:19 +00001962 NestedNameSpecifierLoc QualifierLoc,
John McCalle61f2ba2009-11-18 02:36:19 +00001963 SourceLocation TargetNameLoc,
1964 DeclarationName TargetName) {
1965 return new (C) UnresolvedUsingTypenameDecl(DC, UsingLoc, TypenameLoc,
Douglas Gregora9d87bc2011-02-25 00:36:19 +00001966 QualifierLoc, TargetNameLoc,
John McCalle61f2ba2009-11-18 02:36:19 +00001967 TargetName.getAsIdentifierInfo());
Anders Carlsson8305c1f2009-08-28 05:30:28 +00001968}
1969
Douglas Gregor72172e92012-01-05 21:55:30 +00001970UnresolvedUsingTypenameDecl *
1971UnresolvedUsingTypenameDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
1972 void *Mem = AllocateDeserializedDecl(C, ID,
1973 sizeof(UnresolvedUsingTypenameDecl));
1974 return new (Mem) UnresolvedUsingTypenameDecl(0, SourceLocation(),
1975 SourceLocation(),
1976 NestedNameSpecifierLoc(),
1977 SourceLocation(),
1978 0);
1979}
1980
David Blaikie68e081d2011-12-20 02:48:34 +00001981void StaticAssertDecl::anchor() { }
1982
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00001983StaticAssertDecl *StaticAssertDecl::Create(ASTContext &C, DeclContext *DC,
Abramo Bagnaraea947882011-03-08 16:41:52 +00001984 SourceLocation StaticAssertLoc,
1985 Expr *AssertExpr,
1986 StringLiteral *Message,
1987 SourceLocation RParenLoc) {
1988 return new (C) StaticAssertDecl(DC, StaticAssertLoc, AssertExpr, Message,
1989 RParenLoc);
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00001990}
1991
Douglas Gregor72172e92012-01-05 21:55:30 +00001992StaticAssertDecl *StaticAssertDecl::CreateDeserialized(ASTContext &C,
1993 unsigned ID) {
1994 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(StaticAssertDecl));
1995 return new (Mem) StaticAssertDecl(0, SourceLocation(), 0, 0,SourceLocation());
1996}
1997
Anders Carlsson6750d162009-03-26 23:46:50 +00001998static const char *getAccessName(AccessSpecifier AS) {
1999 switch (AS) {
Anders Carlsson6750d162009-03-26 23:46:50 +00002000 case AS_none:
David Blaikie83d382b2011-09-23 05:06:16 +00002001 llvm_unreachable("Invalid access specifier!");
Anders Carlsson6750d162009-03-26 23:46:50 +00002002 case AS_public:
2003 return "public";
2004 case AS_private:
2005 return "private";
2006 case AS_protected:
2007 return "protected";
2008 }
David Blaikief47fa302012-01-17 02:30:50 +00002009 llvm_unreachable("Invalid access specifier!");
Anders Carlsson6750d162009-03-26 23:46:50 +00002010}
2011
2012const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB,
2013 AccessSpecifier AS) {
2014 return DB << getAccessName(AS);
2015}
Richard Smith84f6dcf2012-02-02 01:16:57 +00002016
2017const PartialDiagnostic &clang::operator<<(const PartialDiagnostic &DB,
2018 AccessSpecifier AS) {
2019 return DB << getAccessName(AS);
2020}