Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 1 | //===--- 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 Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 15 | #include "clang/AST/DeclTemplate.h" |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTContext.h" |
Anders Carlsson | fb31176 | 2009-03-14 00:25:26 +0000 | [diff] [blame] | 17 | #include "clang/AST/Expr.h" |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 18 | #include "clang/AST/TypeLoc.h" |
Douglas Gregor | 7d7e672 | 2008-11-12 23:21:09 +0000 | [diff] [blame] | 19 | #include "clang/Basic/IdentifierTable.h" |
Douglas Gregor | fdfab6b | 2008-12-23 21:31:30 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/STLExtras.h" |
Fariborz Jahanian | faebcbb | 2009-09-12 19:52:10 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallPtrSet.h" |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 22 | using namespace clang; |
| 23 | |
| 24 | //===----------------------------------------------------------------------===// |
| 25 | // Decl Allocation/Deallocation Method Implementations |
| 26 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 27 | |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 28 | CXXRecordDecl::DefinitionData::DefinitionData(CXXRecordDecl *D) |
| 29 | : UserDeclaredConstructor(false), UserDeclaredCopyConstructor(false), |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 30 | UserDeclaredCopyAssignment(false), UserDeclaredDestructor(false), |
Eli Friedman | 97c134e | 2009-08-15 22:23:00 +0000 | [diff] [blame] | 31 | Aggregate(true), PlainOldData(true), Empty(true), Polymorphic(false), |
| 32 | Abstract(false), HasTrivialConstructor(true), |
| 33 | HasTrivialCopyConstructor(true), HasTrivialCopyAssignment(true), |
Fariborz Jahanian | 6250921 | 2009-09-12 18:26:03 +0000 | [diff] [blame] | 34 | HasTrivialDestructor(true), ComputedVisibleConversions(false), |
| 35 | Bases(0), NumBases(0), VBases(0), NumVBases(0), |
John McCall | d60e22e | 2010-03-12 01:19:31 +0000 | [diff] [blame] | 36 | Definition(D), FirstFriend(0) { |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | CXXRecordDecl::CXXRecordDecl(Kind K, TagKind TK, DeclContext *DC, |
| 40 | SourceLocation L, IdentifierInfo *Id, |
| 41 | CXXRecordDecl *PrevDecl, |
| 42 | SourceLocation TKL) |
| 43 | : RecordDecl(K, TK, DC, L, Id, PrevDecl, TKL), |
| 44 | DefinitionData(PrevDecl ? PrevDecl->DefinitionData : 0), |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 45 | TemplateOrInstantiation() { } |
Douglas Gregor | 7d7e672 | 2008-11-12 23:21:09 +0000 | [diff] [blame] | 46 | |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 47 | CXXRecordDecl *CXXRecordDecl::Create(ASTContext &C, TagKind TK, DeclContext *DC, |
| 48 | SourceLocation L, IdentifierInfo *Id, |
Douglas Gregor | 741dd9a | 2009-07-21 14:46:17 +0000 | [diff] [blame] | 49 | SourceLocation TKL, |
Douglas Gregor | aafc0cc | 2009-05-15 19:11:46 +0000 | [diff] [blame] | 50 | CXXRecordDecl* PrevDecl, |
| 51 | bool DelayTypeCreation) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 52 | CXXRecordDecl* R = new (C) CXXRecordDecl(CXXRecord, TK, DC, L, Id, |
Douglas Gregor | 8e9e9ef | 2009-07-29 23:36:44 +0000 | [diff] [blame] | 53 | PrevDecl, TKL); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 54 | |
Douglas Gregor | 8e9e9ef | 2009-07-29 23:36:44 +0000 | [diff] [blame] | 55 | // FIXME: DelayTypeCreation seems like such a hack |
Douglas Gregor | aafc0cc | 2009-05-15 19:11:46 +0000 | [diff] [blame] | 56 | if (!DelayTypeCreation) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 57 | C.getTypeDeclType(R, PrevDecl); |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 58 | return R; |
| 59 | } |
| 60 | |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 61 | CXXRecordDecl::~CXXRecordDecl() { |
Fariborz Jahanian | 5ffcd7b | 2009-07-02 18:26:15 +0000 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | void CXXRecordDecl::Destroy(ASTContext &C) { |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 65 | if (data().Definition == this) { |
| 66 | C.Deallocate(data().Bases); |
| 67 | C.Deallocate(data().VBases); |
| 68 | C.Deallocate(&data()); |
| 69 | } |
Fariborz Jahanian | 5ffcd7b | 2009-07-02 18:26:15 +0000 | [diff] [blame] | 70 | this->RecordDecl::Destroy(C); |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 71 | } |
| 72 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 73 | void |
Douglas Gregor | 2d5b703 | 2010-02-11 01:30:34 +0000 | [diff] [blame] | 74 | CXXRecordDecl::setBases(CXXBaseSpecifier const * const *Bases, |
Douglas Gregor | 57c856b | 2008-10-23 18:13:27 +0000 | [diff] [blame] | 75 | unsigned NumBases) { |
Douglas Gregor | 2d5b703 | 2010-02-11 01:30:34 +0000 | [diff] [blame] | 76 | ASTContext &C = getASTContext(); |
| 77 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 78 | // C++ [dcl.init.aggr]p1: |
Douglas Gregor | 64bffa9 | 2008-11-05 16:20:31 +0000 | [diff] [blame] | 79 | // An aggregate is an array or a class (clause 9) with [...] |
| 80 | // no base classes [...]. |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 81 | data().Aggregate = false; |
Douglas Gregor | 64bffa9 | 2008-11-05 16:20:31 +0000 | [diff] [blame] | 82 | |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 83 | if (data().Bases) |
| 84 | C.Deallocate(data().Bases); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 85 | |
Anders Carlsson | 6f6de73 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 86 | // The set of seen virtual base types. |
Anders Carlsson | 1c36393 | 2010-03-29 19:49:09 +0000 | [diff] [blame] | 87 | llvm::SmallPtrSet<CanQualType, 8> SeenVBaseTypes; |
Anders Carlsson | 6f6de73 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 88 | |
| 89 | // The virtual bases of this class. |
| 90 | llvm::SmallVector<const CXXBaseSpecifier *, 8> VBases; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 91 | |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 92 | data().Bases = new(C) CXXBaseSpecifier [NumBases]; |
| 93 | data().NumBases = NumBases; |
Fariborz Jahanian | 40c072f | 2009-07-10 20:13:23 +0000 | [diff] [blame] | 94 | for (unsigned i = 0; i < NumBases; ++i) { |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 95 | data().Bases[i] = *Bases[i]; |
Fariborz Jahanian | 40c072f | 2009-07-10 20:13:23 +0000 | [diff] [blame] | 96 | // Keep track of inherited vbases for this base class. |
| 97 | const CXXBaseSpecifier *Base = Bases[i]; |
| 98 | QualType BaseType = Base->getType(); |
Douglas Gregor | 5fe8c04 | 2010-02-27 00:25:28 +0000 | [diff] [blame] | 99 | // Skip dependent types; we can't do any checking on them now. |
Fariborz Jahanian | 40c072f | 2009-07-10 20:13:23 +0000 | [diff] [blame] | 100 | if (BaseType->isDependentType()) |
| 101 | continue; |
| 102 | CXXRecordDecl *BaseClassDecl |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 103 | = cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl()); |
Anders Carlsson | 6f6de73 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 104 | |
| 105 | // Now go through all virtual bases of this base and add them. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 106 | for (CXXRecordDecl::base_class_iterator VBase = |
Fariborz Jahanian | 40c072f | 2009-07-10 20:13:23 +0000 | [diff] [blame] | 107 | BaseClassDecl->vbases_begin(), |
| 108 | E = BaseClassDecl->vbases_end(); VBase != E; ++VBase) { |
Anders Carlsson | 6f6de73 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 109 | // Add this base if it's not already in the list. |
Anders Carlsson | 1c36393 | 2010-03-29 19:49:09 +0000 | [diff] [blame] | 110 | if (SeenVBaseTypes.insert(C.getCanonicalType(VBase->getType()))) |
Anders Carlsson | 6f6de73 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 111 | VBases.push_back(VBase); |
Fariborz Jahanian | 40c072f | 2009-07-10 20:13:23 +0000 | [diff] [blame] | 112 | } |
Anders Carlsson | 6f6de73 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 113 | |
| 114 | if (Base->isVirtual()) { |
| 115 | // Add this base if it's not already in the list. |
Anders Carlsson | 1c36393 | 2010-03-29 19:49:09 +0000 | [diff] [blame] | 116 | if (SeenVBaseTypes.insert(C.getCanonicalType(BaseType))) |
Anders Carlsson | 6f6de73 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 117 | VBases.push_back(Base); |
| 118 | } |
| 119 | |
Fariborz Jahanian | 40c072f | 2009-07-10 20:13:23 +0000 | [diff] [blame] | 120 | } |
Anders Carlsson | 6f6de73 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 121 | |
| 122 | if (VBases.empty()) |
| 123 | return; |
| 124 | |
| 125 | // Create base specifier for any direct or indirect virtual bases. |
| 126 | data().VBases = new (C) CXXBaseSpecifier[VBases.size()]; |
| 127 | data().NumVBases = VBases.size(); |
| 128 | for (int I = 0, E = VBases.size(); I != E; ++I) { |
| 129 | QualType VBaseType = VBases[I]->getType(); |
| 130 | |
| 131 | // Skip dependent types; we can't do any checking on them now. |
| 132 | if (VBaseType->isDependentType()) |
| 133 | continue; |
| 134 | |
| 135 | CXXRecordDecl *VBaseClassDecl |
| 136 | = cast<CXXRecordDecl>(VBaseType->getAs<RecordType>()->getDecl()); |
| 137 | |
| 138 | data().VBases[I] = |
| 139 | CXXBaseSpecifier(VBaseClassDecl->getSourceRange(), true, |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 140 | VBaseClassDecl->getTagKind() == TTK_Class, |
Anders Carlsson | 6f6de73 | 2010-03-29 05:13:12 +0000 | [diff] [blame] | 141 | VBases[I]->getAccessSpecifier(), VBaseType); |
Fariborz Jahanian | 40c072f | 2009-07-10 20:13:23 +0000 | [diff] [blame] | 142 | } |
Douglas Gregor | 57c856b | 2008-10-23 18:13:27 +0000 | [diff] [blame] | 143 | } |
| 144 | |
Douglas Gregor | 9edad9b | 2010-01-14 17:47:39 +0000 | [diff] [blame] | 145 | /// Callback function for CXXRecordDecl::forallBases that acknowledges |
| 146 | /// that it saw a base class. |
| 147 | static bool SawBase(const CXXRecordDecl *, void *) { |
| 148 | return true; |
| 149 | } |
| 150 | |
| 151 | bool CXXRecordDecl::hasAnyDependentBases() const { |
| 152 | if (!isDependentContext()) |
| 153 | return false; |
| 154 | |
| 155 | return !forallBases(SawBase, 0); |
| 156 | } |
| 157 | |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 158 | bool CXXRecordDecl::hasConstCopyConstructor(ASTContext &Context) const { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 159 | return getCopyConstructor(Context, Qualifiers::Const) != 0; |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 160 | } |
| 161 | |
Douglas Gregor | 0d405db | 2010-07-01 20:59:04 +0000 | [diff] [blame] | 162 | /// \brief Perform a simplistic form of overload resolution that only considers |
| 163 | /// cv-qualifiers on a single parameter, and return the best overload candidate |
| 164 | /// (if there is one). |
| 165 | static CXXMethodDecl * |
| 166 | GetBestOverloadCandidateSimple( |
| 167 | const llvm::SmallVectorImpl<std::pair<CXXMethodDecl *, Qualifiers> > &Cands) { |
| 168 | if (Cands.empty()) |
| 169 | return 0; |
| 170 | if (Cands.size() == 1) |
| 171 | return Cands[0].first; |
| 172 | |
| 173 | unsigned Best = 0, N = Cands.size(); |
| 174 | for (unsigned I = 1; I != N; ++I) |
| 175 | if (Cands[Best].second.isSupersetOf(Cands[I].second)) |
| 176 | Best = I; |
| 177 | |
| 178 | for (unsigned I = 1; I != N; ++I) |
| 179 | if (Cands[Best].second.isSupersetOf(Cands[I].second)) |
| 180 | return 0; |
| 181 | |
| 182 | return Cands[Best].first; |
| 183 | } |
| 184 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 185 | CXXConstructorDecl *CXXRecordDecl::getCopyConstructor(ASTContext &Context, |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 186 | unsigned TypeQuals) const{ |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 187 | QualType ClassType |
| 188 | = Context.getTypeDeclType(const_cast<CXXRecordDecl*>(this)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 189 | DeclarationName ConstructorName |
Douglas Gregor | 9e7d9de | 2008-12-15 21:24:18 +0000 | [diff] [blame] | 190 | = Context.DeclarationNames.getCXXConstructorName( |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 191 | Context.getCanonicalType(ClassType)); |
| 192 | unsigned FoundTQs; |
Douglas Gregor | 0d405db | 2010-07-01 20:59:04 +0000 | [diff] [blame] | 193 | llvm::SmallVector<std::pair<CXXMethodDecl *, Qualifiers>, 4> Found; |
Douglas Gregor | fdfab6b | 2008-12-23 21:31:30 +0000 | [diff] [blame] | 194 | DeclContext::lookup_const_iterator Con, ConEnd; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 195 | for (llvm::tie(Con, ConEnd) = this->lookup(ConstructorName); |
Douglas Gregor | fdfab6b | 2008-12-23 21:31:30 +0000 | [diff] [blame] | 196 | Con != ConEnd; ++Con) { |
Douglas Gregor | d93bacf | 2009-09-04 14:46:39 +0000 | [diff] [blame] | 197 | // C++ [class.copy]p2: |
| 198 | // A non-template constructor for class X is a copy constructor if [...] |
| 199 | if (isa<FunctionTemplateDecl>(*Con)) |
| 200 | continue; |
| 201 | |
Douglas Gregor | 0d405db | 2010-07-01 20:59:04 +0000 | [diff] [blame] | 202 | CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con); |
| 203 | if (Constructor->isCopyConstructor(FoundTQs)) { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 204 | if (((TypeQuals & Qualifiers::Const) == (FoundTQs & Qualifiers::Const)) || |
| 205 | (!(TypeQuals & Qualifiers::Const) && (FoundTQs & Qualifiers::Const))) |
Douglas Gregor | 0d405db | 2010-07-01 20:59:04 +0000 | [diff] [blame] | 206 | Found.push_back(std::make_pair( |
| 207 | const_cast<CXXConstructorDecl *>(Constructor), |
| 208 | Qualifiers::fromCVRMask(FoundTQs))); |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 209 | } |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 210 | } |
Douglas Gregor | 0d405db | 2010-07-01 20:59:04 +0000 | [diff] [blame] | 211 | |
| 212 | return cast_or_null<CXXConstructorDecl>( |
| 213 | GetBestOverloadCandidateSimple(Found)); |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 214 | } |
| 215 | |
Fariborz Jahanian | 0270b8a | 2009-08-12 23:34:46 +0000 | [diff] [blame] | 216 | bool CXXRecordDecl::hasConstCopyAssignment(ASTContext &Context, |
| 217 | const CXXMethodDecl *& MD) const { |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 218 | QualType ClassType = Context.getCanonicalType(Context.getTypeDeclType( |
| 219 | const_cast<CXXRecordDecl*>(this))); |
| 220 | DeclarationName OpName =Context.DeclarationNames.getCXXOperatorName(OO_Equal); |
| 221 | |
| 222 | DeclContext::lookup_const_iterator Op, OpEnd; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 223 | for (llvm::tie(Op, OpEnd) = this->lookup(OpName); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 224 | Op != OpEnd; ++Op) { |
| 225 | // C++ [class.copy]p9: |
| 226 | // A user-declared copy assignment operator is a non-static non-template |
| 227 | // member function of class X with exactly one parameter of type X, X&, |
| 228 | // const X&, volatile X& or const volatile X&. |
Douglas Gregor | 682054c | 2009-10-30 22:48:49 +0000 | [diff] [blame] | 229 | const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op); |
| 230 | if (!Method) |
| 231 | continue; |
| 232 | |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 233 | if (Method->isStatic()) |
| 234 | continue; |
Douglas Gregor | 77da3f4 | 2009-10-13 23:45:19 +0000 | [diff] [blame] | 235 | if (Method->getPrimaryTemplate()) |
| 236 | continue; |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 237 | const FunctionProtoType *FnType = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 238 | Method->getType()->getAs<FunctionProtoType>(); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 239 | assert(FnType && "Overloaded operator has no prototype."); |
| 240 | // Don't assert on this; an invalid decl might have been left in the AST. |
| 241 | if (FnType->getNumArgs() != 1 || FnType->isVariadic()) |
| 242 | continue; |
| 243 | bool AcceptsConst = true; |
| 244 | QualType ArgType = FnType->getArgType(0); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 245 | if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()) { |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 246 | ArgType = Ref->getPointeeType(); |
Douglas Gregor | 2ff4478 | 2009-03-20 20:21:37 +0000 | [diff] [blame] | 247 | // Is it a non-const lvalue reference? |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 248 | if (!ArgType.isConstQualified()) |
| 249 | AcceptsConst = false; |
| 250 | } |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 251 | if (!Context.hasSameUnqualifiedType(ArgType, ClassType)) |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 252 | continue; |
Fariborz Jahanian | 0270b8a | 2009-08-12 23:34:46 +0000 | [diff] [blame] | 253 | MD = Method; |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 254 | // We have a single argument of type cv X or cv X&, i.e. we've found the |
| 255 | // copy assignment operator. Return whether it accepts const arguments. |
| 256 | return AcceptsConst; |
| 257 | } |
| 258 | assert(isInvalidDecl() && |
| 259 | "No copy assignment operator declared in valid code."); |
| 260 | return false; |
| 261 | } |
| 262 | |
Douglas Gregor | b87786f | 2010-07-01 17:48:08 +0000 | [diff] [blame] | 263 | CXXMethodDecl *CXXRecordDecl::getCopyAssignmentOperator(bool ArgIsConst) const { |
| 264 | ASTContext &Context = getASTContext(); |
| 265 | QualType Class = Context.getTypeDeclType(const_cast<CXXRecordDecl *>(this)); |
| 266 | DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal); |
| 267 | |
| 268 | llvm::SmallVector<std::pair<CXXMethodDecl *, Qualifiers>, 4> Found; |
| 269 | DeclContext::lookup_const_iterator Op, OpEnd; |
| 270 | for (llvm::tie(Op, OpEnd) = this->lookup(Name); Op != OpEnd; ++Op) { |
| 271 | // C++ [class.copy]p9: |
| 272 | // A user-declared copy assignment operator is a non-static non-template |
| 273 | // member function of class X with exactly one parameter of type X, X&, |
| 274 | // const X&, volatile X& or const volatile X&. |
| 275 | const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op); |
| 276 | if (!Method || Method->isStatic() || Method->getPrimaryTemplate()) |
| 277 | continue; |
| 278 | |
| 279 | const FunctionProtoType *FnType |
| 280 | = Method->getType()->getAs<FunctionProtoType>(); |
| 281 | assert(FnType && "Overloaded operator has no prototype."); |
| 282 | // Don't assert on this; an invalid decl might have been left in the AST. |
| 283 | if (FnType->getNumArgs() != 1 || FnType->isVariadic()) |
| 284 | continue; |
| 285 | |
| 286 | QualType ArgType = FnType->getArgType(0); |
| 287 | Qualifiers Quals; |
| 288 | if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()) { |
| 289 | ArgType = Ref->getPointeeType(); |
| 290 | // If we have a const argument and we have a reference to a non-const, |
| 291 | // this function does not match. |
| 292 | if (ArgIsConst && !ArgType.isConstQualified()) |
| 293 | continue; |
| 294 | |
| 295 | Quals = ArgType.getQualifiers(); |
| 296 | } else { |
| 297 | // By-value copy-assignment operators are treated like const X& |
| 298 | // copy-assignment operators. |
| 299 | Quals = Qualifiers::fromCVRMask(Qualifiers::Const); |
| 300 | } |
| 301 | |
| 302 | if (!Context.hasSameUnqualifiedType(ArgType, Class)) |
| 303 | continue; |
| 304 | |
| 305 | // Save this copy-assignment operator. It might be "the one". |
| 306 | Found.push_back(std::make_pair(const_cast<CXXMethodDecl *>(Method), Quals)); |
| 307 | } |
| 308 | |
| 309 | // Use a simplistic form of overload resolution to find the candidate. |
| 310 | return GetBestOverloadCandidateSimple(Found); |
| 311 | } |
| 312 | |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 313 | void |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 314 | CXXRecordDecl::addedConstructor(ASTContext &Context, |
Douglas Gregor | 9e7d9de | 2008-12-15 21:24:18 +0000 | [diff] [blame] | 315 | CXXConstructorDecl *ConDecl) { |
Fariborz Jahanian | 8bc3fa4 | 2009-06-17 22:44:31 +0000 | [diff] [blame] | 316 | assert(!ConDecl->isImplicit() && "addedConstructor - not for implicit decl"); |
| 317 | // Note that we have a user-declared constructor. |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 318 | data().UserDeclaredConstructor = true; |
Douglas Gregor | 030ff0c | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 319 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 320 | // C++ [dcl.init.aggr]p1: |
Fariborz Jahanian | 8bc3fa4 | 2009-06-17 22:44:31 +0000 | [diff] [blame] | 321 | // An aggregate is an array or a class (clause 9) with no |
| 322 | // user-declared constructors (12.1) [...]. |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 323 | data().Aggregate = false; |
Douglas Gregor | 64bffa9 | 2008-11-05 16:20:31 +0000 | [diff] [blame] | 324 | |
Fariborz Jahanian | 8bc3fa4 | 2009-06-17 22:44:31 +0000 | [diff] [blame] | 325 | // C++ [class]p4: |
| 326 | // A POD-struct is an aggregate class [...] |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 327 | data().PlainOldData = false; |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 328 | |
Fariborz Jahanian | 8bc3fa4 | 2009-06-17 22:44:31 +0000 | [diff] [blame] | 329 | // C++ [class.ctor]p5: |
| 330 | // A constructor is trivial if it is an implicitly-declared default |
| 331 | // constructor. |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 332 | // FIXME: C++0x: don't do this for "= default" default constructors. |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 333 | data().HasTrivialConstructor = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 334 | |
Fariborz Jahanian | 8bc3fa4 | 2009-06-17 22:44:31 +0000 | [diff] [blame] | 335 | // Note when we have a user-declared copy constructor, which will |
| 336 | // suppress the implicit declaration of a copy constructor. |
Douglas Gregor | 9e9199d | 2009-12-22 00:34:07 +0000 | [diff] [blame] | 337 | if (ConDecl->isCopyConstructor()) { |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 338 | data().UserDeclaredCopyConstructor = true; |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 339 | |
| 340 | // C++ [class.copy]p6: |
| 341 | // A copy constructor is trivial if it is implicitly declared. |
| 342 | // FIXME: C++0x: don't do this for "= default" copy constructors. |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 343 | data().HasTrivialCopyConstructor = false; |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 344 | } |
Douglas Gregor | 030ff0c | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 345 | } |
| 346 | |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 347 | void CXXRecordDecl::addedAssignmentOperator(ASTContext &Context, |
| 348 | CXXMethodDecl *OpDecl) { |
| 349 | // We're interested specifically in copy assignment operators. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 350 | const FunctionProtoType *FnType = OpDecl->getType()->getAs<FunctionProtoType>(); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 351 | assert(FnType && "Overloaded operator has no proto function type."); |
| 352 | assert(FnType->getNumArgs() == 1 && !FnType->isVariadic()); |
Douglas Gregor | 77da3f4 | 2009-10-13 23:45:19 +0000 | [diff] [blame] | 353 | |
| 354 | // Copy assignment operators must be non-templates. |
| 355 | if (OpDecl->getPrimaryTemplate() || OpDecl->getDescribedFunctionTemplate()) |
| 356 | return; |
| 357 | |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 358 | QualType ArgType = FnType->getArgType(0); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 359 | if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()) |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 360 | ArgType = Ref->getPointeeType(); |
| 361 | |
| 362 | ArgType = ArgType.getUnqualifiedType(); |
| 363 | QualType ClassType = Context.getCanonicalType(Context.getTypeDeclType( |
| 364 | const_cast<CXXRecordDecl*>(this))); |
| 365 | |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 366 | if (!Context.hasSameUnqualifiedType(ClassType, ArgType)) |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 367 | return; |
| 368 | |
| 369 | // This is a copy assignment operator. |
Eli Friedman | 88fad63 | 2009-11-07 00:02:45 +0000 | [diff] [blame] | 370 | // Note on the decl that it is a copy assignment operator. |
| 371 | OpDecl->setCopyAssignment(true); |
| 372 | |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 373 | // Suppress the implicit declaration of a copy constructor. |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 374 | data().UserDeclaredCopyAssignment = true; |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 375 | |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 376 | // C++ [class.copy]p11: |
| 377 | // A copy assignment operator is trivial if it is implicitly declared. |
| 378 | // FIXME: C++0x: don't do this for "= default" copy operators. |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 379 | data().HasTrivialCopyAssignment = false; |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 380 | |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 381 | // C++ [class]p4: |
| 382 | // A POD-struct is an aggregate class that [...] has no user-defined copy |
| 383 | // assignment operator [...]. |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 384 | data().PlainOldData = false; |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 385 | } |
| 386 | |
John McCall | b05b5f3 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 387 | static CanQualType GetConversionType(ASTContext &Context, NamedDecl *Conv) { |
| 388 | QualType T; |
John McCall | 32daa42 | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 389 | if (isa<UsingShadowDecl>(Conv)) |
| 390 | Conv = cast<UsingShadowDecl>(Conv)->getTargetDecl(); |
John McCall | b05b5f3 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 391 | if (FunctionTemplateDecl *ConvTemp = dyn_cast<FunctionTemplateDecl>(Conv)) |
| 392 | T = ConvTemp->getTemplatedDecl()->getResultType(); |
| 393 | else |
| 394 | T = cast<CXXConversionDecl>(Conv)->getConversionType(); |
| 395 | return Context.getCanonicalType(T); |
Fariborz Jahanian | 0351a1e | 2009-10-07 20:43:36 +0000 | [diff] [blame] | 396 | } |
| 397 | |
John McCall | b05b5f3 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 398 | /// Collect the visible conversions of a base class. |
| 399 | /// |
| 400 | /// \param Base a base class of the class we're considering |
| 401 | /// \param InVirtual whether this base class is a virtual base (or a base |
| 402 | /// of a virtual base) |
| 403 | /// \param Access the access along the inheritance path to this base |
| 404 | /// \param ParentHiddenTypes the conversions provided by the inheritors |
| 405 | /// of this base |
| 406 | /// \param Output the set to which to add conversions from non-virtual bases |
| 407 | /// \param VOutput the set to which to add conversions from virtual bases |
| 408 | /// \param HiddenVBaseCs the set of conversions which were hidden in a |
| 409 | /// virtual base along some inheritance path |
| 410 | static void CollectVisibleConversions(ASTContext &Context, |
| 411 | CXXRecordDecl *Record, |
| 412 | bool InVirtual, |
| 413 | AccessSpecifier Access, |
| 414 | const llvm::SmallPtrSet<CanQualType, 8> &ParentHiddenTypes, |
| 415 | UnresolvedSetImpl &Output, |
| 416 | UnresolvedSetImpl &VOutput, |
| 417 | llvm::SmallPtrSet<NamedDecl*, 8> &HiddenVBaseCs) { |
| 418 | // The set of types which have conversions in this class or its |
| 419 | // subclasses. As an optimization, we don't copy the derived set |
| 420 | // unless it might change. |
| 421 | const llvm::SmallPtrSet<CanQualType, 8> *HiddenTypes = &ParentHiddenTypes; |
| 422 | llvm::SmallPtrSet<CanQualType, 8> HiddenTypesBuffer; |
| 423 | |
| 424 | // Collect the direct conversions and figure out which conversions |
| 425 | // will be hidden in the subclasses. |
| 426 | UnresolvedSetImpl &Cs = *Record->getConversionFunctions(); |
| 427 | if (!Cs.empty()) { |
| 428 | HiddenTypesBuffer = ParentHiddenTypes; |
| 429 | HiddenTypes = &HiddenTypesBuffer; |
| 430 | |
| 431 | for (UnresolvedSetIterator I = Cs.begin(), E = Cs.end(); I != E; ++I) { |
| 432 | bool Hidden = |
| 433 | !HiddenTypesBuffer.insert(GetConversionType(Context, I.getDecl())); |
| 434 | |
| 435 | // If this conversion is hidden and we're in a virtual base, |
| 436 | // remember that it's hidden along some inheritance path. |
| 437 | if (Hidden && InVirtual) |
| 438 | HiddenVBaseCs.insert(cast<NamedDecl>(I.getDecl()->getCanonicalDecl())); |
| 439 | |
| 440 | // If this conversion isn't hidden, add it to the appropriate output. |
| 441 | else if (!Hidden) { |
| 442 | AccessSpecifier IAccess |
| 443 | = CXXRecordDecl::MergeAccess(Access, I.getAccess()); |
| 444 | |
| 445 | if (InVirtual) |
| 446 | VOutput.addDecl(I.getDecl(), IAccess); |
Fariborz Jahanian | 6250921 | 2009-09-12 18:26:03 +0000 | [diff] [blame] | 447 | else |
John McCall | b05b5f3 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 448 | Output.addDecl(I.getDecl(), IAccess); |
Fariborz Jahanian | 5346278 | 2009-09-11 21:44:33 +0000 | [diff] [blame] | 449 | } |
| 450 | } |
| 451 | } |
Sebastian Redl | 9994a34 | 2009-10-25 17:03:50 +0000 | [diff] [blame] | 452 | |
John McCall | b05b5f3 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 453 | // Collect information recursively from any base classes. |
| 454 | for (CXXRecordDecl::base_class_iterator |
| 455 | I = Record->bases_begin(), E = Record->bases_end(); I != E; ++I) { |
| 456 | const RecordType *RT = I->getType()->getAs<RecordType>(); |
| 457 | if (!RT) continue; |
Sebastian Redl | 9994a34 | 2009-10-25 17:03:50 +0000 | [diff] [blame] | 458 | |
John McCall | b05b5f3 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 459 | AccessSpecifier BaseAccess |
| 460 | = CXXRecordDecl::MergeAccess(Access, I->getAccessSpecifier()); |
| 461 | bool BaseInVirtual = InVirtual || I->isVirtual(); |
Sebastian Redl | 9994a34 | 2009-10-25 17:03:50 +0000 | [diff] [blame] | 462 | |
John McCall | b05b5f3 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 463 | CXXRecordDecl *Base = cast<CXXRecordDecl>(RT->getDecl()); |
| 464 | CollectVisibleConversions(Context, Base, BaseInVirtual, BaseAccess, |
| 465 | *HiddenTypes, Output, VOutput, HiddenVBaseCs); |
Fariborz Jahanian | 5346278 | 2009-09-11 21:44:33 +0000 | [diff] [blame] | 466 | } |
John McCall | b05b5f3 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 467 | } |
Sebastian Redl | 9994a34 | 2009-10-25 17:03:50 +0000 | [diff] [blame] | 468 | |
John McCall | b05b5f3 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 469 | /// Collect the visible conversions of a class. |
| 470 | /// |
| 471 | /// This would be extremely straightforward if it weren't for virtual |
| 472 | /// bases. It might be worth special-casing that, really. |
| 473 | static void CollectVisibleConversions(ASTContext &Context, |
| 474 | CXXRecordDecl *Record, |
| 475 | UnresolvedSetImpl &Output) { |
| 476 | // The collection of all conversions in virtual bases that we've |
| 477 | // found. These will be added to the output as long as they don't |
| 478 | // appear in the hidden-conversions set. |
| 479 | UnresolvedSet<8> VBaseCs; |
| 480 | |
| 481 | // The set of conversions in virtual bases that we've determined to |
| 482 | // be hidden. |
| 483 | llvm::SmallPtrSet<NamedDecl*, 8> HiddenVBaseCs; |
| 484 | |
| 485 | // The set of types hidden by classes derived from this one. |
| 486 | llvm::SmallPtrSet<CanQualType, 8> HiddenTypes; |
| 487 | |
| 488 | // Go ahead and collect the direct conversions and add them to the |
| 489 | // hidden-types set. |
| 490 | UnresolvedSetImpl &Cs = *Record->getConversionFunctions(); |
| 491 | Output.append(Cs.begin(), Cs.end()); |
| 492 | for (UnresolvedSetIterator I = Cs.begin(), E = Cs.end(); I != E; ++I) |
| 493 | HiddenTypes.insert(GetConversionType(Context, I.getDecl())); |
| 494 | |
| 495 | // Recursively collect conversions from base classes. |
| 496 | for (CXXRecordDecl::base_class_iterator |
| 497 | I = Record->bases_begin(), E = Record->bases_end(); I != E; ++I) { |
| 498 | const RecordType *RT = I->getType()->getAs<RecordType>(); |
| 499 | if (!RT) continue; |
| 500 | |
| 501 | CollectVisibleConversions(Context, cast<CXXRecordDecl>(RT->getDecl()), |
| 502 | I->isVirtual(), I->getAccessSpecifier(), |
| 503 | HiddenTypes, Output, VBaseCs, HiddenVBaseCs); |
| 504 | } |
| 505 | |
| 506 | // Add any unhidden conversions provided by virtual bases. |
| 507 | for (UnresolvedSetIterator I = VBaseCs.begin(), E = VBaseCs.end(); |
| 508 | I != E; ++I) { |
| 509 | if (!HiddenVBaseCs.count(cast<NamedDecl>(I.getDecl()->getCanonicalDecl()))) |
| 510 | Output.addDecl(I.getDecl(), I.getAccess()); |
Fariborz Jahanian | 5346278 | 2009-09-11 21:44:33 +0000 | [diff] [blame] | 511 | } |
Fariborz Jahanian | 6250921 | 2009-09-12 18:26:03 +0000 | [diff] [blame] | 512 | } |
| 513 | |
| 514 | /// getVisibleConversionFunctions - get all conversion functions visible |
| 515 | /// in current class; including conversion function templates. |
John McCall | eec51cf | 2010-01-20 00:46:10 +0000 | [diff] [blame] | 516 | const UnresolvedSetImpl *CXXRecordDecl::getVisibleConversionFunctions() { |
Fariborz Jahanian | 6250921 | 2009-09-12 18:26:03 +0000 | [diff] [blame] | 517 | // If root class, all conversions are visible. |
| 518 | if (bases_begin() == bases_end()) |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 519 | return &data().Conversions; |
Fariborz Jahanian | 6250921 | 2009-09-12 18:26:03 +0000 | [diff] [blame] | 520 | // If visible conversion list is already evaluated, return it. |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 521 | if (data().ComputedVisibleConversions) |
| 522 | return &data().VisibleConversions; |
John McCall | b05b5f3 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 523 | CollectVisibleConversions(getASTContext(), this, data().VisibleConversions); |
John McCall | 86ff308 | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 524 | data().ComputedVisibleConversions = true; |
| 525 | return &data().VisibleConversions; |
Fariborz Jahanian | 5346278 | 2009-09-11 21:44:33 +0000 | [diff] [blame] | 526 | } |
| 527 | |
John McCall | 32daa42 | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 528 | #ifndef NDEBUG |
| 529 | void CXXRecordDecl::CheckConversionFunction(NamedDecl *ConvDecl) { |
John McCall | b05b5f3 | 2010-03-15 09:07:48 +0000 | [diff] [blame] | 530 | assert(ConvDecl->getDeclContext() == this && |
| 531 | "conversion function does not belong to this record"); |
| 532 | |
John McCall | 32daa42 | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 533 | ConvDecl = ConvDecl->getUnderlyingDecl(); |
| 534 | if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(ConvDecl)) { |
| 535 | assert(isa<CXXConversionDecl>(Temp->getTemplatedDecl())); |
| 536 | } else { |
| 537 | assert(isa<CXXConversionDecl>(ConvDecl)); |
| 538 | } |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 539 | } |
John McCall | 32daa42 | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 540 | #endif |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 541 | |
John McCall | 32daa42 | 2010-03-31 01:36:47 +0000 | [diff] [blame] | 542 | void CXXRecordDecl::removeConversion(const NamedDecl *ConvDecl) { |
| 543 | // This operation is O(N) but extremely rare. Sema only uses it to |
| 544 | // remove UsingShadowDecls in a class that were followed by a direct |
| 545 | // declaration, e.g.: |
| 546 | // class A : B { |
| 547 | // using B::operator int; |
| 548 | // operator int(); |
| 549 | // }; |
| 550 | // This is uncommon by itself and even more uncommon in conjunction |
| 551 | // with sufficiently large numbers of directly-declared conversions |
| 552 | // that asymptotic behavior matters. |
| 553 | |
| 554 | UnresolvedSetImpl &Convs = *getConversionFunctions(); |
| 555 | for (unsigned I = 0, E = Convs.size(); I != E; ++I) { |
| 556 | if (Convs[I].getDecl() == ConvDecl) { |
| 557 | Convs.erase(I); |
| 558 | assert(std::find(Convs.begin(), Convs.end(), ConvDecl) == Convs.end() |
| 559 | && "conversion was found multiple times in unresolved set"); |
| 560 | return; |
| 561 | } |
| 562 | } |
| 563 | |
| 564 | llvm_unreachable("conversion not found in set!"); |
Douglas Gregor | 65ec1fd | 2009-08-21 23:19:43 +0000 | [diff] [blame] | 565 | } |
Fariborz Jahanian | f8dcb86 | 2009-06-19 19:55:27 +0000 | [diff] [blame] | 566 | |
Fariborz Jahanian | e7184df | 2009-12-03 18:44:40 +0000 | [diff] [blame] | 567 | void CXXRecordDecl::setMethodAsVirtual(FunctionDecl *Method) { |
| 568 | Method->setVirtualAsWritten(true); |
| 569 | setAggregate(false); |
| 570 | setPOD(false); |
| 571 | setEmpty(false); |
| 572 | setPolymorphic(true); |
| 573 | setHasTrivialConstructor(false); |
| 574 | setHasTrivialCopyConstructor(false); |
| 575 | setHasTrivialCopyAssignment(false); |
| 576 | } |
| 577 | |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 578 | CXXRecordDecl *CXXRecordDecl::getInstantiatedFromMemberClass() const { |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 579 | if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 580 | return cast<CXXRecordDecl>(MSInfo->getInstantiatedFrom()); |
| 581 | |
| 582 | return 0; |
| 583 | } |
| 584 | |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 585 | MemberSpecializationInfo *CXXRecordDecl::getMemberSpecializationInfo() const { |
| 586 | return TemplateOrInstantiation.dyn_cast<MemberSpecializationInfo *>(); |
| 587 | } |
| 588 | |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 589 | void |
| 590 | CXXRecordDecl::setInstantiationOfMemberClass(CXXRecordDecl *RD, |
| 591 | TemplateSpecializationKind TSK) { |
| 592 | assert(TemplateOrInstantiation.isNull() && |
| 593 | "Previous template or instantiation?"); |
| 594 | assert(!isa<ClassTemplateSpecializationDecl>(this)); |
| 595 | TemplateOrInstantiation |
| 596 | = new (getASTContext()) MemberSpecializationInfo(RD, TSK); |
| 597 | } |
| 598 | |
Anders Carlsson | b13e357 | 2009-12-07 06:33:48 +0000 | [diff] [blame] | 599 | TemplateSpecializationKind CXXRecordDecl::getTemplateSpecializationKind() const{ |
| 600 | if (const ClassTemplateSpecializationDecl *Spec |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 601 | = dyn_cast<ClassTemplateSpecializationDecl>(this)) |
| 602 | return Spec->getSpecializationKind(); |
| 603 | |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 604 | if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 605 | return MSInfo->getTemplateSpecializationKind(); |
| 606 | |
| 607 | return TSK_Undeclared; |
| 608 | } |
| 609 | |
| 610 | void |
| 611 | CXXRecordDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK) { |
| 612 | if (ClassTemplateSpecializationDecl *Spec |
| 613 | = dyn_cast<ClassTemplateSpecializationDecl>(this)) { |
| 614 | Spec->setSpecializationKind(TSK); |
| 615 | return; |
| 616 | } |
| 617 | |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 618 | if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) { |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 619 | MSInfo->setTemplateSpecializationKind(TSK); |
| 620 | return; |
| 621 | } |
| 622 | |
| 623 | assert(false && "Not a class template or member class specialization"); |
| 624 | } |
| 625 | |
Fariborz Jahanian | f8dcb86 | 2009-06-19 19:55:27 +0000 | [diff] [blame] | 626 | CXXConstructorDecl * |
Douglas Gregor | eb8c670 | 2010-07-01 22:31:05 +0000 | [diff] [blame^] | 627 | CXXRecordDecl::getDefaultConstructor() { |
| 628 | ASTContext &Context = getASTContext(); |
Fariborz Jahanian | f8dcb86 | 2009-06-19 19:55:27 +0000 | [diff] [blame] | 629 | QualType ClassType = Context.getTypeDeclType(this); |
| 630 | DeclarationName ConstructorName |
| 631 | = Context.DeclarationNames.getCXXConstructorName( |
| 632 | Context.getCanonicalType(ClassType.getUnqualifiedType())); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 633 | |
Fariborz Jahanian | f8dcb86 | 2009-06-19 19:55:27 +0000 | [diff] [blame] | 634 | DeclContext::lookup_const_iterator Con, ConEnd; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 635 | for (llvm::tie(Con, ConEnd) = lookup(ConstructorName); |
Fariborz Jahanian | f8dcb86 | 2009-06-19 19:55:27 +0000 | [diff] [blame] | 636 | Con != ConEnd; ++Con) { |
Douglas Gregor | d93bacf | 2009-09-04 14:46:39 +0000 | [diff] [blame] | 637 | // FIXME: In C++0x, a constructor template can be a default constructor. |
| 638 | if (isa<FunctionTemplateDecl>(*Con)) |
| 639 | continue; |
| 640 | |
Fariborz Jahanian | f8dcb86 | 2009-06-19 19:55:27 +0000 | [diff] [blame] | 641 | CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con); |
| 642 | if (Constructor->isDefaultConstructor()) |
| 643 | return Constructor; |
| 644 | } |
| 645 | return 0; |
| 646 | } |
| 647 | |
Douglas Gregor | 1d110e0 | 2010-07-01 14:13:13 +0000 | [diff] [blame] | 648 | CXXDestructorDecl *CXXRecordDecl::getDestructor() const { |
| 649 | ASTContext &Context = getASTContext(); |
Anders Carlsson | 7267c16 | 2009-05-29 21:03:38 +0000 | [diff] [blame] | 650 | QualType ClassType = Context.getTypeDeclType(this); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 651 | |
| 652 | DeclarationName Name |
Douglas Gregor | 50d62d1 | 2009-08-05 05:36:45 +0000 | [diff] [blame] | 653 | = Context.DeclarationNames.getCXXDestructorName( |
| 654 | Context.getCanonicalType(ClassType)); |
Anders Carlsson | 7267c16 | 2009-05-29 21:03:38 +0000 | [diff] [blame] | 655 | |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 656 | DeclContext::lookup_const_iterator I, E; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 657 | llvm::tie(I, E) = lookup(Name); |
Anders Carlsson | 7267c16 | 2009-05-29 21:03:38 +0000 | [diff] [blame] | 658 | assert(I != E && "Did not find a destructor!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 659 | |
Anders Carlsson | 5ec02ae | 2009-12-02 17:15:43 +0000 | [diff] [blame] | 660 | CXXDestructorDecl *Dtor = cast<CXXDestructorDecl>(*I); |
Anders Carlsson | 7267c16 | 2009-05-29 21:03:38 +0000 | [diff] [blame] | 661 | assert(++I == E && "Found more than one destructor!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 662 | |
Anders Carlsson | 7267c16 | 2009-05-29 21:03:38 +0000 | [diff] [blame] | 663 | return Dtor; |
| 664 | } |
| 665 | |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 666 | CXXMethodDecl * |
| 667 | CXXMethodDecl::Create(ASTContext &C, CXXRecordDecl *RD, |
Douglas Gregor | 10bd368 | 2008-11-17 22:58:34 +0000 | [diff] [blame] | 668 | SourceLocation L, DeclarationName N, |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 669 | QualType T, TypeSourceInfo *TInfo, |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 670 | bool isStatic, StorageClass SCAsWritten, bool isInline) { |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 671 | return new (C) CXXMethodDecl(CXXMethod, RD, L, N, T, TInfo, |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 672 | isStatic, SCAsWritten, isInline); |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 673 | } |
| 674 | |
Douglas Gregor | 9091656 | 2009-09-29 18:16:17 +0000 | [diff] [blame] | 675 | bool CXXMethodDecl::isUsualDeallocationFunction() const { |
| 676 | if (getOverloadedOperator() != OO_Delete && |
| 677 | getOverloadedOperator() != OO_Array_Delete) |
| 678 | return false; |
Douglas Gregor | 6d90870 | 2010-02-26 05:06:18 +0000 | [diff] [blame] | 679 | |
| 680 | // C++ [basic.stc.dynamic.deallocation]p2: |
| 681 | // A template instance is never a usual deallocation function, |
| 682 | // regardless of its signature. |
| 683 | if (getPrimaryTemplate()) |
| 684 | return false; |
| 685 | |
Douglas Gregor | 9091656 | 2009-09-29 18:16:17 +0000 | [diff] [blame] | 686 | // C++ [basic.stc.dynamic.deallocation]p2: |
| 687 | // If a class T has a member deallocation function named operator delete |
| 688 | // with exactly one parameter, then that function is a usual (non-placement) |
| 689 | // deallocation function. [...] |
| 690 | if (getNumParams() == 1) |
| 691 | return true; |
| 692 | |
| 693 | // C++ [basic.stc.dynamic.deallocation]p2: |
| 694 | // [...] If class T does not declare such an operator delete but does |
| 695 | // declare a member deallocation function named operator delete with |
| 696 | // exactly two parameters, the second of which has type std::size_t (18.1), |
| 697 | // then this function is a usual deallocation function. |
| 698 | ASTContext &Context = getASTContext(); |
| 699 | if (getNumParams() != 2 || |
Chandler Carruth | e228ba9 | 2010-02-08 18:54:05 +0000 | [diff] [blame] | 700 | !Context.hasSameUnqualifiedType(getParamDecl(1)->getType(), |
| 701 | Context.getSizeType())) |
Douglas Gregor | 9091656 | 2009-09-29 18:16:17 +0000 | [diff] [blame] | 702 | return false; |
| 703 | |
| 704 | // This function is a usual deallocation function if there are no |
| 705 | // single-parameter deallocation functions of the same kind. |
| 706 | for (DeclContext::lookup_const_result R = getDeclContext()->lookup(getDeclName()); |
| 707 | R.first != R.second; ++R.first) { |
| 708 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*R.first)) |
| 709 | if (FD->getNumParams() == 1) |
| 710 | return false; |
| 711 | } |
| 712 | |
| 713 | return true; |
| 714 | } |
| 715 | |
Douglas Gregor | 06a9f36 | 2010-05-01 20:49:11 +0000 | [diff] [blame] | 716 | bool CXXMethodDecl::isCopyAssignmentOperator() const { |
| 717 | // C++0x [class.copy]p19: |
| 718 | // A user-declared copy assignment operator X::operator= is a non-static |
| 719 | // non-template member function of class X with exactly one parameter of |
| 720 | // type X, X&, const X&, volatile X& or const volatile X&. |
| 721 | if (/*operator=*/getOverloadedOperator() != OO_Equal || |
| 722 | /*non-static*/ isStatic() || |
| 723 | /*non-template*/getPrimaryTemplate() || getDescribedFunctionTemplate() || |
| 724 | /*exactly one parameter*/getNumParams() != 1) |
| 725 | return false; |
| 726 | |
| 727 | QualType ParamType = getParamDecl(0)->getType(); |
| 728 | if (const LValueReferenceType *Ref = ParamType->getAs<LValueReferenceType>()) |
| 729 | ParamType = Ref->getPointeeType(); |
| 730 | |
| 731 | ASTContext &Context = getASTContext(); |
| 732 | QualType ClassType |
| 733 | = Context.getCanonicalType(Context.getTypeDeclType(getParent())); |
| 734 | return Context.hasSameUnqualifiedType(ClassType, ParamType); |
| 735 | } |
| 736 | |
Anders Carlsson | 05eb244 | 2009-05-16 23:58:37 +0000 | [diff] [blame] | 737 | void CXXMethodDecl::addOverriddenMethod(const CXXMethodDecl *MD) { |
Anders Carlsson | 3aaf486 | 2009-12-04 05:51:56 +0000 | [diff] [blame] | 738 | assert(MD->isCanonicalDecl() && "Method is not canonical!"); |
Anders Carlsson | c076c45 | 2010-01-30 17:42:34 +0000 | [diff] [blame] | 739 | assert(!MD->getParent()->isDependentContext() && |
| 740 | "Can't add an overridden method to a class template!"); |
| 741 | |
Douglas Gregor | 7d10b7e | 2010-03-02 23:58:15 +0000 | [diff] [blame] | 742 | getASTContext().addOverriddenMethod(this, MD); |
Anders Carlsson | 05eb244 | 2009-05-16 23:58:37 +0000 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | CXXMethodDecl::method_iterator CXXMethodDecl::begin_overridden_methods() const { |
Douglas Gregor | 7d10b7e | 2010-03-02 23:58:15 +0000 | [diff] [blame] | 746 | return getASTContext().overridden_methods_begin(this); |
Anders Carlsson | 05eb244 | 2009-05-16 23:58:37 +0000 | [diff] [blame] | 747 | } |
| 748 | |
| 749 | CXXMethodDecl::method_iterator CXXMethodDecl::end_overridden_methods() const { |
Douglas Gregor | 7d10b7e | 2010-03-02 23:58:15 +0000 | [diff] [blame] | 750 | return getASTContext().overridden_methods_end(this); |
Anders Carlsson | 05eb244 | 2009-05-16 23:58:37 +0000 | [diff] [blame] | 751 | } |
| 752 | |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 753 | QualType CXXMethodDecl::getThisType(ASTContext &C) const { |
Argyrios Kyrtzidis | b0d178d | 2008-10-24 22:28:18 +0000 | [diff] [blame] | 754 | // C++ 9.3.2p1: The type of this in a member function of a class X is X*. |
| 755 | // If the member function is declared const, the type of this is const X*, |
| 756 | // if the member function is declared volatile, the type of this is |
| 757 | // volatile X*, and if the member function is declared const volatile, |
| 758 | // the type of this is const volatile X*. |
| 759 | |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 760 | assert(isInstance() && "No 'this' for static methods!"); |
Anders Carlsson | 31a0875 | 2009-06-13 02:59:33 +0000 | [diff] [blame] | 761 | |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 762 | QualType ClassTy = C.getTypeDeclType(getParent()); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 763 | ClassTy = C.getQualifiedType(ClassTy, |
| 764 | Qualifiers::fromCVRMask(getTypeQualifiers())); |
Anders Carlsson | 4e57992 | 2009-07-10 21:35:09 +0000 | [diff] [blame] | 765 | return C.getPointerType(ClassTy); |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 766 | } |
| 767 | |
Eli Friedman | d7d7f67 | 2009-12-06 20:50:05 +0000 | [diff] [blame] | 768 | bool CXXMethodDecl::hasInlineBody() const { |
Douglas Gregor | bd6d619 | 2010-01-05 19:06:31 +0000 | [diff] [blame] | 769 | // If this function is a template instantiation, look at the template from |
| 770 | // which it was instantiated. |
| 771 | const FunctionDecl *CheckFn = getTemplateInstantiationPattern(); |
| 772 | if (!CheckFn) |
| 773 | CheckFn = this; |
| 774 | |
Eli Friedman | d7d7f67 | 2009-12-06 20:50:05 +0000 | [diff] [blame] | 775 | const FunctionDecl *fn; |
Douglas Gregor | bd6d619 | 2010-01-05 19:06:31 +0000 | [diff] [blame] | 776 | return CheckFn->getBody(fn) && !fn->isOutOfLine(); |
Eli Friedman | d7d7f67 | 2009-12-06 20:50:05 +0000 | [diff] [blame] | 777 | } |
| 778 | |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 779 | CXXBaseOrMemberInitializer:: |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 780 | CXXBaseOrMemberInitializer(ASTContext &Context, |
Anders Carlsson | 80638c5 | 2010-04-12 00:51:03 +0000 | [diff] [blame] | 781 | TypeSourceInfo *TInfo, bool IsVirtual, |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 782 | SourceLocation L, Expr *Init, SourceLocation R) |
Abramo Bagnara | a0af3b4 | 2010-05-26 18:09:23 +0000 | [diff] [blame] | 783 | : BaseOrMember(TInfo), Init(Init), AnonUnionMember(0), |
| 784 | LParenLoc(L), RParenLoc(R), IsVirtual(IsVirtual), IsWritten(false), |
| 785 | SourceOrderOrNumArrayIndices(0) |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 786 | { |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 787 | } |
| 788 | |
| 789 | CXXBaseOrMemberInitializer:: |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 790 | CXXBaseOrMemberInitializer(ASTContext &Context, |
| 791 | FieldDecl *Member, SourceLocation MemberLoc, |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 792 | SourceLocation L, Expr *Init, SourceLocation R) |
Abramo Bagnara | a0af3b4 | 2010-05-26 18:09:23 +0000 | [diff] [blame] | 793 | : BaseOrMember(Member), MemberLocation(MemberLoc), Init(Init), |
| 794 | AnonUnionMember(0), LParenLoc(L), RParenLoc(R), IsVirtual(false), |
| 795 | IsWritten(false), SourceOrderOrNumArrayIndices(0) |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 796 | { |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 797 | } |
| 798 | |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 799 | CXXBaseOrMemberInitializer:: |
| 800 | CXXBaseOrMemberInitializer(ASTContext &Context, |
| 801 | FieldDecl *Member, SourceLocation MemberLoc, |
| 802 | SourceLocation L, Expr *Init, SourceLocation R, |
| 803 | VarDecl **Indices, |
| 804 | unsigned NumIndices) |
| 805 | : BaseOrMember(Member), MemberLocation(MemberLoc), Init(Init), |
Abramo Bagnara | a0af3b4 | 2010-05-26 18:09:23 +0000 | [diff] [blame] | 806 | AnonUnionMember(0), LParenLoc(L), RParenLoc(R), IsVirtual(false), |
| 807 | IsWritten(false), SourceOrderOrNumArrayIndices(NumIndices) |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 808 | { |
| 809 | VarDecl **MyIndices = reinterpret_cast<VarDecl **> (this + 1); |
| 810 | memcpy(MyIndices, Indices, NumIndices * sizeof(VarDecl *)); |
| 811 | } |
| 812 | |
| 813 | CXXBaseOrMemberInitializer * |
| 814 | CXXBaseOrMemberInitializer::Create(ASTContext &Context, |
| 815 | FieldDecl *Member, |
| 816 | SourceLocation MemberLoc, |
| 817 | SourceLocation L, |
| 818 | Expr *Init, |
| 819 | SourceLocation R, |
| 820 | VarDecl **Indices, |
| 821 | unsigned NumIndices) { |
| 822 | void *Mem = Context.Allocate(sizeof(CXXBaseOrMemberInitializer) + |
| 823 | sizeof(VarDecl *) * NumIndices, |
| 824 | llvm::alignof<CXXBaseOrMemberInitializer>()); |
| 825 | return new (Mem) CXXBaseOrMemberInitializer(Context, Member, MemberLoc, |
| 826 | L, Init, R, Indices, NumIndices); |
| 827 | } |
| 828 | |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 829 | void CXXBaseOrMemberInitializer::Destroy(ASTContext &Context) { |
Douglas Gregor | 9db7dbb | 2010-01-31 09:12:51 +0000 | [diff] [blame] | 830 | if (Init) |
| 831 | Init->Destroy(Context); |
Douglas Gregor | fb8cc25 | 2010-05-05 05:51:00 +0000 | [diff] [blame] | 832 | // FIXME: Destroy indices |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 833 | this->~CXXBaseOrMemberInitializer(); |
| 834 | } |
| 835 | |
| 836 | TypeLoc CXXBaseOrMemberInitializer::getBaseClassLoc() const { |
| 837 | if (isBaseInitializer()) |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 838 | return BaseOrMember.get<TypeSourceInfo*>()->getTypeLoc(); |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 839 | else |
| 840 | return TypeLoc(); |
| 841 | } |
| 842 | |
| 843 | Type *CXXBaseOrMemberInitializer::getBaseClass() { |
| 844 | if (isBaseInitializer()) |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 845 | return BaseOrMember.get<TypeSourceInfo*>()->getType().getTypePtr(); |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 846 | else |
| 847 | return 0; |
| 848 | } |
| 849 | |
| 850 | const Type *CXXBaseOrMemberInitializer::getBaseClass() const { |
| 851 | if (isBaseInitializer()) |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 852 | return BaseOrMember.get<TypeSourceInfo*>()->getType().getTypePtr(); |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 853 | else |
| 854 | return 0; |
| 855 | } |
| 856 | |
| 857 | SourceLocation CXXBaseOrMemberInitializer::getSourceLocation() const { |
| 858 | if (isMemberInitializer()) |
| 859 | return getMemberLocation(); |
| 860 | |
Abramo Bagnara | bd054db | 2010-05-20 10:00:11 +0000 | [diff] [blame] | 861 | return getBaseClassLoc().getLocalSourceRange().getBegin(); |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 862 | } |
| 863 | |
| 864 | SourceRange CXXBaseOrMemberInitializer::getSourceRange() const { |
| 865 | return SourceRange(getSourceLocation(), getRParenLoc()); |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 866 | } |
| 867 | |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 868 | CXXConstructorDecl * |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 869 | CXXConstructorDecl::Create(ASTContext &C, EmptyShell Empty) { |
| 870 | return new (C) CXXConstructorDecl(0, SourceLocation(), DeclarationName(), |
| 871 | QualType(), 0, false, false, false); |
| 872 | } |
| 873 | |
| 874 | CXXConstructorDecl * |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 875 | CXXConstructorDecl::Create(ASTContext &C, CXXRecordDecl *RD, |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 876 | SourceLocation L, DeclarationName N, |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 877 | QualType T, TypeSourceInfo *TInfo, |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 878 | bool isExplicit, |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 879 | bool isInline, |
| 880 | bool isImplicitlyDeclared) { |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 881 | assert(N.getNameKind() == DeclarationName::CXXConstructorName && |
| 882 | "Name must refer to a constructor"); |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 883 | return new (C) CXXConstructorDecl(RD, L, N, T, TInfo, isExplicit, |
| 884 | isInline, isImplicitlyDeclared); |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 885 | } |
| 886 | |
Douglas Gregor | 030ff0c | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 887 | bool CXXConstructorDecl::isDefaultConstructor() const { |
| 888 | // C++ [class.ctor]p5: |
Douglas Gregor | 64bffa9 | 2008-11-05 16:20:31 +0000 | [diff] [blame] | 889 | // A default constructor for a class X is a constructor of class |
| 890 | // X that can be called without an argument. |
Douglas Gregor | 030ff0c | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 891 | return (getNumParams() == 0) || |
Anders Carlsson | da3f4e2 | 2009-08-25 05:12:04 +0000 | [diff] [blame] | 892 | (getNumParams() > 0 && getParamDecl(0)->hasDefaultArg()); |
Douglas Gregor | 030ff0c | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 893 | } |
| 894 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 895 | bool |
Douglas Gregor | 9e9199d | 2009-12-22 00:34:07 +0000 | [diff] [blame] | 896 | CXXConstructorDecl::isCopyConstructor(unsigned &TypeQuals) const { |
Douglas Gregor | 030ff0c | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 897 | // C++ [class.copy]p2: |
Douglas Gregor | 64bffa9 | 2008-11-05 16:20:31 +0000 | [diff] [blame] | 898 | // A non-template constructor for class X is a copy constructor |
| 899 | // if its first parameter is of type X&, const X&, volatile X& or |
| 900 | // const volatile X&, and either there are no other parameters |
| 901 | // or else all other parameters have default arguments (8.3.6). |
Douglas Gregor | 030ff0c | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 902 | if ((getNumParams() < 1) || |
Douglas Gregor | 77da3f4 | 2009-10-13 23:45:19 +0000 | [diff] [blame] | 903 | (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()) || |
Douglas Gregor | fd47648 | 2009-11-13 23:59:09 +0000 | [diff] [blame] | 904 | (getPrimaryTemplate() != 0) || |
Douglas Gregor | 77da3f4 | 2009-10-13 23:45:19 +0000 | [diff] [blame] | 905 | (getDescribedFunctionTemplate() != 0)) |
Douglas Gregor | 030ff0c | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 906 | return false; |
| 907 | |
| 908 | const ParmVarDecl *Param = getParamDecl(0); |
| 909 | |
Sebastian Redl | 7c80bd6 | 2009-03-16 23:22:08 +0000 | [diff] [blame] | 910 | // Do we have a reference type? Rvalue references don't count. |
Douglas Gregor | fd47648 | 2009-11-13 23:59:09 +0000 | [diff] [blame] | 911 | const LValueReferenceType *ParamRefType = |
| 912 | Param->getType()->getAs<LValueReferenceType>(); |
| 913 | if (!ParamRefType) |
| 914 | return false; |
Douglas Gregor | 030ff0c | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 915 | |
Douglas Gregor | fd47648 | 2009-11-13 23:59:09 +0000 | [diff] [blame] | 916 | // Is it a reference to our class type? |
Douglas Gregor | 9e9199d | 2009-12-22 00:34:07 +0000 | [diff] [blame] | 917 | ASTContext &Context = getASTContext(); |
| 918 | |
Douglas Gregor | fd47648 | 2009-11-13 23:59:09 +0000 | [diff] [blame] | 919 | CanQualType PointeeType |
| 920 | = Context.getCanonicalType(ParamRefType->getPointeeType()); |
Douglas Gregor | 14e0b3d | 2009-09-15 20:50:23 +0000 | [diff] [blame] | 921 | CanQualType ClassTy |
| 922 | = Context.getCanonicalType(Context.getTagDeclType(getParent())); |
Douglas Gregor | 030ff0c | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 923 | if (PointeeType.getUnqualifiedType() != ClassTy) |
| 924 | return false; |
| 925 | |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 926 | // FIXME: other qualifiers? |
| 927 | |
Douglas Gregor | 030ff0c | 2008-10-31 20:25:05 +0000 | [diff] [blame] | 928 | // We have a copy constructor. |
| 929 | TypeQuals = PointeeType.getCVRQualifiers(); |
| 930 | return true; |
| 931 | } |
| 932 | |
Anders Carlsson | faccd72 | 2009-08-28 16:57:08 +0000 | [diff] [blame] | 933 | bool CXXConstructorDecl::isConvertingConstructor(bool AllowExplicit) const { |
Douglas Gregor | 60d62c2 | 2008-10-31 16:23:19 +0000 | [diff] [blame] | 934 | // C++ [class.conv.ctor]p1: |
| 935 | // A constructor declared without the function-specifier explicit |
| 936 | // that can be called with a single parameter specifies a |
| 937 | // conversion from the type of its first parameter to the type of |
| 938 | // its class. Such a constructor is called a converting |
| 939 | // constructor. |
Anders Carlsson | faccd72 | 2009-08-28 16:57:08 +0000 | [diff] [blame] | 940 | if (isExplicit() && !AllowExplicit) |
Douglas Gregor | 60d62c2 | 2008-10-31 16:23:19 +0000 | [diff] [blame] | 941 | return false; |
| 942 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 943 | return (getNumParams() == 0 && |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 944 | getType()->getAs<FunctionProtoType>()->isVariadic()) || |
Douglas Gregor | 60d62c2 | 2008-10-31 16:23:19 +0000 | [diff] [blame] | 945 | (getNumParams() == 1) || |
Anders Carlsson | ae0b4e7 | 2009-06-06 04:14:07 +0000 | [diff] [blame] | 946 | (getNumParams() > 1 && getParamDecl(1)->hasDefaultArg()); |
Douglas Gregor | 60d62c2 | 2008-10-31 16:23:19 +0000 | [diff] [blame] | 947 | } |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 948 | |
Douglas Gregor | 66724ea | 2009-11-14 01:20:54 +0000 | [diff] [blame] | 949 | bool CXXConstructorDecl::isCopyConstructorLikeSpecialization() const { |
| 950 | if ((getNumParams() < 1) || |
| 951 | (getNumParams() > 1 && !getParamDecl(1)->hasDefaultArg()) || |
| 952 | (getPrimaryTemplate() == 0) || |
| 953 | (getDescribedFunctionTemplate() != 0)) |
| 954 | return false; |
| 955 | |
| 956 | const ParmVarDecl *Param = getParamDecl(0); |
| 957 | |
| 958 | ASTContext &Context = getASTContext(); |
| 959 | CanQualType ParamType = Context.getCanonicalType(Param->getType()); |
| 960 | |
| 961 | // Strip off the lvalue reference, if any. |
| 962 | if (CanQual<LValueReferenceType> ParamRefType |
| 963 | = ParamType->getAs<LValueReferenceType>()) |
| 964 | ParamType = ParamRefType->getPointeeType(); |
| 965 | |
| 966 | |
| 967 | // Is it the same as our our class type? |
| 968 | CanQualType ClassTy |
| 969 | = Context.getCanonicalType(Context.getTagDeclType(getParent())); |
| 970 | if (ParamType.getUnqualifiedType() != ClassTy) |
| 971 | return false; |
| 972 | |
| 973 | return true; |
| 974 | } |
| 975 | |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 976 | CXXDestructorDecl * |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 977 | CXXDestructorDecl::Create(ASTContext &C, EmptyShell Empty) { |
| 978 | return new (C) CXXDestructorDecl(0, SourceLocation(), DeclarationName(), |
| 979 | QualType(), false, false); |
| 980 | } |
| 981 | |
| 982 | CXXDestructorDecl * |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 983 | CXXDestructorDecl::Create(ASTContext &C, CXXRecordDecl *RD, |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 984 | SourceLocation L, DeclarationName N, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 985 | QualType T, bool isInline, |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 986 | bool isImplicitlyDeclared) { |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 987 | assert(N.getNameKind() == DeclarationName::CXXDestructorName && |
| 988 | "Name must refer to a destructor"); |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 989 | return new (C) CXXDestructorDecl(RD, L, N, T, isInline, isImplicitlyDeclared); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 990 | } |
| 991 | |
Fariborz Jahanian | d45c363 | 2009-07-01 21:05:43 +0000 | [diff] [blame] | 992 | void |
Fariborz Jahanian | 73b85f3 | 2009-07-01 23:35:25 +0000 | [diff] [blame] | 993 | CXXConstructorDecl::Destroy(ASTContext& C) { |
| 994 | C.Deallocate(BaseOrMemberInitializers); |
Fariborz Jahanian | 0d3c26c | 2009-07-07 16:24:08 +0000 | [diff] [blame] | 995 | CXXMethodDecl::Destroy(C); |
Fariborz Jahanian | 73b85f3 | 2009-07-01 23:35:25 +0000 | [diff] [blame] | 996 | } |
| 997 | |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 998 | CXXConversionDecl * |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 999 | CXXConversionDecl::Create(ASTContext &C, EmptyShell Empty) { |
| 1000 | return new (C) CXXConversionDecl(0, SourceLocation(), DeclarationName(), |
| 1001 | QualType(), 0, false, false); |
| 1002 | } |
| 1003 | |
| 1004 | CXXConversionDecl * |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 1005 | CXXConversionDecl::Create(ASTContext &C, CXXRecordDecl *RD, |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 1006 | SourceLocation L, DeclarationName N, |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1007 | QualType T, TypeSourceInfo *TInfo, |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 1008 | bool isInline, bool isExplicit) { |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 1009 | assert(N.getNameKind() == DeclarationName::CXXConversionFunctionName && |
| 1010 | "Name must refer to a conversion function"); |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1011 | return new (C) CXXConversionDecl(RD, L, N, T, TInfo, isInline, isExplicit); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 1012 | } |
| 1013 | |
Chris Lattner | 21ef7ae | 2008-11-04 16:51:42 +0000 | [diff] [blame] | 1014 | LinkageSpecDecl *LinkageSpecDecl::Create(ASTContext &C, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1015 | DeclContext *DC, |
Chris Lattner | 21ef7ae | 2008-11-04 16:51:42 +0000 | [diff] [blame] | 1016 | SourceLocation L, |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 1017 | LanguageIDs Lang, bool Braces) { |
Steve Naroff | 3e97049 | 2009-01-27 21:25:57 +0000 | [diff] [blame] | 1018 | return new (C) LinkageSpecDecl(DC, L, Lang, Braces); |
Douglas Gregor | f44515a | 2008-12-16 22:23:02 +0000 | [diff] [blame] | 1019 | } |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1020 | |
| 1021 | UsingDirectiveDecl *UsingDirectiveDecl::Create(ASTContext &C, DeclContext *DC, |
| 1022 | SourceLocation L, |
| 1023 | SourceLocation NamespaceLoc, |
Douglas Gregor | 8419fa3 | 2009-05-30 06:31:56 +0000 | [diff] [blame] | 1024 | SourceRange QualifierRange, |
| 1025 | NestedNameSpecifier *Qualifier, |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1026 | SourceLocation IdentLoc, |
Sebastian Redl | eb0d8c9 | 2009-11-23 15:34:23 +0000 | [diff] [blame] | 1027 | NamedDecl *Used, |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1028 | DeclContext *CommonAncestor) { |
Sebastian Redl | eb0d8c9 | 2009-11-23 15:34:23 +0000 | [diff] [blame] | 1029 | if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Used)) |
| 1030 | Used = NS->getOriginalNamespace(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1031 | return new (C) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierRange, |
Douglas Gregor | 8419fa3 | 2009-05-30 06:31:56 +0000 | [diff] [blame] | 1032 | Qualifier, IdentLoc, Used, CommonAncestor); |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1033 | } |
| 1034 | |
Sebastian Redl | eb0d8c9 | 2009-11-23 15:34:23 +0000 | [diff] [blame] | 1035 | NamespaceDecl *UsingDirectiveDecl::getNominatedNamespace() { |
| 1036 | if (NamespaceAliasDecl *NA = |
| 1037 | dyn_cast_or_null<NamespaceAliasDecl>(NominatedNamespace)) |
| 1038 | return NA->getNamespace(); |
| 1039 | return cast_or_null<NamespaceDecl>(NominatedNamespace); |
| 1040 | } |
| 1041 | |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1042 | void UsingDirectiveDecl::setNominatedNamespace(NamedDecl* ND) { |
| 1043 | assert((isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND)) && |
| 1044 | "expected a NamespaceDecl or NamespaceAliasDecl"); |
| 1045 | NominatedNamespace = ND; |
| 1046 | } |
| 1047 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1048 | NamespaceAliasDecl *NamespaceAliasDecl::Create(ASTContext &C, DeclContext *DC, |
| 1049 | SourceLocation L, |
| 1050 | SourceLocation AliasLoc, |
| 1051 | IdentifierInfo *Alias, |
Douglas Gregor | 6c9c940 | 2009-05-30 06:48:27 +0000 | [diff] [blame] | 1052 | SourceRange QualifierRange, |
| 1053 | NestedNameSpecifier *Qualifier, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1054 | SourceLocation IdentLoc, |
Anders Carlsson | 68771c7 | 2009-03-28 22:58:02 +0000 | [diff] [blame] | 1055 | NamedDecl *Namespace) { |
Sebastian Redl | eb0d8c9 | 2009-11-23 15:34:23 +0000 | [diff] [blame] | 1056 | if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Namespace)) |
| 1057 | Namespace = NS->getOriginalNamespace(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1058 | return new (C) NamespaceAliasDecl(DC, L, AliasLoc, Alias, QualifierRange, |
Douglas Gregor | 6c9c940 | 2009-05-30 06:48:27 +0000 | [diff] [blame] | 1059 | Qualifier, IdentLoc, Namespace); |
Anders Carlsson | 68771c7 | 2009-03-28 22:58:02 +0000 | [diff] [blame] | 1060 | } |
| 1061 | |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 1062 | UsingDecl *UsingDecl::Create(ASTContext &C, DeclContext *DC, |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 1063 | SourceLocation L, SourceRange NNR, SourceLocation UL, |
| 1064 | NestedNameSpecifier* TargetNNS, DeclarationName Name, |
| 1065 | bool IsTypeNameArg) { |
| 1066 | return new (C) UsingDecl(DC, L, NNR, UL, TargetNNS, Name, IsTypeNameArg); |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 1067 | } |
| 1068 | |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 1069 | UnresolvedUsingValueDecl * |
| 1070 | UnresolvedUsingValueDecl::Create(ASTContext &C, DeclContext *DC, |
| 1071 | SourceLocation UsingLoc, |
| 1072 | SourceRange TargetNNR, |
| 1073 | NestedNameSpecifier *TargetNNS, |
| 1074 | SourceLocation TargetNameLoc, |
| 1075 | DeclarationName TargetName) { |
| 1076 | return new (C) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, |
| 1077 | TargetNNR, TargetNNS, |
| 1078 | TargetNameLoc, TargetName); |
| 1079 | } |
| 1080 | |
| 1081 | UnresolvedUsingTypenameDecl * |
| 1082 | UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC, |
| 1083 | SourceLocation UsingLoc, |
| 1084 | SourceLocation TypenameLoc, |
| 1085 | SourceRange TargetNNR, |
| 1086 | NestedNameSpecifier *TargetNNS, |
| 1087 | SourceLocation TargetNameLoc, |
| 1088 | DeclarationName TargetName) { |
| 1089 | return new (C) UnresolvedUsingTypenameDecl(DC, UsingLoc, TypenameLoc, |
| 1090 | TargetNNR, TargetNNS, |
| 1091 | TargetNameLoc, |
| 1092 | TargetName.getAsIdentifierInfo()); |
Anders Carlsson | 665b49c | 2009-08-28 05:30:28 +0000 | [diff] [blame] | 1093 | } |
| 1094 | |
Anders Carlsson | fb31176 | 2009-03-14 00:25:26 +0000 | [diff] [blame] | 1095 | StaticAssertDecl *StaticAssertDecl::Create(ASTContext &C, DeclContext *DC, |
| 1096 | SourceLocation L, Expr *AssertExpr, |
| 1097 | StringLiteral *Message) { |
| 1098 | return new (C) StaticAssertDecl(DC, L, AssertExpr, Message); |
| 1099 | } |
| 1100 | |
| 1101 | void StaticAssertDecl::Destroy(ASTContext& C) { |
| 1102 | AssertExpr->Destroy(C); |
| 1103 | Message->Destroy(C); |
John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 1104 | Decl::Destroy(C); |
Anders Carlsson | fb31176 | 2009-03-14 00:25:26 +0000 | [diff] [blame] | 1105 | } |
| 1106 | |
| 1107 | StaticAssertDecl::~StaticAssertDecl() { |
| 1108 | } |
| 1109 | |
Anders Carlsson | 05bf2c7 | 2009-03-26 23:46:50 +0000 | [diff] [blame] | 1110 | static const char *getAccessName(AccessSpecifier AS) { |
| 1111 | switch (AS) { |
| 1112 | default: |
| 1113 | case AS_none: |
| 1114 | assert("Invalid access specifier!"); |
| 1115 | return 0; |
| 1116 | case AS_public: |
| 1117 | return "public"; |
| 1118 | case AS_private: |
| 1119 | return "private"; |
| 1120 | case AS_protected: |
| 1121 | return "protected"; |
| 1122 | } |
| 1123 | } |
| 1124 | |
| 1125 | const DiagnosticBuilder &clang::operator<<(const DiagnosticBuilder &DB, |
| 1126 | AccessSpecifier AS) { |
| 1127 | return DB << getAccessName(AS); |
| 1128 | } |
| 1129 | |
| 1130 | |