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