blob: 5c0bbec1ff0e6d59dc1d829541b2b26458ba6048 [file] [log] [blame]
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001//===--- DeclCXX.cpp - C++ Declaration AST Node Implementation ------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the C++ related Decl classes.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/DeclCXX.h"
Douglas Gregord475b8d2009-03-25 21:17:03 +000015#include "clang/AST/DeclTemplate.h"
Ted Kremenek4b7c9832008-09-05 17:16:31 +000016#include "clang/AST/ASTContext.h"
Anders Carlssonfb311762009-03-14 00:25:26 +000017#include "clang/AST/Expr.h"
Douglas Gregor7d7e6722008-11-12 23:21:09 +000018#include "clang/Basic/IdentifierTable.h"
Douglas Gregorfdfab6b2008-12-23 21:31:30 +000019#include "llvm/ADT/STLExtras.h"
Ted Kremenek4b7c9832008-09-05 17:16:31 +000020using namespace clang;
21
22//===----------------------------------------------------------------------===//
23// Decl Allocation/Deallocation Method Implementations
24//===----------------------------------------------------------------------===//
Douglas Gregor72c3f312008-12-05 18:15:24 +000025
Douglas Gregor3e00bad2009-02-17 01:05:43 +000026CXXRecordDecl::CXXRecordDecl(Kind K, TagKind TK, DeclContext *DC,
Douglas Gregor741dd9a2009-07-21 14:46:17 +000027 SourceLocation L, IdentifierInfo *Id,
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +000028 CXXRecordDecl *PrevDecl,
Douglas Gregor741dd9a2009-07-21 14:46:17 +000029 SourceLocation TKL)
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +000030 : RecordDecl(K, TK, DC, L, Id, PrevDecl, TKL),
Douglas Gregor7d7e6722008-11-12 23:21:09 +000031 UserDeclaredConstructor(false), UserDeclaredCopyConstructor(false),
Sebastian Redl64b45f72009-01-05 20:52:13 +000032 UserDeclaredCopyAssignment(false), UserDeclaredDestructor(false),
Eli Friedman97c134e2009-08-15 22:23:00 +000033 Aggregate(true), PlainOldData(true), Empty(true), Polymorphic(false),
34 Abstract(false), HasTrivialConstructor(true),
35 HasTrivialCopyConstructor(true), HasTrivialCopyAssignment(true),
36 HasTrivialDestructor(true), Bases(0), NumBases(0), VBases(0), NumVBases(0),
Fariborz Jahanian40c072f2009-07-10 20:13:23 +000037 Conversions(DC, DeclarationName()),
Douglas Gregord475b8d2009-03-25 21:17:03 +000038 TemplateOrInstantiation() { }
Douglas Gregor7d7e6722008-11-12 23:21:09 +000039
Ted Kremenek4b7c9832008-09-05 17:16:31 +000040CXXRecordDecl *CXXRecordDecl::Create(ASTContext &C, TagKind TK, DeclContext *DC,
41 SourceLocation L, IdentifierInfo *Id,
Douglas Gregor741dd9a2009-07-21 14:46:17 +000042 SourceLocation TKL,
Douglas Gregoraafc0cc2009-05-15 19:11:46 +000043 CXXRecordDecl* PrevDecl,
44 bool DelayTypeCreation) {
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +000045 CXXRecordDecl* R = new (C) CXXRecordDecl(CXXRecord, TK, DC, L, Id,
46 PrevDecl, TKL);
47
48 // FIXME: DelayTypeCreation seems like such a hack
Douglas Gregoraafc0cc2009-05-15 19:11:46 +000049 if (!DelayTypeCreation)
50 C.getTypeDeclType(R, PrevDecl);
Ted Kremenek4b7c9832008-09-05 17:16:31 +000051 return R;
52}
53
Douglas Gregorf8268ae2008-10-22 17:49:05 +000054CXXRecordDecl::~CXXRecordDecl() {
Fariborz Jahanian5ffcd7b2009-07-02 18:26:15 +000055}
56
57void CXXRecordDecl::Destroy(ASTContext &C) {
58 C.Deallocate(Bases);
Fariborz Jahanian71c6e712009-07-22 17:41:53 +000059 C.Deallocate(VBases);
Fariborz Jahanian5ffcd7b2009-07-02 18:26:15 +000060 this->RecordDecl::Destroy(C);
Douglas Gregorf8268ae2008-10-22 17:49:05 +000061}
62
Douglas Gregor57c856b2008-10-23 18:13:27 +000063void
Fariborz Jahanian5ffcd7b2009-07-02 18:26:15 +000064CXXRecordDecl::setBases(ASTContext &C,
65 CXXBaseSpecifier const * const *Bases,
Douglas Gregor57c856b2008-10-23 18:13:27 +000066 unsigned NumBases) {
Douglas Gregor64bffa92008-11-05 16:20:31 +000067 // C++ [dcl.init.aggr]p1:
68 // An aggregate is an array or a class (clause 9) with [...]
69 // no base classes [...].
70 Aggregate = false;
71
Douglas Gregor57c856b2008-10-23 18:13:27 +000072 if (this->Bases)
Fariborz Jahanian5ffcd7b2009-07-02 18:26:15 +000073 C.Deallocate(this->Bases);
Fariborz Jahanian40c072f2009-07-10 20:13:23 +000074
75 int vbaseCount = 0;
76 llvm::SmallVector<const CXXBaseSpecifier*, 8> UniqueVbases;
77 bool hasDirectVirtualBase = false;
78
Fariborz Jahanian5ffcd7b2009-07-02 18:26:15 +000079 this->Bases = new(C) CXXBaseSpecifier [NumBases];
Douglas Gregor57c856b2008-10-23 18:13:27 +000080 this->NumBases = NumBases;
Fariborz Jahanian40c072f2009-07-10 20:13:23 +000081 for (unsigned i = 0; i < NumBases; ++i) {
Douglas Gregor57c856b2008-10-23 18:13:27 +000082 this->Bases[i] = *Bases[i];
Fariborz Jahanian40c072f2009-07-10 20:13:23 +000083 // Keep track of inherited vbases for this base class.
84 const CXXBaseSpecifier *Base = Bases[i];
85 QualType BaseType = Base->getType();
86 // Skip template types.
87 // FIXME. This means that this list must be rebuilt during template
88 // instantiation.
89 if (BaseType->isDependentType())
90 continue;
91 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +000092 = cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
Fariborz Jahanian40c072f2009-07-10 20:13:23 +000093 if (Base->isVirtual())
94 hasDirectVirtualBase = true;
95 for (CXXRecordDecl::base_class_iterator VBase =
96 BaseClassDecl->vbases_begin(),
97 E = BaseClassDecl->vbases_end(); VBase != E; ++VBase) {
98 // Add this vbase to the array of vbases for current class if it is
99 // not already in the list.
100 // FIXME. Note that we do a linear search as number of such classes are
101 // very few.
102 int i;
103 for (i = 0; i < vbaseCount; ++i)
104 if (UniqueVbases[i]->getType() == VBase->getType())
105 break;
106 if (i == vbaseCount) {
107 UniqueVbases.push_back(VBase);
108 ++vbaseCount;
109 }
110 }
111 }
112 if (hasDirectVirtualBase) {
113 // Iterate one more time through the direct bases and add the virtual
114 // base to the list of vritual bases for current class.
115 for (unsigned i = 0; i < NumBases; ++i) {
116 const CXXBaseSpecifier *VBase = Bases[i];
117 if (!VBase->isVirtual())
118 continue;
Alisdair Meredith002b91f2009-07-11 14:32:10 +0000119 int j;
120 for (j = 0; j < vbaseCount; ++j)
121 if (UniqueVbases[j]->getType() == VBase->getType())
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000122 break;
Alisdair Meredith002b91f2009-07-11 14:32:10 +0000123 if (j == vbaseCount) {
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000124 UniqueVbases.push_back(VBase);
125 ++vbaseCount;
126 }
127 }
128 }
129 if (vbaseCount > 0) {
130 // build AST for inhireted, direct or indirect, virtual bases.
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000131 this->VBases = new (C) CXXBaseSpecifier [vbaseCount];
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000132 this->NumVBases = vbaseCount;
133 for (int i = 0; i < vbaseCount; i++) {
134 QualType QT = UniqueVbases[i]->getType();
135 CXXRecordDecl *VBaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +0000136 = cast<CXXRecordDecl>(QT->getAs<RecordType>()->getDecl());
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000137 this->VBases[i] =
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000138 CXXBaseSpecifier(VBaseClassDecl->getSourceRange(), true,
139 VBaseClassDecl->getTagKind() == RecordDecl::TK_class,
140 UniqueVbases[i]->getAccessSpecifier(), QT);
Fariborz Jahanian40c072f2009-07-10 20:13:23 +0000141 }
142 }
Douglas Gregor57c856b2008-10-23 18:13:27 +0000143}
144
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000145bool CXXRecordDecl::hasConstCopyConstructor(ASTContext &Context) const {
Fariborz Jahanian485f0872009-06-22 23:34:40 +0000146 return getCopyConstructor(Context, QualType::Const) != 0;
147}
148
149CXXConstructorDecl *CXXRecordDecl::getCopyConstructor(ASTContext &Context,
150 unsigned TypeQuals) const{
Sebastian Redl64b45f72009-01-05 20:52:13 +0000151 QualType ClassType
152 = Context.getTypeDeclType(const_cast<CXXRecordDecl*>(this));
Douglas Gregor9e7d9de2008-12-15 21:24:18 +0000153 DeclarationName ConstructorName
154 = Context.DeclarationNames.getCXXConstructorName(
Fariborz Jahanian485f0872009-06-22 23:34:40 +0000155 Context.getCanonicalType(ClassType));
156 unsigned FoundTQs;
Douglas Gregorfdfab6b2008-12-23 21:31:30 +0000157 DeclContext::lookup_const_iterator Con, ConEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000158 for (llvm::tie(Con, ConEnd) = this->lookup(ConstructorName);
Douglas Gregorfdfab6b2008-12-23 21:31:30 +0000159 Con != ConEnd; ++Con) {
Fariborz Jahanian485f0872009-06-22 23:34:40 +0000160 if (cast<CXXConstructorDecl>(*Con)->isCopyConstructor(Context,
161 FoundTQs)) {
162 if (((TypeQuals & QualType::Const) == (FoundTQs & QualType::Const)) ||
163 (!(TypeQuals & QualType::Const) && (FoundTQs & QualType::Const)))
164 return cast<CXXConstructorDecl>(*Con);
165
166 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000167 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +0000168 return 0;
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000169}
170
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +0000171bool CXXRecordDecl::hasConstCopyAssignment(ASTContext &Context,
172 const CXXMethodDecl *& MD) const {
Sebastian Redl64b45f72009-01-05 20:52:13 +0000173 QualType ClassType = Context.getCanonicalType(Context.getTypeDeclType(
174 const_cast<CXXRecordDecl*>(this)));
175 DeclarationName OpName =Context.DeclarationNames.getCXXOperatorName(OO_Equal);
176
177 DeclContext::lookup_const_iterator Op, OpEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000178 for (llvm::tie(Op, OpEnd) = this->lookup(OpName);
Sebastian Redl64b45f72009-01-05 20:52:13 +0000179 Op != OpEnd; ++Op) {
180 // C++ [class.copy]p9:
181 // A user-declared copy assignment operator is a non-static non-template
182 // member function of class X with exactly one parameter of type X, X&,
183 // const X&, volatile X& or const volatile X&.
184 const CXXMethodDecl* Method = cast<CXXMethodDecl>(*Op);
185 if (Method->isStatic())
186 continue;
187 // TODO: Skip templates? Or is this implicitly done due to parameter types?
Douglas Gregor72564e72009-02-26 23:50:07 +0000188 const FunctionProtoType *FnType =
189 Method->getType()->getAsFunctionProtoType();
Sebastian Redl64b45f72009-01-05 20:52:13 +0000190 assert(FnType && "Overloaded operator has no prototype.");
191 // Don't assert on this; an invalid decl might have been left in the AST.
192 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
193 continue;
194 bool AcceptsConst = true;
195 QualType ArgType = FnType->getArgType(0);
Ted Kremenek6217b802009-07-29 21:53:49 +0000196 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()) {
Sebastian Redl64b45f72009-01-05 20:52:13 +0000197 ArgType = Ref->getPointeeType();
Douglas Gregor2ff44782009-03-20 20:21:37 +0000198 // Is it a non-const lvalue reference?
Sebastian Redl64b45f72009-01-05 20:52:13 +0000199 if (!ArgType.isConstQualified())
200 AcceptsConst = false;
201 }
202 if (Context.getCanonicalType(ArgType).getUnqualifiedType() != ClassType)
203 continue;
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +0000204 MD = Method;
Sebastian Redl64b45f72009-01-05 20:52:13 +0000205 // We have a single argument of type cv X or cv X&, i.e. we've found the
206 // copy assignment operator. Return whether it accepts const arguments.
207 return AcceptsConst;
208 }
209 assert(isInvalidDecl() &&
210 "No copy assignment operator declared in valid code.");
211 return false;
212}
213
214void
Douglas Gregor9e7d9de2008-12-15 21:24:18 +0000215CXXRecordDecl::addedConstructor(ASTContext &Context,
216 CXXConstructorDecl *ConDecl) {
Fariborz Jahanian8bc3fa42009-06-17 22:44:31 +0000217 assert(!ConDecl->isImplicit() && "addedConstructor - not for implicit decl");
218 // Note that we have a user-declared constructor.
219 UserDeclaredConstructor = true;
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000220
Fariborz Jahanian8bc3fa42009-06-17 22:44:31 +0000221 // C++ [dcl.init.aggr]p1:
222 // An aggregate is an array or a class (clause 9) with no
223 // user-declared constructors (12.1) [...].
224 Aggregate = false;
Douglas Gregor64bffa92008-11-05 16:20:31 +0000225
Fariborz Jahanian8bc3fa42009-06-17 22:44:31 +0000226 // C++ [class]p4:
227 // A POD-struct is an aggregate class [...]
228 PlainOldData = false;
Sebastian Redl64b45f72009-01-05 20:52:13 +0000229
Fariborz Jahanian8bc3fa42009-06-17 22:44:31 +0000230 // C++ [class.ctor]p5:
231 // A constructor is trivial if it is an implicitly-declared default
232 // constructor.
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000233 // FIXME: C++0x: don't do this for "= default" default constructors.
Fariborz Jahanian8bc3fa42009-06-17 22:44:31 +0000234 HasTrivialConstructor = false;
Anders Carlsson347ba892009-04-16 00:08:20 +0000235
Fariborz Jahanian8bc3fa42009-06-17 22:44:31 +0000236 // Note when we have a user-declared copy constructor, which will
237 // suppress the implicit declaration of a copy constructor.
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000238 if (ConDecl->isCopyConstructor(Context)) {
Fariborz Jahanian8bc3fa42009-06-17 22:44:31 +0000239 UserDeclaredCopyConstructor = true;
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000240
241 // C++ [class.copy]p6:
242 // A copy constructor is trivial if it is implicitly declared.
243 // FIXME: C++0x: don't do this for "= default" copy constructors.
244 HasTrivialCopyConstructor = false;
245 }
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000246}
247
Sebastian Redl64b45f72009-01-05 20:52:13 +0000248void CXXRecordDecl::addedAssignmentOperator(ASTContext &Context,
249 CXXMethodDecl *OpDecl) {
250 // We're interested specifically in copy assignment operators.
Douglas Gregor72564e72009-02-26 23:50:07 +0000251 const FunctionProtoType *FnType = OpDecl->getType()->getAsFunctionProtoType();
Sebastian Redl64b45f72009-01-05 20:52:13 +0000252 assert(FnType && "Overloaded operator has no proto function type.");
253 assert(FnType->getNumArgs() == 1 && !FnType->isVariadic());
254 QualType ArgType = FnType->getArgType(0);
Ted Kremenek6217b802009-07-29 21:53:49 +0000255 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>())
Sebastian Redl64b45f72009-01-05 20:52:13 +0000256 ArgType = Ref->getPointeeType();
257
258 ArgType = ArgType.getUnqualifiedType();
259 QualType ClassType = Context.getCanonicalType(Context.getTypeDeclType(
260 const_cast<CXXRecordDecl*>(this)));
261
262 if (ClassType != Context.getCanonicalType(ArgType))
263 return;
264
265 // This is a copy assignment operator.
266 // Suppress the implicit declaration of a copy constructor.
267 UserDeclaredCopyAssignment = true;
268
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000269 // C++ [class.copy]p11:
270 // A copy assignment operator is trivial if it is implicitly declared.
271 // FIXME: C++0x: don't do this for "= default" copy operators.
272 HasTrivialCopyAssignment = false;
273
Sebastian Redl64b45f72009-01-05 20:52:13 +0000274 // C++ [class]p4:
275 // A POD-struct is an aggregate class that [...] has no user-defined copy
276 // assignment operator [...].
277 PlainOldData = false;
278}
279
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000280void CXXRecordDecl::addConversionFunction(ASTContext &Context,
281 CXXConversionDecl *ConvDecl) {
282 Conversions.addOverload(ConvDecl);
283}
284
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +0000285
286CXXConstructorDecl *
287CXXRecordDecl::getDefaultConstructor(ASTContext &Context) {
288 QualType ClassType = Context.getTypeDeclType(this);
289 DeclarationName ConstructorName
290 = Context.DeclarationNames.getCXXConstructorName(
291 Context.getCanonicalType(ClassType.getUnqualifiedType()));
292
293 DeclContext::lookup_const_iterator Con, ConEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000294 for (llvm::tie(Con, ConEnd) = lookup(ConstructorName);
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +0000295 Con != ConEnd; ++Con) {
296 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
297 if (Constructor->isDefaultConstructor())
298 return Constructor;
299 }
300 return 0;
301}
302
Anders Carlsson7267c162009-05-29 21:03:38 +0000303const CXXDestructorDecl *
304CXXRecordDecl::getDestructor(ASTContext &Context) {
305 QualType ClassType = Context.getTypeDeclType(this);
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +0000306
Anders Carlsson7267c162009-05-29 21:03:38 +0000307 DeclarationName Name
Douglas Gregor50d62d12009-08-05 05:36:45 +0000308 = Context.DeclarationNames.getCXXDestructorName(
309 Context.getCanonicalType(ClassType));
Anders Carlsson7267c162009-05-29 21:03:38 +0000310
311 DeclContext::lookup_iterator I, E;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000312 llvm::tie(I, E) = lookup(Name);
Anders Carlsson7267c162009-05-29 21:03:38 +0000313 assert(I != E && "Did not find a destructor!");
314
315 const CXXDestructorDecl *Dtor = cast<CXXDestructorDecl>(*I);
316 assert(++I == E && "Found more than one destructor!");
317
318 return Dtor;
319}
320
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000321CXXMethodDecl *
322CXXMethodDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Douglas Gregor10bd3682008-11-17 22:58:34 +0000323 SourceLocation L, DeclarationName N,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000324 QualType T, DeclaratorInfo *DInfo,
325 bool isStatic, bool isInline) {
326 return new (C) CXXMethodDecl(CXXMethod, RD, L, N, T, DInfo,
327 isStatic, isInline);
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000328}
329
Anders Carlsson05eb2442009-05-16 23:58:37 +0000330
331typedef llvm::DenseMap<const CXXMethodDecl*,
332 std::vector<const CXXMethodDecl *> *>
333 OverriddenMethodsMapTy;
334
Mike Stumpb9871a22009-08-21 01:45:00 +0000335// FIXME: We hate static data. This doesn't survive PCH saving/loading, and
336// the vtable building code uses it at CG time.
Anders Carlsson05eb2442009-05-16 23:58:37 +0000337static OverriddenMethodsMapTy *OverriddenMethods = 0;
338
339void CXXMethodDecl::addOverriddenMethod(const CXXMethodDecl *MD) {
340 // FIXME: The CXXMethodDecl dtor needs to remove and free the entry.
341
342 if (!OverriddenMethods)
343 OverriddenMethods = new OverriddenMethodsMapTy();
344
345 std::vector<const CXXMethodDecl *> *&Methods = (*OverriddenMethods)[this];
346 if (!Methods)
347 Methods = new std::vector<const CXXMethodDecl *>;
348
349 Methods->push_back(MD);
350}
351
352CXXMethodDecl::method_iterator CXXMethodDecl::begin_overridden_methods() const {
353 if (!OverriddenMethods)
354 return 0;
355
356 OverriddenMethodsMapTy::iterator it = OverriddenMethods->find(this);
Daniel Dunbar0908c332009-08-01 23:40:20 +0000357 if (it == OverriddenMethods->end() || it->second->empty())
Anders Carlsson05eb2442009-05-16 23:58:37 +0000358 return 0;
Daniel Dunbar0908c332009-08-01 23:40:20 +0000359
Anders Carlsson05eb2442009-05-16 23:58:37 +0000360 return &(*it->second)[0];
361}
362
363CXXMethodDecl::method_iterator CXXMethodDecl::end_overridden_methods() const {
364 if (!OverriddenMethods)
365 return 0;
366
367 OverriddenMethodsMapTy::iterator it = OverriddenMethods->find(this);
Daniel Dunbar0908c332009-08-01 23:40:20 +0000368 if (it == OverriddenMethods->end() || it->second->empty())
Anders Carlsson05eb2442009-05-16 23:58:37 +0000369 return 0;
370
Daniel Dunbar637ec322009-08-02 01:48:29 +0000371 return &(*it->second)[0] + it->second->size();
Anders Carlsson05eb2442009-05-16 23:58:37 +0000372}
373
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000374QualType CXXMethodDecl::getThisType(ASTContext &C) const {
Argyrios Kyrtzidisb0d178d2008-10-24 22:28:18 +0000375 // C++ 9.3.2p1: The type of this in a member function of a class X is X*.
376 // If the member function is declared const, the type of this is const X*,
377 // if the member function is declared volatile, the type of this is
378 // volatile X*, and if the member function is declared const volatile,
379 // the type of this is const volatile X*.
380
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000381 assert(isInstance() && "No 'this' for static methods!");
Anders Carlsson31a08752009-06-13 02:59:33 +0000382
383 QualType ClassTy;
384 if (ClassTemplateDecl *TD = getParent()->getDescribedClassTemplate())
385 ClassTy = TD->getInjectedClassNameType(C);
386 else
Mike Stumpe607ed02009-08-07 18:05:12 +0000387 ClassTy = C.getTagDeclType(getParent());
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000388 ClassTy = ClassTy.getWithAdditionalQualifiers(getTypeQualifiers());
Anders Carlsson4e579922009-07-10 21:35:09 +0000389 return C.getPointerType(ClassTy);
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000390}
391
Douglas Gregor7ad83902008-11-05 04:29:56 +0000392CXXBaseOrMemberInitializer::
Fariborz Jahanian47deacf2009-06-30 00:02:17 +0000393CXXBaseOrMemberInitializer(QualType BaseType, Expr **Args, unsigned NumArgs,
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +0000394 CXXConstructorDecl *C,
Fariborz Jahanian47deacf2009-06-30 00:02:17 +0000395 SourceLocation L)
396 : Args(0), NumArgs(0), IdLoc(L) {
Douglas Gregor7ad83902008-11-05 04:29:56 +0000397 BaseOrMember = reinterpret_cast<uintptr_t>(BaseType.getTypePtr());
398 assert((BaseOrMember & 0x01) == 0 && "Invalid base class type pointer");
399 BaseOrMember |= 0x01;
400
401 if (NumArgs > 0) {
402 this->NumArgs = NumArgs;
Fariborz Jahanian50b8eea2009-07-24 17:57:02 +0000403 // FIXME. Allocation via Context
404 this->Args = new Stmt*[NumArgs];
Douglas Gregor7ad83902008-11-05 04:29:56 +0000405 for (unsigned Idx = 0; Idx < NumArgs; ++Idx)
406 this->Args[Idx] = Args[Idx];
407 }
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +0000408 CtorToCall = C;
Douglas Gregor7ad83902008-11-05 04:29:56 +0000409}
410
411CXXBaseOrMemberInitializer::
Fariborz Jahanian47deacf2009-06-30 00:02:17 +0000412CXXBaseOrMemberInitializer(FieldDecl *Member, Expr **Args, unsigned NumArgs,
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +0000413 CXXConstructorDecl *C,
Fariborz Jahanian47deacf2009-06-30 00:02:17 +0000414 SourceLocation L)
415 : Args(0), NumArgs(0), IdLoc(L) {
Douglas Gregor7ad83902008-11-05 04:29:56 +0000416 BaseOrMember = reinterpret_cast<uintptr_t>(Member);
417 assert((BaseOrMember & 0x01) == 0 && "Invalid member pointer");
418
419 if (NumArgs > 0) {
420 this->NumArgs = NumArgs;
Fariborz Jahanian50b8eea2009-07-24 17:57:02 +0000421 this->Args = new Stmt*[NumArgs];
Douglas Gregor7ad83902008-11-05 04:29:56 +0000422 for (unsigned Idx = 0; Idx < NumArgs; ++Idx)
423 this->Args[Idx] = Args[Idx];
424 }
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +0000425 CtorToCall = C;
Douglas Gregor7ad83902008-11-05 04:29:56 +0000426}
427
428CXXBaseOrMemberInitializer::~CXXBaseOrMemberInitializer() {
429 delete [] Args;
430}
431
Douglas Gregorb48fe382008-10-31 09:07:45 +0000432CXXConstructorDecl *
433CXXConstructorDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000434 SourceLocation L, DeclarationName N,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000435 QualType T, DeclaratorInfo *DInfo,
436 bool isExplicit,
Douglas Gregorb48fe382008-10-31 09:07:45 +0000437 bool isInline, bool isImplicitlyDeclared) {
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000438 assert(N.getNameKind() == DeclarationName::CXXConstructorName &&
439 "Name must refer to a constructor");
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000440 return new (C) CXXConstructorDecl(RD, L, N, T, DInfo, isExplicit, isInline,
Douglas Gregorb48fe382008-10-31 09:07:45 +0000441 isImplicitlyDeclared);
442}
443
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000444bool CXXConstructorDecl::isDefaultConstructor() const {
445 // C++ [class.ctor]p5:
Douglas Gregor64bffa92008-11-05 16:20:31 +0000446 // A default constructor for a class X is a constructor of class
447 // X that can be called without an argument.
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000448 return (getNumParams() == 0) ||
Douglas Gregorf03d7c72008-11-05 15:29:30 +0000449 (getNumParams() > 0 && getParamDecl(0)->getDefaultArg() != 0);
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000450}
451
452bool
453CXXConstructorDecl::isCopyConstructor(ASTContext &Context,
454 unsigned &TypeQuals) const {
455 // C++ [class.copy]p2:
Douglas Gregor64bffa92008-11-05 16:20:31 +0000456 // A non-template constructor for class X is a copy constructor
457 // if its first parameter is of type X&, const X&, volatile X& or
458 // const volatile X&, and either there are no other parameters
459 // or else all other parameters have default arguments (8.3.6).
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000460 if ((getNumParams() < 1) ||
Anders Carlssonae0b4e72009-06-06 04:14:07 +0000461 (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()))
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000462 return false;
463
464 const ParmVarDecl *Param = getParamDecl(0);
465
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000466 // Do we have a reference type? Rvalue references don't count.
467 const LValueReferenceType *ParamRefType =
Ted Kremenek6217b802009-07-29 21:53:49 +0000468 Param->getType()->getAs<LValueReferenceType>();
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000469 if (!ParamRefType)
470 return false;
471
472 // Is it a reference to our class type?
Mike Stumpe607ed02009-08-07 18:05:12 +0000473 QualType PointeeType
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000474 = Context.getCanonicalType(ParamRefType->getPointeeType());
Mike Stumpe607ed02009-08-07 18:05:12 +0000475 QualType ClassTy = Context.getTagDeclType(getParent());
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000476 if (PointeeType.getUnqualifiedType() != ClassTy)
477 return false;
478
479 // We have a copy constructor.
480 TypeQuals = PointeeType.getCVRQualifiers();
481 return true;
482}
483
Douglas Gregor60d62c22008-10-31 16:23:19 +0000484bool CXXConstructorDecl::isConvertingConstructor() const {
485 // C++ [class.conv.ctor]p1:
486 // A constructor declared without the function-specifier explicit
487 // that can be called with a single parameter specifies a
488 // conversion from the type of its first parameter to the type of
489 // its class. Such a constructor is called a converting
490 // constructor.
491 if (isExplicit())
492 return false;
493
494 return (getNumParams() == 0 &&
Douglas Gregor72564e72009-02-26 23:50:07 +0000495 getType()->getAsFunctionProtoType()->isVariadic()) ||
Douglas Gregor60d62c22008-10-31 16:23:19 +0000496 (getNumParams() == 1) ||
Anders Carlssonae0b4e72009-06-06 04:14:07 +0000497 (getNumParams() > 1 && getParamDecl(1)->hasDefaultArg());
Douglas Gregor60d62c22008-10-31 16:23:19 +0000498}
Douglas Gregorb48fe382008-10-31 09:07:45 +0000499
Douglas Gregor42a552f2008-11-05 20:51:48 +0000500CXXDestructorDecl *
501CXXDestructorDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000502 SourceLocation L, DeclarationName N,
Douglas Gregor42a552f2008-11-05 20:51:48 +0000503 QualType T, bool isInline,
504 bool isImplicitlyDeclared) {
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000505 assert(N.getNameKind() == DeclarationName::CXXDestructorName &&
506 "Name must refer to a destructor");
Steve Naroff3e970492009-01-27 21:25:57 +0000507 return new (C) CXXDestructorDecl(RD, L, N, T, isInline,
508 isImplicitlyDeclared);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000509}
510
Fariborz Jahaniand45c3632009-07-01 21:05:43 +0000511void
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000512CXXDestructorDecl::Destroy(ASTContext& C) {
513 C.Deallocate(BaseOrMemberDestructions);
514 CXXMethodDecl::Destroy(C);
515}
516
517void
518CXXDestructorDecl::computeBaseOrMembersToDestroy(ASTContext &C) {
Fariborz Jahanian560de452009-07-15 22:34:08 +0000519 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(getDeclContext());
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000520 llvm::SmallVector<uintptr_t, 32> AllToDestruct;
521
Fariborz Jahanian560de452009-07-15 22:34:08 +0000522 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
523 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000524 // Skip over virtual bases which have trivial destructors.
525 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +0000526 = cast<CXXRecordDecl>(VBase->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000527 if (BaseClassDecl->hasTrivialDestructor())
528 continue;
529 uintptr_t Member =
Fariborz Jahaniancf183122009-07-22 00:42:46 +0000530 reinterpret_cast<uintptr_t>(VBase->getType().getTypePtr()) | VBASE;
Fariborz Jahanian560de452009-07-15 22:34:08 +0000531 AllToDestruct.push_back(Member);
532 }
533 for (CXXRecordDecl::base_class_iterator Base =
534 ClassDecl->bases_begin(),
535 E = ClassDecl->bases_end(); Base != E; ++Base) {
536 if (Base->isVirtual())
537 continue;
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000538 // Skip over virtual bases which have trivial destructors.
539 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +0000540 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000541 if (BaseClassDecl->hasTrivialDestructor())
542 continue;
543
544 uintptr_t Member =
Fariborz Jahaniancf183122009-07-22 00:42:46 +0000545 reinterpret_cast<uintptr_t>(Base->getType().getTypePtr()) | DRCTNONVBASE;
Fariborz Jahanian560de452009-07-15 22:34:08 +0000546 AllToDestruct.push_back(Member);
547 }
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000548
Fariborz Jahanian560de452009-07-15 22:34:08 +0000549 // non-static data members.
550 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
551 E = ClassDecl->field_end(); Field != E; ++Field) {
Douglas Gregor5e03f9e2009-07-23 23:49:00 +0000552 QualType FieldType = C.getBaseElementType((*Field)->getType());
Fariborz Jahanian560de452009-07-15 22:34:08 +0000553
Ted Kremenek6217b802009-07-29 21:53:49 +0000554 if (const RecordType* RT = FieldType->getAs<RecordType>()) {
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000555 // Skip over virtual bases which have trivial destructors.
Douglas Gregor5e03f9e2009-07-23 23:49:00 +0000556 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000557 if (BaseClassDecl->hasTrivialDestructor())
558 continue;
559 uintptr_t Member = reinterpret_cast<uintptr_t>(*Field);
Fariborz Jahanian560de452009-07-15 22:34:08 +0000560 AllToDestruct.push_back(Member);
561 }
562 }
563
564 unsigned NumDestructions = AllToDestruct.size();
565 if (NumDestructions > 0) {
566 NumBaseOrMemberDestructions = NumDestructions;
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000567 BaseOrMemberDestructions = new (C) uintptr_t [NumDestructions];
Fariborz Jahanian560de452009-07-15 22:34:08 +0000568 // Insert in reverse order.
569 for (int Idx = NumDestructions-1, i=0 ; Idx >= 0; --Idx)
570 BaseOrMemberDestructions[i++] = AllToDestruct[Idx];
571 }
572}
573
574void
Fariborz Jahaniand45c3632009-07-01 21:05:43 +0000575CXXConstructorDecl::setBaseOrMemberInitializers(
Fariborz Jahanian87595e42009-07-23 23:32:59 +0000576 ASTContext &C,
577 CXXBaseOrMemberInitializer **Initializers,
578 unsigned NumInitializers,
579 llvm::SmallVectorImpl<CXXBaseSpecifier *>& Bases,
580 llvm::SmallVectorImpl<FieldDecl *>&Fields) {
Fariborz Jahaniand01c9152009-07-14 18:24:21 +0000581 // We need to build the initializer AST according to order of construction
582 // and not what user specified in the Initializers list.
Fariborz Jahaniand01c9152009-07-14 18:24:21 +0000583 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(getDeclContext());
584 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
Fariborz Jahanianaa266502009-07-22 20:25:00 +0000585 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
586
587 for (unsigned i = 0; i < NumInitializers; i++) {
588 CXXBaseOrMemberInitializer *Member = Initializers[i];
Fariborz Jahanian08c63572009-07-25 01:08:28 +0000589 if (Member->isBaseInitializer())
Ted Kremenek6217b802009-07-29 21:53:49 +0000590 AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Fariborz Jahanian08c63572009-07-25 01:08:28 +0000591 else
Fariborz Jahanian8c64e002009-08-10 23:56:17 +0000592 AllBaseFields[Member->getMember()] = Member;
Fariborz Jahanianaa266502009-07-22 20:25:00 +0000593 }
594
Fariborz Jahaniand01c9152009-07-14 18:24:21 +0000595 // Push virtual bases before others.
596 for (CXXRecordDecl::base_class_iterator VBase =
597 ClassDecl->vbases_begin(),
598 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
Fariborz Jahanian08c63572009-07-25 01:08:28 +0000599 if (CXXBaseOrMemberInitializer *Value =
Ted Kremenek6217b802009-07-29 21:53:49 +0000600 AllBaseFields.lookup(VBase->getType()->getAs<RecordType>()))
Fariborz Jahanian08c63572009-07-25 01:08:28 +0000601 AllToInit.push_back(Value);
Fariborz Jahanianaa266502009-07-22 20:25:00 +0000602 else {
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +0000603 CXXRecordDecl *VBaseDecl =
Ted Kremenek6217b802009-07-29 21:53:49 +0000604 cast<CXXRecordDecl>(VBase->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +0000605 assert(VBaseDecl && "setBaseOrMemberInitializers - VBaseDecl null");
Fariborz Jahanian87595e42009-07-23 23:32:59 +0000606 if (!VBaseDecl->getDefaultConstructor(C) &&
607 !VBase->getType()->isDependentType())
608 Bases.push_back(VBase);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +0000609 CXXBaseOrMemberInitializer *Member =
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +0000610 new (C) CXXBaseOrMemberInitializer(VBase->getType(), 0, 0,
611 VBaseDecl->getDefaultConstructor(C),
612 SourceLocation());
Fariborz Jahaniand01c9152009-07-14 18:24:21 +0000613 AllToInit.push_back(Member);
614 }
615 }
Fariborz Jahanianaa266502009-07-22 20:25:00 +0000616
Fariborz Jahaniand01c9152009-07-14 18:24:21 +0000617 for (CXXRecordDecl::base_class_iterator Base =
618 ClassDecl->bases_begin(),
619 E = ClassDecl->bases_end(); Base != E; ++Base) {
620 // Virtuals are in the virtual base list and already constructed.
621 if (Base->isVirtual())
622 continue;
Fariborz Jahanian08c63572009-07-25 01:08:28 +0000623 if (CXXBaseOrMemberInitializer *Value =
Ted Kremenek6217b802009-07-29 21:53:49 +0000624 AllBaseFields.lookup(Base->getType()->getAs<RecordType>()))
Fariborz Jahanian08c63572009-07-25 01:08:28 +0000625 AllToInit.push_back(Value);
Fariborz Jahanianaa266502009-07-22 20:25:00 +0000626 else {
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +0000627 CXXRecordDecl *BaseDecl =
Ted Kremenek6217b802009-07-29 21:53:49 +0000628 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +0000629 assert(BaseDecl && "setBaseOrMemberInitializers - BaseDecl null");
Fariborz Jahanian87595e42009-07-23 23:32:59 +0000630 if (!BaseDecl->getDefaultConstructor(C) &&
631 !Base->getType()->isDependentType())
632 Bases.push_back(Base);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +0000633 CXXBaseOrMemberInitializer *Member =
Fariborz Jahanianaa266502009-07-22 20:25:00 +0000634 new (C) CXXBaseOrMemberInitializer(Base->getType(), 0, 0,
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +0000635 BaseDecl->getDefaultConstructor(C),
Fariborz Jahanianaa266502009-07-22 20:25:00 +0000636 SourceLocation());
Fariborz Jahaniand01c9152009-07-14 18:24:21 +0000637 AllToInit.push_back(Member);
638 }
639 }
Fariborz Jahanianaa266502009-07-22 20:25:00 +0000640
Fariborz Jahaniand01c9152009-07-14 18:24:21 +0000641 // non-static data members.
642 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
643 E = ClassDecl->field_end(); Field != E; ++Field) {
Fariborz Jahanian8c64e002009-08-10 23:56:17 +0000644 if ((*Field)->isAnonymousStructOrUnion()) {
645 if (const RecordType *FieldClassType =
646 Field->getType()->getAs<RecordType>()) {
647 CXXRecordDecl *FieldClassDecl
648 = cast<CXXRecordDecl>(FieldClassType->getDecl());
649 for(RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
650 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
651 if (CXXBaseOrMemberInitializer *Value = AllBaseFields.lookup(*FA)) {
Fariborz Jahaniane6494122009-08-11 18:49:54 +0000652 // 'Member' is the anonymous union field and 'AnonUnionMember' is
653 // set to the anonymous union data member used in the initializer
654 // list.
655 Value->setMember(*Field);
656 Value->setAnonUnionMember(*FA);
Fariborz Jahanian8c64e002009-08-10 23:56:17 +0000657 AllToInit.push_back(Value);
658 break;
659 }
660 }
661 }
662 continue;
663 }
Fariborz Jahanian89350be2009-08-10 23:59:59 +0000664 if (CXXBaseOrMemberInitializer *Value = AllBaseFields.lookup(*Field)) {
Fariborz Jahanian08c63572009-07-25 01:08:28 +0000665 AllToInit.push_back(Value);
Fariborz Jahanianaa266502009-07-22 20:25:00 +0000666 continue;
Fariborz Jahaniand01c9152009-07-14 18:24:21 +0000667 }
Douglas Gregor5e03f9e2009-07-23 23:49:00 +0000668
669 QualType FT = C.getBaseElementType((*Field)->getType());
Ted Kremenek6217b802009-07-29 21:53:49 +0000670 if (const RecordType* RT = FT->getAs<RecordType>()) {
Douglas Gregor5e03f9e2009-07-23 23:49:00 +0000671 CXXConstructorDecl *Ctor =
672 cast<CXXRecordDecl>(RT->getDecl())->getDefaultConstructor(C);
673 if (!Ctor && !FT->isDependentType())
Fariborz Jahanian87595e42009-07-23 23:32:59 +0000674 Fields.push_back(*Field);
Fariborz Jahanianaa266502009-07-22 20:25:00 +0000675 CXXBaseOrMemberInitializer *Member =
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +0000676 new (C) CXXBaseOrMemberInitializer((*Field), 0, 0,
677 Ctor,
678 SourceLocation());
Fariborz Jahanianaa266502009-07-22 20:25:00 +0000679 AllToInit.push_back(Member);
680 }
Fariborz Jahaniand01c9152009-07-14 18:24:21 +0000681 }
Mike Stumpf1216772009-07-31 18:25:34 +0000682
Fariborz Jahaniand01c9152009-07-14 18:24:21 +0000683 NumInitializers = AllToInit.size();
Fariborz Jahaniand45c3632009-07-01 21:05:43 +0000684 if (NumInitializers > 0) {
685 NumBaseOrMemberInitializers = NumInitializers;
686 BaseOrMemberInitializers =
Fariborz Jahanian0d3c26c2009-07-07 16:24:08 +0000687 new (C) CXXBaseOrMemberInitializer*[NumInitializers];
Fariborz Jahaniand45c3632009-07-01 21:05:43 +0000688 for (unsigned Idx = 0; Idx < NumInitializers; ++Idx)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +0000689 BaseOrMemberInitializers[Idx] = AllToInit[Idx];
Fariborz Jahaniand45c3632009-07-01 21:05:43 +0000690 }
691}
692
Fariborz Jahanian73b85f32009-07-01 23:35:25 +0000693void
694CXXConstructorDecl::Destroy(ASTContext& C) {
695 C.Deallocate(BaseOrMemberInitializers);
Fariborz Jahanian0d3c26c2009-07-07 16:24:08 +0000696 CXXMethodDecl::Destroy(C);
Fariborz Jahanian73b85f32009-07-01 23:35:25 +0000697}
698
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000699CXXConversionDecl *
700CXXConversionDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000701 SourceLocation L, DeclarationName N,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000702 QualType T, DeclaratorInfo *DInfo,
703 bool isInline, bool isExplicit) {
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000704 assert(N.getNameKind() == DeclarationName::CXXConversionFunctionName &&
705 "Name must refer to a conversion function");
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000706 return new (C) CXXConversionDecl(RD, L, N, T, DInfo, isInline, isExplicit);
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000707}
708
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000709OverloadedFunctionDecl *
710OverloadedFunctionDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000711 DeclarationName N) {
Steve Naroff3e970492009-01-27 21:25:57 +0000712 return new (C) OverloadedFunctionDecl(DC, N);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000713}
Chris Lattner21ef7ae2008-11-04 16:51:42 +0000714
Douglas Gregordec06662009-08-21 18:42:58 +0000715OverloadIterator::OverloadIterator(NamedDecl *ND) : D(0) {
716 if (!ND)
717 return;
718
719 if (isa<FunctionDecl>(ND) || isa<FunctionTemplateDecl>(ND))
720 D = ND;
721 else if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(ND)) {
722 D = ND;
723 Iter = Ovl->function_begin();
724 }
725}
726
Douglas Gregor364e0212009-06-27 21:05:07 +0000727void OverloadedFunctionDecl::addOverload(AnyFunctionDecl F) {
728 Functions.push_back(F);
729 this->setLocation(F.get()->getLocation());
Douglas Gregore53060f2009-06-25 22:08:12 +0000730}
731
Douglas Gregordaa439a2009-07-08 10:57:20 +0000732OverloadIterator::reference OverloadIterator::operator*() const {
733 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
734 return FD;
735
736 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(D))
737 return FTD;
738
739 assert(isa<OverloadedFunctionDecl>(D));
740 return *Iter;
741}
742
743OverloadIterator &OverloadIterator::operator++() {
744 if (isa<FunctionDecl>(D) || isa<FunctionTemplateDecl>(D)) {
745 D = 0;
746 return *this;
747 }
748
749 if (++Iter == cast<OverloadedFunctionDecl>(D)->function_end())
750 D = 0;
751
752 return *this;
753}
754
755bool OverloadIterator::Equals(const OverloadIterator &Other) const {
756 if (!D || !Other.D)
757 return D == Other.D;
758
759 if (D != Other.D)
760 return false;
761
762 return !isa<OverloadedFunctionDecl>(D) || Iter == Other.Iter;
763}
764
John McCallc48fbdf2009-08-11 21:13:21 +0000765FriendFunctionDecl *FriendFunctionDecl::Create(ASTContext &C,
766 DeclContext *DC,
John McCall3f9a8a62009-08-11 06:59:38 +0000767 SourceLocation L,
768 DeclarationName N, QualType T,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000769 DeclaratorInfo *DInfo,
John McCall3f9a8a62009-08-11 06:59:38 +0000770 bool isInline,
771 SourceLocation FriendL) {
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000772 return new (C) FriendFunctionDecl(DC, L, N, T, DInfo, isInline, FriendL);
John McCall3f9a8a62009-08-11 06:59:38 +0000773}
John McCallc48fbdf2009-08-11 21:13:21 +0000774
775FriendClassDecl *FriendClassDecl::Create(ASTContext &C, DeclContext *DC,
776 SourceLocation L, QualType T,
777 SourceLocation FriendL) {
778 return new (C) FriendClassDecl(DC, L, T, FriendL);
779}
John McCall3f9a8a62009-08-11 06:59:38 +0000780
Chris Lattner21ef7ae2008-11-04 16:51:42 +0000781LinkageSpecDecl *LinkageSpecDecl::Create(ASTContext &C,
Douglas Gregor074149e2009-01-05 19:45:36 +0000782 DeclContext *DC,
Chris Lattner21ef7ae2008-11-04 16:51:42 +0000783 SourceLocation L,
Douglas Gregor074149e2009-01-05 19:45:36 +0000784 LanguageIDs Lang, bool Braces) {
Steve Naroff3e970492009-01-27 21:25:57 +0000785 return new (C) LinkageSpecDecl(DC, L, Lang, Braces);
Douglas Gregorf44515a2008-12-16 22:23:02 +0000786}
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000787
788UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC,
789 SourceLocation L,
790 SourceLocation NamespaceLoc,
Douglas Gregor8419fa32009-05-30 06:31:56 +0000791 SourceRange QualifierRange,
792 NestedNameSpecifier *Qualifier,
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000793 SourceLocation IdentLoc,
794 NamespaceDecl *Used,
795 DeclContext *CommonAncestor) {
Douglas Gregor8419fa32009-05-30 06:31:56 +0000796 return new (C) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierRange,
797 Qualifier, IdentLoc, Used, CommonAncestor);
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000798}
799
Anders Carlsson68771c72009-03-28 22:58:02 +0000800NamespaceAliasDecl *NamespaceAliasDecl::Create(ASTContext &C, DeclContext *DC,
801 SourceLocation L,
802 SourceLocation AliasLoc,
803 IdentifierInfo *Alias,
Douglas Gregor6c9c9402009-05-30 06:48:27 +0000804 SourceRange QualifierRange,
805 NestedNameSpecifier *Qualifier,
Anders Carlsson68771c72009-03-28 22:58:02 +0000806 SourceLocation IdentLoc,
807 NamedDecl *Namespace) {
Douglas Gregor6c9c9402009-05-30 06:48:27 +0000808 return new (C) NamespaceAliasDecl(DC, L, AliasLoc, Alias, QualifierRange,
809 Qualifier, IdentLoc, Namespace);
Anders Carlsson68771c72009-03-28 22:58:02 +0000810}
811
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000812UsingDecl *UsingDecl::Create(ASTContext &C, DeclContext *DC,
813 SourceLocation L, SourceRange NNR, SourceLocation TargetNL,
814 SourceLocation UL, NamedDecl* Target,
815 NestedNameSpecifier* TargetNNS, bool IsTypeNameArg) {
816 return new (C) UsingDecl(DC, L, NNR, TargetNL, UL, Target,
817 TargetNNS, IsTypeNameArg);
818}
819
Anders Carlssonfb311762009-03-14 00:25:26 +0000820StaticAssertDecl *StaticAssertDecl::Create(ASTContext &C, DeclContext *DC,
821 SourceLocation L, Expr *AssertExpr,
822 StringLiteral *Message) {
823 return new (C) StaticAssertDecl(DC, L, AssertExpr, Message);
824}
825
826void StaticAssertDecl::Destroy(ASTContext& C) {
827 AssertExpr->Destroy(C);
828 Message->Destroy(C);
829 this->~StaticAssertDecl();
830 C.Deallocate((void *)this);
831}
832
833StaticAssertDecl::~StaticAssertDecl() {
834}
835
Anders Carlsson05bf2c72009-03-26 23:46:50 +0000836static const char *getAccessName(AccessSpecifier AS) {
837 switch (AS) {
838 default:
839 case AS_none:
840 assert("Invalid access specifier!");
841 return 0;
842 case AS_public:
843 return "public";
844 case AS_private:
845 return "private";
846 case AS_protected:
847 return "protected";
848 }
849}
850
851const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB,
852 AccessSpecifier AS) {
853 return DB << getAccessName(AS);
854}
855
856