Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1 | //===--- VTableBuilder.cpp - C++ vtable layout builder --------------------===// |
| 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 contains code dealing with generation of the layout of virtual tables. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/AST/VTableBuilder.h" |
Benjamin Kramer | 2ef3031 | 2012-07-04 18:45:14 +0000 | [diff] [blame] | 15 | #include "clang/AST/ASTContext.h" |
David Majnemer | 70e6a00 | 2015-05-01 21:35:45 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTDiagnostic.h" |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 17 | #include "clang/AST/CXXInheritance.h" |
| 18 | #include "clang/AST/RecordLayout.h" |
| 19 | #include "clang/Basic/TargetInfo.h" |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SetOperations.h" |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallPtrSet.h" |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 22 | #include "llvm/Support/Format.h" |
Benjamin Kramer | 444a130 | 2012-12-01 17:12:56 +0000 | [diff] [blame] | 23 | #include "llvm/Support/raw_ostream.h" |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 24 | #include <algorithm> |
| 25 | #include <cstdio> |
| 26 | |
| 27 | using namespace clang; |
| 28 | |
| 29 | #define DUMP_OVERRIDERS 0 |
| 30 | |
| 31 | namespace { |
| 32 | |
| 33 | /// BaseOffset - Represents an offset from a derived class to a direct or |
| 34 | /// indirect base class. |
| 35 | struct BaseOffset { |
| 36 | /// DerivedClass - The derived class. |
| 37 | const CXXRecordDecl *DerivedClass; |
| 38 | |
| 39 | /// VirtualBase - If the path from the derived class to the base class |
Timur Iskhodzhanov | bb5a17e | 2013-05-08 08:09:21 +0000 | [diff] [blame] | 40 | /// involves virtual base classes, this holds the declaration of the last |
| 41 | /// virtual base in this path (i.e. closest to the base class). |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 42 | const CXXRecordDecl *VirtualBase; |
| 43 | |
| 44 | /// NonVirtualOffset - The offset from the derived class to the base class. |
| 45 | /// (Or the offset from the virtual base class to the base class, if the |
| 46 | /// path from the derived class to the base class involves a virtual base |
| 47 | /// class. |
| 48 | CharUnits NonVirtualOffset; |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 49 | |
| 50 | BaseOffset() : DerivedClass(nullptr), VirtualBase(nullptr), |
| 51 | NonVirtualOffset(CharUnits::Zero()) { } |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 52 | BaseOffset(const CXXRecordDecl *DerivedClass, |
| 53 | const CXXRecordDecl *VirtualBase, CharUnits NonVirtualOffset) |
| 54 | : DerivedClass(DerivedClass), VirtualBase(VirtualBase), |
| 55 | NonVirtualOffset(NonVirtualOffset) { } |
| 56 | |
| 57 | bool isEmpty() const { return NonVirtualOffset.isZero() && !VirtualBase; } |
| 58 | }; |
| 59 | |
| 60 | /// FinalOverriders - Contains the final overrider member functions for all |
| 61 | /// member functions in the base subobjects of a class. |
| 62 | class FinalOverriders { |
| 63 | public: |
| 64 | /// OverriderInfo - Information about a final overrider. |
| 65 | struct OverriderInfo { |
| 66 | /// Method - The method decl of the overrider. |
| 67 | const CXXMethodDecl *Method; |
| 68 | |
Timur Iskhodzhanov | 7d19fc1 | 2014-11-17 15:11:05 +0000 | [diff] [blame] | 69 | /// VirtualBase - The virtual base class subobject of this overrider. |
Timur Iskhodzhanov | 6b12850 | 2014-04-22 17:32:02 +0000 | [diff] [blame] | 70 | /// Note that this records the closest derived virtual base class subobject. |
| 71 | const CXXRecordDecl *VirtualBase; |
| 72 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 73 | /// Offset - the base offset of the overrider's parent in the layout class. |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 74 | CharUnits Offset; |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 75 | |
| 76 | OverriderInfo() : Method(nullptr), VirtualBase(nullptr), |
| 77 | Offset(CharUnits::Zero()) { } |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 78 | }; |
| 79 | |
| 80 | private: |
| 81 | /// MostDerivedClass - The most derived class for which the final overriders |
| 82 | /// are stored. |
| 83 | const CXXRecordDecl *MostDerivedClass; |
| 84 | |
| 85 | /// MostDerivedClassOffset - If we're building final overriders for a |
| 86 | /// construction vtable, this holds the offset from the layout class to the |
| 87 | /// most derived class. |
| 88 | const CharUnits MostDerivedClassOffset; |
| 89 | |
| 90 | /// LayoutClass - The class we're using for layout information. Will be |
| 91 | /// different than the most derived class if the final overriders are for a |
| 92 | /// construction vtable. |
| 93 | const CXXRecordDecl *LayoutClass; |
| 94 | |
| 95 | ASTContext &Context; |
| 96 | |
| 97 | /// MostDerivedClassLayout - the AST record layout of the most derived class. |
| 98 | const ASTRecordLayout &MostDerivedClassLayout; |
| 99 | |
| 100 | /// MethodBaseOffsetPairTy - Uniquely identifies a member function |
| 101 | /// in a base subobject. |
| 102 | typedef std::pair<const CXXMethodDecl *, CharUnits> MethodBaseOffsetPairTy; |
| 103 | |
| 104 | typedef llvm::DenseMap<MethodBaseOffsetPairTy, |
| 105 | OverriderInfo> OverridersMapTy; |
| 106 | |
| 107 | /// OverridersMap - The final overriders for all virtual member functions of |
| 108 | /// all the base subobjects of the most derived class. |
| 109 | OverridersMapTy OverridersMap; |
| 110 | |
| 111 | /// SubobjectsToOffsetsMapTy - A mapping from a base subobject (represented |
| 112 | /// as a record decl and a subobject number) and its offsets in the most |
| 113 | /// derived class as well as the layout class. |
| 114 | typedef llvm::DenseMap<std::pair<const CXXRecordDecl *, unsigned>, |
| 115 | CharUnits> SubobjectOffsetMapTy; |
| 116 | |
| 117 | typedef llvm::DenseMap<const CXXRecordDecl *, unsigned> SubobjectCountMapTy; |
| 118 | |
| 119 | /// ComputeBaseOffsets - Compute the offsets for all base subobjects of the |
| 120 | /// given base. |
| 121 | void ComputeBaseOffsets(BaseSubobject Base, bool IsVirtual, |
| 122 | CharUnits OffsetInLayoutClass, |
| 123 | SubobjectOffsetMapTy &SubobjectOffsets, |
| 124 | SubobjectOffsetMapTy &SubobjectLayoutClassOffsets, |
| 125 | SubobjectCountMapTy &SubobjectCounts); |
| 126 | |
| 127 | typedef llvm::SmallPtrSet<const CXXRecordDecl *, 4> VisitedVirtualBasesSetTy; |
| 128 | |
| 129 | /// dump - dump the final overriders for a base subobject, and all its direct |
| 130 | /// and indirect base subobjects. |
| 131 | void dump(raw_ostream &Out, BaseSubobject Base, |
| 132 | VisitedVirtualBasesSetTy& VisitedVirtualBases); |
| 133 | |
| 134 | public: |
| 135 | FinalOverriders(const CXXRecordDecl *MostDerivedClass, |
| 136 | CharUnits MostDerivedClassOffset, |
| 137 | const CXXRecordDecl *LayoutClass); |
| 138 | |
| 139 | /// getOverrider - Get the final overrider for the given method declaration in |
| 140 | /// the subobject with the given base offset. |
| 141 | OverriderInfo getOverrider(const CXXMethodDecl *MD, |
| 142 | CharUnits BaseOffset) const { |
| 143 | assert(OverridersMap.count(std::make_pair(MD, BaseOffset)) && |
| 144 | "Did not find overrider!"); |
| 145 | |
| 146 | return OverridersMap.lookup(std::make_pair(MD, BaseOffset)); |
| 147 | } |
| 148 | |
| 149 | /// dump - dump the final overriders. |
| 150 | void dump() { |
| 151 | VisitedVirtualBasesSetTy VisitedVirtualBases; |
| 152 | dump(llvm::errs(), BaseSubobject(MostDerivedClass, CharUnits::Zero()), |
| 153 | VisitedVirtualBases); |
| 154 | } |
| 155 | |
| 156 | }; |
| 157 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 158 | FinalOverriders::FinalOverriders(const CXXRecordDecl *MostDerivedClass, |
| 159 | CharUnits MostDerivedClassOffset, |
| 160 | const CXXRecordDecl *LayoutClass) |
| 161 | : MostDerivedClass(MostDerivedClass), |
| 162 | MostDerivedClassOffset(MostDerivedClassOffset), LayoutClass(LayoutClass), |
| 163 | Context(MostDerivedClass->getASTContext()), |
| 164 | MostDerivedClassLayout(Context.getASTRecordLayout(MostDerivedClass)) { |
| 165 | |
| 166 | // Compute base offsets. |
| 167 | SubobjectOffsetMapTy SubobjectOffsets; |
| 168 | SubobjectOffsetMapTy SubobjectLayoutClassOffsets; |
| 169 | SubobjectCountMapTy SubobjectCounts; |
| 170 | ComputeBaseOffsets(BaseSubobject(MostDerivedClass, CharUnits::Zero()), |
| 171 | /*IsVirtual=*/false, |
| 172 | MostDerivedClassOffset, |
| 173 | SubobjectOffsets, SubobjectLayoutClassOffsets, |
| 174 | SubobjectCounts); |
| 175 | |
Sylvestre Ledru | 830885c | 2012-07-23 08:59:39 +0000 | [diff] [blame] | 176 | // Get the final overriders. |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 177 | CXXFinalOverriderMap FinalOverriders; |
| 178 | MostDerivedClass->getFinalOverriders(FinalOverriders); |
| 179 | |
| 180 | for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(), |
| 181 | E = FinalOverriders.end(); I != E; ++I) { |
| 182 | const CXXMethodDecl *MD = I->first; |
| 183 | const OverridingMethods& Methods = I->second; |
| 184 | |
| 185 | for (OverridingMethods::const_iterator I = Methods.begin(), |
| 186 | E = Methods.end(); I != E; ++I) { |
| 187 | unsigned SubobjectNumber = I->first; |
| 188 | assert(SubobjectOffsets.count(std::make_pair(MD->getParent(), |
| 189 | SubobjectNumber)) && |
| 190 | "Did not find subobject offset!"); |
| 191 | |
| 192 | CharUnits BaseOffset = SubobjectOffsets[std::make_pair(MD->getParent(), |
| 193 | SubobjectNumber)]; |
| 194 | |
| 195 | assert(I->second.size() == 1 && "Final overrider is not unique!"); |
| 196 | const UniqueVirtualMethod &Method = I->second.front(); |
| 197 | |
| 198 | const CXXRecordDecl *OverriderRD = Method.Method->getParent(); |
| 199 | assert(SubobjectLayoutClassOffsets.count( |
| 200 | std::make_pair(OverriderRD, Method.Subobject)) |
| 201 | && "Did not find subobject offset!"); |
| 202 | CharUnits OverriderOffset = |
| 203 | SubobjectLayoutClassOffsets[std::make_pair(OverriderRD, |
| 204 | Method.Subobject)]; |
| 205 | |
| 206 | OverriderInfo& Overrider = OverridersMap[std::make_pair(MD, BaseOffset)]; |
| 207 | assert(!Overrider.Method && "Overrider should not exist yet!"); |
| 208 | |
| 209 | Overrider.Offset = OverriderOffset; |
| 210 | Overrider.Method = Method.Method; |
Timur Iskhodzhanov | 6b12850 | 2014-04-22 17:32:02 +0000 | [diff] [blame] | 211 | Overrider.VirtualBase = Method.InVirtualSubobject; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 212 | } |
| 213 | } |
| 214 | |
| 215 | #if DUMP_OVERRIDERS |
| 216 | // And dump them (for now). |
| 217 | dump(); |
| 218 | #endif |
| 219 | } |
| 220 | |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 221 | static BaseOffset ComputeBaseOffset(const ASTContext &Context, |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 222 | const CXXRecordDecl *DerivedRD, |
| 223 | const CXXBasePath &Path) { |
| 224 | CharUnits NonVirtualOffset = CharUnits::Zero(); |
| 225 | |
| 226 | unsigned NonVirtualStart = 0; |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 227 | const CXXRecordDecl *VirtualBase = nullptr; |
| 228 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 229 | // First, look for the virtual base class. |
Timur Iskhodzhanov | bb5a17e | 2013-05-08 08:09:21 +0000 | [diff] [blame] | 230 | for (int I = Path.size(), E = 0; I != E; --I) { |
| 231 | const CXXBasePathElement &Element = Path[I - 1]; |
| 232 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 233 | if (Element.Base->isVirtual()) { |
Timur Iskhodzhanov | bb5a17e | 2013-05-08 08:09:21 +0000 | [diff] [blame] | 234 | NonVirtualStart = I; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 235 | QualType VBaseType = Element.Base->getType(); |
Timur Iskhodzhanov | 7f55a45 | 2013-07-02 16:00:40 +0000 | [diff] [blame] | 236 | VirtualBase = VBaseType->getAsCXXRecordDecl(); |
Timur Iskhodzhanov | bb5a17e | 2013-05-08 08:09:21 +0000 | [diff] [blame] | 237 | break; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 238 | } |
| 239 | } |
| 240 | |
| 241 | // Now compute the non-virtual offset. |
| 242 | for (unsigned I = NonVirtualStart, E = Path.size(); I != E; ++I) { |
| 243 | const CXXBasePathElement &Element = Path[I]; |
| 244 | |
| 245 | // Check the base class offset. |
| 246 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(Element.Class); |
| 247 | |
Timur Iskhodzhanov | 7f55a45 | 2013-07-02 16:00:40 +0000 | [diff] [blame] | 248 | const CXXRecordDecl *Base = Element.Base->getType()->getAsCXXRecordDecl(); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 249 | |
| 250 | NonVirtualOffset += Layout.getBaseClassOffset(Base); |
| 251 | } |
| 252 | |
| 253 | // FIXME: This should probably use CharUnits or something. Maybe we should |
| 254 | // even change the base offsets in ASTRecordLayout to be specified in |
| 255 | // CharUnits. |
| 256 | return BaseOffset(DerivedRD, VirtualBase, NonVirtualOffset); |
| 257 | |
| 258 | } |
| 259 | |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 260 | static BaseOffset ComputeBaseOffset(const ASTContext &Context, |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 261 | const CXXRecordDecl *BaseRD, |
| 262 | const CXXRecordDecl *DerivedRD) { |
| 263 | CXXBasePaths Paths(/*FindAmbiguities=*/false, |
| 264 | /*RecordPaths=*/true, /*DetectVirtual=*/false); |
Benjamin Kramer | 325d745 | 2013-02-03 18:55:34 +0000 | [diff] [blame] | 265 | |
| 266 | if (!DerivedRD->isDerivedFrom(BaseRD, Paths)) |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 267 | llvm_unreachable("Class must be derived from the passed in base class!"); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 268 | |
| 269 | return ComputeBaseOffset(Context, DerivedRD, Paths.front()); |
| 270 | } |
| 271 | |
| 272 | static BaseOffset |
| 273 | ComputeReturnAdjustmentBaseOffset(ASTContext &Context, |
| 274 | const CXXMethodDecl *DerivedMD, |
| 275 | const CXXMethodDecl *BaseMD) { |
| 276 | const FunctionType *BaseFT = BaseMD->getType()->getAs<FunctionType>(); |
| 277 | const FunctionType *DerivedFT = DerivedMD->getType()->getAs<FunctionType>(); |
| 278 | |
| 279 | // Canonicalize the return types. |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 280 | CanQualType CanDerivedReturnType = |
| 281 | Context.getCanonicalType(DerivedFT->getReturnType()); |
| 282 | CanQualType CanBaseReturnType = |
| 283 | Context.getCanonicalType(BaseFT->getReturnType()); |
| 284 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 285 | assert(CanDerivedReturnType->getTypeClass() == |
| 286 | CanBaseReturnType->getTypeClass() && |
| 287 | "Types must have same type class!"); |
| 288 | |
| 289 | if (CanDerivedReturnType == CanBaseReturnType) { |
| 290 | // No adjustment needed. |
| 291 | return BaseOffset(); |
| 292 | } |
| 293 | |
| 294 | if (isa<ReferenceType>(CanDerivedReturnType)) { |
| 295 | CanDerivedReturnType = |
| 296 | CanDerivedReturnType->getAs<ReferenceType>()->getPointeeType(); |
| 297 | CanBaseReturnType = |
| 298 | CanBaseReturnType->getAs<ReferenceType>()->getPointeeType(); |
| 299 | } else if (isa<PointerType>(CanDerivedReturnType)) { |
| 300 | CanDerivedReturnType = |
| 301 | CanDerivedReturnType->getAs<PointerType>()->getPointeeType(); |
| 302 | CanBaseReturnType = |
| 303 | CanBaseReturnType->getAs<PointerType>()->getPointeeType(); |
| 304 | } else { |
| 305 | llvm_unreachable("Unexpected return type!"); |
| 306 | } |
| 307 | |
| 308 | // We need to compare unqualified types here; consider |
| 309 | // const T *Base::foo(); |
| 310 | // T *Derived::foo(); |
| 311 | if (CanDerivedReturnType.getUnqualifiedType() == |
| 312 | CanBaseReturnType.getUnqualifiedType()) { |
| 313 | // No adjustment needed. |
| 314 | return BaseOffset(); |
| 315 | } |
| 316 | |
| 317 | const CXXRecordDecl *DerivedRD = |
| 318 | cast<CXXRecordDecl>(cast<RecordType>(CanDerivedReturnType)->getDecl()); |
| 319 | |
| 320 | const CXXRecordDecl *BaseRD = |
| 321 | cast<CXXRecordDecl>(cast<RecordType>(CanBaseReturnType)->getDecl()); |
| 322 | |
| 323 | return ComputeBaseOffset(Context, BaseRD, DerivedRD); |
| 324 | } |
| 325 | |
| 326 | void |
| 327 | FinalOverriders::ComputeBaseOffsets(BaseSubobject Base, bool IsVirtual, |
| 328 | CharUnits OffsetInLayoutClass, |
| 329 | SubobjectOffsetMapTy &SubobjectOffsets, |
| 330 | SubobjectOffsetMapTy &SubobjectLayoutClassOffsets, |
| 331 | SubobjectCountMapTy &SubobjectCounts) { |
| 332 | const CXXRecordDecl *RD = Base.getBase(); |
| 333 | |
| 334 | unsigned SubobjectNumber = 0; |
| 335 | if (!IsVirtual) |
| 336 | SubobjectNumber = ++SubobjectCounts[RD]; |
| 337 | |
| 338 | // Set up the subobject to offset mapping. |
| 339 | assert(!SubobjectOffsets.count(std::make_pair(RD, SubobjectNumber)) |
| 340 | && "Subobject offset already exists!"); |
| 341 | assert(!SubobjectLayoutClassOffsets.count(std::make_pair(RD, SubobjectNumber)) |
| 342 | && "Subobject offset already exists!"); |
| 343 | |
| 344 | SubobjectOffsets[std::make_pair(RD, SubobjectNumber)] = Base.getBaseOffset(); |
| 345 | SubobjectLayoutClassOffsets[std::make_pair(RD, SubobjectNumber)] = |
| 346 | OffsetInLayoutClass; |
| 347 | |
| 348 | // Traverse our bases. |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 349 | for (const auto &B : RD->bases()) { |
| 350 | const CXXRecordDecl *BaseDecl = B.getType()->getAsCXXRecordDecl(); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 351 | |
| 352 | CharUnits BaseOffset; |
| 353 | CharUnits BaseOffsetInLayoutClass; |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 354 | if (B.isVirtual()) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 355 | // Check if we've visited this virtual base before. |
| 356 | if (SubobjectOffsets.count(std::make_pair(BaseDecl, 0))) |
| 357 | continue; |
| 358 | |
| 359 | const ASTRecordLayout &LayoutClassLayout = |
| 360 | Context.getASTRecordLayout(LayoutClass); |
| 361 | |
| 362 | BaseOffset = MostDerivedClassLayout.getVBaseClassOffset(BaseDecl); |
| 363 | BaseOffsetInLayoutClass = |
| 364 | LayoutClassLayout.getVBaseClassOffset(BaseDecl); |
| 365 | } else { |
| 366 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
| 367 | CharUnits Offset = Layout.getBaseClassOffset(BaseDecl); |
| 368 | |
| 369 | BaseOffset = Base.getBaseOffset() + Offset; |
| 370 | BaseOffsetInLayoutClass = OffsetInLayoutClass + Offset; |
| 371 | } |
| 372 | |
| 373 | ComputeBaseOffsets(BaseSubobject(BaseDecl, BaseOffset), |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 374 | B.isVirtual(), BaseOffsetInLayoutClass, |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 375 | SubobjectOffsets, SubobjectLayoutClassOffsets, |
| 376 | SubobjectCounts); |
| 377 | } |
| 378 | } |
| 379 | |
| 380 | void FinalOverriders::dump(raw_ostream &Out, BaseSubobject Base, |
| 381 | VisitedVirtualBasesSetTy &VisitedVirtualBases) { |
| 382 | const CXXRecordDecl *RD = Base.getBase(); |
| 383 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
| 384 | |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 385 | for (const auto &B : RD->bases()) { |
| 386 | const CXXRecordDecl *BaseDecl = B.getType()->getAsCXXRecordDecl(); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 387 | |
| 388 | // Ignore bases that don't have any virtual member functions. |
| 389 | if (!BaseDecl->isPolymorphic()) |
| 390 | continue; |
| 391 | |
| 392 | CharUnits BaseOffset; |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 393 | if (B.isVirtual()) { |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 394 | if (!VisitedVirtualBases.insert(BaseDecl).second) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 395 | // We've visited this base before. |
| 396 | continue; |
| 397 | } |
| 398 | |
| 399 | BaseOffset = MostDerivedClassLayout.getVBaseClassOffset(BaseDecl); |
| 400 | } else { |
| 401 | BaseOffset = Layout.getBaseClassOffset(BaseDecl) + Base.getBaseOffset(); |
| 402 | } |
| 403 | |
| 404 | dump(Out, BaseSubobject(BaseDecl, BaseOffset), VisitedVirtualBases); |
| 405 | } |
| 406 | |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 407 | Out << "Final overriders for ("; |
| 408 | RD->printQualifiedName(Out); |
| 409 | Out << ", "; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 410 | Out << Base.getBaseOffset().getQuantity() << ")\n"; |
| 411 | |
| 412 | // Now dump the overriders for this base subobject. |
Aaron Ballman | 2b124d1 | 2014-03-13 16:36:16 +0000 | [diff] [blame] | 413 | for (const auto *MD : RD->methods()) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 414 | if (!MD->isVirtual()) |
| 415 | continue; |
Reid Kleckner | 1cbd9aa | 2015-02-25 19:17:48 +0000 | [diff] [blame] | 416 | MD = MD->getCanonicalDecl(); |
NAKAMURA Takumi | 073f2b4 | 2015-02-25 10:50:06 +0000 | [diff] [blame] | 417 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 418 | OverriderInfo Overrider = getOverrider(MD, Base.getBaseOffset()); |
| 419 | |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 420 | Out << " "; |
| 421 | MD->printQualifiedName(Out); |
| 422 | Out << " - ("; |
| 423 | Overrider.Method->printQualifiedName(Out); |
Timur Iskhodzhanov | be5a3d8 | 2013-06-05 06:40:07 +0000 | [diff] [blame] | 424 | Out << ", " << Overrider.Offset.getQuantity() << ')'; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 425 | |
| 426 | BaseOffset Offset; |
| 427 | if (!Overrider.Method->isPure()) |
| 428 | Offset = ComputeReturnAdjustmentBaseOffset(Context, Overrider.Method, MD); |
| 429 | |
| 430 | if (!Offset.isEmpty()) { |
| 431 | Out << " [ret-adj: "; |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 432 | if (Offset.VirtualBase) { |
| 433 | Offset.VirtualBase->printQualifiedName(Out); |
| 434 | Out << " vbase, "; |
| 435 | } |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 436 | |
| 437 | Out << Offset.NonVirtualOffset.getQuantity() << " nv]"; |
| 438 | } |
| 439 | |
| 440 | Out << "\n"; |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | /// VCallOffsetMap - Keeps track of vcall offsets when building a vtable. |
| 445 | struct VCallOffsetMap { |
| 446 | |
| 447 | typedef std::pair<const CXXMethodDecl *, CharUnits> MethodAndOffsetPairTy; |
| 448 | |
| 449 | /// Offsets - Keeps track of methods and their offsets. |
| 450 | // FIXME: This should be a real map and not a vector. |
| 451 | SmallVector<MethodAndOffsetPairTy, 16> Offsets; |
| 452 | |
| 453 | /// MethodsCanShareVCallOffset - Returns whether two virtual member functions |
| 454 | /// can share the same vcall offset. |
| 455 | static bool MethodsCanShareVCallOffset(const CXXMethodDecl *LHS, |
| 456 | const CXXMethodDecl *RHS); |
| 457 | |
| 458 | public: |
| 459 | /// AddVCallOffset - Adds a vcall offset to the map. Returns true if the |
| 460 | /// add was successful, or false if there was already a member function with |
| 461 | /// the same signature in the map. |
| 462 | bool AddVCallOffset(const CXXMethodDecl *MD, CharUnits OffsetOffset); |
| 463 | |
| 464 | /// getVCallOffsetOffset - Returns the vcall offset offset (relative to the |
| 465 | /// vtable address point) for the given virtual member function. |
| 466 | CharUnits getVCallOffsetOffset(const CXXMethodDecl *MD); |
| 467 | |
| 468 | // empty - Return whether the offset map is empty or not. |
| 469 | bool empty() const { return Offsets.empty(); } |
| 470 | }; |
| 471 | |
| 472 | static bool HasSameVirtualSignature(const CXXMethodDecl *LHS, |
| 473 | const CXXMethodDecl *RHS) { |
John McCall | b6c4a7e | 2012-03-21 06:57:19 +0000 | [diff] [blame] | 474 | const FunctionProtoType *LT = |
| 475 | cast<FunctionProtoType>(LHS->getType().getCanonicalType()); |
| 476 | const FunctionProtoType *RT = |
| 477 | cast<FunctionProtoType>(RHS->getType().getCanonicalType()); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 478 | |
| 479 | // Fast-path matches in the canonical types. |
| 480 | if (LT == RT) return true; |
| 481 | |
| 482 | // Force the signatures to match. We can't rely on the overrides |
| 483 | // list here because there isn't necessarily an inheritance |
| 484 | // relationship between the two methods. |
John McCall | b6c4a7e | 2012-03-21 06:57:19 +0000 | [diff] [blame] | 485 | if (LT->getTypeQuals() != RT->getTypeQuals() || |
Alp Toker | 9cacbab | 2014-01-20 20:26:09 +0000 | [diff] [blame] | 486 | LT->getNumParams() != RT->getNumParams()) |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 487 | return false; |
Alp Toker | 9cacbab | 2014-01-20 20:26:09 +0000 | [diff] [blame] | 488 | for (unsigned I = 0, E = LT->getNumParams(); I != E; ++I) |
| 489 | if (LT->getParamType(I) != RT->getParamType(I)) |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 490 | return false; |
| 491 | return true; |
| 492 | } |
| 493 | |
| 494 | bool VCallOffsetMap::MethodsCanShareVCallOffset(const CXXMethodDecl *LHS, |
| 495 | const CXXMethodDecl *RHS) { |
| 496 | assert(LHS->isVirtual() && "LHS must be virtual!"); |
| 497 | assert(RHS->isVirtual() && "LHS must be virtual!"); |
| 498 | |
| 499 | // A destructor can share a vcall offset with another destructor. |
| 500 | if (isa<CXXDestructorDecl>(LHS)) |
| 501 | return isa<CXXDestructorDecl>(RHS); |
| 502 | |
| 503 | // FIXME: We need to check more things here. |
| 504 | |
| 505 | // The methods must have the same name. |
| 506 | DeclarationName LHSName = LHS->getDeclName(); |
| 507 | DeclarationName RHSName = RHS->getDeclName(); |
| 508 | if (LHSName != RHSName) |
| 509 | return false; |
| 510 | |
| 511 | // And the same signatures. |
| 512 | return HasSameVirtualSignature(LHS, RHS); |
| 513 | } |
| 514 | |
| 515 | bool VCallOffsetMap::AddVCallOffset(const CXXMethodDecl *MD, |
| 516 | CharUnits OffsetOffset) { |
| 517 | // Check if we can reuse an offset. |
| 518 | for (unsigned I = 0, E = Offsets.size(); I != E; ++I) { |
| 519 | if (MethodsCanShareVCallOffset(Offsets[I].first, MD)) |
| 520 | return false; |
| 521 | } |
| 522 | |
| 523 | // Add the offset. |
| 524 | Offsets.push_back(MethodAndOffsetPairTy(MD, OffsetOffset)); |
| 525 | return true; |
| 526 | } |
| 527 | |
| 528 | CharUnits VCallOffsetMap::getVCallOffsetOffset(const CXXMethodDecl *MD) { |
| 529 | // Look for an offset. |
| 530 | for (unsigned I = 0, E = Offsets.size(); I != E; ++I) { |
| 531 | if (MethodsCanShareVCallOffset(Offsets[I].first, MD)) |
| 532 | return Offsets[I].second; |
| 533 | } |
| 534 | |
| 535 | llvm_unreachable("Should always find a vcall offset offset!"); |
| 536 | } |
| 537 | |
| 538 | /// VCallAndVBaseOffsetBuilder - Class for building vcall and vbase offsets. |
| 539 | class VCallAndVBaseOffsetBuilder { |
| 540 | public: |
| 541 | typedef llvm::DenseMap<const CXXRecordDecl *, CharUnits> |
| 542 | VBaseOffsetOffsetsMapTy; |
| 543 | |
| 544 | private: |
| 545 | /// MostDerivedClass - The most derived class for which we're building vcall |
| 546 | /// and vbase offsets. |
| 547 | const CXXRecordDecl *MostDerivedClass; |
| 548 | |
| 549 | /// LayoutClass - The class we're using for layout information. Will be |
| 550 | /// different than the most derived class if we're building a construction |
| 551 | /// vtable. |
| 552 | const CXXRecordDecl *LayoutClass; |
| 553 | |
| 554 | /// Context - The ASTContext which we will use for layout information. |
| 555 | ASTContext &Context; |
| 556 | |
| 557 | /// Components - vcall and vbase offset components |
| 558 | typedef SmallVector<VTableComponent, 64> VTableComponentVectorTy; |
| 559 | VTableComponentVectorTy Components; |
| 560 | |
| 561 | /// VisitedVirtualBases - Visited virtual bases. |
| 562 | llvm::SmallPtrSet<const CXXRecordDecl *, 4> VisitedVirtualBases; |
| 563 | |
| 564 | /// VCallOffsets - Keeps track of vcall offsets. |
| 565 | VCallOffsetMap VCallOffsets; |
| 566 | |
| 567 | |
| 568 | /// VBaseOffsetOffsets - Contains the offsets of the virtual base offsets, |
| 569 | /// relative to the address point. |
| 570 | VBaseOffsetOffsetsMapTy VBaseOffsetOffsets; |
| 571 | |
| 572 | /// FinalOverriders - The final overriders of the most derived class. |
| 573 | /// (Can be null when we're not building a vtable of the most derived class). |
| 574 | const FinalOverriders *Overriders; |
| 575 | |
| 576 | /// AddVCallAndVBaseOffsets - Add vcall offsets and vbase offsets for the |
| 577 | /// given base subobject. |
| 578 | void AddVCallAndVBaseOffsets(BaseSubobject Base, bool BaseIsVirtual, |
| 579 | CharUnits RealBaseOffset); |
| 580 | |
| 581 | /// AddVCallOffsets - Add vcall offsets for the given base subobject. |
| 582 | void AddVCallOffsets(BaseSubobject Base, CharUnits VBaseOffset); |
| 583 | |
| 584 | /// AddVBaseOffsets - Add vbase offsets for the given class. |
| 585 | void AddVBaseOffsets(const CXXRecordDecl *Base, |
| 586 | CharUnits OffsetInLayoutClass); |
| 587 | |
| 588 | /// getCurrentOffsetOffset - Get the current vcall or vbase offset offset in |
| 589 | /// chars, relative to the vtable address point. |
| 590 | CharUnits getCurrentOffsetOffset() const; |
| 591 | |
| 592 | public: |
| 593 | VCallAndVBaseOffsetBuilder(const CXXRecordDecl *MostDerivedClass, |
| 594 | const CXXRecordDecl *LayoutClass, |
| 595 | const FinalOverriders *Overriders, |
| 596 | BaseSubobject Base, bool BaseIsVirtual, |
| 597 | CharUnits OffsetInLayoutClass) |
| 598 | : MostDerivedClass(MostDerivedClass), LayoutClass(LayoutClass), |
| 599 | Context(MostDerivedClass->getASTContext()), Overriders(Overriders) { |
| 600 | |
| 601 | // Add vcall and vbase offsets. |
| 602 | AddVCallAndVBaseOffsets(Base, BaseIsVirtual, OffsetInLayoutClass); |
| 603 | } |
| 604 | |
| 605 | /// Methods for iterating over the components. |
| 606 | typedef VTableComponentVectorTy::const_reverse_iterator const_iterator; |
| 607 | const_iterator components_begin() const { return Components.rbegin(); } |
| 608 | const_iterator components_end() const { return Components.rend(); } |
| 609 | |
| 610 | const VCallOffsetMap &getVCallOffsets() const { return VCallOffsets; } |
| 611 | const VBaseOffsetOffsetsMapTy &getVBaseOffsetOffsets() const { |
| 612 | return VBaseOffsetOffsets; |
| 613 | } |
| 614 | }; |
| 615 | |
| 616 | void |
| 617 | VCallAndVBaseOffsetBuilder::AddVCallAndVBaseOffsets(BaseSubobject Base, |
| 618 | bool BaseIsVirtual, |
| 619 | CharUnits RealBaseOffset) { |
| 620 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(Base.getBase()); |
| 621 | |
| 622 | // Itanium C++ ABI 2.5.2: |
| 623 | // ..in classes sharing a virtual table with a primary base class, the vcall |
| 624 | // and vbase offsets added by the derived class all come before the vcall |
| 625 | // and vbase offsets required by the base class, so that the latter may be |
| 626 | // laid out as required by the base class without regard to additions from |
| 627 | // the derived class(es). |
| 628 | |
| 629 | // (Since we're emitting the vcall and vbase offsets in reverse order, we'll |
| 630 | // emit them for the primary base first). |
| 631 | if (const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase()) { |
| 632 | bool PrimaryBaseIsVirtual = Layout.isPrimaryBaseVirtual(); |
| 633 | |
| 634 | CharUnits PrimaryBaseOffset; |
| 635 | |
| 636 | // Get the base offset of the primary base. |
| 637 | if (PrimaryBaseIsVirtual) { |
Benjamin Kramer | 2ef3031 | 2012-07-04 18:45:14 +0000 | [diff] [blame] | 638 | assert(Layout.getVBaseClassOffset(PrimaryBase).isZero() && |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 639 | "Primary vbase should have a zero offset!"); |
| 640 | |
| 641 | const ASTRecordLayout &MostDerivedClassLayout = |
| 642 | Context.getASTRecordLayout(MostDerivedClass); |
| 643 | |
| 644 | PrimaryBaseOffset = |
| 645 | MostDerivedClassLayout.getVBaseClassOffset(PrimaryBase); |
| 646 | } else { |
Benjamin Kramer | 2ef3031 | 2012-07-04 18:45:14 +0000 | [diff] [blame] | 647 | assert(Layout.getBaseClassOffset(PrimaryBase).isZero() && |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 648 | "Primary base should have a zero offset!"); |
| 649 | |
| 650 | PrimaryBaseOffset = Base.getBaseOffset(); |
| 651 | } |
| 652 | |
| 653 | AddVCallAndVBaseOffsets( |
| 654 | BaseSubobject(PrimaryBase,PrimaryBaseOffset), |
| 655 | PrimaryBaseIsVirtual, RealBaseOffset); |
| 656 | } |
| 657 | |
| 658 | AddVBaseOffsets(Base.getBase(), RealBaseOffset); |
| 659 | |
| 660 | // We only want to add vcall offsets for virtual bases. |
| 661 | if (BaseIsVirtual) |
| 662 | AddVCallOffsets(Base, RealBaseOffset); |
| 663 | } |
| 664 | |
| 665 | CharUnits VCallAndVBaseOffsetBuilder::getCurrentOffsetOffset() const { |
| 666 | // OffsetIndex is the index of this vcall or vbase offset, relative to the |
| 667 | // vtable address point. (We subtract 3 to account for the information just |
| 668 | // above the address point, the RTTI info, the offset to top, and the |
| 669 | // vcall offset itself). |
| 670 | int64_t OffsetIndex = -(int64_t)(3 + Components.size()); |
| 671 | |
| 672 | CharUnits PointerWidth = |
| 673 | Context.toCharUnitsFromBits(Context.getTargetInfo().getPointerWidth(0)); |
| 674 | CharUnits OffsetOffset = PointerWidth * OffsetIndex; |
| 675 | return OffsetOffset; |
| 676 | } |
| 677 | |
| 678 | void VCallAndVBaseOffsetBuilder::AddVCallOffsets(BaseSubobject Base, |
| 679 | CharUnits VBaseOffset) { |
| 680 | const CXXRecordDecl *RD = Base.getBase(); |
| 681 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
| 682 | |
| 683 | const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase(); |
| 684 | |
| 685 | // Handle the primary base first. |
| 686 | // We only want to add vcall offsets if the base is non-virtual; a virtual |
| 687 | // primary base will have its vcall and vbase offsets emitted already. |
| 688 | if (PrimaryBase && !Layout.isPrimaryBaseVirtual()) { |
| 689 | // Get the base offset of the primary base. |
Benjamin Kramer | 2ef3031 | 2012-07-04 18:45:14 +0000 | [diff] [blame] | 690 | assert(Layout.getBaseClassOffset(PrimaryBase).isZero() && |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 691 | "Primary base should have a zero offset!"); |
| 692 | |
| 693 | AddVCallOffsets(BaseSubobject(PrimaryBase, Base.getBaseOffset()), |
| 694 | VBaseOffset); |
| 695 | } |
| 696 | |
| 697 | // Add the vcall offsets. |
Aaron Ballman | 2b124d1 | 2014-03-13 16:36:16 +0000 | [diff] [blame] | 698 | for (const auto *MD : RD->methods()) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 699 | if (!MD->isVirtual()) |
| 700 | continue; |
Reid Kleckner | 1cbd9aa | 2015-02-25 19:17:48 +0000 | [diff] [blame] | 701 | MD = MD->getCanonicalDecl(); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 702 | |
| 703 | CharUnits OffsetOffset = getCurrentOffsetOffset(); |
| 704 | |
| 705 | // Don't add a vcall offset if we already have one for this member function |
| 706 | // signature. |
| 707 | if (!VCallOffsets.AddVCallOffset(MD, OffsetOffset)) |
| 708 | continue; |
| 709 | |
| 710 | CharUnits Offset = CharUnits::Zero(); |
| 711 | |
| 712 | if (Overriders) { |
| 713 | // Get the final overrider. |
| 714 | FinalOverriders::OverriderInfo Overrider = |
| 715 | Overriders->getOverrider(MD, Base.getBaseOffset()); |
| 716 | |
| 717 | /// The vcall offset is the offset from the virtual base to the object |
| 718 | /// where the function was overridden. |
| 719 | Offset = Overrider.Offset - VBaseOffset; |
| 720 | } |
| 721 | |
| 722 | Components.push_back( |
| 723 | VTableComponent::MakeVCallOffset(Offset)); |
| 724 | } |
| 725 | |
| 726 | // And iterate over all non-virtual bases (ignoring the primary base). |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 727 | for (const auto &B : RD->bases()) { |
| 728 | if (B.isVirtual()) |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 729 | continue; |
| 730 | |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 731 | const CXXRecordDecl *BaseDecl = B.getType()->getAsCXXRecordDecl(); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 732 | if (BaseDecl == PrimaryBase) |
| 733 | continue; |
| 734 | |
| 735 | // Get the base offset of this base. |
| 736 | CharUnits BaseOffset = Base.getBaseOffset() + |
| 737 | Layout.getBaseClassOffset(BaseDecl); |
| 738 | |
| 739 | AddVCallOffsets(BaseSubobject(BaseDecl, BaseOffset), |
| 740 | VBaseOffset); |
| 741 | } |
| 742 | } |
| 743 | |
| 744 | void |
| 745 | VCallAndVBaseOffsetBuilder::AddVBaseOffsets(const CXXRecordDecl *RD, |
| 746 | CharUnits OffsetInLayoutClass) { |
| 747 | const ASTRecordLayout &LayoutClassLayout = |
| 748 | Context.getASTRecordLayout(LayoutClass); |
| 749 | |
| 750 | // Add vbase offsets. |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 751 | for (const auto &B : RD->bases()) { |
| 752 | const CXXRecordDecl *BaseDecl = B.getType()->getAsCXXRecordDecl(); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 753 | |
| 754 | // Check if this is a virtual base that we haven't visited before. |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 755 | if (B.isVirtual() && VisitedVirtualBases.insert(BaseDecl).second) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 756 | CharUnits Offset = |
| 757 | LayoutClassLayout.getVBaseClassOffset(BaseDecl) - OffsetInLayoutClass; |
| 758 | |
| 759 | // Add the vbase offset offset. |
| 760 | assert(!VBaseOffsetOffsets.count(BaseDecl) && |
| 761 | "vbase offset offset already exists!"); |
| 762 | |
| 763 | CharUnits VBaseOffsetOffset = getCurrentOffsetOffset(); |
| 764 | VBaseOffsetOffsets.insert( |
| 765 | std::make_pair(BaseDecl, VBaseOffsetOffset)); |
| 766 | |
| 767 | Components.push_back( |
| 768 | VTableComponent::MakeVBaseOffset(Offset)); |
| 769 | } |
| 770 | |
| 771 | // Check the base class looking for more vbase offsets. |
| 772 | AddVBaseOffsets(BaseDecl, OffsetInLayoutClass); |
| 773 | } |
| 774 | } |
| 775 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 776 | /// ItaniumVTableBuilder - Class for building vtable layout information. |
| 777 | class ItaniumVTableBuilder { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 778 | public: |
| 779 | /// PrimaryBasesSetVectorTy - A set vector of direct and indirect |
| 780 | /// primary bases. |
| 781 | typedef llvm::SmallSetVector<const CXXRecordDecl *, 8> |
| 782 | PrimaryBasesSetVectorTy; |
| 783 | |
| 784 | typedef llvm::DenseMap<const CXXRecordDecl *, CharUnits> |
| 785 | VBaseOffsetOffsetsMapTy; |
| 786 | |
| 787 | typedef llvm::DenseMap<BaseSubobject, uint64_t> |
| 788 | AddressPointsMapTy; |
| 789 | |
Timur Iskhodzhanov | 05e3670 | 2013-06-05 14:05:50 +0000 | [diff] [blame] | 790 | typedef llvm::DenseMap<GlobalDecl, int64_t> MethodVTableIndicesTy; |
| 791 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 792 | private: |
| 793 | /// VTables - Global vtable information. |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 794 | ItaniumVTableContext &VTables; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 795 | |
| 796 | /// MostDerivedClass - The most derived class for which we're building this |
| 797 | /// vtable. |
| 798 | const CXXRecordDecl *MostDerivedClass; |
| 799 | |
| 800 | /// MostDerivedClassOffset - If we're building a construction vtable, this |
| 801 | /// holds the offset from the layout class to the most derived class. |
| 802 | const CharUnits MostDerivedClassOffset; |
| 803 | |
| 804 | /// MostDerivedClassIsVirtual - Whether the most derived class is a virtual |
| 805 | /// base. (This only makes sense when building a construction vtable). |
| 806 | bool MostDerivedClassIsVirtual; |
| 807 | |
| 808 | /// LayoutClass - The class we're using for layout information. Will be |
| 809 | /// different than the most derived class if we're building a construction |
| 810 | /// vtable. |
| 811 | const CXXRecordDecl *LayoutClass; |
| 812 | |
| 813 | /// Context - The ASTContext which we will use for layout information. |
| 814 | ASTContext &Context; |
| 815 | |
| 816 | /// FinalOverriders - The final overriders of the most derived class. |
| 817 | const FinalOverriders Overriders; |
| 818 | |
| 819 | /// VCallOffsetsForVBases - Keeps track of vcall offsets for the virtual |
| 820 | /// bases in this vtable. |
| 821 | llvm::DenseMap<const CXXRecordDecl *, VCallOffsetMap> VCallOffsetsForVBases; |
| 822 | |
| 823 | /// VBaseOffsetOffsets - Contains the offsets of the virtual base offsets for |
| 824 | /// the most derived class. |
| 825 | VBaseOffsetOffsetsMapTy VBaseOffsetOffsets; |
| 826 | |
| 827 | /// Components - The components of the vtable being built. |
| 828 | SmallVector<VTableComponent, 64> Components; |
| 829 | |
| 830 | /// AddressPoints - Address points for the vtable being built. |
| 831 | AddressPointsMapTy AddressPoints; |
| 832 | |
| 833 | /// MethodInfo - Contains information about a method in a vtable. |
| 834 | /// (Used for computing 'this' pointer adjustment thunks. |
| 835 | struct MethodInfo { |
| 836 | /// BaseOffset - The base offset of this method. |
| 837 | const CharUnits BaseOffset; |
| 838 | |
| 839 | /// BaseOffsetInLayoutClass - The base offset in the layout class of this |
| 840 | /// method. |
| 841 | const CharUnits BaseOffsetInLayoutClass; |
| 842 | |
| 843 | /// VTableIndex - The index in the vtable that this method has. |
| 844 | /// (For destructors, this is the index of the complete destructor). |
| 845 | const uint64_t VTableIndex; |
| 846 | |
| 847 | MethodInfo(CharUnits BaseOffset, CharUnits BaseOffsetInLayoutClass, |
| 848 | uint64_t VTableIndex) |
| 849 | : BaseOffset(BaseOffset), |
| 850 | BaseOffsetInLayoutClass(BaseOffsetInLayoutClass), |
| 851 | VTableIndex(VTableIndex) { } |
| 852 | |
| 853 | MethodInfo() |
| 854 | : BaseOffset(CharUnits::Zero()), |
| 855 | BaseOffsetInLayoutClass(CharUnits::Zero()), |
| 856 | VTableIndex(0) { } |
| 857 | }; |
| 858 | |
| 859 | typedef llvm::DenseMap<const CXXMethodDecl *, MethodInfo> MethodInfoMapTy; |
| 860 | |
| 861 | /// MethodInfoMap - The information for all methods in the vtable we're |
| 862 | /// currently building. |
| 863 | MethodInfoMapTy MethodInfoMap; |
Timur Iskhodzhanov | 05e3670 | 2013-06-05 14:05:50 +0000 | [diff] [blame] | 864 | |
| 865 | /// MethodVTableIndices - Contains the index (relative to the vtable address |
| 866 | /// point) where the function pointer for a virtual function is stored. |
| 867 | MethodVTableIndicesTy MethodVTableIndices; |
| 868 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 869 | typedef llvm::DenseMap<uint64_t, ThunkInfo> VTableThunksMapTy; |
| 870 | |
| 871 | /// VTableThunks - The thunks by vtable index in the vtable currently being |
| 872 | /// built. |
| 873 | VTableThunksMapTy VTableThunks; |
| 874 | |
| 875 | typedef SmallVector<ThunkInfo, 1> ThunkInfoVectorTy; |
| 876 | typedef llvm::DenseMap<const CXXMethodDecl *, ThunkInfoVectorTy> ThunksMapTy; |
| 877 | |
| 878 | /// Thunks - A map that contains all the thunks needed for all methods in the |
| 879 | /// most derived class for which the vtable is currently being built. |
| 880 | ThunksMapTy Thunks; |
| 881 | |
| 882 | /// AddThunk - Add a thunk for the given method. |
| 883 | void AddThunk(const CXXMethodDecl *MD, const ThunkInfo &Thunk); |
| 884 | |
| 885 | /// ComputeThisAdjustments - Compute the 'this' pointer adjustments for the |
| 886 | /// part of the vtable we're currently building. |
| 887 | void ComputeThisAdjustments(); |
| 888 | |
| 889 | typedef llvm::SmallPtrSet<const CXXRecordDecl *, 4> VisitedVirtualBasesSetTy; |
| 890 | |
| 891 | /// PrimaryVirtualBases - All known virtual bases who are a primary base of |
| 892 | /// some other base. |
| 893 | VisitedVirtualBasesSetTy PrimaryVirtualBases; |
| 894 | |
| 895 | /// ComputeReturnAdjustment - Compute the return adjustment given a return |
| 896 | /// adjustment base offset. |
| 897 | ReturnAdjustment ComputeReturnAdjustment(BaseOffset Offset); |
| 898 | |
| 899 | /// ComputeThisAdjustmentBaseOffset - Compute the base offset for adjusting |
| 900 | /// the 'this' pointer from the base subobject to the derived subobject. |
| 901 | BaseOffset ComputeThisAdjustmentBaseOffset(BaseSubobject Base, |
| 902 | BaseSubobject Derived) const; |
| 903 | |
| 904 | /// ComputeThisAdjustment - Compute the 'this' pointer adjustment for the |
| 905 | /// given virtual member function, its offset in the layout class and its |
| 906 | /// final overrider. |
| 907 | ThisAdjustment |
| 908 | ComputeThisAdjustment(const CXXMethodDecl *MD, |
| 909 | CharUnits BaseOffsetInLayoutClass, |
| 910 | FinalOverriders::OverriderInfo Overrider); |
| 911 | |
| 912 | /// AddMethod - Add a single virtual member function to the vtable |
| 913 | /// components vector. |
| 914 | void AddMethod(const CXXMethodDecl *MD, ReturnAdjustment ReturnAdjustment); |
| 915 | |
| 916 | /// IsOverriderUsed - Returns whether the overrider will ever be used in this |
| 917 | /// part of the vtable. |
| 918 | /// |
| 919 | /// Itanium C++ ABI 2.5.2: |
| 920 | /// |
| 921 | /// struct A { virtual void f(); }; |
| 922 | /// struct B : virtual public A { int i; }; |
| 923 | /// struct C : virtual public A { int j; }; |
| 924 | /// struct D : public B, public C {}; |
| 925 | /// |
| 926 | /// When B and C are declared, A is a primary base in each case, so although |
| 927 | /// vcall offsets are allocated in the A-in-B and A-in-C vtables, no this |
| 928 | /// adjustment is required and no thunk is generated. However, inside D |
| 929 | /// objects, A is no longer a primary base of C, so if we allowed calls to |
| 930 | /// C::f() to use the copy of A's vtable in the C subobject, we would need |
| 931 | /// to adjust this from C* to B::A*, which would require a third-party |
| 932 | /// thunk. Since we require that a call to C::f() first convert to A*, |
| 933 | /// C-in-D's copy of A's vtable is never referenced, so this is not |
| 934 | /// necessary. |
| 935 | bool IsOverriderUsed(const CXXMethodDecl *Overrider, |
| 936 | CharUnits BaseOffsetInLayoutClass, |
| 937 | const CXXRecordDecl *FirstBaseInPrimaryBaseChain, |
| 938 | CharUnits FirstBaseOffsetInLayoutClass) const; |
| 939 | |
| 940 | |
| 941 | /// AddMethods - Add the methods of this base subobject and all its |
| 942 | /// primary bases to the vtable components vector. |
| 943 | void AddMethods(BaseSubobject Base, CharUnits BaseOffsetInLayoutClass, |
| 944 | const CXXRecordDecl *FirstBaseInPrimaryBaseChain, |
| 945 | CharUnits FirstBaseOffsetInLayoutClass, |
| 946 | PrimaryBasesSetVectorTy &PrimaryBases); |
| 947 | |
| 948 | // LayoutVTable - Layout the vtable for the given base class, including its |
| 949 | // secondary vtables and any vtables for virtual bases. |
| 950 | void LayoutVTable(); |
| 951 | |
| 952 | /// LayoutPrimaryAndSecondaryVTables - Layout the primary vtable for the |
| 953 | /// given base subobject, as well as all its secondary vtables. |
| 954 | /// |
| 955 | /// \param BaseIsMorallyVirtual whether the base subobject is a virtual base |
| 956 | /// or a direct or indirect base of a virtual base. |
| 957 | /// |
| 958 | /// \param BaseIsVirtualInLayoutClass - Whether the base subobject is virtual |
| 959 | /// in the layout class. |
| 960 | void LayoutPrimaryAndSecondaryVTables(BaseSubobject Base, |
| 961 | bool BaseIsMorallyVirtual, |
| 962 | bool BaseIsVirtualInLayoutClass, |
| 963 | CharUnits OffsetInLayoutClass); |
| 964 | |
| 965 | /// LayoutSecondaryVTables - Layout the secondary vtables for the given base |
| 966 | /// subobject. |
| 967 | /// |
| 968 | /// \param BaseIsMorallyVirtual whether the base subobject is a virtual base |
| 969 | /// or a direct or indirect base of a virtual base. |
| 970 | void LayoutSecondaryVTables(BaseSubobject Base, bool BaseIsMorallyVirtual, |
| 971 | CharUnits OffsetInLayoutClass); |
| 972 | |
| 973 | /// DeterminePrimaryVirtualBases - Determine the primary virtual bases in this |
| 974 | /// class hierarchy. |
| 975 | void DeterminePrimaryVirtualBases(const CXXRecordDecl *RD, |
| 976 | CharUnits OffsetInLayoutClass, |
| 977 | VisitedVirtualBasesSetTy &VBases); |
| 978 | |
| 979 | /// LayoutVTablesForVirtualBases - Layout vtables for all virtual bases of the |
| 980 | /// given base (excluding any primary bases). |
| 981 | void LayoutVTablesForVirtualBases(const CXXRecordDecl *RD, |
| 982 | VisitedVirtualBasesSetTy &VBases); |
| 983 | |
| 984 | /// isBuildingConstructionVTable - Return whether this vtable builder is |
| 985 | /// building a construction vtable. |
| 986 | bool isBuildingConstructorVTable() const { |
| 987 | return MostDerivedClass != LayoutClass; |
| 988 | } |
| 989 | |
| 990 | public: |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 991 | ItaniumVTableBuilder(ItaniumVTableContext &VTables, |
| 992 | const CXXRecordDecl *MostDerivedClass, |
| 993 | CharUnits MostDerivedClassOffset, |
| 994 | bool MostDerivedClassIsVirtual, |
| 995 | const CXXRecordDecl *LayoutClass) |
| 996 | : VTables(VTables), MostDerivedClass(MostDerivedClass), |
| 997 | MostDerivedClassOffset(MostDerivedClassOffset), |
| 998 | MostDerivedClassIsVirtual(MostDerivedClassIsVirtual), |
| 999 | LayoutClass(LayoutClass), Context(MostDerivedClass->getASTContext()), |
| 1000 | Overriders(MostDerivedClass, MostDerivedClassOffset, LayoutClass) { |
Timur Iskhodzhanov | ad9d3b8 | 2013-10-09 09:23:58 +0000 | [diff] [blame] | 1001 | assert(!Context.getTargetInfo().getCXXABI().isMicrosoft()); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1002 | |
| 1003 | LayoutVTable(); |
| 1004 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1005 | if (Context.getLangOpts().DumpVTableLayouts) |
Reid Kleckner | 5bc6d0f | 2013-11-08 21:28:00 +0000 | [diff] [blame] | 1006 | dumpLayout(llvm::outs()); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1007 | } |
| 1008 | |
| 1009 | uint64_t getNumThunks() const { |
| 1010 | return Thunks.size(); |
| 1011 | } |
| 1012 | |
| 1013 | ThunksMapTy::const_iterator thunks_begin() const { |
| 1014 | return Thunks.begin(); |
| 1015 | } |
| 1016 | |
| 1017 | ThunksMapTy::const_iterator thunks_end() const { |
| 1018 | return Thunks.end(); |
| 1019 | } |
| 1020 | |
| 1021 | const VBaseOffsetOffsetsMapTy &getVBaseOffsetOffsets() const { |
| 1022 | return VBaseOffsetOffsets; |
| 1023 | } |
| 1024 | |
| 1025 | const AddressPointsMapTy &getAddressPoints() const { |
| 1026 | return AddressPoints; |
| 1027 | } |
| 1028 | |
Timur Iskhodzhanov | 05e3670 | 2013-06-05 14:05:50 +0000 | [diff] [blame] | 1029 | MethodVTableIndicesTy::const_iterator vtable_indices_begin() const { |
| 1030 | return MethodVTableIndices.begin(); |
| 1031 | } |
| 1032 | |
| 1033 | MethodVTableIndicesTy::const_iterator vtable_indices_end() const { |
| 1034 | return MethodVTableIndices.end(); |
| 1035 | } |
| 1036 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1037 | /// getNumVTableComponents - Return the number of components in the vtable |
| 1038 | /// currently built. |
| 1039 | uint64_t getNumVTableComponents() const { |
| 1040 | return Components.size(); |
| 1041 | } |
| 1042 | |
| 1043 | const VTableComponent *vtable_component_begin() const { |
| 1044 | return Components.begin(); |
| 1045 | } |
| 1046 | |
| 1047 | const VTableComponent *vtable_component_end() const { |
| 1048 | return Components.end(); |
| 1049 | } |
| 1050 | |
| 1051 | AddressPointsMapTy::const_iterator address_points_begin() const { |
| 1052 | return AddressPoints.begin(); |
| 1053 | } |
| 1054 | |
| 1055 | AddressPointsMapTy::const_iterator address_points_end() const { |
| 1056 | return AddressPoints.end(); |
| 1057 | } |
| 1058 | |
| 1059 | VTableThunksMapTy::const_iterator vtable_thunks_begin() const { |
| 1060 | return VTableThunks.begin(); |
| 1061 | } |
| 1062 | |
| 1063 | VTableThunksMapTy::const_iterator vtable_thunks_end() const { |
| 1064 | return VTableThunks.end(); |
| 1065 | } |
| 1066 | |
| 1067 | /// dumpLayout - Dump the vtable layout. |
| 1068 | void dumpLayout(raw_ostream&); |
| 1069 | }; |
| 1070 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1071 | void ItaniumVTableBuilder::AddThunk(const CXXMethodDecl *MD, |
| 1072 | const ThunkInfo &Thunk) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1073 | assert(!isBuildingConstructorVTable() && |
| 1074 | "Can't add thunks for construction vtable"); |
| 1075 | |
Craig Topper | 5603df4 | 2013-07-05 19:34:19 +0000 | [diff] [blame] | 1076 | SmallVectorImpl<ThunkInfo> &ThunksVector = Thunks[MD]; |
| 1077 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1078 | // Check if we have this thunk already. |
| 1079 | if (std::find(ThunksVector.begin(), ThunksVector.end(), Thunk) != |
| 1080 | ThunksVector.end()) |
| 1081 | return; |
| 1082 | |
| 1083 | ThunksVector.push_back(Thunk); |
| 1084 | } |
| 1085 | |
| 1086 | typedef llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverriddenMethodsSetTy; |
| 1087 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 1088 | /// Visit all the methods overridden by the given method recursively, |
| 1089 | /// in a depth-first pre-order. The Visitor's visitor method returns a bool |
| 1090 | /// indicating whether to continue the recursion for the given overridden |
| 1091 | /// method (i.e. returning false stops the iteration). |
| 1092 | template <class VisitorTy> |
| 1093 | static void |
| 1094 | visitAllOverriddenMethods(const CXXMethodDecl *MD, VisitorTy &Visitor) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1095 | assert(MD->isVirtual() && "Method is not virtual!"); |
| 1096 | |
| 1097 | for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), |
| 1098 | E = MD->end_overridden_methods(); I != E; ++I) { |
| 1099 | const CXXMethodDecl *OverriddenMD = *I; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 1100 | if (!Visitor.visit(OverriddenMD)) |
| 1101 | continue; |
| 1102 | visitAllOverriddenMethods(OverriddenMD, Visitor); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1103 | } |
| 1104 | } |
| 1105 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 1106 | namespace { |
| 1107 | struct OverriddenMethodsCollector { |
| 1108 | OverriddenMethodsSetTy *Methods; |
| 1109 | |
| 1110 | bool visit(const CXXMethodDecl *MD) { |
| 1111 | // Don't recurse on this method if we've already collected it. |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 1112 | return Methods->insert(MD).second; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 1113 | } |
| 1114 | }; |
| 1115 | } |
| 1116 | |
| 1117 | /// ComputeAllOverriddenMethods - Given a method decl, will return a set of all |
| 1118 | /// the overridden methods that the function decl overrides. |
| 1119 | static void |
| 1120 | ComputeAllOverriddenMethods(const CXXMethodDecl *MD, |
| 1121 | OverriddenMethodsSetTy& OverriddenMethods) { |
| 1122 | OverriddenMethodsCollector Collector = { &OverriddenMethods }; |
| 1123 | visitAllOverriddenMethods(MD, Collector); |
| 1124 | } |
| 1125 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1126 | void ItaniumVTableBuilder::ComputeThisAdjustments() { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1127 | // Now go through the method info map and see if any of the methods need |
| 1128 | // 'this' pointer adjustments. |
| 1129 | for (MethodInfoMapTy::const_iterator I = MethodInfoMap.begin(), |
| 1130 | E = MethodInfoMap.end(); I != E; ++I) { |
| 1131 | const CXXMethodDecl *MD = I->first; |
| 1132 | const MethodInfo &MethodInfo = I->second; |
| 1133 | |
| 1134 | // Ignore adjustments for unused function pointers. |
| 1135 | uint64_t VTableIndex = MethodInfo.VTableIndex; |
| 1136 | if (Components[VTableIndex].getKind() == |
| 1137 | VTableComponent::CK_UnusedFunctionPointer) |
| 1138 | continue; |
| 1139 | |
| 1140 | // Get the final overrider for this method. |
| 1141 | FinalOverriders::OverriderInfo Overrider = |
| 1142 | Overriders.getOverrider(MD, MethodInfo.BaseOffset); |
| 1143 | |
| 1144 | // Check if we need an adjustment at all. |
| 1145 | if (MethodInfo.BaseOffsetInLayoutClass == Overrider.Offset) { |
| 1146 | // When a return thunk is needed by a derived class that overrides a |
| 1147 | // virtual base, gcc uses a virtual 'this' adjustment as well. |
| 1148 | // While the thunk itself might be needed by vtables in subclasses or |
| 1149 | // in construction vtables, there doesn't seem to be a reason for using |
| 1150 | // the thunk in this vtable. Still, we do so to match gcc. |
| 1151 | if (VTableThunks.lookup(VTableIndex).Return.isEmpty()) |
| 1152 | continue; |
| 1153 | } |
| 1154 | |
| 1155 | ThisAdjustment ThisAdjustment = |
| 1156 | ComputeThisAdjustment(MD, MethodInfo.BaseOffsetInLayoutClass, Overrider); |
| 1157 | |
| 1158 | if (ThisAdjustment.isEmpty()) |
| 1159 | continue; |
| 1160 | |
| 1161 | // Add it. |
| 1162 | VTableThunks[VTableIndex].This = ThisAdjustment; |
| 1163 | |
Timur Iskhodzhanov | 8b5987e | 2013-09-27 14:48:01 +0000 | [diff] [blame] | 1164 | if (isa<CXXDestructorDecl>(MD)) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1165 | // Add an adjustment for the deleting destructor as well. |
| 1166 | VTableThunks[VTableIndex + 1].This = ThisAdjustment; |
| 1167 | } |
| 1168 | } |
| 1169 | |
| 1170 | /// Clear the method info map. |
| 1171 | MethodInfoMap.clear(); |
| 1172 | |
| 1173 | if (isBuildingConstructorVTable()) { |
| 1174 | // We don't need to store thunk information for construction vtables. |
| 1175 | return; |
| 1176 | } |
| 1177 | |
| 1178 | for (VTableThunksMapTy::const_iterator I = VTableThunks.begin(), |
| 1179 | E = VTableThunks.end(); I != E; ++I) { |
| 1180 | const VTableComponent &Component = Components[I->first]; |
| 1181 | const ThunkInfo &Thunk = I->second; |
| 1182 | const CXXMethodDecl *MD; |
| 1183 | |
| 1184 | switch (Component.getKind()) { |
| 1185 | default: |
| 1186 | llvm_unreachable("Unexpected vtable component kind!"); |
| 1187 | case VTableComponent::CK_FunctionPointer: |
| 1188 | MD = Component.getFunctionDecl(); |
| 1189 | break; |
| 1190 | case VTableComponent::CK_CompleteDtorPointer: |
| 1191 | MD = Component.getDestructorDecl(); |
| 1192 | break; |
| 1193 | case VTableComponent::CK_DeletingDtorPointer: |
| 1194 | // We've already added the thunk when we saw the complete dtor pointer. |
| 1195 | continue; |
| 1196 | } |
| 1197 | |
| 1198 | if (MD->getParent() == MostDerivedClass) |
| 1199 | AddThunk(MD, Thunk); |
| 1200 | } |
| 1201 | } |
| 1202 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1203 | ReturnAdjustment |
| 1204 | ItaniumVTableBuilder::ComputeReturnAdjustment(BaseOffset Offset) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1205 | ReturnAdjustment Adjustment; |
| 1206 | |
| 1207 | if (!Offset.isEmpty()) { |
| 1208 | if (Offset.VirtualBase) { |
| 1209 | // Get the virtual base offset offset. |
| 1210 | if (Offset.DerivedClass == MostDerivedClass) { |
| 1211 | // We can get the offset offset directly from our map. |
Timur Iskhodzhanov | 0201432 | 2013-10-30 11:55:43 +0000 | [diff] [blame] | 1212 | Adjustment.Virtual.Itanium.VBaseOffsetOffset = |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1213 | VBaseOffsetOffsets.lookup(Offset.VirtualBase).getQuantity(); |
| 1214 | } else { |
Timur Iskhodzhanov | 0201432 | 2013-10-30 11:55:43 +0000 | [diff] [blame] | 1215 | Adjustment.Virtual.Itanium.VBaseOffsetOffset = |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1216 | VTables.getVirtualBaseOffsetOffset(Offset.DerivedClass, |
| 1217 | Offset.VirtualBase).getQuantity(); |
| 1218 | } |
| 1219 | } |
| 1220 | |
| 1221 | Adjustment.NonVirtual = Offset.NonVirtualOffset.getQuantity(); |
| 1222 | } |
| 1223 | |
| 1224 | return Adjustment; |
| 1225 | } |
| 1226 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1227 | BaseOffset ItaniumVTableBuilder::ComputeThisAdjustmentBaseOffset( |
| 1228 | BaseSubobject Base, BaseSubobject Derived) const { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1229 | const CXXRecordDecl *BaseRD = Base.getBase(); |
| 1230 | const CXXRecordDecl *DerivedRD = Derived.getBase(); |
| 1231 | |
| 1232 | CXXBasePaths Paths(/*FindAmbiguities=*/true, |
| 1233 | /*RecordPaths=*/true, /*DetectVirtual=*/true); |
| 1234 | |
Benjamin Kramer | 325d745 | 2013-02-03 18:55:34 +0000 | [diff] [blame] | 1235 | if (!DerivedRD->isDerivedFrom(BaseRD, Paths)) |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1236 | llvm_unreachable("Class must be derived from the passed in base class!"); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1237 | |
| 1238 | // We have to go through all the paths, and see which one leads us to the |
| 1239 | // right base subobject. |
| 1240 | for (CXXBasePaths::const_paths_iterator I = Paths.begin(), E = Paths.end(); |
| 1241 | I != E; ++I) { |
| 1242 | BaseOffset Offset = ComputeBaseOffset(Context, DerivedRD, *I); |
| 1243 | |
| 1244 | CharUnits OffsetToBaseSubobject = Offset.NonVirtualOffset; |
| 1245 | |
| 1246 | if (Offset.VirtualBase) { |
| 1247 | // If we have a virtual base class, the non-virtual offset is relative |
| 1248 | // to the virtual base class offset. |
| 1249 | const ASTRecordLayout &LayoutClassLayout = |
| 1250 | Context.getASTRecordLayout(LayoutClass); |
| 1251 | |
| 1252 | /// Get the virtual base offset, relative to the most derived class |
| 1253 | /// layout. |
| 1254 | OffsetToBaseSubobject += |
| 1255 | LayoutClassLayout.getVBaseClassOffset(Offset.VirtualBase); |
| 1256 | } else { |
| 1257 | // Otherwise, the non-virtual offset is relative to the derived class |
| 1258 | // offset. |
| 1259 | OffsetToBaseSubobject += Derived.getBaseOffset(); |
| 1260 | } |
| 1261 | |
| 1262 | // Check if this path gives us the right base subobject. |
| 1263 | if (OffsetToBaseSubobject == Base.getBaseOffset()) { |
| 1264 | // Since we're going from the base class _to_ the derived class, we'll |
| 1265 | // invert the non-virtual offset here. |
| 1266 | Offset.NonVirtualOffset = -Offset.NonVirtualOffset; |
| 1267 | return Offset; |
| 1268 | } |
| 1269 | } |
| 1270 | |
| 1271 | return BaseOffset(); |
| 1272 | } |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1273 | |
| 1274 | ThisAdjustment ItaniumVTableBuilder::ComputeThisAdjustment( |
| 1275 | const CXXMethodDecl *MD, CharUnits BaseOffsetInLayoutClass, |
| 1276 | FinalOverriders::OverriderInfo Overrider) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1277 | // Ignore adjustments for pure virtual member functions. |
| 1278 | if (Overrider.Method->isPure()) |
| 1279 | return ThisAdjustment(); |
| 1280 | |
| 1281 | BaseSubobject OverriddenBaseSubobject(MD->getParent(), |
| 1282 | BaseOffsetInLayoutClass); |
| 1283 | |
| 1284 | BaseSubobject OverriderBaseSubobject(Overrider.Method->getParent(), |
| 1285 | Overrider.Offset); |
| 1286 | |
| 1287 | // Compute the adjustment offset. |
| 1288 | BaseOffset Offset = ComputeThisAdjustmentBaseOffset(OverriddenBaseSubobject, |
| 1289 | OverriderBaseSubobject); |
| 1290 | if (Offset.isEmpty()) |
| 1291 | return ThisAdjustment(); |
| 1292 | |
| 1293 | ThisAdjustment Adjustment; |
| 1294 | |
| 1295 | if (Offset.VirtualBase) { |
| 1296 | // Get the vcall offset map for this virtual base. |
| 1297 | VCallOffsetMap &VCallOffsets = VCallOffsetsForVBases[Offset.VirtualBase]; |
| 1298 | |
| 1299 | if (VCallOffsets.empty()) { |
| 1300 | // We don't have vcall offsets for this virtual base, go ahead and |
| 1301 | // build them. |
| 1302 | VCallAndVBaseOffsetBuilder Builder(MostDerivedClass, MostDerivedClass, |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1303 | /*FinalOverriders=*/nullptr, |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1304 | BaseSubobject(Offset.VirtualBase, |
| 1305 | CharUnits::Zero()), |
| 1306 | /*BaseIsVirtual=*/true, |
| 1307 | /*OffsetInLayoutClass=*/ |
| 1308 | CharUnits::Zero()); |
| 1309 | |
| 1310 | VCallOffsets = Builder.getVCallOffsets(); |
| 1311 | } |
| 1312 | |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 1313 | Adjustment.Virtual.Itanium.VCallOffsetOffset = |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1314 | VCallOffsets.getVCallOffsetOffset(MD).getQuantity(); |
| 1315 | } |
| 1316 | |
| 1317 | // Set the non-virtual part of the adjustment. |
| 1318 | Adjustment.NonVirtual = Offset.NonVirtualOffset.getQuantity(); |
| 1319 | |
| 1320 | return Adjustment; |
| 1321 | } |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1322 | |
| 1323 | void ItaniumVTableBuilder::AddMethod(const CXXMethodDecl *MD, |
| 1324 | ReturnAdjustment ReturnAdjustment) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1325 | if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) { |
| 1326 | assert(ReturnAdjustment.isEmpty() && |
| 1327 | "Destructor can't have return adjustment!"); |
| 1328 | |
Timur Iskhodzhanov | 8b5987e | 2013-09-27 14:48:01 +0000 | [diff] [blame] | 1329 | // Add both the complete destructor and the deleting destructor. |
| 1330 | Components.push_back(VTableComponent::MakeCompleteDtor(DD)); |
| 1331 | Components.push_back(VTableComponent::MakeDeletingDtor(DD)); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1332 | } else { |
| 1333 | // Add the return adjustment if necessary. |
| 1334 | if (!ReturnAdjustment.isEmpty()) |
| 1335 | VTableThunks[Components.size()].Return = ReturnAdjustment; |
| 1336 | |
| 1337 | // Add the function. |
| 1338 | Components.push_back(VTableComponent::MakeFunction(MD)); |
| 1339 | } |
| 1340 | } |
| 1341 | |
| 1342 | /// OverridesIndirectMethodInBase - Return whether the given member function |
| 1343 | /// overrides any methods in the set of given bases. |
| 1344 | /// Unlike OverridesMethodInBase, this checks "overriders of overriders". |
| 1345 | /// For example, if we have: |
| 1346 | /// |
| 1347 | /// struct A { virtual void f(); } |
| 1348 | /// struct B : A { virtual void f(); } |
| 1349 | /// struct C : B { virtual void f(); } |
| 1350 | /// |
| 1351 | /// OverridesIndirectMethodInBase will return true if given C::f as the method |
| 1352 | /// and { A } as the set of bases. |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1353 | static bool OverridesIndirectMethodInBases( |
| 1354 | const CXXMethodDecl *MD, |
| 1355 | ItaniumVTableBuilder::PrimaryBasesSetVectorTy &Bases) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1356 | if (Bases.count(MD->getParent())) |
| 1357 | return true; |
| 1358 | |
| 1359 | for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), |
| 1360 | E = MD->end_overridden_methods(); I != E; ++I) { |
| 1361 | const CXXMethodDecl *OverriddenMD = *I; |
| 1362 | |
| 1363 | // Check "indirect overriders". |
| 1364 | if (OverridesIndirectMethodInBases(OverriddenMD, Bases)) |
| 1365 | return true; |
| 1366 | } |
| 1367 | |
| 1368 | return false; |
| 1369 | } |
| 1370 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1371 | bool ItaniumVTableBuilder::IsOverriderUsed( |
| 1372 | const CXXMethodDecl *Overrider, CharUnits BaseOffsetInLayoutClass, |
| 1373 | const CXXRecordDecl *FirstBaseInPrimaryBaseChain, |
| 1374 | CharUnits FirstBaseOffsetInLayoutClass) const { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1375 | // If the base and the first base in the primary base chain have the same |
| 1376 | // offsets, then this overrider will be used. |
| 1377 | if (BaseOffsetInLayoutClass == FirstBaseOffsetInLayoutClass) |
| 1378 | return true; |
| 1379 | |
| 1380 | // We know now that Base (or a direct or indirect base of it) is a primary |
| 1381 | // base in part of the class hierarchy, but not a primary base in the most |
| 1382 | // derived class. |
| 1383 | |
| 1384 | // If the overrider is the first base in the primary base chain, we know |
| 1385 | // that the overrider will be used. |
| 1386 | if (Overrider->getParent() == FirstBaseInPrimaryBaseChain) |
| 1387 | return true; |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1388 | |
| 1389 | ItaniumVTableBuilder::PrimaryBasesSetVectorTy PrimaryBases; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1390 | |
| 1391 | const CXXRecordDecl *RD = FirstBaseInPrimaryBaseChain; |
| 1392 | PrimaryBases.insert(RD); |
| 1393 | |
| 1394 | // Now traverse the base chain, starting with the first base, until we find |
| 1395 | // the base that is no longer a primary base. |
| 1396 | while (true) { |
| 1397 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
| 1398 | const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase(); |
| 1399 | |
| 1400 | if (!PrimaryBase) |
| 1401 | break; |
| 1402 | |
| 1403 | if (Layout.isPrimaryBaseVirtual()) { |
Benjamin Kramer | 2ef3031 | 2012-07-04 18:45:14 +0000 | [diff] [blame] | 1404 | assert(Layout.getVBaseClassOffset(PrimaryBase).isZero() && |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1405 | "Primary base should always be at offset 0!"); |
| 1406 | |
| 1407 | const ASTRecordLayout &LayoutClassLayout = |
| 1408 | Context.getASTRecordLayout(LayoutClass); |
| 1409 | |
| 1410 | // Now check if this is the primary base that is not a primary base in the |
| 1411 | // most derived class. |
| 1412 | if (LayoutClassLayout.getVBaseClassOffset(PrimaryBase) != |
| 1413 | FirstBaseOffsetInLayoutClass) { |
| 1414 | // We found it, stop walking the chain. |
| 1415 | break; |
| 1416 | } |
| 1417 | } else { |
Benjamin Kramer | 2ef3031 | 2012-07-04 18:45:14 +0000 | [diff] [blame] | 1418 | assert(Layout.getBaseClassOffset(PrimaryBase).isZero() && |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1419 | "Primary base should always be at offset 0!"); |
| 1420 | } |
| 1421 | |
| 1422 | if (!PrimaryBases.insert(PrimaryBase)) |
| 1423 | llvm_unreachable("Found a duplicate primary base!"); |
| 1424 | |
| 1425 | RD = PrimaryBase; |
| 1426 | } |
| 1427 | |
| 1428 | // If the final overrider is an override of one of the primary bases, |
| 1429 | // then we know that it will be used. |
| 1430 | return OverridesIndirectMethodInBases(Overrider, PrimaryBases); |
| 1431 | } |
| 1432 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 1433 | typedef llvm::SmallSetVector<const CXXRecordDecl *, 8> BasesSetVectorTy; |
| 1434 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1435 | /// FindNearestOverriddenMethod - Given a method, returns the overridden method |
| 1436 | /// from the nearest base. Returns null if no method was found. |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 1437 | /// The Bases are expected to be sorted in a base-to-derived order. |
| 1438 | static const CXXMethodDecl * |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1439 | FindNearestOverriddenMethod(const CXXMethodDecl *MD, |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 1440 | BasesSetVectorTy &Bases) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1441 | OverriddenMethodsSetTy OverriddenMethods; |
| 1442 | ComputeAllOverriddenMethods(MD, OverriddenMethods); |
| 1443 | |
| 1444 | for (int I = Bases.size(), E = 0; I != E; --I) { |
| 1445 | const CXXRecordDecl *PrimaryBase = Bases[I - 1]; |
| 1446 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 1447 | // Now check the overridden methods. |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1448 | for (OverriddenMethodsSetTy::const_iterator I = OverriddenMethods.begin(), |
| 1449 | E = OverriddenMethods.end(); I != E; ++I) { |
| 1450 | const CXXMethodDecl *OverriddenMD = *I; |
| 1451 | |
| 1452 | // We found our overridden method. |
| 1453 | if (OverriddenMD->getParent() == PrimaryBase) |
| 1454 | return OverriddenMD; |
| 1455 | } |
| 1456 | } |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1457 | |
| 1458 | return nullptr; |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1459 | } |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1460 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1461 | void ItaniumVTableBuilder::AddMethods( |
| 1462 | BaseSubobject Base, CharUnits BaseOffsetInLayoutClass, |
| 1463 | const CXXRecordDecl *FirstBaseInPrimaryBaseChain, |
| 1464 | CharUnits FirstBaseOffsetInLayoutClass, |
| 1465 | PrimaryBasesSetVectorTy &PrimaryBases) { |
Timur Iskhodzhanov | 05e3670 | 2013-06-05 14:05:50 +0000 | [diff] [blame] | 1466 | // Itanium C++ ABI 2.5.2: |
| 1467 | // The order of the virtual function pointers in a virtual table is the |
| 1468 | // order of declaration of the corresponding member functions in the class. |
| 1469 | // |
| 1470 | // There is an entry for any virtual function declared in a class, |
| 1471 | // whether it is a new function or overrides a base class function, |
| 1472 | // unless it overrides a function from the primary base, and conversion |
| 1473 | // between their return types does not require an adjustment. |
| 1474 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1475 | const CXXRecordDecl *RD = Base.getBase(); |
| 1476 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
| 1477 | |
| 1478 | if (const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase()) { |
| 1479 | CharUnits PrimaryBaseOffset; |
| 1480 | CharUnits PrimaryBaseOffsetInLayoutClass; |
| 1481 | if (Layout.isPrimaryBaseVirtual()) { |
Benjamin Kramer | 2ef3031 | 2012-07-04 18:45:14 +0000 | [diff] [blame] | 1482 | assert(Layout.getVBaseClassOffset(PrimaryBase).isZero() && |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1483 | "Primary vbase should have a zero offset!"); |
| 1484 | |
| 1485 | const ASTRecordLayout &MostDerivedClassLayout = |
| 1486 | Context.getASTRecordLayout(MostDerivedClass); |
| 1487 | |
| 1488 | PrimaryBaseOffset = |
| 1489 | MostDerivedClassLayout.getVBaseClassOffset(PrimaryBase); |
| 1490 | |
| 1491 | const ASTRecordLayout &LayoutClassLayout = |
| 1492 | Context.getASTRecordLayout(LayoutClass); |
| 1493 | |
| 1494 | PrimaryBaseOffsetInLayoutClass = |
| 1495 | LayoutClassLayout.getVBaseClassOffset(PrimaryBase); |
| 1496 | } else { |
Benjamin Kramer | 2ef3031 | 2012-07-04 18:45:14 +0000 | [diff] [blame] | 1497 | assert(Layout.getBaseClassOffset(PrimaryBase).isZero() && |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1498 | "Primary base should have a zero offset!"); |
| 1499 | |
| 1500 | PrimaryBaseOffset = Base.getBaseOffset(); |
| 1501 | PrimaryBaseOffsetInLayoutClass = BaseOffsetInLayoutClass; |
| 1502 | } |
| 1503 | |
| 1504 | AddMethods(BaseSubobject(PrimaryBase, PrimaryBaseOffset), |
| 1505 | PrimaryBaseOffsetInLayoutClass, FirstBaseInPrimaryBaseChain, |
| 1506 | FirstBaseOffsetInLayoutClass, PrimaryBases); |
| 1507 | |
| 1508 | if (!PrimaryBases.insert(PrimaryBase)) |
| 1509 | llvm_unreachable("Found a duplicate primary base!"); |
| 1510 | } |
| 1511 | |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1512 | const CXXDestructorDecl *ImplicitVirtualDtor = nullptr; |
Timur Iskhodzhanov | 05e3670 | 2013-06-05 14:05:50 +0000 | [diff] [blame] | 1513 | |
| 1514 | typedef llvm::SmallVector<const CXXMethodDecl *, 8> NewVirtualFunctionsTy; |
| 1515 | NewVirtualFunctionsTy NewVirtualFunctions; |
| 1516 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1517 | // Now go through all virtual member functions and add them. |
Aaron Ballman | 2b124d1 | 2014-03-13 16:36:16 +0000 | [diff] [blame] | 1518 | for (const auto *MD : RD->methods()) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1519 | if (!MD->isVirtual()) |
| 1520 | continue; |
Reid Kleckner | 1cbd9aa | 2015-02-25 19:17:48 +0000 | [diff] [blame] | 1521 | MD = MD->getCanonicalDecl(); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1522 | |
| 1523 | // Get the final overrider. |
| 1524 | FinalOverriders::OverriderInfo Overrider = |
| 1525 | Overriders.getOverrider(MD, Base.getBaseOffset()); |
| 1526 | |
| 1527 | // Check if this virtual member function overrides a method in a primary |
| 1528 | // base. If this is the case, and the return type doesn't require adjustment |
| 1529 | // then we can just use the member function from the primary base. |
| 1530 | if (const CXXMethodDecl *OverriddenMD = |
| 1531 | FindNearestOverriddenMethod(MD, PrimaryBases)) { |
| 1532 | if (ComputeReturnAdjustmentBaseOffset(Context, MD, |
| 1533 | OverriddenMD).isEmpty()) { |
| 1534 | // Replace the method info of the overridden method with our own |
| 1535 | // method. |
| 1536 | assert(MethodInfoMap.count(OverriddenMD) && |
| 1537 | "Did not find the overridden method!"); |
| 1538 | MethodInfo &OverriddenMethodInfo = MethodInfoMap[OverriddenMD]; |
| 1539 | |
| 1540 | MethodInfo MethodInfo(Base.getBaseOffset(), BaseOffsetInLayoutClass, |
| 1541 | OverriddenMethodInfo.VTableIndex); |
| 1542 | |
| 1543 | assert(!MethodInfoMap.count(MD) && |
| 1544 | "Should not have method info for this method yet!"); |
| 1545 | |
| 1546 | MethodInfoMap.insert(std::make_pair(MD, MethodInfo)); |
| 1547 | MethodInfoMap.erase(OverriddenMD); |
| 1548 | |
| 1549 | // If the overridden method exists in a virtual base class or a direct |
| 1550 | // or indirect base class of a virtual base class, we need to emit a |
| 1551 | // thunk if we ever have a class hierarchy where the base class is not |
| 1552 | // a primary base in the complete object. |
| 1553 | if (!isBuildingConstructorVTable() && OverriddenMD != MD) { |
| 1554 | // Compute the this adjustment. |
| 1555 | ThisAdjustment ThisAdjustment = |
| 1556 | ComputeThisAdjustment(OverriddenMD, BaseOffsetInLayoutClass, |
| 1557 | Overrider); |
| 1558 | |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 1559 | if (ThisAdjustment.Virtual.Itanium.VCallOffsetOffset && |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1560 | Overrider.Method->getParent() == MostDerivedClass) { |
| 1561 | |
| 1562 | // There's no return adjustment from OverriddenMD and MD, |
| 1563 | // but that doesn't mean there isn't one between MD and |
| 1564 | // the final overrider. |
| 1565 | BaseOffset ReturnAdjustmentOffset = |
| 1566 | ComputeReturnAdjustmentBaseOffset(Context, Overrider.Method, MD); |
| 1567 | ReturnAdjustment ReturnAdjustment = |
| 1568 | ComputeReturnAdjustment(ReturnAdjustmentOffset); |
| 1569 | |
| 1570 | // This is a virtual thunk for the most derived class, add it. |
| 1571 | AddThunk(Overrider.Method, |
| 1572 | ThunkInfo(ThisAdjustment, ReturnAdjustment)); |
| 1573 | } |
| 1574 | } |
| 1575 | |
| 1576 | continue; |
| 1577 | } |
| 1578 | } |
| 1579 | |
Timur Iskhodzhanov | 05e3670 | 2013-06-05 14:05:50 +0000 | [diff] [blame] | 1580 | if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) { |
| 1581 | if (MD->isImplicit()) { |
| 1582 | // Itanium C++ ABI 2.5.2: |
| 1583 | // If a class has an implicitly-defined virtual destructor, |
| 1584 | // its entries come after the declared virtual function pointers. |
| 1585 | |
| 1586 | assert(!ImplicitVirtualDtor && |
| 1587 | "Did already see an implicit virtual dtor!"); |
| 1588 | ImplicitVirtualDtor = DD; |
| 1589 | continue; |
| 1590 | } |
| 1591 | } |
| 1592 | |
| 1593 | NewVirtualFunctions.push_back(MD); |
| 1594 | } |
| 1595 | |
| 1596 | if (ImplicitVirtualDtor) |
| 1597 | NewVirtualFunctions.push_back(ImplicitVirtualDtor); |
| 1598 | |
| 1599 | for (NewVirtualFunctionsTy::const_iterator I = NewVirtualFunctions.begin(), |
| 1600 | E = NewVirtualFunctions.end(); I != E; ++I) { |
| 1601 | const CXXMethodDecl *MD = *I; |
| 1602 | |
| 1603 | // Get the final overrider. |
| 1604 | FinalOverriders::OverriderInfo Overrider = |
| 1605 | Overriders.getOverrider(MD, Base.getBaseOffset()); |
| 1606 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1607 | // Insert the method info for this method. |
| 1608 | MethodInfo MethodInfo(Base.getBaseOffset(), BaseOffsetInLayoutClass, |
| 1609 | Components.size()); |
| 1610 | |
| 1611 | assert(!MethodInfoMap.count(MD) && |
| 1612 | "Should not have method info for this method yet!"); |
| 1613 | MethodInfoMap.insert(std::make_pair(MD, MethodInfo)); |
| 1614 | |
| 1615 | // Check if this overrider is going to be used. |
| 1616 | const CXXMethodDecl *OverriderMD = Overrider.Method; |
| 1617 | if (!IsOverriderUsed(OverriderMD, BaseOffsetInLayoutClass, |
| 1618 | FirstBaseInPrimaryBaseChain, |
| 1619 | FirstBaseOffsetInLayoutClass)) { |
| 1620 | Components.push_back(VTableComponent::MakeUnusedFunction(OverriderMD)); |
| 1621 | continue; |
| 1622 | } |
Timur Iskhodzhanov | 05e3670 | 2013-06-05 14:05:50 +0000 | [diff] [blame] | 1623 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1624 | // Check if this overrider needs a return adjustment. |
| 1625 | // We don't want to do this for pure virtual member functions. |
| 1626 | BaseOffset ReturnAdjustmentOffset; |
| 1627 | if (!OverriderMD->isPure()) { |
| 1628 | ReturnAdjustmentOffset = |
| 1629 | ComputeReturnAdjustmentBaseOffset(Context, OverriderMD, MD); |
| 1630 | } |
| 1631 | |
| 1632 | ReturnAdjustment ReturnAdjustment = |
| 1633 | ComputeReturnAdjustment(ReturnAdjustmentOffset); |
| 1634 | |
| 1635 | AddMethod(Overrider.Method, ReturnAdjustment); |
| 1636 | } |
| 1637 | } |
| 1638 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1639 | void ItaniumVTableBuilder::LayoutVTable() { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1640 | LayoutPrimaryAndSecondaryVTables(BaseSubobject(MostDerivedClass, |
| 1641 | CharUnits::Zero()), |
| 1642 | /*BaseIsMorallyVirtual=*/false, |
| 1643 | MostDerivedClassIsVirtual, |
| 1644 | MostDerivedClassOffset); |
| 1645 | |
| 1646 | VisitedVirtualBasesSetTy VBases; |
| 1647 | |
| 1648 | // Determine the primary virtual bases. |
| 1649 | DeterminePrimaryVirtualBases(MostDerivedClass, MostDerivedClassOffset, |
| 1650 | VBases); |
| 1651 | VBases.clear(); |
| 1652 | |
| 1653 | LayoutVTablesForVirtualBases(MostDerivedClass, VBases); |
| 1654 | |
| 1655 | // -fapple-kext adds an extra entry at end of vtbl. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1656 | bool IsAppleKext = Context.getLangOpts().AppleKext; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1657 | if (IsAppleKext) |
| 1658 | Components.push_back(VTableComponent::MakeVCallOffset(CharUnits::Zero())); |
| 1659 | } |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1660 | |
| 1661 | void ItaniumVTableBuilder::LayoutPrimaryAndSecondaryVTables( |
| 1662 | BaseSubobject Base, bool BaseIsMorallyVirtual, |
| 1663 | bool BaseIsVirtualInLayoutClass, CharUnits OffsetInLayoutClass) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1664 | assert(Base.getBase()->isDynamicClass() && "class does not have a vtable!"); |
| 1665 | |
| 1666 | // Add vcall and vbase offsets for this vtable. |
| 1667 | VCallAndVBaseOffsetBuilder Builder(MostDerivedClass, LayoutClass, &Overriders, |
| 1668 | Base, BaseIsVirtualInLayoutClass, |
| 1669 | OffsetInLayoutClass); |
| 1670 | Components.append(Builder.components_begin(), Builder.components_end()); |
| 1671 | |
| 1672 | // Check if we need to add these vcall offsets. |
| 1673 | if (BaseIsVirtualInLayoutClass && !Builder.getVCallOffsets().empty()) { |
| 1674 | VCallOffsetMap &VCallOffsets = VCallOffsetsForVBases[Base.getBase()]; |
| 1675 | |
| 1676 | if (VCallOffsets.empty()) |
| 1677 | VCallOffsets = Builder.getVCallOffsets(); |
| 1678 | } |
| 1679 | |
| 1680 | // If we're laying out the most derived class we want to keep track of the |
| 1681 | // virtual base class offset offsets. |
| 1682 | if (Base.getBase() == MostDerivedClass) |
| 1683 | VBaseOffsetOffsets = Builder.getVBaseOffsetOffsets(); |
| 1684 | |
Timur Iskhodzhanov | 8b5987e | 2013-09-27 14:48:01 +0000 | [diff] [blame] | 1685 | // Add the offset to top. |
| 1686 | CharUnits OffsetToTop = MostDerivedClassOffset - OffsetInLayoutClass; |
| 1687 | Components.push_back(VTableComponent::MakeOffsetToTop(OffsetToTop)); |
Timur Iskhodzhanov | 52b8a05 | 2013-01-21 13:02:41 +0000 | [diff] [blame] | 1688 | |
Timur Iskhodzhanov | 8b5987e | 2013-09-27 14:48:01 +0000 | [diff] [blame] | 1689 | // Next, add the RTTI. |
| 1690 | Components.push_back(VTableComponent::MakeRTTI(MostDerivedClass)); |
Timur Iskhodzhanov | 52b8a05 | 2013-01-21 13:02:41 +0000 | [diff] [blame] | 1691 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1692 | uint64_t AddressPoint = Components.size(); |
| 1693 | |
| 1694 | // Now go through all virtual member functions and add them. |
| 1695 | PrimaryBasesSetVectorTy PrimaryBases; |
| 1696 | AddMethods(Base, OffsetInLayoutClass, |
| 1697 | Base.getBase(), OffsetInLayoutClass, |
| 1698 | PrimaryBases); |
| 1699 | |
Timur Iskhodzhanov | 05e3670 | 2013-06-05 14:05:50 +0000 | [diff] [blame] | 1700 | const CXXRecordDecl *RD = Base.getBase(); |
| 1701 | if (RD == MostDerivedClass) { |
| 1702 | assert(MethodVTableIndices.empty()); |
| 1703 | for (MethodInfoMapTy::const_iterator I = MethodInfoMap.begin(), |
| 1704 | E = MethodInfoMap.end(); I != E; ++I) { |
| 1705 | const CXXMethodDecl *MD = I->first; |
| 1706 | const MethodInfo &MI = I->second; |
| 1707 | if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) { |
Timur Iskhodzhanov | 8b5987e | 2013-09-27 14:48:01 +0000 | [diff] [blame] | 1708 | MethodVTableIndices[GlobalDecl(DD, Dtor_Complete)] |
| 1709 | = MI.VTableIndex - AddressPoint; |
| 1710 | MethodVTableIndices[GlobalDecl(DD, Dtor_Deleting)] |
| 1711 | = MI.VTableIndex + 1 - AddressPoint; |
Timur Iskhodzhanov | 05e3670 | 2013-06-05 14:05:50 +0000 | [diff] [blame] | 1712 | } else { |
| 1713 | MethodVTableIndices[MD] = MI.VTableIndex - AddressPoint; |
| 1714 | } |
| 1715 | } |
| 1716 | } |
| 1717 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1718 | // Compute 'this' pointer adjustments. |
| 1719 | ComputeThisAdjustments(); |
| 1720 | |
| 1721 | // Add all address points. |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1722 | while (true) { |
| 1723 | AddressPoints.insert(std::make_pair( |
| 1724 | BaseSubobject(RD, OffsetInLayoutClass), |
| 1725 | AddressPoint)); |
| 1726 | |
| 1727 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
| 1728 | const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase(); |
| 1729 | |
| 1730 | if (!PrimaryBase) |
| 1731 | break; |
| 1732 | |
| 1733 | if (Layout.isPrimaryBaseVirtual()) { |
| 1734 | // Check if this virtual primary base is a primary base in the layout |
| 1735 | // class. If it's not, we don't want to add it. |
| 1736 | const ASTRecordLayout &LayoutClassLayout = |
| 1737 | Context.getASTRecordLayout(LayoutClass); |
| 1738 | |
| 1739 | if (LayoutClassLayout.getVBaseClassOffset(PrimaryBase) != |
| 1740 | OffsetInLayoutClass) { |
| 1741 | // We don't want to add this class (or any of its primary bases). |
| 1742 | break; |
| 1743 | } |
| 1744 | } |
| 1745 | |
| 1746 | RD = PrimaryBase; |
| 1747 | } |
| 1748 | |
| 1749 | // Layout secondary vtables. |
| 1750 | LayoutSecondaryVTables(Base, BaseIsMorallyVirtual, OffsetInLayoutClass); |
| 1751 | } |
| 1752 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1753 | void |
| 1754 | ItaniumVTableBuilder::LayoutSecondaryVTables(BaseSubobject Base, |
| 1755 | bool BaseIsMorallyVirtual, |
| 1756 | CharUnits OffsetInLayoutClass) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1757 | // Itanium C++ ABI 2.5.2: |
| 1758 | // Following the primary virtual table of a derived class are secondary |
| 1759 | // virtual tables for each of its proper base classes, except any primary |
| 1760 | // base(s) with which it shares its primary virtual table. |
| 1761 | |
| 1762 | const CXXRecordDecl *RD = Base.getBase(); |
| 1763 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
| 1764 | const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase(); |
| 1765 | |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 1766 | for (const auto &B : RD->bases()) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1767 | // Ignore virtual bases, we'll emit them later. |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 1768 | if (B.isVirtual()) |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1769 | continue; |
| 1770 | |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 1771 | const CXXRecordDecl *BaseDecl = B.getType()->getAsCXXRecordDecl(); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1772 | |
| 1773 | // Ignore bases that don't have a vtable. |
| 1774 | if (!BaseDecl->isDynamicClass()) |
| 1775 | continue; |
| 1776 | |
| 1777 | if (isBuildingConstructorVTable()) { |
| 1778 | // Itanium C++ ABI 2.6.4: |
| 1779 | // Some of the base class subobjects may not need construction virtual |
| 1780 | // tables, which will therefore not be present in the construction |
| 1781 | // virtual table group, even though the subobject virtual tables are |
| 1782 | // present in the main virtual table group for the complete object. |
| 1783 | if (!BaseIsMorallyVirtual && !BaseDecl->getNumVBases()) |
| 1784 | continue; |
| 1785 | } |
| 1786 | |
| 1787 | // Get the base offset of this base. |
| 1788 | CharUnits RelativeBaseOffset = Layout.getBaseClassOffset(BaseDecl); |
| 1789 | CharUnits BaseOffset = Base.getBaseOffset() + RelativeBaseOffset; |
| 1790 | |
| 1791 | CharUnits BaseOffsetInLayoutClass = |
| 1792 | OffsetInLayoutClass + RelativeBaseOffset; |
| 1793 | |
| 1794 | // Don't emit a secondary vtable for a primary base. We might however want |
| 1795 | // to emit secondary vtables for other bases of this base. |
| 1796 | if (BaseDecl == PrimaryBase) { |
| 1797 | LayoutSecondaryVTables(BaseSubobject(BaseDecl, BaseOffset), |
| 1798 | BaseIsMorallyVirtual, BaseOffsetInLayoutClass); |
| 1799 | continue; |
| 1800 | } |
| 1801 | |
| 1802 | // Layout the primary vtable (and any secondary vtables) for this base. |
| 1803 | LayoutPrimaryAndSecondaryVTables( |
| 1804 | BaseSubobject(BaseDecl, BaseOffset), |
| 1805 | BaseIsMorallyVirtual, |
| 1806 | /*BaseIsVirtualInLayoutClass=*/false, |
| 1807 | BaseOffsetInLayoutClass); |
| 1808 | } |
| 1809 | } |
| 1810 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1811 | void ItaniumVTableBuilder::DeterminePrimaryVirtualBases( |
| 1812 | const CXXRecordDecl *RD, CharUnits OffsetInLayoutClass, |
| 1813 | VisitedVirtualBasesSetTy &VBases) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1814 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
| 1815 | |
| 1816 | // Check if this base has a primary base. |
| 1817 | if (const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase()) { |
| 1818 | |
| 1819 | // Check if it's virtual. |
| 1820 | if (Layout.isPrimaryBaseVirtual()) { |
| 1821 | bool IsPrimaryVirtualBase = true; |
| 1822 | |
| 1823 | if (isBuildingConstructorVTable()) { |
| 1824 | // Check if the base is actually a primary base in the class we use for |
| 1825 | // layout. |
| 1826 | const ASTRecordLayout &LayoutClassLayout = |
| 1827 | Context.getASTRecordLayout(LayoutClass); |
| 1828 | |
| 1829 | CharUnits PrimaryBaseOffsetInLayoutClass = |
| 1830 | LayoutClassLayout.getVBaseClassOffset(PrimaryBase); |
| 1831 | |
| 1832 | // We know that the base is not a primary base in the layout class if |
| 1833 | // the base offsets are different. |
| 1834 | if (PrimaryBaseOffsetInLayoutClass != OffsetInLayoutClass) |
| 1835 | IsPrimaryVirtualBase = false; |
| 1836 | } |
| 1837 | |
| 1838 | if (IsPrimaryVirtualBase) |
| 1839 | PrimaryVirtualBases.insert(PrimaryBase); |
| 1840 | } |
| 1841 | } |
| 1842 | |
| 1843 | // Traverse bases, looking for more primary virtual bases. |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 1844 | for (const auto &B : RD->bases()) { |
| 1845 | const CXXRecordDecl *BaseDecl = B.getType()->getAsCXXRecordDecl(); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1846 | |
| 1847 | CharUnits BaseOffsetInLayoutClass; |
| 1848 | |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 1849 | if (B.isVirtual()) { |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 1850 | if (!VBases.insert(BaseDecl).second) |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1851 | continue; |
| 1852 | |
| 1853 | const ASTRecordLayout &LayoutClassLayout = |
| 1854 | Context.getASTRecordLayout(LayoutClass); |
| 1855 | |
| 1856 | BaseOffsetInLayoutClass = |
| 1857 | LayoutClassLayout.getVBaseClassOffset(BaseDecl); |
| 1858 | } else { |
| 1859 | BaseOffsetInLayoutClass = |
| 1860 | OffsetInLayoutClass + Layout.getBaseClassOffset(BaseDecl); |
| 1861 | } |
| 1862 | |
| 1863 | DeterminePrimaryVirtualBases(BaseDecl, BaseOffsetInLayoutClass, VBases); |
| 1864 | } |
| 1865 | } |
| 1866 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1867 | void ItaniumVTableBuilder::LayoutVTablesForVirtualBases( |
| 1868 | const CXXRecordDecl *RD, VisitedVirtualBasesSetTy &VBases) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1869 | // Itanium C++ ABI 2.5.2: |
| 1870 | // Then come the virtual base virtual tables, also in inheritance graph |
| 1871 | // order, and again excluding primary bases (which share virtual tables with |
| 1872 | // the classes for which they are primary). |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 1873 | for (const auto &B : RD->bases()) { |
| 1874 | const CXXRecordDecl *BaseDecl = B.getType()->getAsCXXRecordDecl(); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1875 | |
| 1876 | // Check if this base needs a vtable. (If it's virtual, not a primary base |
| 1877 | // of some other class, and we haven't visited it before). |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 1878 | if (B.isVirtual() && BaseDecl->isDynamicClass() && |
| 1879 | !PrimaryVirtualBases.count(BaseDecl) && |
| 1880 | VBases.insert(BaseDecl).second) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1881 | const ASTRecordLayout &MostDerivedClassLayout = |
| 1882 | Context.getASTRecordLayout(MostDerivedClass); |
| 1883 | CharUnits BaseOffset = |
| 1884 | MostDerivedClassLayout.getVBaseClassOffset(BaseDecl); |
| 1885 | |
| 1886 | const ASTRecordLayout &LayoutClassLayout = |
| 1887 | Context.getASTRecordLayout(LayoutClass); |
| 1888 | CharUnits BaseOffsetInLayoutClass = |
| 1889 | LayoutClassLayout.getVBaseClassOffset(BaseDecl); |
| 1890 | |
| 1891 | LayoutPrimaryAndSecondaryVTables( |
| 1892 | BaseSubobject(BaseDecl, BaseOffset), |
| 1893 | /*BaseIsMorallyVirtual=*/true, |
| 1894 | /*BaseIsVirtualInLayoutClass=*/true, |
| 1895 | BaseOffsetInLayoutClass); |
| 1896 | } |
| 1897 | |
| 1898 | // We only need to check the base for virtual base vtables if it actually |
| 1899 | // has virtual bases. |
| 1900 | if (BaseDecl->getNumVBases()) |
| 1901 | LayoutVTablesForVirtualBases(BaseDecl, VBases); |
| 1902 | } |
| 1903 | } |
| 1904 | |
| 1905 | /// dumpLayout - Dump the vtable layout. |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1906 | void ItaniumVTableBuilder::dumpLayout(raw_ostream &Out) { |
Timur Iskhodzhanov | 1151031 | 2013-06-28 15:42:28 +0000 | [diff] [blame] | 1907 | // FIXME: write more tests that actually use the dumpLayout output to prevent |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 1908 | // ItaniumVTableBuilder regressions. |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1909 | |
| 1910 | if (isBuildingConstructorVTable()) { |
| 1911 | Out << "Construction vtable for ('"; |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 1912 | MostDerivedClass->printQualifiedName(Out); |
| 1913 | Out << "', "; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1914 | Out << MostDerivedClassOffset.getQuantity() << ") in '"; |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 1915 | LayoutClass->printQualifiedName(Out); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1916 | } else { |
| 1917 | Out << "Vtable for '"; |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 1918 | MostDerivedClass->printQualifiedName(Out); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1919 | } |
| 1920 | Out << "' (" << Components.size() << " entries).\n"; |
| 1921 | |
| 1922 | // Iterate through the address points and insert them into a new map where |
| 1923 | // they are keyed by the index and not the base object. |
| 1924 | // Since an address point can be shared by multiple subobjects, we use an |
| 1925 | // STL multimap. |
| 1926 | std::multimap<uint64_t, BaseSubobject> AddressPointsByIndex; |
| 1927 | for (AddressPointsMapTy::const_iterator I = AddressPoints.begin(), |
| 1928 | E = AddressPoints.end(); I != E; ++I) { |
| 1929 | const BaseSubobject& Base = I->first; |
| 1930 | uint64_t Index = I->second; |
| 1931 | |
| 1932 | AddressPointsByIndex.insert(std::make_pair(Index, Base)); |
| 1933 | } |
| 1934 | |
| 1935 | for (unsigned I = 0, E = Components.size(); I != E; ++I) { |
| 1936 | uint64_t Index = I; |
| 1937 | |
| 1938 | Out << llvm::format("%4d | ", I); |
| 1939 | |
| 1940 | const VTableComponent &Component = Components[I]; |
| 1941 | |
| 1942 | // Dump the component. |
| 1943 | switch (Component.getKind()) { |
| 1944 | |
| 1945 | case VTableComponent::CK_VCallOffset: |
| 1946 | Out << "vcall_offset (" |
| 1947 | << Component.getVCallOffset().getQuantity() |
| 1948 | << ")"; |
| 1949 | break; |
| 1950 | |
| 1951 | case VTableComponent::CK_VBaseOffset: |
| 1952 | Out << "vbase_offset (" |
| 1953 | << Component.getVBaseOffset().getQuantity() |
| 1954 | << ")"; |
| 1955 | break; |
| 1956 | |
| 1957 | case VTableComponent::CK_OffsetToTop: |
| 1958 | Out << "offset_to_top (" |
| 1959 | << Component.getOffsetToTop().getQuantity() |
| 1960 | << ")"; |
| 1961 | break; |
| 1962 | |
| 1963 | case VTableComponent::CK_RTTI: |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 1964 | Component.getRTTIDecl()->printQualifiedName(Out); |
| 1965 | Out << " RTTI"; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1966 | break; |
| 1967 | |
| 1968 | case VTableComponent::CK_FunctionPointer: { |
| 1969 | const CXXMethodDecl *MD = Component.getFunctionDecl(); |
| 1970 | |
| 1971 | std::string Str = |
| 1972 | PredefinedExpr::ComputeName(PredefinedExpr::PrettyFunctionNoVirtual, |
| 1973 | MD); |
| 1974 | Out << Str; |
| 1975 | if (MD->isPure()) |
| 1976 | Out << " [pure]"; |
| 1977 | |
David Blaikie | 596d2ca | 2012-10-16 20:25:33 +0000 | [diff] [blame] | 1978 | if (MD->isDeleted()) |
| 1979 | Out << " [deleted]"; |
| 1980 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1981 | ThunkInfo Thunk = VTableThunks.lookup(I); |
| 1982 | if (!Thunk.isEmpty()) { |
| 1983 | // If this function pointer has a return adjustment, dump it. |
| 1984 | if (!Thunk.Return.isEmpty()) { |
| 1985 | Out << "\n [return adjustment: "; |
| 1986 | Out << Thunk.Return.NonVirtual << " non-virtual"; |
| 1987 | |
Timur Iskhodzhanov | 0201432 | 2013-10-30 11:55:43 +0000 | [diff] [blame] | 1988 | if (Thunk.Return.Virtual.Itanium.VBaseOffsetOffset) { |
| 1989 | Out << ", " << Thunk.Return.Virtual.Itanium.VBaseOffsetOffset; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 1990 | Out << " vbase offset offset"; |
| 1991 | } |
| 1992 | |
| 1993 | Out << ']'; |
| 1994 | } |
| 1995 | |
| 1996 | // If this function pointer has a 'this' pointer adjustment, dump it. |
| 1997 | if (!Thunk.This.isEmpty()) { |
| 1998 | Out << "\n [this adjustment: "; |
| 1999 | Out << Thunk.This.NonVirtual << " non-virtual"; |
| 2000 | |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2001 | if (Thunk.This.Virtual.Itanium.VCallOffsetOffset) { |
| 2002 | Out << ", " << Thunk.This.Virtual.Itanium.VCallOffsetOffset; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2003 | Out << " vcall offset offset"; |
| 2004 | } |
| 2005 | |
| 2006 | Out << ']'; |
| 2007 | } |
| 2008 | } |
| 2009 | |
| 2010 | break; |
| 2011 | } |
| 2012 | |
| 2013 | case VTableComponent::CK_CompleteDtorPointer: |
| 2014 | case VTableComponent::CK_DeletingDtorPointer: { |
| 2015 | bool IsComplete = |
| 2016 | Component.getKind() == VTableComponent::CK_CompleteDtorPointer; |
| 2017 | |
| 2018 | const CXXDestructorDecl *DD = Component.getDestructorDecl(); |
| 2019 | |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 2020 | DD->printQualifiedName(Out); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2021 | if (IsComplete) |
| 2022 | Out << "() [complete]"; |
| 2023 | else |
| 2024 | Out << "() [deleting]"; |
| 2025 | |
| 2026 | if (DD->isPure()) |
| 2027 | Out << " [pure]"; |
| 2028 | |
| 2029 | ThunkInfo Thunk = VTableThunks.lookup(I); |
| 2030 | if (!Thunk.isEmpty()) { |
| 2031 | // If this destructor has a 'this' pointer adjustment, dump it. |
| 2032 | if (!Thunk.This.isEmpty()) { |
| 2033 | Out << "\n [this adjustment: "; |
| 2034 | Out << Thunk.This.NonVirtual << " non-virtual"; |
| 2035 | |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2036 | if (Thunk.This.Virtual.Itanium.VCallOffsetOffset) { |
| 2037 | Out << ", " << Thunk.This.Virtual.Itanium.VCallOffsetOffset; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2038 | Out << " vcall offset offset"; |
| 2039 | } |
| 2040 | |
| 2041 | Out << ']'; |
| 2042 | } |
| 2043 | } |
| 2044 | |
| 2045 | break; |
| 2046 | } |
| 2047 | |
| 2048 | case VTableComponent::CK_UnusedFunctionPointer: { |
| 2049 | const CXXMethodDecl *MD = Component.getUnusedFunctionDecl(); |
| 2050 | |
| 2051 | std::string Str = |
| 2052 | PredefinedExpr::ComputeName(PredefinedExpr::PrettyFunctionNoVirtual, |
| 2053 | MD); |
| 2054 | Out << "[unused] " << Str; |
| 2055 | if (MD->isPure()) |
| 2056 | Out << " [pure]"; |
| 2057 | } |
| 2058 | |
| 2059 | } |
| 2060 | |
| 2061 | Out << '\n'; |
| 2062 | |
| 2063 | // Dump the next address point. |
| 2064 | uint64_t NextIndex = Index + 1; |
| 2065 | if (AddressPointsByIndex.count(NextIndex)) { |
| 2066 | if (AddressPointsByIndex.count(NextIndex) == 1) { |
| 2067 | const BaseSubobject &Base = |
| 2068 | AddressPointsByIndex.find(NextIndex)->second; |
| 2069 | |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 2070 | Out << " -- ("; |
| 2071 | Base.getBase()->printQualifiedName(Out); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2072 | Out << ", " << Base.getBaseOffset().getQuantity(); |
| 2073 | Out << ") vtable address --\n"; |
| 2074 | } else { |
| 2075 | CharUnits BaseOffset = |
| 2076 | AddressPointsByIndex.lower_bound(NextIndex)->second.getBaseOffset(); |
| 2077 | |
| 2078 | // We store the class names in a set to get a stable order. |
| 2079 | std::set<std::string> ClassNames; |
| 2080 | for (std::multimap<uint64_t, BaseSubobject>::const_iterator I = |
| 2081 | AddressPointsByIndex.lower_bound(NextIndex), E = |
| 2082 | AddressPointsByIndex.upper_bound(NextIndex); I != E; ++I) { |
| 2083 | assert(I->second.getBaseOffset() == BaseOffset && |
| 2084 | "Invalid base offset!"); |
| 2085 | const CXXRecordDecl *RD = I->second.getBase(); |
| 2086 | ClassNames.insert(RD->getQualifiedNameAsString()); |
| 2087 | } |
| 2088 | |
| 2089 | for (std::set<std::string>::const_iterator I = ClassNames.begin(), |
| 2090 | E = ClassNames.end(); I != E; ++I) { |
| 2091 | Out << " -- (" << *I; |
| 2092 | Out << ", " << BaseOffset.getQuantity() << ") vtable address --\n"; |
| 2093 | } |
| 2094 | } |
| 2095 | } |
| 2096 | } |
| 2097 | |
| 2098 | Out << '\n'; |
| 2099 | |
| 2100 | if (isBuildingConstructorVTable()) |
| 2101 | return; |
| 2102 | |
| 2103 | if (MostDerivedClass->getNumVBases()) { |
| 2104 | // We store the virtual base class names and their offsets in a map to get |
| 2105 | // a stable order. |
| 2106 | |
| 2107 | std::map<std::string, CharUnits> ClassNamesAndOffsets; |
| 2108 | for (VBaseOffsetOffsetsMapTy::const_iterator I = VBaseOffsetOffsets.begin(), |
| 2109 | E = VBaseOffsetOffsets.end(); I != E; ++I) { |
| 2110 | std::string ClassName = I->first->getQualifiedNameAsString(); |
| 2111 | CharUnits OffsetOffset = I->second; |
| 2112 | ClassNamesAndOffsets.insert( |
| 2113 | std::make_pair(ClassName, OffsetOffset)); |
| 2114 | } |
| 2115 | |
| 2116 | Out << "Virtual base offset offsets for '"; |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 2117 | MostDerivedClass->printQualifiedName(Out); |
| 2118 | Out << "' ("; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2119 | Out << ClassNamesAndOffsets.size(); |
| 2120 | Out << (ClassNamesAndOffsets.size() == 1 ? " entry" : " entries") << ").\n"; |
| 2121 | |
| 2122 | for (std::map<std::string, CharUnits>::const_iterator I = |
| 2123 | ClassNamesAndOffsets.begin(), E = ClassNamesAndOffsets.end(); |
| 2124 | I != E; ++I) |
| 2125 | Out << " " << I->first << " | " << I->second.getQuantity() << '\n'; |
| 2126 | |
| 2127 | Out << "\n"; |
| 2128 | } |
| 2129 | |
| 2130 | if (!Thunks.empty()) { |
| 2131 | // We store the method names in a map to get a stable order. |
| 2132 | std::map<std::string, const CXXMethodDecl *> MethodNamesAndDecls; |
| 2133 | |
| 2134 | for (ThunksMapTy::const_iterator I = Thunks.begin(), E = Thunks.end(); |
| 2135 | I != E; ++I) { |
| 2136 | const CXXMethodDecl *MD = I->first; |
| 2137 | std::string MethodName = |
| 2138 | PredefinedExpr::ComputeName(PredefinedExpr::PrettyFunctionNoVirtual, |
| 2139 | MD); |
| 2140 | |
| 2141 | MethodNamesAndDecls.insert(std::make_pair(MethodName, MD)); |
| 2142 | } |
| 2143 | |
| 2144 | for (std::map<std::string, const CXXMethodDecl *>::const_iterator I = |
| 2145 | MethodNamesAndDecls.begin(), E = MethodNamesAndDecls.end(); |
| 2146 | I != E; ++I) { |
| 2147 | const std::string &MethodName = I->first; |
| 2148 | const CXXMethodDecl *MD = I->second; |
| 2149 | |
| 2150 | ThunkInfoVectorTy ThunksVector = Thunks[MD]; |
Timur Iskhodzhanov | ad9d3b8 | 2013-10-09 09:23:58 +0000 | [diff] [blame] | 2151 | std::sort(ThunksVector.begin(), ThunksVector.end(), |
Benjamin Kramer | bbdd764 | 2014-03-01 14:48:57 +0000 | [diff] [blame] | 2152 | [](const ThunkInfo &LHS, const ThunkInfo &RHS) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2153 | assert(LHS.Method == nullptr && RHS.Method == nullptr); |
Benjamin Kramer | a741b8c | 2014-03-03 20:26:46 +0000 | [diff] [blame] | 2154 | return std::tie(LHS.This, LHS.Return) < std::tie(RHS.This, RHS.Return); |
Benjamin Kramer | bbdd764 | 2014-03-01 14:48:57 +0000 | [diff] [blame] | 2155 | }); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2156 | |
| 2157 | Out << "Thunks for '" << MethodName << "' (" << ThunksVector.size(); |
| 2158 | Out << (ThunksVector.size() == 1 ? " entry" : " entries") << ").\n"; |
| 2159 | |
| 2160 | for (unsigned I = 0, E = ThunksVector.size(); I != E; ++I) { |
| 2161 | const ThunkInfo &Thunk = ThunksVector[I]; |
| 2162 | |
| 2163 | Out << llvm::format("%4d | ", I); |
| 2164 | |
| 2165 | // If this function pointer has a return pointer adjustment, dump it. |
| 2166 | if (!Thunk.Return.isEmpty()) { |
Timur Iskhodzhanov | 1151031 | 2013-06-28 15:42:28 +0000 | [diff] [blame] | 2167 | Out << "return adjustment: " << Thunk.Return.NonVirtual; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2168 | Out << " non-virtual"; |
Timur Iskhodzhanov | 0201432 | 2013-10-30 11:55:43 +0000 | [diff] [blame] | 2169 | if (Thunk.Return.Virtual.Itanium.VBaseOffsetOffset) { |
| 2170 | Out << ", " << Thunk.Return.Virtual.Itanium.VBaseOffsetOffset; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2171 | Out << " vbase offset offset"; |
| 2172 | } |
| 2173 | |
| 2174 | if (!Thunk.This.isEmpty()) |
| 2175 | Out << "\n "; |
| 2176 | } |
| 2177 | |
| 2178 | // If this function pointer has a 'this' pointer adjustment, dump it. |
| 2179 | if (!Thunk.This.isEmpty()) { |
| 2180 | Out << "this adjustment: "; |
| 2181 | Out << Thunk.This.NonVirtual << " non-virtual"; |
| 2182 | |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2183 | if (Thunk.This.Virtual.Itanium.VCallOffsetOffset) { |
| 2184 | Out << ", " << Thunk.This.Virtual.Itanium.VCallOffsetOffset; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2185 | Out << " vcall offset offset"; |
| 2186 | } |
| 2187 | } |
| 2188 | |
| 2189 | Out << '\n'; |
| 2190 | } |
| 2191 | |
| 2192 | Out << '\n'; |
| 2193 | } |
| 2194 | } |
| 2195 | |
| 2196 | // Compute the vtable indices for all the member functions. |
| 2197 | // Store them in a map keyed by the index so we'll get a sorted table. |
| 2198 | std::map<uint64_t, std::string> IndicesMap; |
| 2199 | |
Aaron Ballman | 2b124d1 | 2014-03-13 16:36:16 +0000 | [diff] [blame] | 2200 | for (const auto *MD : MostDerivedClass->methods()) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2201 | // We only want virtual member functions. |
| 2202 | if (!MD->isVirtual()) |
| 2203 | continue; |
Reid Kleckner | 1cbd9aa | 2015-02-25 19:17:48 +0000 | [diff] [blame] | 2204 | MD = MD->getCanonicalDecl(); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2205 | |
| 2206 | std::string MethodName = |
| 2207 | PredefinedExpr::ComputeName(PredefinedExpr::PrettyFunctionNoVirtual, |
| 2208 | MD); |
| 2209 | |
| 2210 | if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) { |
Timur Iskhodzhanov | 8b5987e | 2013-09-27 14:48:01 +0000 | [diff] [blame] | 2211 | GlobalDecl GD(DD, Dtor_Complete); |
| 2212 | assert(MethodVTableIndices.count(GD)); |
| 2213 | uint64_t VTableIndex = MethodVTableIndices[GD]; |
| 2214 | IndicesMap[VTableIndex] = MethodName + " [complete]"; |
| 2215 | IndicesMap[VTableIndex + 1] = MethodName + " [deleting]"; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2216 | } else { |
Timur Iskhodzhanov | 05e3670 | 2013-06-05 14:05:50 +0000 | [diff] [blame] | 2217 | assert(MethodVTableIndices.count(MD)); |
| 2218 | IndicesMap[MethodVTableIndices[MD]] = MethodName; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2219 | } |
| 2220 | } |
| 2221 | |
| 2222 | // Print the vtable indices for all the member functions. |
| 2223 | if (!IndicesMap.empty()) { |
| 2224 | Out << "VTable indices for '"; |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 2225 | MostDerivedClass->printQualifiedName(Out); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2226 | Out << "' (" << IndicesMap.size() << " entries).\n"; |
| 2227 | |
| 2228 | for (std::map<uint64_t, std::string>::const_iterator I = IndicesMap.begin(), |
| 2229 | E = IndicesMap.end(); I != E; ++I) { |
| 2230 | uint64_t VTableIndex = I->first; |
| 2231 | const std::string &MethodName = I->second; |
| 2232 | |
Timur Iskhodzhanov | 05e3670 | 2013-06-05 14:05:50 +0000 | [diff] [blame] | 2233 | Out << llvm::format("%4" PRIu64 " | ", VTableIndex) << MethodName |
Benjamin Kramer | 5291e68 | 2012-03-10 02:06:27 +0000 | [diff] [blame] | 2234 | << '\n'; |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2235 | } |
| 2236 | } |
| 2237 | |
| 2238 | Out << '\n'; |
| 2239 | } |
Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame^] | 2240 | } |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2241 | |
| 2242 | VTableLayout::VTableLayout(uint64_t NumVTableComponents, |
| 2243 | const VTableComponent *VTableComponents, |
| 2244 | uint64_t NumVTableThunks, |
| 2245 | const VTableThunkTy *VTableThunks, |
Timur Iskhodzhanov | 52b8a05 | 2013-01-21 13:02:41 +0000 | [diff] [blame] | 2246 | const AddressPointsMapTy &AddressPoints, |
| 2247 | bool IsMicrosoftABI) |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2248 | : NumVTableComponents(NumVTableComponents), |
| 2249 | VTableComponents(new VTableComponent[NumVTableComponents]), |
| 2250 | NumVTableThunks(NumVTableThunks), |
| 2251 | VTableThunks(new VTableThunkTy[NumVTableThunks]), |
Timur Iskhodzhanov | 52b8a05 | 2013-01-21 13:02:41 +0000 | [diff] [blame] | 2252 | AddressPoints(AddressPoints), |
| 2253 | IsMicrosoftABI(IsMicrosoftABI) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2254 | std::copy(VTableComponents, VTableComponents+NumVTableComponents, |
Benjamin Kramer | e298063 | 2012-04-14 14:13:43 +0000 | [diff] [blame] | 2255 | this->VTableComponents.get()); |
| 2256 | std::copy(VTableThunks, VTableThunks+NumVTableThunks, |
| 2257 | this->VTableThunks.get()); |
Timur Iskhodzhanov | ad9d3b8 | 2013-10-09 09:23:58 +0000 | [diff] [blame] | 2258 | std::sort(this->VTableThunks.get(), |
| 2259 | this->VTableThunks.get() + NumVTableThunks, |
Benjamin Kramer | bbdd764 | 2014-03-01 14:48:57 +0000 | [diff] [blame] | 2260 | [](const VTableLayout::VTableThunkTy &LHS, |
| 2261 | const VTableLayout::VTableThunkTy &RHS) { |
| 2262 | assert((LHS.first != RHS.first || LHS.second == RHS.second) && |
| 2263 | "Different thunks should have unique indices!"); |
| 2264 | return LHS.first < RHS.first; |
| 2265 | }); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2266 | } |
| 2267 | |
Benjamin Kramer | e298063 | 2012-04-14 14:13:43 +0000 | [diff] [blame] | 2268 | VTableLayout::~VTableLayout() { } |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2269 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 2270 | ItaniumVTableContext::ItaniumVTableContext(ASTContext &Context) |
Reid Kleckner | b60a3d5 | 2013-12-20 23:58:52 +0000 | [diff] [blame] | 2271 | : VTableContextBase(/*MS=*/false) {} |
Timur Iskhodzhanov | 52b8a05 | 2013-01-21 13:02:41 +0000 | [diff] [blame] | 2272 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 2273 | ItaniumVTableContext::~ItaniumVTableContext() { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2274 | llvm::DeleteContainerSeconds(VTableLayouts); |
| 2275 | } |
| 2276 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 2277 | uint64_t ItaniumVTableContext::getMethodVTableIndex(GlobalDecl GD) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2278 | MethodVTableIndicesTy::iterator I = MethodVTableIndices.find(GD); |
| 2279 | if (I != MethodVTableIndices.end()) |
| 2280 | return I->second; |
| 2281 | |
| 2282 | const CXXRecordDecl *RD = cast<CXXMethodDecl>(GD.getDecl())->getParent(); |
| 2283 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2284 | computeVTableRelatedInformation(RD); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2285 | |
| 2286 | I = MethodVTableIndices.find(GD); |
| 2287 | assert(I != MethodVTableIndices.end() && "Did not find index!"); |
| 2288 | return I->second; |
| 2289 | } |
| 2290 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 2291 | CharUnits |
| 2292 | ItaniumVTableContext::getVirtualBaseOffsetOffset(const CXXRecordDecl *RD, |
| 2293 | const CXXRecordDecl *VBase) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2294 | ClassPairTy ClassPair(RD, VBase); |
| 2295 | |
| 2296 | VirtualBaseClassOffsetOffsetsMapTy::iterator I = |
| 2297 | VirtualBaseClassOffsetOffsets.find(ClassPair); |
| 2298 | if (I != VirtualBaseClassOffsetOffsets.end()) |
| 2299 | return I->second; |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2300 | |
| 2301 | VCallAndVBaseOffsetBuilder Builder(RD, RD, /*FinalOverriders=*/nullptr, |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2302 | BaseSubobject(RD, CharUnits::Zero()), |
| 2303 | /*BaseIsVirtual=*/false, |
| 2304 | /*OffsetInLayoutClass=*/CharUnits::Zero()); |
| 2305 | |
| 2306 | for (VCallAndVBaseOffsetBuilder::VBaseOffsetOffsetsMapTy::const_iterator I = |
| 2307 | Builder.getVBaseOffsetOffsets().begin(), |
| 2308 | E = Builder.getVBaseOffsetOffsets().end(); I != E; ++I) { |
| 2309 | // Insert all types. |
| 2310 | ClassPairTy ClassPair(RD, I->first); |
| 2311 | |
| 2312 | VirtualBaseClassOffsetOffsets.insert( |
| 2313 | std::make_pair(ClassPair, I->second)); |
| 2314 | } |
| 2315 | |
| 2316 | I = VirtualBaseClassOffsetOffsets.find(ClassPair); |
| 2317 | assert(I != VirtualBaseClassOffsetOffsets.end() && "Did not find index!"); |
| 2318 | |
| 2319 | return I->second; |
| 2320 | } |
| 2321 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 2322 | static VTableLayout *CreateVTableLayout(const ItaniumVTableBuilder &Builder) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2323 | SmallVector<VTableLayout::VTableThunkTy, 1> |
| 2324 | VTableThunks(Builder.vtable_thunks_begin(), Builder.vtable_thunks_end()); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2325 | |
| 2326 | return new VTableLayout(Builder.getNumVTableComponents(), |
| 2327 | Builder.vtable_component_begin(), |
| 2328 | VTableThunks.size(), |
| 2329 | VTableThunks.data(), |
Timur Iskhodzhanov | 52b8a05 | 2013-01-21 13:02:41 +0000 | [diff] [blame] | 2330 | Builder.getAddressPoints(), |
Timur Iskhodzhanov | 8b5987e | 2013-09-27 14:48:01 +0000 | [diff] [blame] | 2331 | /*IsMicrosoftABI=*/false); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2332 | } |
| 2333 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 2334 | void |
| 2335 | ItaniumVTableContext::computeVTableRelatedInformation(const CXXRecordDecl *RD) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2336 | const VTableLayout *&Entry = VTableLayouts[RD]; |
| 2337 | |
| 2338 | // Check if we've computed this information before. |
| 2339 | if (Entry) |
| 2340 | return; |
| 2341 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 2342 | ItaniumVTableBuilder Builder(*this, RD, CharUnits::Zero(), |
| 2343 | /*MostDerivedClassIsVirtual=*/0, RD); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2344 | Entry = CreateVTableLayout(Builder); |
| 2345 | |
Timur Iskhodzhanov | 05e3670 | 2013-06-05 14:05:50 +0000 | [diff] [blame] | 2346 | MethodVTableIndices.insert(Builder.vtable_indices_begin(), |
| 2347 | Builder.vtable_indices_end()); |
| 2348 | |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2349 | // Add the known thunks. |
| 2350 | Thunks.insert(Builder.thunks_begin(), Builder.thunks_end()); |
| 2351 | |
| 2352 | // If we don't have the vbase information for this class, insert it. |
| 2353 | // getVirtualBaseOffsetOffset will compute it separately without computing |
| 2354 | // the rest of the vtable related information. |
| 2355 | if (!RD->getNumVBases()) |
| 2356 | return; |
| 2357 | |
Timur Iskhodzhanov | 7f55a45 | 2013-07-02 16:00:40 +0000 | [diff] [blame] | 2358 | const CXXRecordDecl *VBase = |
| 2359 | RD->vbases_begin()->getType()->getAsCXXRecordDecl(); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2360 | |
| 2361 | if (VirtualBaseClassOffsetOffsets.count(std::make_pair(RD, VBase))) |
| 2362 | return; |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 2363 | |
| 2364 | for (ItaniumVTableBuilder::VBaseOffsetOffsetsMapTy::const_iterator |
| 2365 | I = Builder.getVBaseOffsetOffsets().begin(), |
| 2366 | E = Builder.getVBaseOffsetOffsets().end(); |
| 2367 | I != E; ++I) { |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2368 | // Insert all types. |
| 2369 | ClassPairTy ClassPair(RD, I->first); |
| 2370 | |
| 2371 | VirtualBaseClassOffsetOffsets.insert(std::make_pair(ClassPair, I->second)); |
| 2372 | } |
| 2373 | } |
| 2374 | |
Timur Iskhodzhanov | e1ebc5f | 2013-10-09 11:33:51 +0000 | [diff] [blame] | 2375 | VTableLayout *ItaniumVTableContext::createConstructionVTableLayout( |
| 2376 | const CXXRecordDecl *MostDerivedClass, CharUnits MostDerivedClassOffset, |
| 2377 | bool MostDerivedClassIsVirtual, const CXXRecordDecl *LayoutClass) { |
| 2378 | ItaniumVTableBuilder Builder(*this, MostDerivedClass, MostDerivedClassOffset, |
| 2379 | MostDerivedClassIsVirtual, LayoutClass); |
Peter Collingbourne | cfd2356 | 2011-09-26 01:57:12 +0000 | [diff] [blame] | 2380 | return CreateVTableLayout(Builder); |
| 2381 | } |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2382 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2383 | namespace { |
| 2384 | |
| 2385 | // Vtables in the Microsoft ABI are different from the Itanium ABI. |
| 2386 | // |
| 2387 | // The main differences are: |
| 2388 | // 1. Separate vftable and vbtable. |
| 2389 | // |
| 2390 | // 2. Each subobject with a vfptr gets its own vftable rather than an address |
| 2391 | // point in a single vtable shared between all the subobjects. |
| 2392 | // Each vftable is represented by a separate section and virtual calls |
| 2393 | // must be done using the vftable which has a slot for the function to be |
| 2394 | // called. |
| 2395 | // |
| 2396 | // 3. Virtual method definitions expect their 'this' parameter to point to the |
| 2397 | // first vfptr whose table provides a compatible overridden method. In many |
| 2398 | // cases, this permits the original vf-table entry to directly call |
| 2399 | // the method instead of passing through a thunk. |
Timur Iskhodzhanov | 46a18ef | 2014-11-14 14:10:15 +0000 | [diff] [blame] | 2400 | // See example before VFTableBuilder::ComputeThisOffset below. |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2401 | // |
| 2402 | // A compatible overridden method is one which does not have a non-trivial |
| 2403 | // covariant-return adjustment. |
| 2404 | // |
| 2405 | // The first vfptr is the one with the lowest offset in the complete-object |
| 2406 | // layout of the defining class, and the method definition will subtract |
| 2407 | // that constant offset from the parameter value to get the real 'this' |
| 2408 | // value. Therefore, if the offset isn't really constant (e.g. if a virtual |
| 2409 | // function defined in a virtual base is overridden in a more derived |
| 2410 | // virtual base and these bases have a reverse order in the complete |
| 2411 | // object), the vf-table may require a this-adjustment thunk. |
| 2412 | // |
| 2413 | // 4. vftables do not contain new entries for overrides that merely require |
| 2414 | // this-adjustment. Together with #3, this keeps vf-tables smaller and |
| 2415 | // eliminates the need for this-adjustment thunks in many cases, at the cost |
| 2416 | // of often requiring redundant work to adjust the "this" pointer. |
| 2417 | // |
| 2418 | // 5. Instead of VTT and constructor vtables, vbtables and vtordisps are used. |
| 2419 | // Vtordisps are emitted into the class layout if a class has |
| 2420 | // a) a user-defined ctor/dtor |
| 2421 | // and |
| 2422 | // b) a method overriding a method in a virtual base. |
Timur Iskhodzhanov | 46a18ef | 2014-11-14 14:10:15 +0000 | [diff] [blame] | 2423 | // |
| 2424 | // To get a better understanding of this code, |
| 2425 | // you might want to see examples in test/CodeGenCXX/microsoft-abi-vtables-*.cpp |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2426 | |
| 2427 | class VFTableBuilder { |
| 2428 | public: |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 2429 | typedef MicrosoftVTableContext::MethodVFTableLocation MethodVFTableLocation; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2430 | |
| 2431 | typedef llvm::DenseMap<GlobalDecl, MethodVFTableLocation> |
| 2432 | MethodVFTableLocationsTy; |
| 2433 | |
Timur Iskhodzhanov | ba55702 | 2014-03-20 20:38:34 +0000 | [diff] [blame] | 2434 | typedef llvm::iterator_range<MethodVFTableLocationsTy::const_iterator> |
| 2435 | method_locations_range; |
| 2436 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2437 | private: |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 2438 | /// VTables - Global vtable information. |
| 2439 | MicrosoftVTableContext &VTables; |
| 2440 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2441 | /// Context - The ASTContext which we will use for layout information. |
| 2442 | ASTContext &Context; |
| 2443 | |
| 2444 | /// MostDerivedClass - The most derived class for which we're building this |
| 2445 | /// vtable. |
| 2446 | const CXXRecordDecl *MostDerivedClass; |
| 2447 | |
| 2448 | const ASTRecordLayout &MostDerivedClassLayout; |
| 2449 | |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 2450 | const VPtrInfo &WhichVFPtr; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2451 | |
| 2452 | /// FinalOverriders - The final overriders of the most derived class. |
| 2453 | const FinalOverriders Overriders; |
| 2454 | |
| 2455 | /// Components - The components of the vftable being built. |
| 2456 | SmallVector<VTableComponent, 64> Components; |
| 2457 | |
| 2458 | MethodVFTableLocationsTy MethodVFTableLocations; |
| 2459 | |
David Majnemer | 3c7228e | 2014-07-01 21:10:07 +0000 | [diff] [blame] | 2460 | /// \brief Does this class have an RTTI component? |
| 2461 | bool HasRTTIComponent; |
| 2462 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2463 | /// MethodInfo - Contains information about a method in a vtable. |
| 2464 | /// (Used for computing 'this' pointer adjustment thunks. |
| 2465 | struct MethodInfo { |
| 2466 | /// VBTableIndex - The nonzero index in the vbtable that |
| 2467 | /// this method's base has, or zero. |
| 2468 | const uint64_t VBTableIndex; |
| 2469 | |
| 2470 | /// VFTableIndex - The index in the vftable that this method has. |
| 2471 | const uint64_t VFTableIndex; |
| 2472 | |
| 2473 | /// Shadowed - Indicates if this vftable slot is shadowed by |
| 2474 | /// a slot for a covariant-return override. If so, it shouldn't be printed |
| 2475 | /// or used for vcalls in the most derived class. |
| 2476 | bool Shadowed; |
| 2477 | |
Timur Iskhodzhanov | 16055e7 | 2014-08-10 11:40:51 +0000 | [diff] [blame] | 2478 | /// UsesExtraSlot - Indicates if this vftable slot was created because |
| 2479 | /// any of the overridden slots required a return adjusting thunk. |
| 2480 | bool UsesExtraSlot; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2481 | |
Timur Iskhodzhanov | 16055e7 | 2014-08-10 11:40:51 +0000 | [diff] [blame] | 2482 | MethodInfo(uint64_t VBTableIndex, uint64_t VFTableIndex, |
| 2483 | bool UsesExtraSlot = false) |
| 2484 | : VBTableIndex(VBTableIndex), VFTableIndex(VFTableIndex), |
| 2485 | Shadowed(false), UsesExtraSlot(UsesExtraSlot) {} |
| 2486 | |
| 2487 | MethodInfo() |
| 2488 | : VBTableIndex(0), VFTableIndex(0), Shadowed(false), |
| 2489 | UsesExtraSlot(false) {} |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2490 | }; |
| 2491 | |
| 2492 | typedef llvm::DenseMap<const CXXMethodDecl *, MethodInfo> MethodInfoMapTy; |
| 2493 | |
| 2494 | /// MethodInfoMap - The information for all methods in the vftable we're |
| 2495 | /// currently building. |
| 2496 | MethodInfoMapTy MethodInfoMap; |
| 2497 | |
| 2498 | typedef llvm::DenseMap<uint64_t, ThunkInfo> VTableThunksMapTy; |
| 2499 | |
| 2500 | /// VTableThunks - The thunks by vftable index in the vftable currently being |
| 2501 | /// built. |
| 2502 | VTableThunksMapTy VTableThunks; |
| 2503 | |
| 2504 | typedef SmallVector<ThunkInfo, 1> ThunkInfoVectorTy; |
| 2505 | typedef llvm::DenseMap<const CXXMethodDecl *, ThunkInfoVectorTy> ThunksMapTy; |
| 2506 | |
| 2507 | /// Thunks - A map that contains all the thunks needed for all methods in the |
| 2508 | /// most derived class for which the vftable is currently being built. |
| 2509 | ThunksMapTy Thunks; |
| 2510 | |
| 2511 | /// AddThunk - Add a thunk for the given method. |
| 2512 | void AddThunk(const CXXMethodDecl *MD, const ThunkInfo &Thunk) { |
| 2513 | SmallVector<ThunkInfo, 1> &ThunksVector = Thunks[MD]; |
| 2514 | |
| 2515 | // Check if we have this thunk already. |
| 2516 | if (std::find(ThunksVector.begin(), ThunksVector.end(), Thunk) != |
| 2517 | ThunksVector.end()) |
| 2518 | return; |
| 2519 | |
| 2520 | ThunksVector.push_back(Thunk); |
| 2521 | } |
| 2522 | |
| 2523 | /// ComputeThisOffset - Returns the 'this' argument offset for the given |
Timur Iskhodzhanov | 3a9ac93 | 2014-03-04 18:17:38 +0000 | [diff] [blame] | 2524 | /// method, relative to the beginning of the MostDerivedClass. |
| 2525 | CharUnits ComputeThisOffset(FinalOverriders::OverriderInfo Overrider); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2526 | |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2527 | void CalculateVtordispAdjustment(FinalOverriders::OverriderInfo Overrider, |
| 2528 | CharUnits ThisOffset, ThisAdjustment &TA); |
| 2529 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2530 | /// AddMethod - Add a single virtual member function to the vftable |
| 2531 | /// components vector. |
Timur Iskhodzhanov | ad9d3b8 | 2013-10-09 09:23:58 +0000 | [diff] [blame] | 2532 | void AddMethod(const CXXMethodDecl *MD, ThunkInfo TI) { |
Timur Iskhodzhanov | a895758 | 2014-03-07 09:34:59 +0000 | [diff] [blame] | 2533 | if (!TI.isEmpty()) { |
| 2534 | VTableThunks[Components.size()] = TI; |
| 2535 | AddThunk(MD, TI); |
| 2536 | } |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2537 | if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) { |
Timur Iskhodzhanov | ad9d3b8 | 2013-10-09 09:23:58 +0000 | [diff] [blame] | 2538 | assert(TI.Return.isEmpty() && |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2539 | "Destructor can't have return adjustment!"); |
| 2540 | Components.push_back(VTableComponent::MakeDeletingDtor(DD)); |
| 2541 | } else { |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2542 | Components.push_back(VTableComponent::MakeFunction(MD)); |
| 2543 | } |
| 2544 | } |
| 2545 | |
| 2546 | /// AddMethods - Add the methods of this base subobject and the relevant |
| 2547 | /// subbases to the vftable we're currently laying out. |
| 2548 | void AddMethods(BaseSubobject Base, unsigned BaseDepth, |
| 2549 | const CXXRecordDecl *LastVBase, |
| 2550 | BasesSetVectorTy &VisitedBases); |
| 2551 | |
| 2552 | void LayoutVFTable() { |
David Majnemer | 6e9ae78 | 2014-09-22 20:39:37 +0000 | [diff] [blame] | 2553 | // RTTI data goes before all other entries. |
| 2554 | if (HasRTTIComponent) |
| 2555 | Components.push_back(VTableComponent::MakeRTTI(MostDerivedClass)); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2556 | |
| 2557 | BasesSetVectorTy VisitedBases; |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2558 | AddMethods(BaseSubobject(MostDerivedClass, CharUnits::Zero()), 0, nullptr, |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2559 | VisitedBases); |
David Majnemer | a9b7e66 | 2014-09-26 08:07:55 +0000 | [diff] [blame] | 2560 | assert((HasRTTIComponent ? Components.size() - 1 : Components.size()) && |
| 2561 | "vftable can't be empty"); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2562 | |
| 2563 | assert(MethodVFTableLocations.empty()); |
| 2564 | for (MethodInfoMapTy::const_iterator I = MethodInfoMap.begin(), |
| 2565 | E = MethodInfoMap.end(); I != E; ++I) { |
| 2566 | const CXXMethodDecl *MD = I->first; |
| 2567 | const MethodInfo &MI = I->second; |
| 2568 | // Skip the methods that the MostDerivedClass didn't override |
| 2569 | // and the entries shadowed by return adjusting thunks. |
| 2570 | if (MD->getParent() != MostDerivedClass || MI.Shadowed) |
| 2571 | continue; |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 2572 | MethodVFTableLocation Loc(MI.VBTableIndex, WhichVFPtr.getVBaseWithVPtr(), |
| 2573 | WhichVFPtr.NonVirtualOffset, MI.VFTableIndex); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2574 | if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) { |
| 2575 | MethodVFTableLocations[GlobalDecl(DD, Dtor_Deleting)] = Loc; |
| 2576 | } else { |
| 2577 | MethodVFTableLocations[MD] = Loc; |
| 2578 | } |
| 2579 | } |
| 2580 | } |
| 2581 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2582 | public: |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 2583 | VFTableBuilder(MicrosoftVTableContext &VTables, |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 2584 | const CXXRecordDecl *MostDerivedClass, const VPtrInfo *Which) |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 2585 | : VTables(VTables), |
| 2586 | Context(MostDerivedClass->getASTContext()), |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2587 | MostDerivedClass(MostDerivedClass), |
| 2588 | MostDerivedClassLayout(Context.getASTRecordLayout(MostDerivedClass)), |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 2589 | WhichVFPtr(*Which), |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2590 | Overriders(MostDerivedClass, CharUnits(), MostDerivedClass) { |
David Majnemer | d905da4 | 2014-07-01 20:30:31 +0000 | [diff] [blame] | 2591 | // Only include the RTTI component if we know that we will provide a |
| 2592 | // definition of the vftable. |
David Majnemer | f607234 | 2014-07-01 22:24:56 +0000 | [diff] [blame] | 2593 | HasRTTIComponent = Context.getLangOpts().RTTIData && |
David Majnemer | a03849b | 2015-03-18 22:04:43 +0000 | [diff] [blame] | 2594 | !MostDerivedClass->hasAttr<DLLImportAttr>() && |
| 2595 | MostDerivedClass->getTemplateSpecializationKind() != |
| 2596 | TSK_ExplicitInstantiationDeclaration; |
David Majnemer | d905da4 | 2014-07-01 20:30:31 +0000 | [diff] [blame] | 2597 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2598 | LayoutVFTable(); |
| 2599 | |
| 2600 | if (Context.getLangOpts().DumpVTableLayouts) |
Reid Kleckner | 5bc6d0f | 2013-11-08 21:28:00 +0000 | [diff] [blame] | 2601 | dumpLayout(llvm::outs()); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2602 | } |
| 2603 | |
| 2604 | uint64_t getNumThunks() const { return Thunks.size(); } |
| 2605 | |
| 2606 | ThunksMapTy::const_iterator thunks_begin() const { return Thunks.begin(); } |
| 2607 | |
| 2608 | ThunksMapTy::const_iterator thunks_end() const { return Thunks.end(); } |
| 2609 | |
Timur Iskhodzhanov | ba55702 | 2014-03-20 20:38:34 +0000 | [diff] [blame] | 2610 | method_locations_range vtable_locations() const { |
| 2611 | return method_locations_range(MethodVFTableLocations.begin(), |
| 2612 | MethodVFTableLocations.end()); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2613 | } |
| 2614 | |
| 2615 | uint64_t getNumVTableComponents() const { return Components.size(); } |
| 2616 | |
| 2617 | const VTableComponent *vtable_component_begin() const { |
| 2618 | return Components.begin(); |
| 2619 | } |
| 2620 | |
| 2621 | const VTableComponent *vtable_component_end() const { |
| 2622 | return Components.end(); |
| 2623 | } |
| 2624 | |
| 2625 | VTableThunksMapTy::const_iterator vtable_thunks_begin() const { |
| 2626 | return VTableThunks.begin(); |
| 2627 | } |
| 2628 | |
| 2629 | VTableThunksMapTy::const_iterator vtable_thunks_end() const { |
| 2630 | return VTableThunks.end(); |
| 2631 | } |
| 2632 | |
| 2633 | void dumpLayout(raw_ostream &); |
| 2634 | }; |
| 2635 | |
| 2636 | /// InitialOverriddenDefinitionCollector - Finds the set of least derived bases |
| 2637 | /// that define the given method. |
| 2638 | struct InitialOverriddenDefinitionCollector { |
| 2639 | BasesSetVectorTy Bases; |
| 2640 | OverriddenMethodsSetTy VisitedOverriddenMethods; |
| 2641 | |
| 2642 | bool visit(const CXXMethodDecl *OverriddenMD) { |
| 2643 | if (OverriddenMD->size_overridden_methods() == 0) |
| 2644 | Bases.insert(OverriddenMD->getParent()); |
| 2645 | // Don't recurse on this method if we've already collected it. |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 2646 | return VisitedOverriddenMethods.insert(OverriddenMD).second; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2647 | } |
| 2648 | }; |
| 2649 | |
Benjamin Kramer | d5748c7 | 2015-03-23 12:31:05 +0000 | [diff] [blame] | 2650 | } // end namespace |
| 2651 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2652 | static bool BaseInSet(const CXXBaseSpecifier *Specifier, |
| 2653 | CXXBasePath &Path, void *BasesSet) { |
| 2654 | BasesSetVectorTy *Bases = (BasesSetVectorTy *)BasesSet; |
| 2655 | return Bases->count(Specifier->getType()->getAsCXXRecordDecl()); |
| 2656 | } |
| 2657 | |
Timur Iskhodzhanov | 46a18ef | 2014-11-14 14:10:15 +0000 | [diff] [blame] | 2658 | // Let's study one class hierarchy as an example: |
| 2659 | // struct A { |
| 2660 | // virtual void f(); |
| 2661 | // int x; |
| 2662 | // }; |
| 2663 | // |
| 2664 | // struct B : virtual A { |
| 2665 | // virtual void f(); |
| 2666 | // }; |
| 2667 | // |
| 2668 | // Record layouts: |
| 2669 | // struct A: |
Timur Iskhodzhanov | 4d28002 | 2014-11-14 14:16:34 +0000 | [diff] [blame] | 2670 | // 0 | (A vftable pointer) |
Timur Iskhodzhanov | 46a18ef | 2014-11-14 14:10:15 +0000 | [diff] [blame] | 2671 | // 4 | int x |
| 2672 | // |
| 2673 | // struct B: |
Timur Iskhodzhanov | 4d28002 | 2014-11-14 14:16:34 +0000 | [diff] [blame] | 2674 | // 0 | (B vbtable pointer) |
| 2675 | // 4 | struct A (virtual base) |
| 2676 | // 4 | (A vftable pointer) |
Timur Iskhodzhanov | 46a18ef | 2014-11-14 14:10:15 +0000 | [diff] [blame] | 2677 | // 8 | int x |
| 2678 | // |
| 2679 | // Let's assume we have a pointer to the A part of an object of dynamic type B: |
| 2680 | // B b; |
| 2681 | // A *a = (A*)&b; |
| 2682 | // a->f(); |
| 2683 | // |
| 2684 | // In this hierarchy, f() belongs to the vftable of A, so B::f() expects |
| 2685 | // "this" parameter to point at the A subobject, which is B+4. |
| 2686 | // In the B::f() prologue, it adjusts "this" back to B by subtracting 4, |
Nico Weber | cda5c7c | 2014-11-29 23:57:35 +0000 | [diff] [blame] | 2687 | // performed as a *static* adjustment. |
Timur Iskhodzhanov | 46a18ef | 2014-11-14 14:10:15 +0000 | [diff] [blame] | 2688 | // |
| 2689 | // Interesting thing happens when we alter the relative placement of A and B |
| 2690 | // subobjects in a class: |
| 2691 | // struct C : virtual B { }; |
| 2692 | // |
| 2693 | // C c; |
| 2694 | // A *a = (A*)&c; |
| 2695 | // a->f(); |
| 2696 | // |
| 2697 | // Respective record layout is: |
| 2698 | // 0 | (C vbtable pointer) |
| 2699 | // 4 | struct A (virtual base) |
| 2700 | // 4 | (A vftable pointer) |
| 2701 | // 8 | int x |
| 2702 | // 12 | struct B (virtual base) |
| 2703 | // 12 | (B vbtable pointer) |
| 2704 | // |
| 2705 | // The final overrider of f() in class C is still B::f(), so B+4 should be |
| 2706 | // passed as "this" to that code. However, "a" points at B-8, so the respective |
| 2707 | // vftable entry should hold a thunk that adds 12 to the "this" argument before |
| 2708 | // performing a tail call to B::f(). |
| 2709 | // |
| 2710 | // With this example in mind, we can now calculate the 'this' argument offset |
| 2711 | // for the given method, relative to the beginning of the MostDerivedClass. |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2712 | CharUnits |
Timur Iskhodzhanov | 3a9ac93 | 2014-03-04 18:17:38 +0000 | [diff] [blame] | 2713 | VFTableBuilder::ComputeThisOffset(FinalOverriders::OverriderInfo Overrider) { |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2714 | InitialOverriddenDefinitionCollector Collector; |
Timur Iskhodzhanov | 3a9ac93 | 2014-03-04 18:17:38 +0000 | [diff] [blame] | 2715 | visitAllOverriddenMethods(Overrider.Method, Collector); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2716 | |
Timur Iskhodzhanov | a895758 | 2014-03-07 09:34:59 +0000 | [diff] [blame] | 2717 | // If there are no overrides then 'this' is located |
| 2718 | // in the base that defines the method. |
| 2719 | if (Collector.Bases.size() == 0) |
| 2720 | return Overrider.Offset; |
| 2721 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2722 | CXXBasePaths Paths; |
Timur Iskhodzhanov | 3a9ac93 | 2014-03-04 18:17:38 +0000 | [diff] [blame] | 2723 | Overrider.Method->getParent()->lookupInBases(BaseInSet, &Collector.Bases, |
| 2724 | Paths); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2725 | |
| 2726 | // This will hold the smallest this offset among overridees of MD. |
| 2727 | // This implies that an offset of a non-virtual base will dominate an offset |
| 2728 | // of a virtual base to potentially reduce the number of thunks required |
| 2729 | // in the derived classes that inherit this method. |
| 2730 | CharUnits Ret; |
| 2731 | bool First = true; |
| 2732 | |
Timur Iskhodzhanov | ed11ae3 | 2014-04-17 22:01:48 +0000 | [diff] [blame] | 2733 | const ASTRecordLayout &OverriderRDLayout = |
| 2734 | Context.getASTRecordLayout(Overrider.Method->getParent()); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2735 | for (CXXBasePaths::paths_iterator I = Paths.begin(), E = Paths.end(); |
| 2736 | I != E; ++I) { |
| 2737 | const CXXBasePath &Path = (*I); |
Timur Iskhodzhanov | 3a9ac93 | 2014-03-04 18:17:38 +0000 | [diff] [blame] | 2738 | CharUnits ThisOffset = Overrider.Offset; |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2739 | CharUnits LastVBaseOffset; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2740 | |
Nico Weber | d73258a | 2015-05-16 23:49:53 +0000 | [diff] [blame] | 2741 | // For each path from the overrider to the parents of the overridden |
| 2742 | // methods, traverse the path, calculating the this offset in the most |
| 2743 | // derived class. |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2744 | for (int J = 0, F = Path.size(); J != F; ++J) { |
| 2745 | const CXXBasePathElement &Element = Path[J]; |
| 2746 | QualType CurTy = Element.Base->getType(); |
| 2747 | const CXXRecordDecl *PrevRD = Element.Class, |
| 2748 | *CurRD = CurTy->getAsCXXRecordDecl(); |
| 2749 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(PrevRD); |
| 2750 | |
| 2751 | if (Element.Base->isVirtual()) { |
Timur Iskhodzhanov | ed11ae3 | 2014-04-17 22:01:48 +0000 | [diff] [blame] | 2752 | // The interesting things begin when you have virtual inheritance. |
| 2753 | // The final overrider will use a static adjustment equal to the offset |
| 2754 | // of the vbase in the final overrider class. |
| 2755 | // For example, if the final overrider is in a vbase B of the most |
| 2756 | // derived class and it overrides a method of the B's own vbase A, |
| 2757 | // it uses A* as "this". In its prologue, it can cast A* to B* with |
| 2758 | // a static offset. This offset is used regardless of the actual |
| 2759 | // offset of A from B in the most derived class, requiring an |
| 2760 | // this-adjusting thunk in the vftable if A and B are laid out |
| 2761 | // differently in the most derived class. |
| 2762 | LastVBaseOffset = ThisOffset = |
| 2763 | Overrider.Offset + OverriderRDLayout.getVBaseClassOffset(CurRD); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2764 | } else { |
| 2765 | ThisOffset += Layout.getBaseClassOffset(CurRD); |
| 2766 | } |
| 2767 | } |
| 2768 | |
Timur Iskhodzhanov | 3a9ac93 | 2014-03-04 18:17:38 +0000 | [diff] [blame] | 2769 | if (isa<CXXDestructorDecl>(Overrider.Method)) { |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2770 | if (LastVBaseOffset.isZero()) { |
| 2771 | // If a "Base" class has at least one non-virtual base with a virtual |
| 2772 | // destructor, the "Base" virtual destructor will take the address |
| 2773 | // of the "Base" subobject as the "this" argument. |
Timur Iskhodzhanov | 3a9ac93 | 2014-03-04 18:17:38 +0000 | [diff] [blame] | 2774 | ThisOffset = Overrider.Offset; |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2775 | } else { |
| 2776 | // A virtual destructor of a virtual base takes the address of the |
| 2777 | // virtual base subobject as the "this" argument. |
Timur Iskhodzhanov | 3a9ac93 | 2014-03-04 18:17:38 +0000 | [diff] [blame] | 2778 | ThisOffset = LastVBaseOffset; |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2779 | } |
| 2780 | } |
Timur Iskhodzhanov | 62082b7 | 2013-10-16 18:24:06 +0000 | [diff] [blame] | 2781 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2782 | if (Ret > ThisOffset || First) { |
| 2783 | First = false; |
| 2784 | Ret = ThisOffset; |
| 2785 | } |
| 2786 | } |
| 2787 | |
| 2788 | assert(!First && "Method not found in the given subobject?"); |
| 2789 | return Ret; |
| 2790 | } |
| 2791 | |
Timur Iskhodzhanov | 7d19fc1 | 2014-11-17 15:11:05 +0000 | [diff] [blame] | 2792 | // Things are getting even more complex when the "this" adjustment has to |
| 2793 | // use a dynamic offset instead of a static one, or even two dynamic offsets. |
| 2794 | // This is sometimes required when a virtual call happens in the middle of |
| 2795 | // a non-most-derived class construction or destruction. |
| 2796 | // |
| 2797 | // Let's take a look at the following example: |
| 2798 | // struct A { |
| 2799 | // virtual void f(); |
| 2800 | // }; |
| 2801 | // |
| 2802 | // void foo(A *a) { a->f(); } // Knows nothing about siblings of A. |
| 2803 | // |
| 2804 | // struct B : virtual A { |
| 2805 | // virtual void f(); |
| 2806 | // B() { |
| 2807 | // foo(this); |
| 2808 | // } |
| 2809 | // }; |
| 2810 | // |
| 2811 | // struct C : virtual B { |
| 2812 | // virtual void f(); |
| 2813 | // }; |
| 2814 | // |
| 2815 | // Record layouts for these classes are: |
| 2816 | // struct A |
| 2817 | // 0 | (A vftable pointer) |
| 2818 | // |
| 2819 | // struct B |
| 2820 | // 0 | (B vbtable pointer) |
| 2821 | // 4 | (vtordisp for vbase A) |
| 2822 | // 8 | struct A (virtual base) |
| 2823 | // 8 | (A vftable pointer) |
| 2824 | // |
| 2825 | // struct C |
| 2826 | // 0 | (C vbtable pointer) |
| 2827 | // 4 | (vtordisp for vbase A) |
| 2828 | // 8 | struct A (virtual base) // A precedes B! |
| 2829 | // 8 | (A vftable pointer) |
| 2830 | // 12 | struct B (virtual base) |
| 2831 | // 12 | (B vbtable pointer) |
| 2832 | // |
| 2833 | // When one creates an object of type C, the C constructor: |
| 2834 | // - initializes all the vbptrs, then |
| 2835 | // - calls the A subobject constructor |
| 2836 | // (initializes A's vfptr with an address of A vftable), then |
| 2837 | // - calls the B subobject constructor |
| 2838 | // (initializes A's vfptr with an address of B vftable and vtordisp for A), |
| 2839 | // that in turn calls foo(), then |
| 2840 | // - initializes A's vfptr with an address of C vftable and zeroes out the |
| 2841 | // vtordisp |
| 2842 | // FIXME: if a structor knows it belongs to MDC, why doesn't it use a vftable |
| 2843 | // without vtordisp thunks? |
Timur Iskhodzhanov | 7081460 | 2014-11-17 15:53:50 +0000 | [diff] [blame] | 2844 | // FIXME: how are vtordisp handled in the presence of nooverride/final? |
Timur Iskhodzhanov | 7d19fc1 | 2014-11-17 15:11:05 +0000 | [diff] [blame] | 2845 | // |
| 2846 | // When foo() is called, an object with a layout of class C has a vftable |
| 2847 | // referencing B::f() that assumes a B layout, so the "this" adjustments are |
| 2848 | // incorrect, unless an extra adjustment is done. This adjustment is called |
| 2849 | // "vtordisp adjustment". Vtordisp basically holds the difference between the |
| 2850 | // actual location of a vbase in the layout class and the location assumed by |
| 2851 | // the vftable of the class being constructed/destructed. Vtordisp is only |
| 2852 | // needed if "this" escapes a |
| 2853 | // structor (or we can't prove otherwise). |
| 2854 | // [i.e. vtordisp is a dynamic adjustment for a static adjustment, which is an |
| 2855 | // estimation of a dynamic adjustment] |
| 2856 | // |
| 2857 | // foo() gets a pointer to the A vbase and doesn't know anything about B or C, |
| 2858 | // so it just passes that pointer as "this" in a virtual call. |
| 2859 | // If there was no vtordisp, that would just dispatch to B::f(). |
| 2860 | // However, B::f() assumes B+8 is passed as "this", |
| 2861 | // yet the pointer foo() passes along is B-4 (i.e. C+8). |
| 2862 | // An extra adjustment is needed, so we emit a thunk into the B vftable. |
| 2863 | // This vtordisp thunk subtracts the value of vtordisp |
| 2864 | // from the "this" argument (-12) before making a tailcall to B::f(). |
| 2865 | // |
| 2866 | // Let's consider an even more complex example: |
| 2867 | // struct D : virtual B, virtual C { |
| 2868 | // D() { |
| 2869 | // foo(this); |
| 2870 | // } |
| 2871 | // }; |
| 2872 | // |
| 2873 | // struct D |
| 2874 | // 0 | (D vbtable pointer) |
| 2875 | // 4 | (vtordisp for vbase A) |
| 2876 | // 8 | struct A (virtual base) // A precedes both B and C! |
| 2877 | // 8 | (A vftable pointer) |
| 2878 | // 12 | struct B (virtual base) // B precedes C! |
| 2879 | // 12 | (B vbtable pointer) |
| 2880 | // 16 | struct C (virtual base) |
| 2881 | // 16 | (C vbtable pointer) |
| 2882 | // |
| 2883 | // When D::D() calls foo(), we find ourselves in a thunk that should tailcall |
| 2884 | // to C::f(), which assumes C+8 as its "this" parameter. This time, foo() |
| 2885 | // passes along A, which is C-8. The A vtordisp holds |
| 2886 | // "D.vbptr[index_of_A] - offset_of_A_in_D" |
| 2887 | // and we statically know offset_of_A_in_D, so can get a pointer to D. |
| 2888 | // When we know it, we can make an extra vbtable lookup to locate the C vbase |
| 2889 | // and one extra static adjustment to calculate the expected value of C+8. |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2890 | void VFTableBuilder::CalculateVtordispAdjustment( |
| 2891 | FinalOverriders::OverriderInfo Overrider, CharUnits ThisOffset, |
| 2892 | ThisAdjustment &TA) { |
| 2893 | const ASTRecordLayout::VBaseOffsetsMapTy &VBaseMap = |
| 2894 | MostDerivedClassLayout.getVBaseOffsetsMap(); |
| 2895 | const ASTRecordLayout::VBaseOffsetsMapTy::const_iterator &VBaseMapEntry = |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 2896 | VBaseMap.find(WhichVFPtr.getVBaseWithVPtr()); |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2897 | assert(VBaseMapEntry != VBaseMap.end()); |
| 2898 | |
Timur Iskhodzhanov | 6b12850 | 2014-04-22 17:32:02 +0000 | [diff] [blame] | 2899 | // If there's no vtordisp or the final overrider is defined in the same vbase |
| 2900 | // as the initial declaration, we don't need any vtordisp adjustment. |
| 2901 | if (!VBaseMapEntry->second.hasVtorDisp() || |
| 2902 | Overrider.VirtualBase == WhichVFPtr.getVBaseWithVPtr()) |
Timur Iskhodzhanov | 057fa3a | 2014-04-17 11:01:41 +0000 | [diff] [blame] | 2903 | return; |
| 2904 | |
| 2905 | // OK, now we know we need to use a vtordisp thunk. |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2906 | // The implicit vtordisp field is located right before the vbase. |
Timur Iskhodzhanov | 7081460 | 2014-11-17 15:53:50 +0000 | [diff] [blame] | 2907 | CharUnits OffsetOfVBaseWithVFPtr = VBaseMapEntry->second.VBaseOffset; |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2908 | TA.Virtual.Microsoft.VtordispOffset = |
Timur Iskhodzhanov | 7081460 | 2014-11-17 15:53:50 +0000 | [diff] [blame] | 2909 | (OffsetOfVBaseWithVFPtr - WhichVFPtr.FullOffsetInMDC).getQuantity() - 4; |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2910 | |
Timur Iskhodzhanov | 057fa3a | 2014-04-17 11:01:41 +0000 | [diff] [blame] | 2911 | // A simple vtordisp thunk will suffice if the final overrider is defined |
| 2912 | // in either the most derived class or its non-virtual base. |
Timur Iskhodzhanov | 6b12850 | 2014-04-22 17:32:02 +0000 | [diff] [blame] | 2913 | if (Overrider.Method->getParent() == MostDerivedClass || |
| 2914 | !Overrider.VirtualBase) |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2915 | return; |
| 2916 | |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2917 | // Otherwise, we need to do use the dynamic offset of the final overrider |
| 2918 | // in order to get "this" adjustment right. |
| 2919 | TA.Virtual.Microsoft.VBPtrOffset = |
Timur Iskhodzhanov | 7081460 | 2014-11-17 15:53:50 +0000 | [diff] [blame] | 2920 | (OffsetOfVBaseWithVFPtr + WhichVFPtr.NonVirtualOffset - |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2921 | MostDerivedClassLayout.getVBPtrOffset()).getQuantity(); |
| 2922 | TA.Virtual.Microsoft.VBOffsetOffset = |
| 2923 | Context.getTypeSizeInChars(Context.IntTy).getQuantity() * |
Timur Iskhodzhanov | 6b12850 | 2014-04-22 17:32:02 +0000 | [diff] [blame] | 2924 | VTables.getVBTableIndex(MostDerivedClass, Overrider.VirtualBase); |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 2925 | |
| 2926 | TA.NonVirtual = (ThisOffset - Overrider.Offset).getQuantity(); |
| 2927 | } |
| 2928 | |
Timur Iskhodzhanov | 20df98c | 2013-10-06 15:31:37 +0000 | [diff] [blame] | 2929 | static void GroupNewVirtualOverloads( |
| 2930 | const CXXRecordDecl *RD, |
| 2931 | SmallVector<const CXXMethodDecl *, 10> &VirtualMethods) { |
| 2932 | // Put the virtual methods into VirtualMethods in the proper order: |
| 2933 | // 1) Group overloads by declaration name. New groups are added to the |
| 2934 | // vftable in the order of their first declarations in this class |
Reid Kleckner | 6701de2 | 2014-02-19 22:06:10 +0000 | [diff] [blame] | 2935 | // (including overrides and non-virtual methods). |
Timur Iskhodzhanov | 20df98c | 2013-10-06 15:31:37 +0000 | [diff] [blame] | 2936 | // 2) In each group, new overloads appear in the reverse order of declaration. |
| 2937 | typedef SmallVector<const CXXMethodDecl *, 1> MethodGroup; |
| 2938 | SmallVector<MethodGroup, 10> Groups; |
| 2939 | typedef llvm::DenseMap<DeclarationName, unsigned> VisitedGroupIndicesTy; |
| 2940 | VisitedGroupIndicesTy VisitedGroupIndices; |
Aaron Ballman | 2b124d1 | 2014-03-13 16:36:16 +0000 | [diff] [blame] | 2941 | for (const auto *MD : RD->methods()) { |
Reid Kleckner | 240ef57 | 2015-02-25 02:16:02 +0000 | [diff] [blame] | 2942 | MD = MD->getCanonicalDecl(); |
Timur Iskhodzhanov | 20df98c | 2013-10-06 15:31:37 +0000 | [diff] [blame] | 2943 | VisitedGroupIndicesTy::iterator J; |
| 2944 | bool Inserted; |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 2945 | std::tie(J, Inserted) = VisitedGroupIndices.insert( |
Timur Iskhodzhanov | 20df98c | 2013-10-06 15:31:37 +0000 | [diff] [blame] | 2946 | std::make_pair(MD->getDeclName(), Groups.size())); |
| 2947 | if (Inserted) |
Reid Kleckner | 6701de2 | 2014-02-19 22:06:10 +0000 | [diff] [blame] | 2948 | Groups.push_back(MethodGroup()); |
Aaron Ballman | 2b124d1 | 2014-03-13 16:36:16 +0000 | [diff] [blame] | 2949 | if (MD->isVirtual()) |
Timur Iskhodzhanov | 20df98c | 2013-10-06 15:31:37 +0000 | [diff] [blame] | 2950 | Groups[J->second].push_back(MD); |
| 2951 | } |
| 2952 | |
| 2953 | for (unsigned I = 0, E = Groups.size(); I != E; ++I) |
| 2954 | VirtualMethods.append(Groups[I].rbegin(), Groups[I].rend()); |
| 2955 | } |
| 2956 | |
Timur Iskhodzhanov | dd0a2766 | 2014-03-26 08:12:53 +0000 | [diff] [blame] | 2957 | static bool isDirectVBase(const CXXRecordDecl *Base, const CXXRecordDecl *RD) { |
| 2958 | for (const auto &B : RD->bases()) { |
| 2959 | if (B.isVirtual() && B.getType()->getAsCXXRecordDecl() == Base) |
| 2960 | return true; |
| 2961 | } |
| 2962 | return false; |
| 2963 | } |
| 2964 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2965 | void VFTableBuilder::AddMethods(BaseSubobject Base, unsigned BaseDepth, |
| 2966 | const CXXRecordDecl *LastVBase, |
| 2967 | BasesSetVectorTy &VisitedBases) { |
| 2968 | const CXXRecordDecl *RD = Base.getBase(); |
| 2969 | if (!RD->isPolymorphic()) |
| 2970 | return; |
| 2971 | |
| 2972 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
| 2973 | |
| 2974 | // See if this class expands a vftable of the base we look at, which is either |
Nico Weber | d73258a | 2015-05-16 23:49:53 +0000 | [diff] [blame] | 2975 | // the one defined by the vfptr base path or the primary base of the current |
| 2976 | // class. |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2977 | const CXXRecordDecl *NextBase = nullptr, *NextLastVBase = LastVBase; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2978 | CharUnits NextBaseOffset; |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 2979 | if (BaseDepth < WhichVFPtr.PathToBaseWithVPtr.size()) { |
| 2980 | NextBase = WhichVFPtr.PathToBaseWithVPtr[BaseDepth]; |
Timur Iskhodzhanov | dd0a2766 | 2014-03-26 08:12:53 +0000 | [diff] [blame] | 2981 | if (isDirectVBase(NextBase, RD)) { |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 2982 | NextLastVBase = NextBase; |
| 2983 | NextBaseOffset = MostDerivedClassLayout.getVBaseClassOffset(NextBase); |
| 2984 | } else { |
| 2985 | NextBaseOffset = |
| 2986 | Base.getBaseOffset() + Layout.getBaseClassOffset(NextBase); |
| 2987 | } |
| 2988 | } else if (const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase()) { |
| 2989 | assert(!Layout.isPrimaryBaseVirtual() && |
| 2990 | "No primary virtual bases in this ABI"); |
| 2991 | NextBase = PrimaryBase; |
| 2992 | NextBaseOffset = Base.getBaseOffset(); |
| 2993 | } |
| 2994 | |
| 2995 | if (NextBase) { |
| 2996 | AddMethods(BaseSubobject(NextBase, NextBaseOffset), BaseDepth + 1, |
| 2997 | NextLastVBase, VisitedBases); |
| 2998 | if (!VisitedBases.insert(NextBase)) |
| 2999 | llvm_unreachable("Found a duplicate primary base!"); |
| 3000 | } |
| 3001 | |
Timur Iskhodzhanov | 20df98c | 2013-10-06 15:31:37 +0000 | [diff] [blame] | 3002 | SmallVector<const CXXMethodDecl*, 10> VirtualMethods; |
| 3003 | // Put virtual methods in the proper order. |
| 3004 | GroupNewVirtualOverloads(RD, VirtualMethods); |
| 3005 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3006 | // Now go through all virtual member functions and add them to the current |
| 3007 | // vftable. This is done by |
| 3008 | // - replacing overridden methods in their existing slots, as long as they |
| 3009 | // don't require return adjustment; calculating This adjustment if needed. |
| 3010 | // - adding new slots for methods of the current base not present in any |
| 3011 | // sub-bases; |
| 3012 | // - adding new slots for methods that require Return adjustment. |
| 3013 | // We keep track of the methods visited in the sub-bases in MethodInfoMap. |
Timur Iskhodzhanov | 20df98c | 2013-10-06 15:31:37 +0000 | [diff] [blame] | 3014 | for (unsigned I = 0, E = VirtualMethods.size(); I != E; ++I) { |
| 3015 | const CXXMethodDecl *MD = VirtualMethods[I]; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3016 | |
Timur Iskhodzhanov | 7081460 | 2014-11-17 15:53:50 +0000 | [diff] [blame] | 3017 | FinalOverriders::OverriderInfo FinalOverrider = |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3018 | Overriders.getOverrider(MD, Base.getBaseOffset()); |
Timur Iskhodzhanov | 7081460 | 2014-11-17 15:53:50 +0000 | [diff] [blame] | 3019 | const CXXMethodDecl *FinalOverriderMD = FinalOverrider.Method; |
Timur Iskhodzhanov | a895758 | 2014-03-07 09:34:59 +0000 | [diff] [blame] | 3020 | const CXXMethodDecl *OverriddenMD = |
| 3021 | FindNearestOverriddenMethod(MD, VisitedBases); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3022 | |
Timur Iskhodzhanov | a895758 | 2014-03-07 09:34:59 +0000 | [diff] [blame] | 3023 | ThisAdjustment ThisAdjustmentOffset; |
Timur Iskhodzhanov | 16055e7 | 2014-08-10 11:40:51 +0000 | [diff] [blame] | 3024 | bool ReturnAdjustingThunk = false, ForceReturnAdjustmentMangling = false; |
Timur Iskhodzhanov | 7081460 | 2014-11-17 15:53:50 +0000 | [diff] [blame] | 3025 | CharUnits ThisOffset = ComputeThisOffset(FinalOverrider); |
Timur Iskhodzhanov | a895758 | 2014-03-07 09:34:59 +0000 | [diff] [blame] | 3026 | ThisAdjustmentOffset.NonVirtual = |
| 3027 | (ThisOffset - WhichVFPtr.FullOffsetInMDC).getQuantity(); |
Timur Iskhodzhanov | 7081460 | 2014-11-17 15:53:50 +0000 | [diff] [blame] | 3028 | if ((OverriddenMD || FinalOverriderMD != MD) && |
Timur Iskhodzhanov | a895758 | 2014-03-07 09:34:59 +0000 | [diff] [blame] | 3029 | WhichVFPtr.getVBaseWithVPtr()) |
Timur Iskhodzhanov | 7081460 | 2014-11-17 15:53:50 +0000 | [diff] [blame] | 3030 | CalculateVtordispAdjustment(FinalOverrider, ThisOffset, |
| 3031 | ThisAdjustmentOffset); |
Timur Iskhodzhanov | a895758 | 2014-03-07 09:34:59 +0000 | [diff] [blame] | 3032 | |
| 3033 | if (OverriddenMD) { |
Nico Weber | d73258a | 2015-05-16 23:49:53 +0000 | [diff] [blame] | 3034 | // If MD overrides anything in this vftable, we need to update the |
| 3035 | // entries. |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3036 | MethodInfoMapTy::iterator OverriddenMDIterator = |
| 3037 | MethodInfoMap.find(OverriddenMD); |
| 3038 | |
| 3039 | // If the overridden method went to a different vftable, skip it. |
| 3040 | if (OverriddenMDIterator == MethodInfoMap.end()) |
| 3041 | continue; |
| 3042 | |
| 3043 | MethodInfo &OverriddenMethodInfo = OverriddenMDIterator->second; |
| 3044 | |
Timur Iskhodzhanov | 16055e7 | 2014-08-10 11:40:51 +0000 | [diff] [blame] | 3045 | // Let's check if the overrider requires any return adjustments. |
| 3046 | // We must create a new slot if the MD's return type is not trivially |
| 3047 | // convertible to the OverriddenMD's one. |
| 3048 | // Once a chain of method overrides adds a return adjusting vftable slot, |
| 3049 | // all subsequent overrides will also use an extra method slot. |
| 3050 | ReturnAdjustingThunk = !ComputeReturnAdjustmentBaseOffset( |
| 3051 | Context, MD, OverriddenMD).isEmpty() || |
| 3052 | OverriddenMethodInfo.UsesExtraSlot; |
| 3053 | |
| 3054 | if (!ReturnAdjustingThunk) { |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3055 | // No return adjustment needed - just replace the overridden method info |
| 3056 | // with the current info. |
| 3057 | MethodInfo MI(OverriddenMethodInfo.VBTableIndex, |
| 3058 | OverriddenMethodInfo.VFTableIndex); |
| 3059 | MethodInfoMap.erase(OverriddenMDIterator); |
| 3060 | |
| 3061 | assert(!MethodInfoMap.count(MD) && |
| 3062 | "Should not have method info for this method yet!"); |
| 3063 | MethodInfoMap.insert(std::make_pair(MD, MI)); |
| 3064 | continue; |
Reid Kleckner | 31a9f74 | 2013-12-27 20:29:16 +0000 | [diff] [blame] | 3065 | } |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3066 | |
Reid Kleckner | 31a9f74 | 2013-12-27 20:29:16 +0000 | [diff] [blame] | 3067 | // In case we need a return adjustment, we'll add a new slot for |
Timur Iskhodzhanov | a895758 | 2014-03-07 09:34:59 +0000 | [diff] [blame] | 3068 | // the overrider. Mark the overriden method as shadowed by the new slot. |
Reid Kleckner | 31a9f74 | 2013-12-27 20:29:16 +0000 | [diff] [blame] | 3069 | OverriddenMethodInfo.Shadowed = true; |
Reid Kleckner | 31a9f74 | 2013-12-27 20:29:16 +0000 | [diff] [blame] | 3070 | |
Timur Iskhodzhanov | a895758 | 2014-03-07 09:34:59 +0000 | [diff] [blame] | 3071 | // Force a special name mangling for a return-adjusting thunk |
| 3072 | // unless the method is the final overrider without this adjustment. |
Timur Iskhodzhanov | 16055e7 | 2014-08-10 11:40:51 +0000 | [diff] [blame] | 3073 | ForceReturnAdjustmentMangling = |
Timur Iskhodzhanov | 7081460 | 2014-11-17 15:53:50 +0000 | [diff] [blame] | 3074 | !(MD == FinalOverriderMD && ThisAdjustmentOffset.isEmpty()); |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3075 | } else if (Base.getBaseOffset() != WhichVFPtr.FullOffsetInMDC || |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3076 | MD->size_overridden_methods()) { |
| 3077 | // Skip methods that don't belong to the vftable of the current class, |
| 3078 | // e.g. each method that wasn't seen in any of the visited sub-bases |
| 3079 | // but overrides multiple methods of other sub-bases. |
| 3080 | continue; |
| 3081 | } |
| 3082 | |
| 3083 | // If we got here, MD is a method not seen in any of the sub-bases or |
| 3084 | // it requires return adjustment. Insert the method info for this method. |
| 3085 | unsigned VBIndex = |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 3086 | LastVBase ? VTables.getVBTableIndex(MostDerivedClass, LastVBase) : 0; |
David Majnemer | 3c7228e | 2014-07-01 21:10:07 +0000 | [diff] [blame] | 3087 | MethodInfo MI(VBIndex, |
Timur Iskhodzhanov | 16055e7 | 2014-08-10 11:40:51 +0000 | [diff] [blame] | 3088 | HasRTTIComponent ? Components.size() - 1 : Components.size(), |
| 3089 | ReturnAdjustingThunk); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3090 | |
| 3091 | assert(!MethodInfoMap.count(MD) && |
| 3092 | "Should not have method info for this method yet!"); |
| 3093 | MethodInfoMap.insert(std::make_pair(MD, MI)); |
| 3094 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3095 | // Check if this overrider needs a return adjustment. |
| 3096 | // We don't want to do this for pure virtual member functions. |
| 3097 | BaseOffset ReturnAdjustmentOffset; |
| 3098 | ReturnAdjustment ReturnAdjustment; |
Timur Iskhodzhanov | 7081460 | 2014-11-17 15:53:50 +0000 | [diff] [blame] | 3099 | if (!FinalOverriderMD->isPure()) { |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3100 | ReturnAdjustmentOffset = |
Timur Iskhodzhanov | 7081460 | 2014-11-17 15:53:50 +0000 | [diff] [blame] | 3101 | ComputeReturnAdjustmentBaseOffset(Context, FinalOverriderMD, MD); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3102 | } |
| 3103 | if (!ReturnAdjustmentOffset.isEmpty()) { |
Timur Iskhodzhanov | 16055e7 | 2014-08-10 11:40:51 +0000 | [diff] [blame] | 3104 | ForceReturnAdjustmentMangling = true; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3105 | ReturnAdjustment.NonVirtual = |
| 3106 | ReturnAdjustmentOffset.NonVirtualOffset.getQuantity(); |
| 3107 | if (ReturnAdjustmentOffset.VirtualBase) { |
Timur Iskhodzhanov | 0201432 | 2013-10-30 11:55:43 +0000 | [diff] [blame] | 3108 | const ASTRecordLayout &DerivedLayout = |
| 3109 | Context.getASTRecordLayout(ReturnAdjustmentOffset.DerivedClass); |
| 3110 | ReturnAdjustment.Virtual.Microsoft.VBPtrOffset = |
| 3111 | DerivedLayout.getVBPtrOffset().getQuantity(); |
| 3112 | ReturnAdjustment.Virtual.Microsoft.VBIndex = |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 3113 | VTables.getVBTableIndex(ReturnAdjustmentOffset.DerivedClass, |
| 3114 | ReturnAdjustmentOffset.VirtualBase); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3115 | } |
| 3116 | } |
| 3117 | |
Timur Iskhodzhanov | 7081460 | 2014-11-17 15:53:50 +0000 | [diff] [blame] | 3118 | AddMethod(FinalOverriderMD, |
Timur Iskhodzhanov | 16055e7 | 2014-08-10 11:40:51 +0000 | [diff] [blame] | 3119 | ThunkInfo(ThisAdjustmentOffset, ReturnAdjustment, |
| 3120 | ForceReturnAdjustmentMangling ? MD : nullptr)); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3121 | } |
| 3122 | } |
| 3123 | |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3124 | static void PrintBasePath(const VPtrInfo::BasePath &Path, raw_ostream &Out) { |
| 3125 | for (VPtrInfo::BasePath::const_reverse_iterator I = Path.rbegin(), |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3126 | E = Path.rend(); I != E; ++I) { |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 3127 | Out << "'"; |
| 3128 | (*I)->printQualifiedName(Out); |
| 3129 | Out << "' in "; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3130 | } |
| 3131 | } |
| 3132 | |
Timur Iskhodzhanov | 0201432 | 2013-10-30 11:55:43 +0000 | [diff] [blame] | 3133 | static void dumpMicrosoftThunkAdjustment(const ThunkInfo &TI, raw_ostream &Out, |
| 3134 | bool ContinueFirstLine) { |
| 3135 | const ReturnAdjustment &R = TI.Return; |
| 3136 | bool Multiline = false; |
Timur Iskhodzhanov | a895758 | 2014-03-07 09:34:59 +0000 | [diff] [blame] | 3137 | const char *LinePrefix = "\n "; |
| 3138 | if (!R.isEmpty() || TI.Method) { |
Timur Iskhodzhanov | 0201432 | 2013-10-30 11:55:43 +0000 | [diff] [blame] | 3139 | if (!ContinueFirstLine) |
| 3140 | Out << LinePrefix; |
Timur Iskhodzhanov | a895758 | 2014-03-07 09:34:59 +0000 | [diff] [blame] | 3141 | Out << "[return adjustment (to type '" |
| 3142 | << TI.Method->getReturnType().getCanonicalType().getAsString() |
| 3143 | << "'): "; |
Timur Iskhodzhanov | 0201432 | 2013-10-30 11:55:43 +0000 | [diff] [blame] | 3144 | if (R.Virtual.Microsoft.VBPtrOffset) |
| 3145 | Out << "vbptr at offset " << R.Virtual.Microsoft.VBPtrOffset << ", "; |
| 3146 | if (R.Virtual.Microsoft.VBIndex) |
| 3147 | Out << "vbase #" << R.Virtual.Microsoft.VBIndex << ", "; |
| 3148 | Out << R.NonVirtual << " non-virtual]"; |
| 3149 | Multiline = true; |
| 3150 | } |
| 3151 | |
| 3152 | const ThisAdjustment &T = TI.This; |
| 3153 | if (!T.isEmpty()) { |
| 3154 | if (Multiline || !ContinueFirstLine) |
| 3155 | Out << LinePrefix; |
| 3156 | Out << "[this adjustment: "; |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 3157 | if (!TI.This.Virtual.isEmpty()) { |
| 3158 | assert(T.Virtual.Microsoft.VtordispOffset < 0); |
| 3159 | Out << "vtordisp at " << T.Virtual.Microsoft.VtordispOffset << ", "; |
| 3160 | if (T.Virtual.Microsoft.VBPtrOffset) { |
| 3161 | Out << "vbptr at " << T.Virtual.Microsoft.VBPtrOffset |
Timur Iskhodzhanov | a895758 | 2014-03-07 09:34:59 +0000 | [diff] [blame] | 3162 | << " to the left,"; |
Timur Iskhodzhanov | 053142a | 2013-11-06 06:24:31 +0000 | [diff] [blame] | 3163 | assert(T.Virtual.Microsoft.VBOffsetOffset > 0); |
| 3164 | Out << LinePrefix << " vboffset at " |
| 3165 | << T.Virtual.Microsoft.VBOffsetOffset << " in the vbtable, "; |
| 3166 | } |
| 3167 | } |
Timur Iskhodzhanov | 0201432 | 2013-10-30 11:55:43 +0000 | [diff] [blame] | 3168 | Out << T.NonVirtual << " non-virtual]"; |
| 3169 | } |
| 3170 | } |
| 3171 | |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3172 | void VFTableBuilder::dumpLayout(raw_ostream &Out) { |
| 3173 | Out << "VFTable for "; |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3174 | PrintBasePath(WhichVFPtr.PathToBaseWithVPtr, Out); |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 3175 | Out << "'"; |
| 3176 | MostDerivedClass->printQualifiedName(Out); |
Timur Iskhodzhanov | 77764b6 | 2014-03-05 13:54:07 +0000 | [diff] [blame] | 3177 | Out << "' (" << Components.size() |
| 3178 | << (Components.size() == 1 ? " entry" : " entries") << ").\n"; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3179 | |
| 3180 | for (unsigned I = 0, E = Components.size(); I != E; ++I) { |
| 3181 | Out << llvm::format("%4d | ", I); |
| 3182 | |
| 3183 | const VTableComponent &Component = Components[I]; |
| 3184 | |
| 3185 | // Dump the component. |
| 3186 | switch (Component.getKind()) { |
| 3187 | case VTableComponent::CK_RTTI: |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 3188 | Component.getRTTIDecl()->printQualifiedName(Out); |
| 3189 | Out << " RTTI"; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3190 | break; |
| 3191 | |
| 3192 | case VTableComponent::CK_FunctionPointer: { |
| 3193 | const CXXMethodDecl *MD = Component.getFunctionDecl(); |
| 3194 | |
Reid Kleckner | 604c8b4 | 2013-12-27 19:43:59 +0000 | [diff] [blame] | 3195 | // FIXME: Figure out how to print the real thunk type, since they can |
| 3196 | // differ in the return type. |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3197 | std::string Str = PredefinedExpr::ComputeName( |
| 3198 | PredefinedExpr::PrettyFunctionNoVirtual, MD); |
| 3199 | Out << Str; |
| 3200 | if (MD->isPure()) |
| 3201 | Out << " [pure]"; |
| 3202 | |
David Majnemer | d59becb | 2014-09-12 04:38:08 +0000 | [diff] [blame] | 3203 | if (MD->isDeleted()) |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3204 | Out << " [deleted]"; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3205 | |
| 3206 | ThunkInfo Thunk = VTableThunks.lookup(I); |
Timur Iskhodzhanov | 0201432 | 2013-10-30 11:55:43 +0000 | [diff] [blame] | 3207 | if (!Thunk.isEmpty()) |
| 3208 | dumpMicrosoftThunkAdjustment(Thunk, Out, /*ContinueFirstLine=*/false); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3209 | |
| 3210 | break; |
| 3211 | } |
| 3212 | |
| 3213 | case VTableComponent::CK_DeletingDtorPointer: { |
| 3214 | const CXXDestructorDecl *DD = Component.getDestructorDecl(); |
| 3215 | |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 3216 | DD->printQualifiedName(Out); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3217 | Out << "() [scalar deleting]"; |
| 3218 | |
| 3219 | if (DD->isPure()) |
| 3220 | Out << " [pure]"; |
| 3221 | |
| 3222 | ThunkInfo Thunk = VTableThunks.lookup(I); |
| 3223 | if (!Thunk.isEmpty()) { |
| 3224 | assert(Thunk.Return.isEmpty() && |
| 3225 | "No return adjustment needed for destructors!"); |
Timur Iskhodzhanov | 0201432 | 2013-10-30 11:55:43 +0000 | [diff] [blame] | 3226 | dumpMicrosoftThunkAdjustment(Thunk, Out, /*ContinueFirstLine=*/false); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3227 | } |
| 3228 | |
| 3229 | break; |
| 3230 | } |
| 3231 | |
| 3232 | default: |
| 3233 | DiagnosticsEngine &Diags = Context.getDiagnostics(); |
| 3234 | unsigned DiagID = Diags.getCustomDiagID( |
| 3235 | DiagnosticsEngine::Error, |
| 3236 | "Unexpected vftable component type %0 for component number %1"); |
| 3237 | Diags.Report(MostDerivedClass->getLocation(), DiagID) |
| 3238 | << I << Component.getKind(); |
| 3239 | } |
| 3240 | |
| 3241 | Out << '\n'; |
| 3242 | } |
| 3243 | |
| 3244 | Out << '\n'; |
| 3245 | |
| 3246 | if (!Thunks.empty()) { |
| 3247 | // We store the method names in a map to get a stable order. |
| 3248 | std::map<std::string, const CXXMethodDecl *> MethodNamesAndDecls; |
| 3249 | |
| 3250 | for (ThunksMapTy::const_iterator I = Thunks.begin(), E = Thunks.end(); |
| 3251 | I != E; ++I) { |
| 3252 | const CXXMethodDecl *MD = I->first; |
| 3253 | std::string MethodName = PredefinedExpr::ComputeName( |
| 3254 | PredefinedExpr::PrettyFunctionNoVirtual, MD); |
| 3255 | |
| 3256 | MethodNamesAndDecls.insert(std::make_pair(MethodName, MD)); |
| 3257 | } |
| 3258 | |
| 3259 | for (std::map<std::string, const CXXMethodDecl *>::const_iterator |
| 3260 | I = MethodNamesAndDecls.begin(), |
| 3261 | E = MethodNamesAndDecls.end(); |
| 3262 | I != E; ++I) { |
| 3263 | const std::string &MethodName = I->first; |
| 3264 | const CXXMethodDecl *MD = I->second; |
| 3265 | |
| 3266 | ThunkInfoVectorTy ThunksVector = Thunks[MD]; |
Timur Iskhodzhanov | ad9d3b8 | 2013-10-09 09:23:58 +0000 | [diff] [blame] | 3267 | std::stable_sort(ThunksVector.begin(), ThunksVector.end(), |
Benjamin Kramer | bbdd764 | 2014-03-01 14:48:57 +0000 | [diff] [blame] | 3268 | [](const ThunkInfo &LHS, const ThunkInfo &RHS) { |
| 3269 | // Keep different thunks with the same adjustments in the order they |
| 3270 | // were put into the vector. |
Benjamin Kramer | a741b8c | 2014-03-03 20:26:46 +0000 | [diff] [blame] | 3271 | return std::tie(LHS.This, LHS.Return) < std::tie(RHS.This, RHS.Return); |
Benjamin Kramer | bbdd764 | 2014-03-01 14:48:57 +0000 | [diff] [blame] | 3272 | }); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3273 | |
| 3274 | Out << "Thunks for '" << MethodName << "' (" << ThunksVector.size(); |
| 3275 | Out << (ThunksVector.size() == 1 ? " entry" : " entries") << ").\n"; |
| 3276 | |
| 3277 | for (unsigned I = 0, E = ThunksVector.size(); I != E; ++I) { |
| 3278 | const ThunkInfo &Thunk = ThunksVector[I]; |
| 3279 | |
| 3280 | Out << llvm::format("%4d | ", I); |
Timur Iskhodzhanov | 0201432 | 2013-10-30 11:55:43 +0000 | [diff] [blame] | 3281 | dumpMicrosoftThunkAdjustment(Thunk, Out, /*ContinueFirstLine=*/true); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3282 | Out << '\n'; |
| 3283 | } |
| 3284 | |
| 3285 | Out << '\n'; |
| 3286 | } |
| 3287 | } |
Timur Iskhodzhanov | 4fea4f9 | 2014-03-20 13:42:14 +0000 | [diff] [blame] | 3288 | |
| 3289 | Out.flush(); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3290 | } |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3291 | |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3292 | static bool setsIntersect(const llvm::SmallPtrSet<const CXXRecordDecl *, 4> &A, |
Craig Topper | 3cb91b2 | 2014-08-27 06:28:16 +0000 | [diff] [blame] | 3293 | ArrayRef<const CXXRecordDecl *> B) { |
Craig Topper | 00bbdcf | 2014-06-28 23:22:23 +0000 | [diff] [blame] | 3294 | for (ArrayRef<const CXXRecordDecl *>::iterator I = B.begin(), E = B.end(); |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3295 | I != E; ++I) { |
| 3296 | if (A.count(*I)) |
| 3297 | return true; |
| 3298 | } |
| 3299 | return false; |
| 3300 | } |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3301 | |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3302 | static bool rebucketPaths(VPtrInfoVector &Paths); |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3303 | |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3304 | /// Produces MSVC-compatible vbtable data. The symbols produced by this |
| 3305 | /// algorithm match those produced by MSVC 2012 and newer, which is different |
| 3306 | /// from MSVC 2010. |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3307 | /// |
| 3308 | /// MSVC 2012 appears to minimize the vbtable names using the following |
| 3309 | /// algorithm. First, walk the class hierarchy in the usual order, depth first, |
| 3310 | /// left to right, to find all of the subobjects which contain a vbptr field. |
| 3311 | /// Visiting each class node yields a list of inheritance paths to vbptrs. Each |
| 3312 | /// record with a vbptr creates an initially empty path. |
| 3313 | /// |
| 3314 | /// To combine paths from child nodes, the paths are compared to check for |
| 3315 | /// ambiguity. Paths are "ambiguous" if multiple paths have the same set of |
| 3316 | /// components in the same order. Each group of ambiguous paths is extended by |
| 3317 | /// appending the class of the base from which it came. If the current class |
| 3318 | /// node produced an ambiguous path, its path is extended with the current class. |
| 3319 | /// After extending paths, MSVC again checks for ambiguity, and extends any |
| 3320 | /// ambiguous path which wasn't already extended. Because each node yields an |
| 3321 | /// unambiguous set of paths, MSVC doesn't need to extend any path more than once |
| 3322 | /// to produce an unambiguous set of paths. |
| 3323 | /// |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3324 | /// TODO: Presumably vftables use the same algorithm. |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3325 | void MicrosoftVTableContext::computeVTablePaths(bool ForVBTables, |
| 3326 | const CXXRecordDecl *RD, |
| 3327 | VPtrInfoVector &Paths) { |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3328 | assert(Paths.empty()); |
| 3329 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3330 | |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3331 | // Base case: this subobject has its own vptr. |
| 3332 | if (ForVBTables ? Layout.hasOwnVBPtr() : Layout.hasOwnVFPtr()) |
| 3333 | Paths.push_back(new VPtrInfo(RD)); |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3334 | |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3335 | // Recursive case: get all the vbtables from our bases and remove anything |
Reid Kleckner | 15fdcf1 | 2014-09-22 23:14:46 +0000 | [diff] [blame] | 3336 | // that shares a virtual base. |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3337 | llvm::SmallPtrSet<const CXXRecordDecl*, 4> VBasesSeen; |
Reid Kleckner | 15fdcf1 | 2014-09-22 23:14:46 +0000 | [diff] [blame] | 3338 | for (const auto &B : RD->bases()) { |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 3339 | const CXXRecordDecl *Base = B.getType()->getAsCXXRecordDecl(); |
| 3340 | if (B.isVirtual() && VBasesSeen.count(Base)) |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3341 | continue; |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3342 | |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3343 | if (!Base->isDynamicClass()) |
| 3344 | continue; |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3345 | |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3346 | const VPtrInfoVector &BasePaths = |
| 3347 | ForVBTables ? enumerateVBTables(Base) : getVFPtrOffsets(Base); |
| 3348 | |
Reid Kleckner | fd38540 | 2014-04-17 22:47:52 +0000 | [diff] [blame] | 3349 | for (VPtrInfo *BaseInfo : BasePaths) { |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3350 | // Don't include the path if it goes through a virtual base that we've |
| 3351 | // already included. |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3352 | if (setsIntersect(VBasesSeen, BaseInfo->ContainingVBases)) |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3353 | continue; |
| 3354 | |
| 3355 | // Copy the path and adjust it as necessary. |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3356 | VPtrInfo *P = new VPtrInfo(*BaseInfo); |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3357 | |
| 3358 | // We mangle Base into the path if the path would've been ambiguous and it |
| 3359 | // wasn't already extended with Base. |
| 3360 | if (P->MangledPath.empty() || P->MangledPath.back() != Base) |
| 3361 | P->NextBaseToMangle = Base; |
| 3362 | |
Reid Kleckner | fd38540 | 2014-04-17 22:47:52 +0000 | [diff] [blame] | 3363 | // Keep track of which vtable the derived class is going to extend with |
| 3364 | // new methods or bases. We append to either the vftable of our primary |
| 3365 | // base, or the first non-virtual base that has a vbtable. |
| 3366 | if (P->ReusingBase == Base && |
| 3367 | Base == (ForVBTables ? Layout.getBaseSharingVBPtr() |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3368 | : Layout.getPrimaryBase())) |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3369 | P->ReusingBase = RD; |
Reid Kleckner | fd38540 | 2014-04-17 22:47:52 +0000 | [diff] [blame] | 3370 | |
| 3371 | // Keep track of the full adjustment from the MDC to this vtable. The |
| 3372 | // adjustment is captured by an optional vbase and a non-virtual offset. |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 3373 | if (B.isVirtual()) |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3374 | P->ContainingVBases.push_back(Base); |
| 3375 | else if (P->ContainingVBases.empty()) |
| 3376 | P->NonVirtualOffset += Layout.getBaseClassOffset(Base); |
| 3377 | |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3378 | // Update the full offset in the MDC. |
| 3379 | P->FullOffsetInMDC = P->NonVirtualOffset; |
| 3380 | if (const CXXRecordDecl *VB = P->getVBaseWithVPtr()) |
| 3381 | P->FullOffsetInMDC += Layout.getVBaseClassOffset(VB); |
| 3382 | |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3383 | Paths.push_back(P); |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3384 | } |
| 3385 | |
Timur Iskhodzhanov | 9ae7d3b | 2014-03-31 11:01:51 +0000 | [diff] [blame] | 3386 | if (B.isVirtual()) |
| 3387 | VBasesSeen.insert(Base); |
| 3388 | |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3389 | // After visiting any direct base, we've transitively visited all of its |
| 3390 | // morally virtual bases. |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 3391 | for (const auto &VB : Base->vbases()) |
| 3392 | VBasesSeen.insert(VB.getType()->getAsCXXRecordDecl()); |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3393 | } |
| 3394 | |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3395 | // Sort the paths into buckets, and if any of them are ambiguous, extend all |
| 3396 | // paths in ambiguous buckets. |
| 3397 | bool Changed = true; |
| 3398 | while (Changed) |
| 3399 | Changed = rebucketPaths(Paths); |
| 3400 | } |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3401 | |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3402 | static bool extendPath(VPtrInfo *P) { |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3403 | if (P->NextBaseToMangle) { |
| 3404 | P->MangledPath.push_back(P->NextBaseToMangle); |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 3405 | P->NextBaseToMangle = nullptr;// Prevent the path from being extended twice. |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3406 | return true; |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3407 | } |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3408 | return false; |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3409 | } |
| 3410 | |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3411 | static bool rebucketPaths(VPtrInfoVector &Paths) { |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3412 | // What we're essentially doing here is bucketing together ambiguous paths. |
| 3413 | // Any bucket with more than one path in it gets extended by NextBase, which |
| 3414 | // is usually the direct base of the inherited the vbptr. This code uses a |
| 3415 | // sorted vector to implement a multiset to form the buckets. Note that the |
| 3416 | // ordering is based on pointers, but it doesn't change our output order. The |
| 3417 | // current algorithm is designed to match MSVC 2012's names. |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3418 | VPtrInfoVector PathsSorted(Paths); |
Benjamin Kramer | 15ae783 | 2014-03-07 21:35:40 +0000 | [diff] [blame] | 3419 | std::sort(PathsSorted.begin(), PathsSorted.end(), |
| 3420 | [](const VPtrInfo *LHS, const VPtrInfo *RHS) { |
| 3421 | return LHS->MangledPath < RHS->MangledPath; |
| 3422 | }); |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3423 | bool Changed = false; |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3424 | for (size_t I = 0, E = PathsSorted.size(); I != E;) { |
| 3425 | // Scan forward to find the end of the bucket. |
| 3426 | size_t BucketStart = I; |
| 3427 | do { |
| 3428 | ++I; |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3429 | } while (I != E && PathsSorted[BucketStart]->MangledPath == |
| 3430 | PathsSorted[I]->MangledPath); |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3431 | |
| 3432 | // If this bucket has multiple paths, extend them all. |
| 3433 | if (I - BucketStart > 1) { |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3434 | for (size_t II = BucketStart; II != I; ++II) |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3435 | Changed |= extendPath(PathsSorted[II]); |
| 3436 | assert(Changed && "no paths were extended to fix ambiguity"); |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3437 | } |
| 3438 | } |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3439 | return Changed; |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3440 | } |
| 3441 | |
| 3442 | MicrosoftVTableContext::~MicrosoftVTableContext() { |
Nico Weber | d19e6a7 | 2014-04-24 19:52:12 +0000 | [diff] [blame] | 3443 | for (auto &P : VFPtrLocations) |
| 3444 | llvm::DeleteContainerPointers(*P.second); |
Reid Kleckner | 3331128 | 2014-02-28 23:26:22 +0000 | [diff] [blame] | 3445 | llvm::DeleteContainerSeconds(VFPtrLocations); |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3446 | llvm::DeleteContainerSeconds(VFTableLayouts); |
| 3447 | llvm::DeleteContainerSeconds(VBaseInfo); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3448 | } |
| 3449 | |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3450 | namespace { |
| 3451 | typedef llvm::SetVector<BaseSubobject, std::vector<BaseSubobject>, |
| 3452 | llvm::DenseSet<BaseSubobject>> FullPathTy; |
| 3453 | } |
| 3454 | |
| 3455 | // This recursive function finds all paths from a subobject centered at |
| 3456 | // (RD, Offset) to the subobject located at BaseWithVPtr. |
| 3457 | static void findPathsToSubobject(ASTContext &Context, |
| 3458 | const ASTRecordLayout &MostDerivedLayout, |
| 3459 | const CXXRecordDecl *RD, CharUnits Offset, |
| 3460 | BaseSubobject BaseWithVPtr, |
| 3461 | FullPathTy &FullPath, |
| 3462 | std::list<FullPathTy> &Paths) { |
| 3463 | if (BaseSubobject(RD, Offset) == BaseWithVPtr) { |
| 3464 | Paths.push_back(FullPath); |
| 3465 | return; |
Reid Kleckner | 15fdcf1 | 2014-09-22 23:14:46 +0000 | [diff] [blame] | 3466 | } |
| 3467 | |
| 3468 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
| 3469 | |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3470 | for (const CXXBaseSpecifier &BS : RD->bases()) { |
David Majnemer | ead9757 | 2015-05-01 21:35:41 +0000 | [diff] [blame] | 3471 | const CXXRecordDecl *Base = BS.getType()->getAsCXXRecordDecl(); |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3472 | CharUnits NewOffset = BS.isVirtual() |
| 3473 | ? MostDerivedLayout.getVBaseClassOffset(Base) |
| 3474 | : Offset + Layout.getBaseClassOffset(Base); |
| 3475 | FullPath.insert(BaseSubobject(Base, NewOffset)); |
| 3476 | findPathsToSubobject(Context, MostDerivedLayout, Base, NewOffset, |
| 3477 | BaseWithVPtr, FullPath, Paths); |
| 3478 | FullPath.pop_back(); |
| 3479 | } |
| 3480 | } |
David Majnemer | d950f15 | 2015-04-30 17:15:48 +0000 | [diff] [blame] | 3481 | |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3482 | // Return the paths which are not subsets of other paths. |
| 3483 | static void removeRedundantPaths(std::list<FullPathTy> &FullPaths) { |
| 3484 | FullPaths.remove_if([&](const FullPathTy &SpecificPath) { |
| 3485 | for (const FullPathTy &OtherPath : FullPaths) { |
| 3486 | if (&SpecificPath == &OtherPath) |
David Majnemer | 70e6a00 | 2015-05-01 21:35:45 +0000 | [diff] [blame] | 3487 | continue; |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3488 | if (std::all_of(SpecificPath.begin(), SpecificPath.end(), |
| 3489 | [&](const BaseSubobject &BSO) { |
| 3490 | return OtherPath.count(BSO) != 0; |
| 3491 | })) { |
| 3492 | return true; |
David Majnemer | 70e6a00 | 2015-05-01 21:35:45 +0000 | [diff] [blame] | 3493 | } |
David Majnemer | d950f15 | 2015-04-30 17:15:48 +0000 | [diff] [blame] | 3494 | } |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3495 | return false; |
| 3496 | }); |
| 3497 | } |
| 3498 | |
| 3499 | static CharUnits getOffsetOfFullPath(ASTContext &Context, |
| 3500 | const CXXRecordDecl *RD, |
| 3501 | const FullPathTy &FullPath) { |
| 3502 | const ASTRecordLayout &MostDerivedLayout = |
| 3503 | Context.getASTRecordLayout(RD); |
| 3504 | CharUnits Offset = CharUnits::fromQuantity(-1); |
| 3505 | for (const BaseSubobject &BSO : FullPath) { |
| 3506 | const CXXRecordDecl *Base = BSO.getBase(); |
| 3507 | // The first entry in the path is always the most derived record, skip it. |
| 3508 | if (Base == RD) { |
| 3509 | assert(Offset.getQuantity() == -1); |
| 3510 | Offset = CharUnits::Zero(); |
| 3511 | continue; |
| 3512 | } |
| 3513 | assert(Offset.getQuantity() != -1); |
| 3514 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
| 3515 | // While we know which base has to be traversed, we don't know if that base |
| 3516 | // was a virtual base. |
| 3517 | const CXXBaseSpecifier *BaseBS = std::find_if( |
| 3518 | RD->bases_begin(), RD->bases_end(), [&](const CXXBaseSpecifier &BS) { |
| 3519 | return BS.getType()->getAsCXXRecordDecl() == Base; |
| 3520 | }); |
| 3521 | Offset = BaseBS->isVirtual() ? MostDerivedLayout.getVBaseClassOffset(Base) |
| 3522 | : Offset + Layout.getBaseClassOffset(Base); |
| 3523 | RD = Base; |
David Majnemer | d950f15 | 2015-04-30 17:15:48 +0000 | [diff] [blame] | 3524 | } |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3525 | return Offset; |
| 3526 | } |
David Majnemer | ead9757 | 2015-05-01 21:35:41 +0000 | [diff] [blame] | 3527 | |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3528 | // We want to select the path which introduces the most covariant overrides. If |
| 3529 | // two paths introduce overrides which the other path doesn't contain, issue a |
| 3530 | // diagnostic. |
| 3531 | static const FullPathTy *selectBestPath(ASTContext &Context, |
| 3532 | const CXXRecordDecl *RD, VPtrInfo *Info, |
| 3533 | std::list<FullPathTy> &FullPaths) { |
David Majnemer | e48630f | 2015-05-05 01:39:20 +0000 | [diff] [blame] | 3534 | // Handle some easy cases first. |
| 3535 | if (FullPaths.empty()) |
| 3536 | return nullptr; |
| 3537 | if (FullPaths.size() == 1) |
| 3538 | return &FullPaths.front(); |
| 3539 | |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3540 | const FullPathTy *BestPath = nullptr; |
| 3541 | typedef std::set<const CXXMethodDecl *> OverriderSetTy; |
| 3542 | OverriderSetTy LastOverrides; |
| 3543 | for (const FullPathTy &SpecificPath : FullPaths) { |
David Majnemer | e48630f | 2015-05-05 01:39:20 +0000 | [diff] [blame] | 3544 | assert(!SpecificPath.empty()); |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3545 | OverriderSetTy CurrentOverrides; |
| 3546 | const CXXRecordDecl *TopLevelRD = SpecificPath.begin()->getBase(); |
| 3547 | // Find the distance from the start of the path to the subobject with the |
| 3548 | // VPtr. |
| 3549 | CharUnits BaseOffset = |
| 3550 | getOffsetOfFullPath(Context, TopLevelRD, SpecificPath); |
| 3551 | FinalOverriders Overriders(TopLevelRD, CharUnits::Zero(), TopLevelRD); |
| 3552 | for (const CXXMethodDecl *MD : Info->BaseWithVPtr->methods()) { |
| 3553 | if (!MD->isVirtual()) |
| 3554 | continue; |
| 3555 | FinalOverriders::OverriderInfo OI = |
| 3556 | Overriders.getOverrider(MD->getCanonicalDecl(), BaseOffset); |
David Majnemer | e48630f | 2015-05-05 01:39:20 +0000 | [diff] [blame] | 3557 | const CXXMethodDecl *OverridingMethod = OI.Method; |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3558 | // Only overriders which have a return adjustment introduce problematic |
| 3559 | // thunks. |
David Majnemer | e48630f | 2015-05-05 01:39:20 +0000 | [diff] [blame] | 3560 | if (ComputeReturnAdjustmentBaseOffset(Context, OverridingMethod, MD) |
| 3561 | .isEmpty()) |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3562 | continue; |
| 3563 | // It's possible that the overrider isn't in this path. If so, skip it |
| 3564 | // because this path didn't introduce it. |
David Majnemer | e48630f | 2015-05-05 01:39:20 +0000 | [diff] [blame] | 3565 | const CXXRecordDecl *OverridingParent = OverridingMethod->getParent(); |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3566 | if (std::none_of(SpecificPath.begin(), SpecificPath.end(), |
| 3567 | [&](const BaseSubobject &BSO) { |
| 3568 | return BSO.getBase() == OverridingParent; |
| 3569 | })) |
| 3570 | continue; |
David Majnemer | e48630f | 2015-05-05 01:39:20 +0000 | [diff] [blame] | 3571 | CurrentOverrides.insert(OverridingMethod); |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3572 | } |
| 3573 | OverriderSetTy NewOverrides = |
| 3574 | llvm::set_difference(CurrentOverrides, LastOverrides); |
| 3575 | if (NewOverrides.empty()) |
| 3576 | continue; |
| 3577 | OverriderSetTy MissingOverrides = |
| 3578 | llvm::set_difference(LastOverrides, CurrentOverrides); |
| 3579 | if (MissingOverrides.empty()) { |
| 3580 | // This path is a strict improvement over the last path, let's use it. |
| 3581 | BestPath = &SpecificPath; |
| 3582 | std::swap(CurrentOverrides, LastOverrides); |
| 3583 | } else { |
| 3584 | // This path introduces an overrider with a conflicting covariant thunk. |
| 3585 | DiagnosticsEngine &Diags = Context.getDiagnostics(); |
| 3586 | const CXXMethodDecl *CovariantMD = *NewOverrides.begin(); |
| 3587 | const CXXMethodDecl *ConflictMD = *MissingOverrides.begin(); |
| 3588 | Diags.Report(RD->getLocation(), diag::err_vftable_ambiguous_component) |
| 3589 | << RD; |
| 3590 | Diags.Report(CovariantMD->getLocation(), diag::note_covariant_thunk) |
| 3591 | << CovariantMD; |
| 3592 | Diags.Report(ConflictMD->getLocation(), diag::note_covariant_thunk) |
| 3593 | << ConflictMD; |
| 3594 | } |
Reid Kleckner | 15fdcf1 | 2014-09-22 23:14:46 +0000 | [diff] [blame] | 3595 | } |
David Majnemer | e48630f | 2015-05-05 01:39:20 +0000 | [diff] [blame] | 3596 | // Go with the path that introduced the most covariant overrides. If there is |
| 3597 | // no such path, pick the first path. |
| 3598 | return BestPath ? BestPath : &FullPaths.front(); |
Reid Kleckner | 15fdcf1 | 2014-09-22 23:14:46 +0000 | [diff] [blame] | 3599 | } |
| 3600 | |
| 3601 | static void computeFullPathsForVFTables(ASTContext &Context, |
| 3602 | const CXXRecordDecl *RD, |
| 3603 | VPtrInfoVector &Paths) { |
Reid Kleckner | 15fdcf1 | 2014-09-22 23:14:46 +0000 | [diff] [blame] | 3604 | const ASTRecordLayout &MostDerivedLayout = Context.getASTRecordLayout(RD); |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3605 | FullPathTy FullPath; |
| 3606 | std::list<FullPathTy> FullPaths; |
Reid Kleckner | 15fdcf1 | 2014-09-22 23:14:46 +0000 | [diff] [blame] | 3607 | for (VPtrInfo *Info : Paths) { |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3608 | findPathsToSubobject( |
| 3609 | Context, MostDerivedLayout, RD, CharUnits::Zero(), |
| 3610 | BaseSubobject(Info->BaseWithVPtr, Info->FullOffsetInMDC), FullPath, |
| 3611 | FullPaths); |
Reid Kleckner | 15fdcf1 | 2014-09-22 23:14:46 +0000 | [diff] [blame] | 3612 | FullPath.clear(); |
David Majnemer | ab13092 | 2015-05-04 18:47:54 +0000 | [diff] [blame] | 3613 | removeRedundantPaths(FullPaths); |
| 3614 | Info->PathToBaseWithVPtr.clear(); |
| 3615 | if (const FullPathTy *BestPath = |
| 3616 | selectBestPath(Context, RD, Info, FullPaths)) |
| 3617 | for (const BaseSubobject &BSO : *BestPath) |
| 3618 | Info->PathToBaseWithVPtr.push_back(BSO.getBase()); |
| 3619 | FullPaths.clear(); |
Reid Kleckner | 15fdcf1 | 2014-09-22 23:14:46 +0000 | [diff] [blame] | 3620 | } |
| 3621 | } |
| 3622 | |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 3623 | void MicrosoftVTableContext::computeVTableRelatedInformation( |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3624 | const CXXRecordDecl *RD) { |
| 3625 | assert(RD->isDynamicClass()); |
| 3626 | |
| 3627 | // Check if we've computed this information before. |
| 3628 | if (VFPtrLocations.count(RD)) |
| 3629 | return; |
| 3630 | |
| 3631 | const VTableLayout::AddressPointsMapTy EmptyAddressPointsMap; |
| 3632 | |
Reid Kleckner | d6f9b83 | 2014-02-27 22:51:43 +0000 | [diff] [blame] | 3633 | VPtrInfoVector *VFPtrs = new VPtrInfoVector(); |
| 3634 | computeVTablePaths(/*ForVBTables=*/false, RD, *VFPtrs); |
Reid Kleckner | 15fdcf1 | 2014-09-22 23:14:46 +0000 | [diff] [blame] | 3635 | computeFullPathsForVFTables(Context, RD, *VFPtrs); |
Reid Kleckner | d6f9b83 | 2014-02-27 22:51:43 +0000 | [diff] [blame] | 3636 | VFPtrLocations[RD] = VFPtrs; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3637 | |
| 3638 | MethodVFTableLocationsTy NewMethodLocations; |
Reid Kleckner | d6f9b83 | 2014-02-27 22:51:43 +0000 | [diff] [blame] | 3639 | for (VPtrInfoVector::iterator I = VFPtrs->begin(), E = VFPtrs->end(); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3640 | I != E; ++I) { |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 3641 | VFTableBuilder Builder(*this, RD, *I); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3642 | |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3643 | VFTableIdTy id(RD, (*I)->FullOffsetInMDC); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3644 | assert(VFTableLayouts.count(id) == 0); |
| 3645 | SmallVector<VTableLayout::VTableThunkTy, 1> VTableThunks( |
| 3646 | Builder.vtable_thunks_begin(), Builder.vtable_thunks_end()); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3647 | VFTableLayouts[id] = new VTableLayout( |
| 3648 | Builder.getNumVTableComponents(), Builder.vtable_component_begin(), |
| 3649 | VTableThunks.size(), VTableThunks.data(), EmptyAddressPointsMap, true); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3650 | Thunks.insert(Builder.thunks_begin(), Builder.thunks_end()); |
Timur Iskhodzhanov | ba55702 | 2014-03-20 20:38:34 +0000 | [diff] [blame] | 3651 | |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 3652 | for (const auto &Loc : Builder.vtable_locations()) { |
| 3653 | GlobalDecl GD = Loc.first; |
| 3654 | MethodVFTableLocation NewLoc = Loc.second; |
Timur Iskhodzhanov | ba55702 | 2014-03-20 20:38:34 +0000 | [diff] [blame] | 3655 | auto M = NewMethodLocations.find(GD); |
| 3656 | if (M == NewMethodLocations.end() || NewLoc < M->second) |
| 3657 | NewMethodLocations[GD] = NewLoc; |
| 3658 | } |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3659 | } |
| 3660 | |
| 3661 | MethodVFTableLocations.insert(NewMethodLocations.begin(), |
| 3662 | NewMethodLocations.end()); |
| 3663 | if (Context.getLangOpts().DumpVTableLayouts) |
Reid Kleckner | 5bc6d0f | 2013-11-08 21:28:00 +0000 | [diff] [blame] | 3664 | dumpMethodLocations(RD, NewMethodLocations, llvm::outs()); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3665 | } |
| 3666 | |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 3667 | void MicrosoftVTableContext::dumpMethodLocations( |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3668 | const CXXRecordDecl *RD, const MethodVFTableLocationsTy &NewMethods, |
| 3669 | raw_ostream &Out) { |
| 3670 | // Compute the vtable indices for all the member functions. |
| 3671 | // Store them in a map keyed by the location so we'll get a sorted table. |
| 3672 | std::map<MethodVFTableLocation, std::string> IndicesMap; |
| 3673 | bool HasNonzeroOffset = false; |
| 3674 | |
| 3675 | for (MethodVFTableLocationsTy::const_iterator I = NewMethods.begin(), |
| 3676 | E = NewMethods.end(); I != E; ++I) { |
| 3677 | const CXXMethodDecl *MD = cast<const CXXMethodDecl>(I->first.getDecl()); |
| 3678 | assert(MD->isVirtual()); |
| 3679 | |
| 3680 | std::string MethodName = PredefinedExpr::ComputeName( |
| 3681 | PredefinedExpr::PrettyFunctionNoVirtual, MD); |
| 3682 | |
| 3683 | if (isa<CXXDestructorDecl>(MD)) { |
| 3684 | IndicesMap[I->second] = MethodName + " [scalar deleting]"; |
| 3685 | } else { |
| 3686 | IndicesMap[I->second] = MethodName; |
| 3687 | } |
| 3688 | |
Timur Iskhodzhanov | 9e7f505 | 2013-11-07 13:34:02 +0000 | [diff] [blame] | 3689 | if (!I->second.VFPtrOffset.isZero() || I->second.VBTableIndex != 0) |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3690 | HasNonzeroOffset = true; |
| 3691 | } |
| 3692 | |
| 3693 | // Print the vtable indices for all the member functions. |
| 3694 | if (!IndicesMap.empty()) { |
| 3695 | Out << "VFTable indices for "; |
Aaron Ballman | 75ee4cc | 2014-01-03 18:42:48 +0000 | [diff] [blame] | 3696 | Out << "'"; |
| 3697 | RD->printQualifiedName(Out); |
Timur Iskhodzhanov | 77764b6 | 2014-03-05 13:54:07 +0000 | [diff] [blame] | 3698 | Out << "' (" << IndicesMap.size() |
| 3699 | << (IndicesMap.size() == 1 ? " entry" : " entries") << ").\n"; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3700 | |
| 3701 | CharUnits LastVFPtrOffset = CharUnits::fromQuantity(-1); |
| 3702 | uint64_t LastVBIndex = 0; |
| 3703 | for (std::map<MethodVFTableLocation, std::string>::const_iterator |
| 3704 | I = IndicesMap.begin(), |
| 3705 | E = IndicesMap.end(); |
| 3706 | I != E; ++I) { |
Timur Iskhodzhanov | 9e7f505 | 2013-11-07 13:34:02 +0000 | [diff] [blame] | 3707 | CharUnits VFPtrOffset = I->first.VFPtrOffset; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3708 | uint64_t VBIndex = I->first.VBTableIndex; |
| 3709 | if (HasNonzeroOffset && |
| 3710 | (VFPtrOffset != LastVFPtrOffset || VBIndex != LastVBIndex)) { |
| 3711 | assert(VBIndex > LastVBIndex || VFPtrOffset > LastVFPtrOffset); |
| 3712 | Out << " -- accessible via "; |
| 3713 | if (VBIndex) |
| 3714 | Out << "vbtable index " << VBIndex << ", "; |
| 3715 | Out << "vfptr at offset " << VFPtrOffset.getQuantity() << " --\n"; |
| 3716 | LastVFPtrOffset = VFPtrOffset; |
| 3717 | LastVBIndex = VBIndex; |
| 3718 | } |
| 3719 | |
| 3720 | uint64_t VTableIndex = I->first.Index; |
| 3721 | const std::string &MethodName = I->second; |
| 3722 | Out << llvm::format("%4" PRIu64 " | ", VTableIndex) << MethodName << '\n'; |
| 3723 | } |
| 3724 | Out << '\n'; |
| 3725 | } |
Timur Iskhodzhanov | 4fea4f9 | 2014-03-20 13:42:14 +0000 | [diff] [blame] | 3726 | |
| 3727 | Out.flush(); |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3728 | } |
| 3729 | |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3730 | const VirtualBaseInfo *MicrosoftVTableContext::computeVBTableRelatedInformation( |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 3731 | const CXXRecordDecl *RD) { |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3732 | VirtualBaseInfo *VBI; |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 3733 | |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3734 | { |
| 3735 | // Get or create a VBI for RD. Don't hold a reference to the DenseMap cell, |
| 3736 | // as it may be modified and rehashed under us. |
| 3737 | VirtualBaseInfo *&Entry = VBaseInfo[RD]; |
| 3738 | if (Entry) |
| 3739 | return Entry; |
| 3740 | Entry = VBI = new VirtualBaseInfo(); |
| 3741 | } |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3742 | |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3743 | computeVTablePaths(/*ForVBTables=*/true, RD, VBI->VBPtrPaths); |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 3744 | |
Timur Iskhodzhanov | 2c9341f | 2013-11-08 11:45:35 +0000 | [diff] [blame] | 3745 | // First, see if the Derived class shared the vbptr with a non-virtual base. |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3746 | const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); |
Timur Iskhodzhanov | 2c9341f | 2013-11-08 11:45:35 +0000 | [diff] [blame] | 3747 | if (const CXXRecordDecl *VBPtrBase = Layout.getBaseSharingVBPtr()) { |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3748 | // If the Derived class shares the vbptr with a non-virtual base, the shared |
| 3749 | // virtual bases come first so that the layout is the same. |
| 3750 | const VirtualBaseInfo *BaseInfo = |
| 3751 | computeVBTableRelatedInformation(VBPtrBase); |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3752 | VBI->VBTableIndices.insert(BaseInfo->VBTableIndices.begin(), |
| 3753 | BaseInfo->VBTableIndices.end()); |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 3754 | } |
| 3755 | |
| 3756 | // New vbases are added to the end of the vbtable. |
| 3757 | // Skip the self entry and vbases visited in the non-virtual base, if any. |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3758 | unsigned VBTableIndex = 1 + VBI->VBTableIndices.size(); |
Timur Iskhodzhanov | 1523c61 | 2014-03-26 08:22:48 +0000 | [diff] [blame] | 3759 | for (const auto &VB : RD->vbases()) { |
| 3760 | const CXXRecordDecl *CurVBase = VB.getType()->getAsCXXRecordDecl(); |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3761 | if (!VBI->VBTableIndices.count(CurVBase)) |
| 3762 | VBI->VBTableIndices[CurVBase] = VBTableIndex++; |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 3763 | } |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3764 | |
Reid Kleckner | 5f08094 | 2014-01-03 23:42:00 +0000 | [diff] [blame] | 3765 | return VBI; |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3766 | } |
| 3767 | |
| 3768 | unsigned MicrosoftVTableContext::getVBTableIndex(const CXXRecordDecl *Derived, |
| 3769 | const CXXRecordDecl *VBase) { |
| 3770 | const VirtualBaseInfo *VBInfo = computeVBTableRelatedInformation(Derived); |
| 3771 | assert(VBInfo->VBTableIndices.count(VBase)); |
| 3772 | return VBInfo->VBTableIndices.find(VBase)->second; |
| 3773 | } |
| 3774 | |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3775 | const VPtrInfoVector & |
Reid Kleckner | b40a27d | 2014-01-03 00:14:35 +0000 | [diff] [blame] | 3776 | MicrosoftVTableContext::enumerateVBTables(const CXXRecordDecl *RD) { |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3777 | return computeVBTableRelatedInformation(RD)->VBPtrPaths; |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 3778 | } |
| 3779 | |
Reid Kleckner | 9c6e9e3 | 2014-02-27 19:40:09 +0000 | [diff] [blame] | 3780 | const VPtrInfoVector & |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 3781 | MicrosoftVTableContext::getVFPtrOffsets(const CXXRecordDecl *RD) { |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3782 | computeVTableRelatedInformation(RD); |
| 3783 | |
| 3784 | assert(VFPtrLocations.count(RD) && "Couldn't find vfptr locations"); |
Reid Kleckner | d6f9b83 | 2014-02-27 22:51:43 +0000 | [diff] [blame] | 3785 | return *VFPtrLocations[RD]; |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3786 | } |
| 3787 | |
| 3788 | const VTableLayout & |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 3789 | MicrosoftVTableContext::getVFTableLayout(const CXXRecordDecl *RD, |
| 3790 | CharUnits VFPtrOffset) { |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3791 | computeVTableRelatedInformation(RD); |
| 3792 | |
| 3793 | VFTableIdTy id(RD, VFPtrOffset); |
| 3794 | assert(VFTableLayouts.count(id) && "Couldn't find a VFTable at this offset"); |
| 3795 | return *VFTableLayouts[id]; |
| 3796 | } |
| 3797 | |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 3798 | const MicrosoftVTableContext::MethodVFTableLocation & |
| 3799 | MicrosoftVTableContext::getMethodVFTableLocation(GlobalDecl GD) { |
Timur Iskhodzhanov | df7e7fb | 2013-07-30 09:46:19 +0000 | [diff] [blame] | 3800 | assert(cast<CXXMethodDecl>(GD.getDecl())->isVirtual() && |
| 3801 | "Only use this method for virtual methods or dtors"); |
| 3802 | if (isa<CXXDestructorDecl>(GD.getDecl())) |
| 3803 | assert(GD.getDtorType() == Dtor_Deleting); |
| 3804 | |
| 3805 | MethodVFTableLocationsTy::iterator I = MethodVFTableLocations.find(GD); |
| 3806 | if (I != MethodVFTableLocations.end()) |
| 3807 | return I->second; |
| 3808 | |
| 3809 | const CXXRecordDecl *RD = cast<CXXMethodDecl>(GD.getDecl())->getParent(); |
| 3810 | |
| 3811 | computeVTableRelatedInformation(RD); |
| 3812 | |
| 3813 | I = MethodVFTableLocations.find(GD); |
| 3814 | assert(I != MethodVFTableLocations.end() && "Did not find index!"); |
| 3815 | return I->second; |
| 3816 | } |