Eugene Zelenko | f71964a | 2017-11-30 22:33:48 +0000 | [diff] [blame] | 1 | //===- CXXInheritance.cpp - C++ Inheritance -------------------------------===// |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file provides routines that help analyzing C++ inheritance hierarchies. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
Eugene Zelenko | f71964a | 2017-11-30 22:33:48 +0000 | [diff] [blame] | 12 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 13 | #include "clang/AST/CXXInheritance.h" |
Benjamin Kramer | 2ef3031 | 2012-07-04 18:45:14 +0000 | [diff] [blame] | 14 | #include "clang/AST/ASTContext.h" |
Eugene Zelenko | f71964a | 2017-11-30 22:33:48 +0000 | [diff] [blame] | 15 | #include "clang/AST/Decl.h" |
| 16 | #include "clang/AST/DeclBase.h" |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclCXX.h" |
Alex Lorenz | 4e1377a | 2017-05-10 09:47:41 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclTemplate.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 19 | #include "clang/AST/RecordLayout.h" |
Eugene Zelenko | f71964a | 2017-11-30 22:33:48 +0000 | [diff] [blame] | 20 | #include "clang/AST/TemplateName.h" |
| 21 | #include "clang/AST/Type.h" |
| 22 | #include "clang/Basic/LLVM.h" |
| 23 | #include "llvm/ADT/DenseMap.h" |
| 24 | #include "llvm/ADT/STLExtras.h" |
Douglas Gregor | 18e1b52 | 2012-09-11 07:19:42 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SetVector.h" |
Eugene Zelenko | f71964a | 2017-11-30 22:33:48 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/SmallVector.h" |
| 27 | #include "llvm/ADT/iterator_range.h" |
| 28 | #include "llvm/Support/Casting.h" |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 29 | #include <algorithm> |
Eugene Zelenko | f71964a | 2017-11-30 22:33:48 +0000 | [diff] [blame] | 30 | #include <utility> |
| 31 | #include <cassert> |
| 32 | #include <vector> |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 33 | |
| 34 | using namespace clang; |
| 35 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 36 | /// Computes the set of declarations referenced by these base |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 37 | /// paths. |
| 38 | void CXXBasePaths::ComputeDeclsFound() { |
| 39 | assert(NumDeclsFound == 0 && !DeclsFound && |
| 40 | "Already computed the set of declarations"); |
Benjamin Kramer | 91c6b6a | 2012-02-23 15:18:31 +0000 | [diff] [blame] | 41 | |
Benjamin Kramer | 1b2bc60 | 2018-07-20 20:13:08 +0000 | [diff] [blame] | 42 | llvm::SmallSetVector<NamedDecl *, 8> Decls; |
Benjamin Kramer | 91c6b6a | 2012-02-23 15:18:31 +0000 | [diff] [blame] | 43 | for (paths_iterator Path = begin(), PathEnd = end(); Path != PathEnd; ++Path) |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 44 | Decls.insert(Path->Decls.front()); |
Benjamin Kramer | 91c6b6a | 2012-02-23 15:18:31 +0000 | [diff] [blame] | 45 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 46 | NumDeclsFound = Decls.size(); |
Jonas Devlieghere | 2b3d49b | 2019-08-14 23:04:18 +0000 | [diff] [blame] | 47 | DeclsFound = std::make_unique<NamedDecl *[]>(NumDeclsFound); |
David Blaikie | 8f2a7fe | 2015-08-18 23:56:00 +0000 | [diff] [blame] | 48 | std::copy(Decls.begin(), Decls.end(), DeclsFound.get()); |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 49 | } |
| 50 | |
Aaron Ballman | e6f465e | 2014-03-14 21:38:48 +0000 | [diff] [blame] | 51 | CXXBasePaths::decl_range CXXBasePaths::found_decls() { |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 52 | if (NumDeclsFound == 0) |
| 53 | ComputeDeclsFound(); |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 54 | |
David Blaikie | 8f2a7fe | 2015-08-18 23:56:00 +0000 | [diff] [blame] | 55 | return decl_range(decl_iterator(DeclsFound.get()), |
| 56 | decl_iterator(DeclsFound.get() + NumDeclsFound)); |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | /// isAmbiguous - Determines whether the set of paths provided is |
| 60 | /// ambiguous, i.e., there are two or more paths that refer to |
| 61 | /// different base class subobjects of the same type. BaseType must be |
| 62 | /// an unqualified, canonical class type. |
Douglas Gregor | 27ac429 | 2010-05-21 20:29:55 +0000 | [diff] [blame] | 63 | bool CXXBasePaths::isAmbiguous(CanQualType BaseType) { |
| 64 | BaseType = BaseType.getUnqualifiedType(); |
Benjamin Kramer | 1b2bc60 | 2018-07-20 20:13:08 +0000 | [diff] [blame] | 65 | IsVirtBaseAndNumberNonVirtBases Subobjects = ClassSubobjects[BaseType]; |
| 66 | return Subobjects.NumberOfNonVirtBases + (Subobjects.IsVirtBase ? 1 : 0) > 1; |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | /// clear - Clear out all prior path information. |
| 70 | void CXXBasePaths::clear() { |
| 71 | Paths.clear(); |
| 72 | ClassSubobjects.clear(); |
Alex Lorenz | 6796c0b | 2017-05-18 18:06:07 +0000 | [diff] [blame] | 73 | VisitedDependentRecords.clear(); |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 74 | ScratchPath.clear(); |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 75 | DetectedVirtual = nullptr; |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 78 | /// Swaps the contents of this CXXBasePaths structure with the |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 79 | /// contents of Other. |
| 80 | void CXXBasePaths::swap(CXXBasePaths &Other) { |
| 81 | std::swap(Origin, Other.Origin); |
| 82 | Paths.swap(Other.Paths); |
| 83 | ClassSubobjects.swap(Other.ClassSubobjects); |
Alex Lorenz | 6796c0b | 2017-05-18 18:06:07 +0000 | [diff] [blame] | 84 | VisitedDependentRecords.swap(Other.VisitedDependentRecords); |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 85 | std::swap(FindAmbiguities, Other.FindAmbiguities); |
| 86 | std::swap(RecordPaths, Other.RecordPaths); |
| 87 | std::swap(DetectVirtual, Other.DetectVirtual); |
| 88 | std::swap(DetectedVirtual, Other.DetectedVirtual); |
| 89 | } |
| 90 | |
John McCall | 388ef53 | 2011-01-28 22:02:36 +0000 | [diff] [blame] | 91 | bool CXXRecordDecl::isDerivedFrom(const CXXRecordDecl *Base) const { |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 92 | CXXBasePaths Paths(/*FindAmbiguities=*/false, /*RecordPaths=*/false, |
| 93 | /*DetectVirtual=*/false); |
| 94 | return isDerivedFrom(Base, Paths); |
| 95 | } |
| 96 | |
John McCall | 388ef53 | 2011-01-28 22:02:36 +0000 | [diff] [blame] | 97 | bool CXXRecordDecl::isDerivedFrom(const CXXRecordDecl *Base, |
| 98 | CXXBasePaths &Paths) const { |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 99 | if (getCanonicalDecl() == Base->getCanonicalDecl()) |
| 100 | return false; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 101 | |
John McCall | 84c16cf | 2009-11-12 03:15:40 +0000 | [diff] [blame] | 102 | Paths.setOrigin(const_cast<CXXRecordDecl*>(this)); |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 103 | |
| 104 | const CXXRecordDecl *BaseDecl = Base->getCanonicalDecl(); |
| 105 | return lookupInBases( |
Malcolm Parsons | c6e4583 | 2017-01-13 18:55:32 +0000 | [diff] [blame] | 106 | [BaseDecl](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 107 | return FindBaseClass(Specifier, Path, BaseDecl); |
| 108 | }, |
| 109 | Paths); |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 110 | } |
| 111 | |
Jordan Rose | 55edf5ff | 2012-08-08 18:23:20 +0000 | [diff] [blame] | 112 | bool CXXRecordDecl::isVirtuallyDerivedFrom(const CXXRecordDecl *Base) const { |
Anders Carlsson | 15722da | 2010-06-04 01:40:08 +0000 | [diff] [blame] | 113 | if (!getNumVBases()) |
| 114 | return false; |
| 115 | |
Douglas Gregor | 3e63746 | 2010-03-03 04:38:46 +0000 | [diff] [blame] | 116 | CXXBasePaths Paths(/*FindAmbiguities=*/false, /*RecordPaths=*/false, |
| 117 | /*DetectVirtual=*/false); |
| 118 | |
| 119 | if (getCanonicalDecl() == Base->getCanonicalDecl()) |
| 120 | return false; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 121 | |
Jordan Rose | 55edf5ff | 2012-08-08 18:23:20 +0000 | [diff] [blame] | 122 | Paths.setOrigin(const_cast<CXXRecordDecl*>(this)); |
| 123 | |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 124 | const CXXRecordDecl *BaseDecl = Base->getCanonicalDecl(); |
| 125 | return lookupInBases( |
Malcolm Parsons | c6e4583 | 2017-01-13 18:55:32 +0000 | [diff] [blame] | 126 | [BaseDecl](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 127 | return FindVirtualBaseClass(Specifier, Path, BaseDecl); |
| 128 | }, |
| 129 | Paths); |
John McCall | ddabf1a | 2009-12-08 07:42:38 +0000 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | bool CXXRecordDecl::isProvablyNotDerivedFrom(const CXXRecordDecl *Base) const { |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 133 | const CXXRecordDecl *TargetDecl = Base->getCanonicalDecl(); |
| 134 | return forallBases([TargetDecl](const CXXRecordDecl *Base) { |
| 135 | return Base->getCanonicalDecl() != TargetDecl; |
| 136 | }); |
John McCall | ddabf1a | 2009-12-08 07:42:38 +0000 | [diff] [blame] | 137 | } |
| 138 | |
Richard Smith | d80b2d5 | 2012-11-22 00:24:47 +0000 | [diff] [blame] | 139 | bool |
| 140 | CXXRecordDecl::isCurrentInstantiation(const DeclContext *CurContext) const { |
| 141 | assert(isDependentContext()); |
| 142 | |
| 143 | for (; !CurContext->isFileContext(); CurContext = CurContext->getParent()) |
| 144 | if (CurContext->Equals(this)) |
| 145 | return true; |
| 146 | |
| 147 | return false; |
| 148 | } |
| 149 | |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 150 | bool CXXRecordDecl::forallBases(ForallBasesCallback BaseMatches, |
Douglas Gregor | dc97457 | 2012-11-10 07:24:09 +0000 | [diff] [blame] | 151 | bool AllowShortCircuit) const { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 152 | SmallVector<const CXXRecordDecl*, 8> Queue; |
John McCall | ddabf1a | 2009-12-08 07:42:38 +0000 | [diff] [blame] | 153 | |
| 154 | const CXXRecordDecl *Record = this; |
| 155 | bool AllMatches = true; |
| 156 | while (true) { |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 157 | for (const auto &I : Record->bases()) { |
| 158 | const RecordType *Ty = I.getType()->getAs<RecordType>(); |
Douglas Gregor | dc97457 | 2012-11-10 07:24:09 +0000 | [diff] [blame] | 159 | if (!Ty) { |
John McCall | ddabf1a | 2009-12-08 07:42:38 +0000 | [diff] [blame] | 160 | if (AllowShortCircuit) return false; |
| 161 | AllMatches = false; |
| 162 | continue; |
| 163 | } |
| 164 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 165 | CXXRecordDecl *Base = |
Douglas Gregor | dc97457 | 2012-11-10 07:24:09 +0000 | [diff] [blame] | 166 | cast_or_null<CXXRecordDecl>(Ty->getDecl()->getDefinition()); |
Richard Smith | d80b2d5 | 2012-11-22 00:24:47 +0000 | [diff] [blame] | 167 | if (!Base || |
| 168 | (Base->isDependentContext() && |
| 169 | !Base->isCurrentInstantiation(Record))) { |
John McCall | ddabf1a | 2009-12-08 07:42:38 +0000 | [diff] [blame] | 170 | if (AllowShortCircuit) return false; |
| 171 | AllMatches = false; |
| 172 | continue; |
| 173 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 174 | |
Faisal Vali | 683b074 | 2016-05-19 02:28:21 +0000 | [diff] [blame] | 175 | Queue.push_back(Base); |
| 176 | if (!BaseMatches(Base)) { |
| 177 | if (AllowShortCircuit) return false; |
| 178 | AllMatches = false; |
| 179 | continue; |
John McCall | ddabf1a | 2009-12-08 07:42:38 +0000 | [diff] [blame] | 180 | } |
| 181 | } |
| 182 | |
Robert Wilhelm | 25284cc | 2013-08-23 16:11:15 +0000 | [diff] [blame] | 183 | if (Queue.empty()) |
| 184 | break; |
| 185 | Record = Queue.pop_back_val(); // not actually a queue. |
John McCall | ddabf1a | 2009-12-08 07:42:38 +0000 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | return AllMatches; |
| 189 | } |
| 190 | |
Alex Lorenz | 4e1377a | 2017-05-10 09:47:41 +0000 | [diff] [blame] | 191 | bool CXXBasePaths::lookupInBases(ASTContext &Context, |
| 192 | const CXXRecordDecl *Record, |
| 193 | CXXRecordDecl::BaseMatchesCallback BaseMatches, |
| 194 | bool LookupInDependent) { |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 195 | bool FoundPath = false; |
John McCall | 401982f | 2010-01-20 21:53:11 +0000 | [diff] [blame] | 196 | |
John McCall | 553c079 | 2010-01-23 00:46:32 +0000 | [diff] [blame] | 197 | // The access of the path down to this record. |
Douglas Gregor | 0555f7e | 2010-03-03 02:18:00 +0000 | [diff] [blame] | 198 | AccessSpecifier AccessToHere = ScratchPath.Access; |
| 199 | bool IsFirstStep = ScratchPath.empty(); |
John McCall | 553c079 | 2010-01-23 00:46:32 +0000 | [diff] [blame] | 200 | |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 201 | for (const auto &BaseSpec : Record->bases()) { |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 202 | // Find the record of the base class subobjects for this type. |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 203 | QualType BaseType = |
| 204 | Context.getCanonicalType(BaseSpec.getType()).getUnqualifiedType(); |
| 205 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 206 | // C++ [temp.dep]p3: |
| 207 | // In the definition of a class template or a member of a class template, |
| 208 | // if a base class of the class template depends on a template-parameter, |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 209 | // the base class scope is not examined during unqualified name lookup |
| 210 | // either at the point of definition of the class template or member or |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 211 | // during an instantiation of the class tem- plate or member. |
Alex Lorenz | 4e1377a | 2017-05-10 09:47:41 +0000 | [diff] [blame] | 212 | if (!LookupInDependent && BaseType->isDependentType()) |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 213 | continue; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 214 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 215 | // Determine whether we need to visit this base class at all, |
| 216 | // updating the count of subobjects appropriately. |
Benjamin Kramer | 1b2bc60 | 2018-07-20 20:13:08 +0000 | [diff] [blame] | 217 | IsVirtBaseAndNumberNonVirtBases &Subobjects = ClassSubobjects[BaseType]; |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 218 | bool VisitBase = true; |
| 219 | bool SetVirtual = false; |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 220 | if (BaseSpec.isVirtual()) { |
Benjamin Kramer | 1b2bc60 | 2018-07-20 20:13:08 +0000 | [diff] [blame] | 221 | VisitBase = !Subobjects.IsVirtBase; |
| 222 | Subobjects.IsVirtBase = true; |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 223 | if (isDetectingVirtual() && DetectedVirtual == nullptr) { |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 224 | // If this is the first virtual we find, remember it. If it turns out |
| 225 | // there is no base path here, we'll reset it later. |
Douglas Gregor | 0555f7e | 2010-03-03 02:18:00 +0000 | [diff] [blame] | 226 | DetectedVirtual = BaseType->getAs<RecordType>(); |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 227 | SetVirtual = true; |
| 228 | } |
Benjamin Kramer | 1b2bc60 | 2018-07-20 20:13:08 +0000 | [diff] [blame] | 229 | } else { |
| 230 | ++Subobjects.NumberOfNonVirtBases; |
| 231 | } |
Douglas Gregor | 0555f7e | 2010-03-03 02:18:00 +0000 | [diff] [blame] | 232 | if (isRecordingPaths()) { |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 233 | // Add this base specifier to the current path. |
| 234 | CXXBasePathElement Element; |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 235 | Element.Base = &BaseSpec; |
Douglas Gregor | 0555f7e | 2010-03-03 02:18:00 +0000 | [diff] [blame] | 236 | Element.Class = Record; |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 237 | if (BaseSpec.isVirtual()) |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 238 | Element.SubobjectNumber = 0; |
| 239 | else |
Benjamin Kramer | 1b2bc60 | 2018-07-20 20:13:08 +0000 | [diff] [blame] | 240 | Element.SubobjectNumber = Subobjects.NumberOfNonVirtBases; |
Douglas Gregor | 0555f7e | 2010-03-03 02:18:00 +0000 | [diff] [blame] | 241 | ScratchPath.push_back(Element); |
John McCall | 401982f | 2010-01-20 21:53:11 +0000 | [diff] [blame] | 242 | |
John McCall | 553c079 | 2010-01-23 00:46:32 +0000 | [diff] [blame] | 243 | // Calculate the "top-down" access to this base class. |
| 244 | // The spec actually describes this bottom-up, but top-down is |
| 245 | // equivalent because the definition works out as follows: |
| 246 | // 1. Write down the access along each step in the inheritance |
| 247 | // chain, followed by the access of the decl itself. |
| 248 | // For example, in |
| 249 | // class A { public: int foo; }; |
| 250 | // class B : protected A {}; |
| 251 | // class C : public B {}; |
| 252 | // class D : private C {}; |
| 253 | // we would write: |
| 254 | // private public protected public |
| 255 | // 2. If 'private' appears anywhere except far-left, access is denied. |
| 256 | // 3. Otherwise, overall access is determined by the most restrictive |
| 257 | // access in the sequence. |
| 258 | if (IsFirstStep) |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 259 | ScratchPath.Access = BaseSpec.getAccessSpecifier(); |
John McCall | 553c079 | 2010-01-23 00:46:32 +0000 | [diff] [blame] | 260 | else |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 261 | ScratchPath.Access = CXXRecordDecl::MergeAccess(AccessToHere, |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 262 | BaseSpec.getAccessSpecifier()); |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 263 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 264 | |
John McCall | 6f89140 | 2010-02-09 00:57:12 +0000 | [diff] [blame] | 265 | // Track whether there's a path involving this specific base. |
| 266 | bool FoundPathThroughBase = false; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 267 | |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 268 | if (BaseMatches(&BaseSpec, ScratchPath)) { |
John McCall | 553c079 | 2010-01-23 00:46:32 +0000 | [diff] [blame] | 269 | // We've found a path that terminates at this base. |
John McCall | 6f89140 | 2010-02-09 00:57:12 +0000 | [diff] [blame] | 270 | FoundPath = FoundPathThroughBase = true; |
Douglas Gregor | 0555f7e | 2010-03-03 02:18:00 +0000 | [diff] [blame] | 271 | if (isRecordingPaths()) { |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 272 | // We have a path. Make a copy of it before moving on. |
Douglas Gregor | 0555f7e | 2010-03-03 02:18:00 +0000 | [diff] [blame] | 273 | Paths.push_back(ScratchPath); |
| 274 | } else if (!isFindingAmbiguities()) { |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 275 | // We found a path and we don't care about ambiguities; |
| 276 | // return immediately. |
| 277 | return FoundPath; |
| 278 | } |
| 279 | } else if (VisitBase) { |
Alex Lorenz | 4e1377a | 2017-05-10 09:47:41 +0000 | [diff] [blame] | 280 | CXXRecordDecl *BaseRecord; |
| 281 | if (LookupInDependent) { |
| 282 | BaseRecord = nullptr; |
| 283 | const TemplateSpecializationType *TST = |
| 284 | BaseSpec.getType()->getAs<TemplateSpecializationType>(); |
| 285 | if (!TST) { |
| 286 | if (auto *RT = BaseSpec.getType()->getAs<RecordType>()) |
| 287 | BaseRecord = cast<CXXRecordDecl>(RT->getDecl()); |
| 288 | } else { |
| 289 | TemplateName TN = TST->getTemplateName(); |
| 290 | if (auto *TD = |
| 291 | dyn_cast_or_null<ClassTemplateDecl>(TN.getAsTemplateDecl())) |
| 292 | BaseRecord = TD->getTemplatedDecl(); |
| 293 | } |
Alex Lorenz | 6796c0b | 2017-05-18 18:06:07 +0000 | [diff] [blame] | 294 | if (BaseRecord) { |
| 295 | if (!BaseRecord->hasDefinition() || |
| 296 | VisitedDependentRecords.count(BaseRecord)) { |
| 297 | BaseRecord = nullptr; |
| 298 | } else { |
| 299 | VisitedDependentRecords.insert(BaseRecord); |
| 300 | } |
| 301 | } |
Alex Lorenz | 4e1377a | 2017-05-10 09:47:41 +0000 | [diff] [blame] | 302 | } else { |
| 303 | BaseRecord = cast<CXXRecordDecl>( |
| 304 | BaseSpec.getType()->castAs<RecordType>()->getDecl()); |
| 305 | } |
| 306 | if (BaseRecord && |
| 307 | lookupInBases(Context, BaseRecord, BaseMatches, LookupInDependent)) { |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 308 | // C++ [class.member.lookup]p2: |
| 309 | // A member name f in one sub-object B hides a member name f in |
| 310 | // a sub-object A if A is a base class sub-object of B. Any |
| 311 | // declarations that are so hidden are eliminated from |
| 312 | // consideration. |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 313 | |
| 314 | // There is a path to a base class that meets the criteria. If we're |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 315 | // not collecting paths or finding ambiguities, we're done. |
John McCall | 6f89140 | 2010-02-09 00:57:12 +0000 | [diff] [blame] | 316 | FoundPath = FoundPathThroughBase = true; |
Douglas Gregor | 0555f7e | 2010-03-03 02:18:00 +0000 | [diff] [blame] | 317 | if (!isFindingAmbiguities()) |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 318 | return FoundPath; |
| 319 | } |
| 320 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 321 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 322 | // Pop this base specifier off the current path (if we're |
| 323 | // collecting paths). |
Douglas Gregor | 0555f7e | 2010-03-03 02:18:00 +0000 | [diff] [blame] | 324 | if (isRecordingPaths()) { |
| 325 | ScratchPath.pop_back(); |
John McCall | 401982f | 2010-01-20 21:53:11 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 328 | // If we set a virtual earlier, and this isn't a path, forget it again. |
John McCall | 6f89140 | 2010-02-09 00:57:12 +0000 | [diff] [blame] | 329 | if (SetVirtual && !FoundPathThroughBase) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 330 | DetectedVirtual = nullptr; |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 331 | } |
| 332 | } |
John McCall | 553c079 | 2010-01-23 00:46:32 +0000 | [diff] [blame] | 333 | |
| 334 | // Reset the scratch path access. |
Douglas Gregor | 0555f7e | 2010-03-03 02:18:00 +0000 | [diff] [blame] | 335 | ScratchPath.Access = AccessToHere; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 336 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 337 | return FoundPath; |
| 338 | } |
| 339 | |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 340 | bool CXXRecordDecl::lookupInBases(BaseMatchesCallback BaseMatches, |
Alex Lorenz | 4e1377a | 2017-05-10 09:47:41 +0000 | [diff] [blame] | 341 | CXXBasePaths &Paths, |
| 342 | bool LookupInDependent) const { |
Douglas Gregor | 3e63746 | 2010-03-03 04:38:46 +0000 | [diff] [blame] | 343 | // If we didn't find anything, report that. |
Alex Lorenz | 4e1377a | 2017-05-10 09:47:41 +0000 | [diff] [blame] | 344 | if (!Paths.lookupInBases(getASTContext(), this, BaseMatches, |
| 345 | LookupInDependent)) |
Douglas Gregor | 3e63746 | 2010-03-03 04:38:46 +0000 | [diff] [blame] | 346 | return false; |
| 347 | |
| 348 | // If we're not recording paths or we won't ever find ambiguities, |
| 349 | // we're done. |
| 350 | if (!Paths.isRecordingPaths() || !Paths.isFindingAmbiguities()) |
| 351 | return true; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 352 | |
Douglas Gregor | 3e63746 | 2010-03-03 04:38:46 +0000 | [diff] [blame] | 353 | // C++ [class.member.lookup]p6: |
| 354 | // When virtual base classes are used, a hidden declaration can be |
| 355 | // reached along a path through the sub-object lattice that does |
| 356 | // not pass through the hiding declaration. This is not an |
| 357 | // ambiguity. The identical use with nonvirtual base classes is an |
| 358 | // ambiguity; in that case there is no unique instance of the name |
| 359 | // that hides all the others. |
| 360 | // |
| 361 | // FIXME: This is an O(N^2) algorithm, but DPG doesn't see an easy |
| 362 | // way to make it any faster. |
Benjamin Kramer | ece036e | 2015-02-11 19:09:16 +0000 | [diff] [blame] | 363 | Paths.Paths.remove_if([&Paths](const CXXBasePath &Path) { |
| 364 | for (const CXXBasePathElement &PE : Path) { |
| 365 | if (!PE.Base->isVirtual()) |
| 366 | continue; |
Douglas Gregor | 3e63746 | 2010-03-03 04:38:46 +0000 | [diff] [blame] | 367 | |
Benjamin Kramer | ece036e | 2015-02-11 19:09:16 +0000 | [diff] [blame] | 368 | CXXRecordDecl *VBase = nullptr; |
| 369 | if (const RecordType *Record = PE.Base->getType()->getAs<RecordType>()) |
| 370 | VBase = cast<CXXRecordDecl>(Record->getDecl()); |
| 371 | if (!VBase) |
| 372 | break; |
| 373 | |
| 374 | // The declaration(s) we found along this path were found in a |
| 375 | // subobject of a virtual base. Check whether this virtual |
| 376 | // base is a subobject of any other path; if so, then the |
| 377 | // declaration in this path are hidden by that patch. |
| 378 | for (const CXXBasePath &HidingP : Paths) { |
| 379 | CXXRecordDecl *HidingClass = nullptr; |
| 380 | if (const RecordType *Record = |
| 381 | HidingP.back().Base->getType()->getAs<RecordType>()) |
| 382 | HidingClass = cast<CXXRecordDecl>(Record->getDecl()); |
| 383 | if (!HidingClass) |
Douglas Gregor | 3e63746 | 2010-03-03 04:38:46 +0000 | [diff] [blame] | 384 | break; |
| 385 | |
Benjamin Kramer | ece036e | 2015-02-11 19:09:16 +0000 | [diff] [blame] | 386 | if (HidingClass->isVirtuallyDerivedFrom(VBase)) |
| 387 | return true; |
Douglas Gregor | 3e63746 | 2010-03-03 04:38:46 +0000 | [diff] [blame] | 388 | } |
| 389 | } |
Benjamin Kramer | ece036e | 2015-02-11 19:09:16 +0000 | [diff] [blame] | 390 | return false; |
| 391 | }); |
Douglas Gregor | 3e63746 | 2010-03-03 04:38:46 +0000 | [diff] [blame] | 392 | |
Douglas Gregor | 3e63746 | 2010-03-03 04:38:46 +0000 | [diff] [blame] | 393 | return true; |
Douglas Gregor | 0555f7e | 2010-03-03 02:18:00 +0000 | [diff] [blame] | 394 | } |
| 395 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 396 | bool CXXRecordDecl::FindBaseClass(const CXXBaseSpecifier *Specifier, |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 397 | CXXBasePath &Path, |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 398 | const CXXRecordDecl *BaseRecord) { |
Benjamin Kramer | 1d38be9 | 2015-07-25 15:27:04 +0000 | [diff] [blame] | 399 | assert(BaseRecord->getCanonicalDecl() == BaseRecord && |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 400 | "User data for FindBaseClass is not canonical!"); |
Ted Kremenek | 2883175 | 2012-08-23 20:46:57 +0000 | [diff] [blame] | 401 | return Specifier->getType()->castAs<RecordType>()->getDecl() |
| 402 | ->getCanonicalDecl() == BaseRecord; |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 403 | } |
| 404 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 405 | bool CXXRecordDecl::FindVirtualBaseClass(const CXXBaseSpecifier *Specifier, |
Douglas Gregor | 3e63746 | 2010-03-03 04:38:46 +0000 | [diff] [blame] | 406 | CXXBasePath &Path, |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 407 | const CXXRecordDecl *BaseRecord) { |
Benjamin Kramer | 1d38be9 | 2015-07-25 15:27:04 +0000 | [diff] [blame] | 408 | assert(BaseRecord->getCanonicalDecl() == BaseRecord && |
Douglas Gregor | 3e63746 | 2010-03-03 04:38:46 +0000 | [diff] [blame] | 409 | "User data for FindBaseClass is not canonical!"); |
| 410 | return Specifier->isVirtual() && |
Ted Kremenek | 2883175 | 2012-08-23 20:46:57 +0000 | [diff] [blame] | 411 | Specifier->getType()->castAs<RecordType>()->getDecl() |
| 412 | ->getCanonicalDecl() == BaseRecord; |
Douglas Gregor | 3e63746 | 2010-03-03 04:38:46 +0000 | [diff] [blame] | 413 | } |
| 414 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 415 | bool CXXRecordDecl::FindTagMember(const CXXBaseSpecifier *Specifier, |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 416 | CXXBasePath &Path, |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 417 | DeclarationName Name) { |
Ted Kremenek | 2883175 | 2012-08-23 20:46:57 +0000 | [diff] [blame] | 418 | RecordDecl *BaseRecord = |
| 419 | Specifier->getType()->castAs<RecordType>()->getDecl(); |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 420 | |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 421 | for (Path.Decls = BaseRecord->lookup(Name); |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 422 | !Path.Decls.empty(); |
| 423 | Path.Decls = Path.Decls.slice(1)) { |
| 424 | if (Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag)) |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 425 | return true; |
| 426 | } |
| 427 | |
| 428 | return false; |
| 429 | } |
| 430 | |
Alex Lorenz | 4e1377a | 2017-05-10 09:47:41 +0000 | [diff] [blame] | 431 | static bool findOrdinaryMember(RecordDecl *BaseRecord, CXXBasePath &Path, |
| 432 | DeclarationName Name) { |
Eugene Zelenko | f71964a | 2017-11-30 22:33:48 +0000 | [diff] [blame] | 433 | const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Tag | |
| 434 | Decl::IDNS_Member; |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 435 | for (Path.Decls = BaseRecord->lookup(Name); |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 436 | !Path.Decls.empty(); |
| 437 | Path.Decls = Path.Decls.slice(1)) { |
| 438 | if (Path.Decls.front()->isInIdentifierNamespace(IDNS)) |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 439 | return true; |
| 440 | } |
Alex Lorenz | 4e1377a | 2017-05-10 09:47:41 +0000 | [diff] [blame] | 441 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 442 | return false; |
| 443 | } |
| 444 | |
Alex Lorenz | 4e1377a | 2017-05-10 09:47:41 +0000 | [diff] [blame] | 445 | bool CXXRecordDecl::FindOrdinaryMember(const CXXBaseSpecifier *Specifier, |
| 446 | CXXBasePath &Path, |
| 447 | DeclarationName Name) { |
| 448 | RecordDecl *BaseRecord = |
| 449 | Specifier->getType()->castAs<RecordType>()->getDecl(); |
| 450 | return findOrdinaryMember(BaseRecord, Path, Name); |
| 451 | } |
| 452 | |
| 453 | bool CXXRecordDecl::FindOrdinaryMemberInDependentClasses( |
| 454 | const CXXBaseSpecifier *Specifier, CXXBasePath &Path, |
| 455 | DeclarationName Name) { |
| 456 | const TemplateSpecializationType *TST = |
| 457 | Specifier->getType()->getAs<TemplateSpecializationType>(); |
| 458 | if (!TST) { |
| 459 | auto *RT = Specifier->getType()->getAs<RecordType>(); |
| 460 | if (!RT) |
| 461 | return false; |
| 462 | return findOrdinaryMember(RT->getDecl(), Path, Name); |
| 463 | } |
| 464 | TemplateName TN = TST->getTemplateName(); |
| 465 | const auto *TD = dyn_cast_or_null<ClassTemplateDecl>(TN.getAsTemplateDecl()); |
| 466 | if (!TD) |
| 467 | return false; |
| 468 | CXXRecordDecl *RD = TD->getTemplatedDecl(); |
| 469 | if (!RD) |
| 470 | return false; |
| 471 | return findOrdinaryMember(RD, Path, Name); |
| 472 | } |
| 473 | |
Alexey Bataev | 94a4f0c | 2016-03-03 05:21:39 +0000 | [diff] [blame] | 474 | bool CXXRecordDecl::FindOMPReductionMember(const CXXBaseSpecifier *Specifier, |
| 475 | CXXBasePath &Path, |
| 476 | DeclarationName Name) { |
| 477 | RecordDecl *BaseRecord = |
| 478 | Specifier->getType()->castAs<RecordType>()->getDecl(); |
| 479 | |
| 480 | for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty(); |
| 481 | Path.Decls = Path.Decls.slice(1)) { |
| 482 | if (Path.Decls.front()->isInIdentifierNamespace(IDNS_OMPReduction)) |
| 483 | return true; |
| 484 | } |
| 485 | |
| 486 | return false; |
| 487 | } |
| 488 | |
Michael Kruse | 251e148 | 2019-02-01 20:25:04 +0000 | [diff] [blame] | 489 | bool CXXRecordDecl::FindOMPMapperMember(const CXXBaseSpecifier *Specifier, |
| 490 | CXXBasePath &Path, |
| 491 | DeclarationName Name) { |
| 492 | RecordDecl *BaseRecord = |
| 493 | Specifier->getType()->castAs<RecordType>()->getDecl(); |
| 494 | |
| 495 | for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty(); |
| 496 | Path.Decls = Path.Decls.slice(1)) { |
| 497 | if (Path.Decls.front()->isInIdentifierNamespace(IDNS_OMPMapper)) |
| 498 | return true; |
| 499 | } |
| 500 | |
| 501 | return false; |
| 502 | } |
| 503 | |
John McCall | 84c16cf | 2009-11-12 03:15:40 +0000 | [diff] [blame] | 504 | bool CXXRecordDecl:: |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 505 | FindNestedNameSpecifierMember(const CXXBaseSpecifier *Specifier, |
John McCall | 84c16cf | 2009-11-12 03:15:40 +0000 | [diff] [blame] | 506 | CXXBasePath &Path, |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 507 | DeclarationName Name) { |
Ted Kremenek | 2883175 | 2012-08-23 20:46:57 +0000 | [diff] [blame] | 508 | RecordDecl *BaseRecord = |
| 509 | Specifier->getType()->castAs<RecordType>()->getDecl(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 510 | |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 511 | for (Path.Decls = BaseRecord->lookup(Name); |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 512 | !Path.Decls.empty(); |
| 513 | Path.Decls = Path.Decls.slice(1)) { |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 514 | // FIXME: Refactor the "is it a nested-name-specifier?" check |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 515 | if (isa<TypedefNameDecl>(Path.Decls.front()) || |
| 516 | Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag)) |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 517 | return true; |
| 518 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 519 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 520 | return false; |
Mike Stump | 512c5b7 | 2009-10-06 23:38:59 +0000 | [diff] [blame] | 521 | } |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 522 | |
Alex Lorenz | 4e1377a | 2017-05-10 09:47:41 +0000 | [diff] [blame] | 523 | std::vector<const NamedDecl *> CXXRecordDecl::lookupDependentName( |
| 524 | const DeclarationName &Name, |
| 525 | llvm::function_ref<bool(const NamedDecl *ND)> Filter) { |
| 526 | std::vector<const NamedDecl *> Results; |
| 527 | // Lookup in the class. |
| 528 | DeclContext::lookup_result DirectResult = lookup(Name); |
| 529 | if (!DirectResult.empty()) { |
| 530 | for (const NamedDecl *ND : DirectResult) { |
| 531 | if (Filter(ND)) |
| 532 | Results.push_back(ND); |
| 533 | } |
| 534 | return Results; |
| 535 | } |
| 536 | // Perform lookup into our base classes. |
| 537 | CXXBasePaths Paths; |
| 538 | Paths.setOrigin(this); |
| 539 | if (!lookupInBases( |
| 540 | [&](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { |
| 541 | return CXXRecordDecl::FindOrdinaryMemberInDependentClasses( |
| 542 | Specifier, Path, Name); |
| 543 | }, |
| 544 | Paths, /*LookupInDependent=*/true)) |
| 545 | return Results; |
| 546 | for (const NamedDecl *ND : Paths.front().Decls) { |
| 547 | if (Filter(ND)) |
| 548 | Results.push_back(ND); |
| 549 | } |
| 550 | return Results; |
| 551 | } |
| 552 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 553 | void OverridingMethods::add(unsigned OverriddenSubobject, |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 554 | UniqueVirtualMethod Overriding) { |
Craig Topper | 2341c0d | 2013-07-04 03:08:24 +0000 | [diff] [blame] | 555 | SmallVectorImpl<UniqueVirtualMethod> &SubobjectOverrides |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 556 | = Overrides[OverriddenSubobject]; |
Fangrui Song | 75e74e0 | 2019-03-31 08:48:19 +0000 | [diff] [blame] | 557 | if (llvm::find(SubobjectOverrides, Overriding) == SubobjectOverrides.end()) |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 558 | SubobjectOverrides.push_back(Overriding); |
| 559 | } |
| 560 | |
| 561 | void OverridingMethods::add(const OverridingMethods &Other) { |
| 562 | for (const_iterator I = Other.begin(), IE = Other.end(); I != IE; ++I) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 563 | for (overriding_const_iterator M = I->second.begin(), |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 564 | MEnd = I->second.end(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 565 | M != MEnd; |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 566 | ++M) |
| 567 | add(I->first, *M); |
| 568 | } |
| 569 | } |
| 570 | |
| 571 | void OverridingMethods::replaceAll(UniqueVirtualMethod Overriding) { |
| 572 | for (iterator I = begin(), IEnd = end(); I != IEnd; ++I) { |
| 573 | I->second.clear(); |
| 574 | I->second.push_back(Overriding); |
| 575 | } |
| 576 | } |
| 577 | |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 578 | namespace { |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 579 | |
Eugene Zelenko | f71964a | 2017-11-30 22:33:48 +0000 | [diff] [blame] | 580 | class FinalOverriderCollector { |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 581 | /// The number of subobjects of a given class type that |
Eugene Zelenko | f71964a | 2017-11-30 22:33:48 +0000 | [diff] [blame] | 582 | /// occur within the class hierarchy. |
| 583 | llvm::DenseMap<const CXXRecordDecl *, unsigned> SubobjectCount; |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 584 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 585 | /// Overriders for each virtual base subobject. |
Eugene Zelenko | f71964a | 2017-11-30 22:33:48 +0000 | [diff] [blame] | 586 | llvm::DenseMap<const CXXRecordDecl *, CXXFinalOverriderMap *> VirtualOverriders; |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 587 | |
Eugene Zelenko | f71964a | 2017-11-30 22:33:48 +0000 | [diff] [blame] | 588 | CXXFinalOverriderMap FinalOverriders; |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 589 | |
Eugene Zelenko | f71964a | 2017-11-30 22:33:48 +0000 | [diff] [blame] | 590 | public: |
| 591 | ~FinalOverriderCollector(); |
| 592 | |
| 593 | void Collect(const CXXRecordDecl *RD, bool VirtualBase, |
| 594 | const CXXRecordDecl *InVirtualSubobject, |
| 595 | CXXFinalOverriderMap &Overriders); |
| 596 | }; |
| 597 | |
| 598 | } // namespace |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 599 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 600 | void FinalOverriderCollector::Collect(const CXXRecordDecl *RD, |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 601 | bool VirtualBase, |
| 602 | const CXXRecordDecl *InVirtualSubobject, |
| 603 | CXXFinalOverriderMap &Overriders) { |
| 604 | unsigned SubobjectNumber = 0; |
| 605 | if (!VirtualBase) |
| 606 | SubobjectNumber |
| 607 | = ++SubobjectCount[cast<CXXRecordDecl>(RD->getCanonicalDecl())]; |
| 608 | |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 609 | for (const auto &Base : RD->bases()) { |
| 610 | if (const RecordType *RT = Base.getType()->getAs<RecordType>()) { |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 611 | const CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(RT->getDecl()); |
| 612 | if (!BaseDecl->isPolymorphic()) |
| 613 | continue; |
| 614 | |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 615 | if (Overriders.empty() && !Base.isVirtual()) { |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 616 | // There are no other overriders of virtual member functions, |
| 617 | // so let the base class fill in our overriders for us. |
| 618 | Collect(BaseDecl, false, InVirtualSubobject, Overriders); |
| 619 | continue; |
| 620 | } |
| 621 | |
| 622 | // Collect all of the overridders from the base class subobject |
| 623 | // and merge them into the set of overridders for this class. |
| 624 | // For virtual base classes, populate or use the cached virtual |
| 625 | // overrides so that we do not walk the virtual base class (and |
| 626 | // its base classes) more than once. |
| 627 | CXXFinalOverriderMap ComputedBaseOverriders; |
| 628 | CXXFinalOverriderMap *BaseOverriders = &ComputedBaseOverriders; |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 629 | if (Base.isVirtual()) { |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 630 | CXXFinalOverriderMap *&MyVirtualOverriders = VirtualOverriders[BaseDecl]; |
Benjamin Kramer | ea388a2 | 2012-05-27 22:41:08 +0000 | [diff] [blame] | 631 | BaseOverriders = MyVirtualOverriders; |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 632 | if (!MyVirtualOverriders) { |
| 633 | MyVirtualOverriders = new CXXFinalOverriderMap; |
Benjamin Kramer | ea388a2 | 2012-05-27 22:41:08 +0000 | [diff] [blame] | 634 | |
| 635 | // Collect may cause VirtualOverriders to reallocate, invalidating the |
| 636 | // MyVirtualOverriders reference. Set BaseOverriders to the right |
| 637 | // value now. |
| 638 | BaseOverriders = MyVirtualOverriders; |
| 639 | |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 640 | Collect(BaseDecl, true, BaseDecl, *MyVirtualOverriders); |
| 641 | } |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 642 | } else |
| 643 | Collect(BaseDecl, false, InVirtualSubobject, ComputedBaseOverriders); |
| 644 | |
| 645 | // Merge the overriders from this base class into our own set of |
| 646 | // overriders. |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 647 | for (CXXFinalOverriderMap::iterator OM = BaseOverriders->begin(), |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 648 | OMEnd = BaseOverriders->end(); |
| 649 | OM != OMEnd; |
| 650 | ++OM) { |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 651 | const CXXMethodDecl *CanonOM = OM->first->getCanonicalDecl(); |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 652 | Overriders[CanonOM].add(OM->second); |
| 653 | } |
| 654 | } |
| 655 | } |
| 656 | |
Aaron Ballman | 2b124d1 | 2014-03-13 16:36:16 +0000 | [diff] [blame] | 657 | for (auto *M : RD->methods()) { |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 658 | // We only care about virtual methods. |
| 659 | if (!M->isVirtual()) |
| 660 | continue; |
| 661 | |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 662 | CXXMethodDecl *CanonM = M->getCanonicalDecl(); |
Benjamin Kramer | acfa339 | 2017-12-17 23:52:45 +0000 | [diff] [blame] | 663 | using OverriddenMethodsRange = |
| 664 | llvm::iterator_range<CXXMethodDecl::method_iterator>; |
| 665 | OverriddenMethodsRange OverriddenMethods = CanonM->overridden_methods(); |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 666 | |
Benjamin Kramer | acfa339 | 2017-12-17 23:52:45 +0000 | [diff] [blame] | 667 | if (OverriddenMethods.begin() == OverriddenMethods.end()) { |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 668 | // This is a new virtual function that does not override any |
| 669 | // other virtual function. Add it to the map of virtual |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 670 | // functions for which we are tracking overridders. |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 671 | |
| 672 | // C++ [class.virtual]p2: |
| 673 | // For convenience we say that any virtual function overrides itself. |
| 674 | Overriders[CanonM].add(SubobjectNumber, |
| 675 | UniqueVirtualMethod(CanonM, SubobjectNumber, |
| 676 | InVirtualSubobject)); |
| 677 | continue; |
| 678 | } |
| 679 | |
| 680 | // This virtual method overrides other virtual methods, so it does |
| 681 | // not add any new slots into the set of overriders. Instead, we |
| 682 | // replace entries in the set of overriders with the new |
| 683 | // overrider. To do so, we dig down to the original virtual |
| 684 | // functions using data recursion and update all of the methods it |
| 685 | // overrides. |
Benjamin Kramer | acfa339 | 2017-12-17 23:52:45 +0000 | [diff] [blame] | 686 | SmallVector<OverriddenMethodsRange, 4> Stack(1, OverriddenMethods); |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 687 | while (!Stack.empty()) { |
Benjamin Kramer | b4ef668 | 2015-02-06 17:25:10 +0000 | [diff] [blame] | 688 | for (const CXXMethodDecl *OM : Stack.pop_back_val()) { |
| 689 | const CXXMethodDecl *CanonOM = OM->getCanonicalDecl(); |
Anders Carlsson | a2f74f3 | 2010-06-03 01:00:02 +0000 | [diff] [blame] | 690 | |
| 691 | // C++ [class.virtual]p2: |
| 692 | // A virtual member function C::vf of a class object S is |
| 693 | // a final overrider unless the most derived class (1.8) |
| 694 | // of which S is a base class subobject (if any) declares |
| 695 | // or inherits another member function that overrides vf. |
| 696 | // |
| 697 | // Treating this object like the most derived class, we |
| 698 | // replace any overrides from base classes with this |
| 699 | // overriding virtual function. |
| 700 | Overriders[CanonOM].replaceAll( |
| 701 | UniqueVirtualMethod(CanonM, SubobjectNumber, |
| 702 | InVirtualSubobject)); |
| 703 | |
Benjamin Kramer | acfa339 | 2017-12-17 23:52:45 +0000 | [diff] [blame] | 704 | auto OverriddenMethods = CanonOM->overridden_methods(); |
| 705 | if (OverriddenMethods.begin() == OverriddenMethods.end()) |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 706 | continue; |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 707 | |
| 708 | // Continue recursion to the methods that this virtual method |
| 709 | // overrides. |
Benjamin Kramer | acfa339 | 2017-12-17 23:52:45 +0000 | [diff] [blame] | 710 | Stack.push_back(OverriddenMethods); |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 711 | } |
| 712 | } |
Anders Carlsson | a2f74f3 | 2010-06-03 01:00:02 +0000 | [diff] [blame] | 713 | |
| 714 | // C++ [class.virtual]p2: |
| 715 | // For convenience we say that any virtual function overrides itself. |
| 716 | Overriders[CanonM].add(SubobjectNumber, |
| 717 | UniqueVirtualMethod(CanonM, SubobjectNumber, |
| 718 | InVirtualSubobject)); |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 719 | } |
| 720 | } |
| 721 | |
| 722 | FinalOverriderCollector::~FinalOverriderCollector() { |
| 723 | for (llvm::DenseMap<const CXXRecordDecl *, CXXFinalOverriderMap *>::iterator |
| 724 | VO = VirtualOverriders.begin(), VOEnd = VirtualOverriders.end(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 725 | VO != VOEnd; |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 726 | ++VO) |
| 727 | delete VO->second; |
| 728 | } |
| 729 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 730 | void |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 731 | CXXRecordDecl::getFinalOverriders(CXXFinalOverriderMap &FinalOverriders) const { |
| 732 | FinalOverriderCollector Collector; |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 733 | Collector.Collect(this, false, nullptr, FinalOverriders); |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 734 | |
| 735 | // Weed out any final overriders that come from virtual base class |
| 736 | // subobjects that were hidden by other subobjects along any path. |
| 737 | // This is the final-overrider variant of C++ [class.member.lookup]p10. |
Benjamin Kramer | ece036e | 2015-02-11 19:09:16 +0000 | [diff] [blame] | 738 | for (auto &OM : FinalOverriders) { |
| 739 | for (auto &SO : OM.second) { |
| 740 | SmallVectorImpl<UniqueVirtualMethod> &Overriding = SO.second; |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 741 | if (Overriding.size() < 2) |
| 742 | continue; |
| 743 | |
Benjamin Kramer | ece036e | 2015-02-11 19:09:16 +0000 | [diff] [blame] | 744 | auto IsHidden = [&Overriding](const UniqueVirtualMethod &M) { |
| 745 | if (!M.InVirtualSubobject) |
| 746 | return false; |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 747 | |
| 748 | // We have an overriding method in a virtual base class |
| 749 | // subobject (or non-virtual base class subobject thereof); |
| 750 | // determine whether there exists an other overriding method |
| 751 | // in a base class subobject that hides the virtual base class |
| 752 | // subobject. |
Benjamin Kramer | ece036e | 2015-02-11 19:09:16 +0000 | [diff] [blame] | 753 | for (const UniqueVirtualMethod &OP : Overriding) |
| 754 | if (&M != &OP && |
| 755 | OP.Method->getParent()->isVirtuallyDerivedFrom( |
| 756 | M.InVirtualSubobject)) |
| 757 | return true; |
| 758 | return false; |
| 759 | }; |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 760 | |
Richard Smith | aade5fb | 2020-01-31 17:05:27 -0800 | [diff] [blame] | 761 | // FIXME: IsHidden reads from Overriding from the middle of a remove_if |
| 762 | // over the same sequence! Is this guaranteed to work? |
Benjamin Kramer | ece036e | 2015-02-11 19:09:16 +0000 | [diff] [blame] | 763 | Overriding.erase( |
| 764 | std::remove_if(Overriding.begin(), Overriding.end(), IsHidden), |
| 765 | Overriding.end()); |
Douglas Gregor | 4165bd6 | 2010-03-23 23:47:56 +0000 | [diff] [blame] | 766 | } |
| 767 | } |
| 768 | } |
Anders Carlsson | 4131f00 | 2010-11-24 22:50:27 +0000 | [diff] [blame] | 769 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 770 | static void |
Anders Carlsson | 4131f00 | 2010-11-24 22:50:27 +0000 | [diff] [blame] | 771 | AddIndirectPrimaryBases(const CXXRecordDecl *RD, ASTContext &Context, |
| 772 | CXXIndirectPrimaryBaseSet& Bases) { |
| 773 | // If the record has a virtual primary base class, add it to our set. |
| 774 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
Anders Carlsson | 7f95cd1 | 2010-11-24 23:12:57 +0000 | [diff] [blame] | 775 | if (Layout.isPrimaryBaseVirtual()) |
Anders Carlsson | 4131f00 | 2010-11-24 22:50:27 +0000 | [diff] [blame] | 776 | Bases.insert(Layout.getPrimaryBase()); |
| 777 | |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 778 | for (const auto &I : RD->bases()) { |
| 779 | assert(!I.getType()->isDependentType() && |
Anders Carlsson | 4131f00 | 2010-11-24 22:50:27 +0000 | [diff] [blame] | 780 | "Cannot get indirect primary bases for class with dependent bases."); |
| 781 | |
| 782 | const CXXRecordDecl *BaseDecl = |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 783 | cast<CXXRecordDecl>(I.getType()->castAs<RecordType>()->getDecl()); |
Anders Carlsson | 4131f00 | 2010-11-24 22:50:27 +0000 | [diff] [blame] | 784 | |
| 785 | // Only bases with virtual bases participate in computing the |
| 786 | // indirect primary virtual base classes. |
| 787 | if (BaseDecl->getNumVBases()) |
| 788 | AddIndirectPrimaryBases(BaseDecl, Context, Bases); |
| 789 | } |
| 790 | |
| 791 | } |
| 792 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 793 | void |
Anders Carlsson | 4131f00 | 2010-11-24 22:50:27 +0000 | [diff] [blame] | 794 | CXXRecordDecl::getIndirectPrimaryBases(CXXIndirectPrimaryBaseSet& Bases) const { |
| 795 | ASTContext &Context = getASTContext(); |
| 796 | |
| 797 | if (!getNumVBases()) |
| 798 | return; |
| 799 | |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 800 | for (const auto &I : bases()) { |
| 801 | assert(!I.getType()->isDependentType() && |
Anders Carlsson | 4131f00 | 2010-11-24 22:50:27 +0000 | [diff] [blame] | 802 | "Cannot get indirect primary bases for class with dependent bases."); |
| 803 | |
| 804 | const CXXRecordDecl *BaseDecl = |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 805 | cast<CXXRecordDecl>(I.getType()->castAs<RecordType>()->getDecl()); |
Anders Carlsson | 4131f00 | 2010-11-24 22:50:27 +0000 | [diff] [blame] | 806 | |
| 807 | // Only bases with virtual bases participate in computing the |
| 808 | // indirect primary virtual base classes. |
| 809 | if (BaseDecl->getNumVBases()) |
| 810 | AddIndirectPrimaryBases(BaseDecl, Context, Bases); |
| 811 | } |
| 812 | } |