blob: 30d76cb9e3d3c59980cda8960690269021744aef [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 Gregor7d7e6722008-11-12 23:21:09 +000027 SourceLocation L, IdentifierInfo *Id)
Douglas Gregor3e00bad2009-02-17 01:05:43 +000028 : RecordDecl(K, TK, DC, L, Id),
Douglas Gregor7d7e6722008-11-12 23:21:09 +000029 UserDeclaredConstructor(false), UserDeclaredCopyConstructor(false),
Sebastian Redl64b45f72009-01-05 20:52:13 +000030 UserDeclaredCopyAssignment(false), UserDeclaredDestructor(false),
Anders Carlsson67e4dd22009-03-22 01:52:17 +000031 Aggregate(true), PlainOldData(true), Polymorphic(false), Abstract(false),
Anders Carlsson072abef2009-04-17 02:34:54 +000032 HasTrivialConstructor(true), HasTrivialDestructor(true),
Douglas Gregord475b8d2009-03-25 21:17:03 +000033 Bases(0), NumBases(0), Conversions(DC, DeclarationName()),
34 TemplateOrInstantiation() { }
Douglas Gregor7d7e6722008-11-12 23:21:09 +000035
Ted Kremenek4b7c9832008-09-05 17:16:31 +000036CXXRecordDecl *CXXRecordDecl::Create(ASTContext &C, TagKind TK, DeclContext *DC,
37 SourceLocation L, IdentifierInfo *Id,
Douglas Gregoraafc0cc2009-05-15 19:11:46 +000038 CXXRecordDecl* PrevDecl,
39 bool DelayTypeCreation) {
Douglas Gregor3e00bad2009-02-17 01:05:43 +000040 CXXRecordDecl* R = new (C) CXXRecordDecl(CXXRecord, TK, DC, L, Id);
Douglas Gregoraafc0cc2009-05-15 19:11:46 +000041 if (!DelayTypeCreation)
42 C.getTypeDeclType(R, PrevDecl);
Ted Kremenek4b7c9832008-09-05 17:16:31 +000043 return R;
44}
45
Douglas Gregorf8268ae2008-10-22 17:49:05 +000046CXXRecordDecl::~CXXRecordDecl() {
Douglas Gregorf8268ae2008-10-22 17:49:05 +000047 delete [] Bases;
48}
49
Douglas Gregor57c856b2008-10-23 18:13:27 +000050void
51CXXRecordDecl::setBases(CXXBaseSpecifier const * const *Bases,
52 unsigned NumBases) {
Douglas Gregor64bffa92008-11-05 16:20:31 +000053 // C++ [dcl.init.aggr]p1:
54 // An aggregate is an array or a class (clause 9) with [...]
55 // no base classes [...].
56 Aggregate = false;
57
Douglas Gregor57c856b2008-10-23 18:13:27 +000058 if (this->Bases)
59 delete [] this->Bases;
60
Douglas Gregor2943aed2009-03-03 04:44:36 +000061 // FIXME: allocate using the ASTContext
Douglas Gregor57c856b2008-10-23 18:13:27 +000062 this->Bases = new CXXBaseSpecifier[NumBases];
63 this->NumBases = NumBases;
64 for (unsigned i = 0; i < NumBases; ++i)
65 this->Bases[i] = *Bases[i];
66}
67
Douglas Gregor396b7cd2008-11-03 17:51:48 +000068bool CXXRecordDecl::hasConstCopyConstructor(ASTContext &Context) const {
Sebastian Redl64b45f72009-01-05 20:52:13 +000069 QualType ClassType
70 = Context.getTypeDeclType(const_cast<CXXRecordDecl*>(this));
Douglas Gregor9e7d9de2008-12-15 21:24:18 +000071 DeclarationName ConstructorName
72 = Context.DeclarationNames.getCXXConstructorName(
73 Context.getCanonicalType(ClassType));
74 unsigned TypeQuals;
Douglas Gregorfdfab6b2008-12-23 21:31:30 +000075 DeclContext::lookup_const_iterator Con, ConEnd;
Douglas Gregor6ab35242009-04-09 21:40:53 +000076 for (llvm::tie(Con, ConEnd) = this->lookup(Context, ConstructorName);
Douglas Gregorfdfab6b2008-12-23 21:31:30 +000077 Con != ConEnd; ++Con) {
Douglas Gregor396b7cd2008-11-03 17:51:48 +000078 if (cast<CXXConstructorDecl>(*Con)->isCopyConstructor(Context, TypeQuals) &&
Eli Friedmane8e32052008-12-16 20:06:41 +000079 (TypeQuals & QualType::Const) != 0)
Douglas Gregor396b7cd2008-11-03 17:51:48 +000080 return true;
81 }
Douglas Gregorfdfab6b2008-12-23 21:31:30 +000082
Douglas Gregor396b7cd2008-11-03 17:51:48 +000083 return false;
84}
85
Sebastian Redl64b45f72009-01-05 20:52:13 +000086bool CXXRecordDecl::hasConstCopyAssignment(ASTContext &Context) const {
87 QualType ClassType = Context.getCanonicalType(Context.getTypeDeclType(
88 const_cast<CXXRecordDecl*>(this)));
89 DeclarationName OpName =Context.DeclarationNames.getCXXOperatorName(OO_Equal);
90
91 DeclContext::lookup_const_iterator Op, OpEnd;
Douglas Gregor6ab35242009-04-09 21:40:53 +000092 for (llvm::tie(Op, OpEnd) = this->lookup(Context, OpName);
Sebastian Redl64b45f72009-01-05 20:52:13 +000093 Op != OpEnd; ++Op) {
94 // C++ [class.copy]p9:
95 // A user-declared copy assignment operator is a non-static non-template
96 // member function of class X with exactly one parameter of type X, X&,
97 // const X&, volatile X& or const volatile X&.
98 const CXXMethodDecl* Method = cast<CXXMethodDecl>(*Op);
99 if (Method->isStatic())
100 continue;
101 // TODO: Skip templates? Or is this implicitly done due to parameter types?
Douglas Gregor72564e72009-02-26 23:50:07 +0000102 const FunctionProtoType *FnType =
103 Method->getType()->getAsFunctionProtoType();
Sebastian Redl64b45f72009-01-05 20:52:13 +0000104 assert(FnType && "Overloaded operator has no prototype.");
105 // Don't assert on this; an invalid decl might have been left in the AST.
106 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
107 continue;
108 bool AcceptsConst = true;
109 QualType ArgType = FnType->getArgType(0);
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000110 if (const LValueReferenceType *Ref = ArgType->getAsLValueReferenceType()) {
Sebastian Redl64b45f72009-01-05 20:52:13 +0000111 ArgType = Ref->getPointeeType();
Douglas Gregor2ff44782009-03-20 20:21:37 +0000112 // Is it a non-const lvalue reference?
Sebastian Redl64b45f72009-01-05 20:52:13 +0000113 if (!ArgType.isConstQualified())
114 AcceptsConst = false;
115 }
116 if (Context.getCanonicalType(ArgType).getUnqualifiedType() != ClassType)
117 continue;
118
119 // We have a single argument of type cv X or cv X&, i.e. we've found the
120 // copy assignment operator. Return whether it accepts const arguments.
121 return AcceptsConst;
122 }
123 assert(isInvalidDecl() &&
124 "No copy assignment operator declared in valid code.");
125 return false;
126}
127
128void
Douglas Gregor9e7d9de2008-12-15 21:24:18 +0000129CXXRecordDecl::addedConstructor(ASTContext &Context,
130 CXXConstructorDecl *ConDecl) {
Douglas Gregor6b3945f2009-01-07 19:46:03 +0000131 if (!ConDecl->isImplicit()) {
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000132 // Note that we have a user-declared constructor.
133 UserDeclaredConstructor = true;
134
Douglas Gregor64bffa92008-11-05 16:20:31 +0000135 // C++ [dcl.init.aggr]p1:
136 // An aggregate is an array or a class (clause 9) with no
137 // user-declared constructors (12.1) [...].
138 Aggregate = false;
139
Sebastian Redl64b45f72009-01-05 20:52:13 +0000140 // C++ [class]p4:
141 // A POD-struct is an aggregate class [...]
142 PlainOldData = false;
143
Anders Carlsson347ba892009-04-16 00:08:20 +0000144 // C++ [class.ctor]p5:
145 // A constructor is trivial if it is an implicitly-declared default
146 // constructor.
147 HasTrivialConstructor = false;
148
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000149 // Note when we have a user-declared copy constructor, which will
150 // suppress the implicit declaration of a copy constructor.
151 if (ConDecl->isCopyConstructor(Context))
152 UserDeclaredCopyConstructor = true;
153 }
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000154}
155
Sebastian Redl64b45f72009-01-05 20:52:13 +0000156void CXXRecordDecl::addedAssignmentOperator(ASTContext &Context,
157 CXXMethodDecl *OpDecl) {
158 // We're interested specifically in copy assignment operators.
159 // Unlike addedConstructor, this method is not called for implicit
160 // declarations.
Douglas Gregor72564e72009-02-26 23:50:07 +0000161 const FunctionProtoType *FnType = OpDecl->getType()->getAsFunctionProtoType();
Sebastian Redl64b45f72009-01-05 20:52:13 +0000162 assert(FnType && "Overloaded operator has no proto function type.");
163 assert(FnType->getNumArgs() == 1 && !FnType->isVariadic());
164 QualType ArgType = FnType->getArgType(0);
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000165 if (const LValueReferenceType *Ref = ArgType->getAsLValueReferenceType())
Sebastian Redl64b45f72009-01-05 20:52:13 +0000166 ArgType = Ref->getPointeeType();
167
168 ArgType = ArgType.getUnqualifiedType();
169 QualType ClassType = Context.getCanonicalType(Context.getTypeDeclType(
170 const_cast<CXXRecordDecl*>(this)));
171
172 if (ClassType != Context.getCanonicalType(ArgType))
173 return;
174
175 // This is a copy assignment operator.
176 // Suppress the implicit declaration of a copy constructor.
177 UserDeclaredCopyAssignment = true;
178
179 // C++ [class]p4:
180 // A POD-struct is an aggregate class that [...] has no user-defined copy
181 // assignment operator [...].
182 PlainOldData = false;
183}
184
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000185void CXXRecordDecl::addConversionFunction(ASTContext &Context,
186 CXXConversionDecl *ConvDecl) {
187 Conversions.addOverload(ConvDecl);
188}
189
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000190CXXMethodDecl *
191CXXMethodDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Douglas Gregor10bd3682008-11-17 22:58:34 +0000192 SourceLocation L, DeclarationName N,
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000193 QualType T, bool isStatic, bool isInline) {
Steve Naroff3e970492009-01-27 21:25:57 +0000194 return new (C) CXXMethodDecl(CXXMethod, RD, L, N, T, isStatic, isInline);
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000195}
196
Anders Carlsson05eb2442009-05-16 23:58:37 +0000197
198typedef llvm::DenseMap<const CXXMethodDecl*,
199 std::vector<const CXXMethodDecl *> *>
200 OverriddenMethodsMapTy;
201
202static OverriddenMethodsMapTy *OverriddenMethods = 0;
203
204void CXXMethodDecl::addOverriddenMethod(const CXXMethodDecl *MD) {
205 // FIXME: The CXXMethodDecl dtor needs to remove and free the entry.
206
207 if (!OverriddenMethods)
208 OverriddenMethods = new OverriddenMethodsMapTy();
209
210 std::vector<const CXXMethodDecl *> *&Methods = (*OverriddenMethods)[this];
211 if (!Methods)
212 Methods = new std::vector<const CXXMethodDecl *>;
213
214 Methods->push_back(MD);
215}
216
217CXXMethodDecl::method_iterator CXXMethodDecl::begin_overridden_methods() const {
218 if (!OverriddenMethods)
219 return 0;
220
221 OverriddenMethodsMapTy::iterator it = OverriddenMethods->find(this);
222 if (it == OverriddenMethods->end())
223 return 0;
224 return &(*it->second)[0];
225}
226
227CXXMethodDecl::method_iterator CXXMethodDecl::end_overridden_methods() const {
228 if (!OverriddenMethods)
229 return 0;
230
231 OverriddenMethodsMapTy::iterator it = OverriddenMethods->find(this);
232 if (it == OverriddenMethods->end())
233 return 0;
234
235 return &(*it->second)[it->second->size()];
236}
237
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000238QualType CXXMethodDecl::getThisType(ASTContext &C) const {
Argyrios Kyrtzidisb0d178d2008-10-24 22:28:18 +0000239 // C++ 9.3.2p1: The type of this in a member function of a class X is X*.
240 // If the member function is declared const, the type of this is const X*,
241 // if the member function is declared volatile, the type of this is
242 // volatile X*, and if the member function is declared const volatile,
243 // the type of this is const volatile X*.
244
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000245 assert(isInstance() && "No 'this' for static methods!");
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000246 QualType ClassTy = C.getTagDeclType(const_cast<CXXRecordDecl*>(getParent()));
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +0000247 ClassTy = ClassTy.getWithAdditionalQualifiers(getTypeQualifiers());
248 return C.getPointerType(ClassTy).withConst();
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000249}
250
Douglas Gregor7ad83902008-11-05 04:29:56 +0000251CXXBaseOrMemberInitializer::
252CXXBaseOrMemberInitializer(QualType BaseType, Expr **Args, unsigned NumArgs)
253 : Args(0), NumArgs(0) {
254 BaseOrMember = reinterpret_cast<uintptr_t>(BaseType.getTypePtr());
255 assert((BaseOrMember & 0x01) == 0 && "Invalid base class type pointer");
256 BaseOrMember |= 0x01;
257
258 if (NumArgs > 0) {
259 this->NumArgs = NumArgs;
260 this->Args = new Expr*[NumArgs];
261 for (unsigned Idx = 0; Idx < NumArgs; ++Idx)
262 this->Args[Idx] = Args[Idx];
263 }
264}
265
266CXXBaseOrMemberInitializer::
Douglas Gregor44b43212008-12-11 16:49:14 +0000267CXXBaseOrMemberInitializer(FieldDecl *Member, Expr **Args, unsigned NumArgs)
Douglas Gregor7ad83902008-11-05 04:29:56 +0000268 : Args(0), NumArgs(0) {
269 BaseOrMember = reinterpret_cast<uintptr_t>(Member);
270 assert((BaseOrMember & 0x01) == 0 && "Invalid member pointer");
271
272 if (NumArgs > 0) {
273 this->NumArgs = NumArgs;
274 this->Args = new Expr*[NumArgs];
275 for (unsigned Idx = 0; Idx < NumArgs; ++Idx)
276 this->Args[Idx] = Args[Idx];
277 }
278}
279
280CXXBaseOrMemberInitializer::~CXXBaseOrMemberInitializer() {
281 delete [] Args;
282}
283
Douglas Gregorb48fe382008-10-31 09:07:45 +0000284CXXConstructorDecl *
285CXXConstructorDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000286 SourceLocation L, DeclarationName N,
Douglas Gregorb48fe382008-10-31 09:07:45 +0000287 QualType T, bool isExplicit,
288 bool isInline, bool isImplicitlyDeclared) {
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000289 assert(N.getNameKind() == DeclarationName::CXXConstructorName &&
290 "Name must refer to a constructor");
Steve Naroff3e970492009-01-27 21:25:57 +0000291 return new (C) CXXConstructorDecl(RD, L, N, T, isExplicit, isInline,
Douglas Gregorb48fe382008-10-31 09:07:45 +0000292 isImplicitlyDeclared);
293}
294
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000295bool CXXConstructorDecl::isDefaultConstructor() const {
296 // C++ [class.ctor]p5:
Douglas Gregor64bffa92008-11-05 16:20:31 +0000297 // A default constructor for a class X is a constructor of class
298 // X that can be called without an argument.
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000299 return (getNumParams() == 0) ||
Douglas Gregorf03d7c72008-11-05 15:29:30 +0000300 (getNumParams() > 0 && getParamDecl(0)->getDefaultArg() != 0);
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000301}
302
303bool
304CXXConstructorDecl::isCopyConstructor(ASTContext &Context,
305 unsigned &TypeQuals) const {
306 // C++ [class.copy]p2:
Douglas Gregor64bffa92008-11-05 16:20:31 +0000307 // A non-template constructor for class X is a copy constructor
308 // if its first parameter is of type X&, const X&, volatile X& or
309 // const volatile X&, and either there are no other parameters
310 // or else all other parameters have default arguments (8.3.6).
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000311 if ((getNumParams() < 1) ||
312 (getNumParams() > 1 && getParamDecl(1)->getDefaultArg() == 0))
313 return false;
314
315 const ParmVarDecl *Param = getParamDecl(0);
316
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000317 // Do we have a reference type? Rvalue references don't count.
318 const LValueReferenceType *ParamRefType =
319 Param->getType()->getAsLValueReferenceType();
Douglas Gregor030ff0c2008-10-31 20:25:05 +0000320 if (!ParamRefType)
321 return false;
322
323 // Is it a reference to our class type?
324 QualType PointeeType
325 = Context.getCanonicalType(ParamRefType->getPointeeType());
326 QualType ClassTy
327 = Context.getTagDeclType(const_cast<CXXRecordDecl*>(getParent()));
328 if (PointeeType.getUnqualifiedType() != ClassTy)
329 return false;
330
331 // We have a copy constructor.
332 TypeQuals = PointeeType.getCVRQualifiers();
333 return true;
334}
335
Douglas Gregor60d62c22008-10-31 16:23:19 +0000336bool CXXConstructorDecl::isConvertingConstructor() const {
337 // C++ [class.conv.ctor]p1:
338 // A constructor declared without the function-specifier explicit
339 // that can be called with a single parameter specifies a
340 // conversion from the type of its first parameter to the type of
341 // its class. Such a constructor is called a converting
342 // constructor.
343 if (isExplicit())
344 return false;
345
346 return (getNumParams() == 0 &&
Douglas Gregor72564e72009-02-26 23:50:07 +0000347 getType()->getAsFunctionProtoType()->isVariadic()) ||
Douglas Gregor60d62c22008-10-31 16:23:19 +0000348 (getNumParams() == 1) ||
349 (getNumParams() > 1 && getParamDecl(1)->getDefaultArg() != 0);
350}
Douglas Gregorb48fe382008-10-31 09:07:45 +0000351
Douglas Gregor42a552f2008-11-05 20:51:48 +0000352CXXDestructorDecl *
353CXXDestructorDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000354 SourceLocation L, DeclarationName N,
Douglas Gregor42a552f2008-11-05 20:51:48 +0000355 QualType T, bool isInline,
356 bool isImplicitlyDeclared) {
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000357 assert(N.getNameKind() == DeclarationName::CXXDestructorName &&
358 "Name must refer to a destructor");
Steve Naroff3e970492009-01-27 21:25:57 +0000359 return new (C) CXXDestructorDecl(RD, L, N, T, isInline,
360 isImplicitlyDeclared);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000361}
362
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000363CXXConversionDecl *
364CXXConversionDecl::Create(ASTContext &C, CXXRecordDecl *RD,
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000365 SourceLocation L, DeclarationName N,
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000366 QualType T, bool isInline, bool isExplicit) {
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000367 assert(N.getNameKind() == DeclarationName::CXXConversionFunctionName &&
368 "Name must refer to a conversion function");
Steve Naroff3e970492009-01-27 21:25:57 +0000369 return new (C) CXXConversionDecl(RD, L, N, T, isInline, isExplicit);
Douglas Gregor2f1bc522008-11-07 20:08:42 +0000370}
371
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000372OverloadedFunctionDecl *
373OverloadedFunctionDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000374 DeclarationName N) {
Steve Naroff3e970492009-01-27 21:25:57 +0000375 return new (C) OverloadedFunctionDecl(DC, N);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000376}
Chris Lattner21ef7ae2008-11-04 16:51:42 +0000377
378LinkageSpecDecl *LinkageSpecDecl::Create(ASTContext &C,
Douglas Gregor074149e2009-01-05 19:45:36 +0000379 DeclContext *DC,
Chris Lattner21ef7ae2008-11-04 16:51:42 +0000380 SourceLocation L,
Douglas Gregor074149e2009-01-05 19:45:36 +0000381 LanguageIDs Lang, bool Braces) {
Steve Naroff3e970492009-01-27 21:25:57 +0000382 return new (C) LinkageSpecDecl(DC, L, Lang, Braces);
Douglas Gregorf44515a2008-12-16 22:23:02 +0000383}
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000384
385UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC,
386 SourceLocation L,
387 SourceLocation NamespaceLoc,
388 SourceLocation IdentLoc,
389 NamespaceDecl *Used,
390 DeclContext *CommonAncestor) {
391 return new (C) UsingDirectiveDecl(DC, L, NamespaceLoc, IdentLoc,
392 Used, CommonAncestor);
393}
394
Anders Carlsson68771c72009-03-28 22:58:02 +0000395NamespaceAliasDecl *NamespaceAliasDecl::Create(ASTContext &C, DeclContext *DC,
396 SourceLocation L,
397 SourceLocation AliasLoc,
398 IdentifierInfo *Alias,
399 SourceLocation IdentLoc,
400 NamedDecl *Namespace) {
401 return new (C) NamespaceAliasDecl(DC, L, AliasLoc, Alias, IdentLoc,
402 Namespace);
403}
404
Anders Carlssonfb311762009-03-14 00:25:26 +0000405StaticAssertDecl *StaticAssertDecl::Create(ASTContext &C, DeclContext *DC,
406 SourceLocation L, Expr *AssertExpr,
407 StringLiteral *Message) {
408 return new (C) StaticAssertDecl(DC, L, AssertExpr, Message);
409}
410
411void StaticAssertDecl::Destroy(ASTContext& C) {
412 AssertExpr->Destroy(C);
413 Message->Destroy(C);
414 this->~StaticAssertDecl();
415 C.Deallocate((void *)this);
416}
417
418StaticAssertDecl::~StaticAssertDecl() {
419}
420
Anders Carlsson86fa7502009-04-21 01:57:48 +0000421CXXTempVarDecl *CXXTempVarDecl::Create(ASTContext &C, DeclContext *DC,
422 QualType T) {
Eli Friedman617bd452009-04-25 22:20:56 +0000423 assert((T->isDependentType() ||
424 isa<CXXRecordDecl>(T->getAsRecordType()->getDecl())) &&
Anders Carlssonf6274062009-04-24 06:06:07 +0000425 "CXXTempVarDecl must either have a dependent type "
426 "or a C++ record type!");
Anders Carlsson86fa7502009-04-21 01:57:48 +0000427 return new (C) CXXTempVarDecl(DC, T);
428}
429
Anders Carlsson05bf2c72009-03-26 23:46:50 +0000430static const char *getAccessName(AccessSpecifier AS) {
431 switch (AS) {
432 default:
433 case AS_none:
434 assert("Invalid access specifier!");
435 return 0;
436 case AS_public:
437 return "public";
438 case AS_private:
439 return "private";
440 case AS_protected:
441 return "protected";
442 }
443}
444
445const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB,
446 AccessSpecifier AS) {
447 return DB << getAccessName(AS);
448}
449
450