Skip to content
Snippets Groups Projects
Commit e2ff5abe authored by Peter Collingbourne's avatar Peter Collingbourne
Browse files

Make the VTTBuilder class independent of LLVM core

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140498 91177308-0d34-0410-b5e6-96231b3b80d8
parent 3a218091
No related branches found
No related tags found
No related merge requests found
...@@ -21,6 +21,44 @@ using namespace CodeGen; ...@@ -21,6 +21,44 @@ using namespace CodeGen;
namespace { namespace {
class VTTVTable {
llvm::PointerIntPair<const CXXRecordDecl *, 1, bool> BaseAndIsVirtual;
CharUnits BaseOffset;
public:
VTTVTable() {}
VTTVTable(const CXXRecordDecl *Base, CharUnits BaseOffset, bool BaseIsVirtual)
: BaseAndIsVirtual(Base, BaseIsVirtual), BaseOffset(BaseOffset) {}
VTTVTable(BaseSubobject Base, bool BaseIsVirtual)
: BaseAndIsVirtual(Base.getBase(), BaseIsVirtual),
BaseOffset(Base.getBaseOffset()) {}
const CXXRecordDecl *getBase() const {
return BaseAndIsVirtual.getPointer();
}
CharUnits getBaseOffset() const {
return BaseOffset;
}
bool isVirtual() const {
return BaseAndIsVirtual.getInt();
}
BaseSubobject getBaseSubobject() const {
return BaseSubobject(getBase(), getBaseOffset());
}
};
struct VTTComponent {
uint64_t VTableIndex;
BaseSubobject VTableBase;
VTTComponent() {}
VTTComponent(uint64_t VTableIndex, BaseSubobject VTableBase)
: VTableIndex(VTableIndex), VTableBase(VTableBase) {}
};
/// VTT builder - Class for building VTT layout information. /// VTT builder - Class for building VTT layout information.
class VTTBuilder { class VTTBuilder {
...@@ -30,7 +68,12 @@ class VTTBuilder { ...@@ -30,7 +68,12 @@ class VTTBuilder {
/// vtable. /// vtable.
const CXXRecordDecl *MostDerivedClass; const CXXRecordDecl *MostDerivedClass;
typedef SmallVector<llvm::Constant *, 64> VTTComponentsVectorTy; typedef SmallVector<VTTVTable, 64> VTTVTablesVectorTy;
/// VTTVTables - The VTT vtables.
VTTVTablesVectorTy VTTVTables;
typedef SmallVector<VTTComponent, 64> VTTComponentsVectorTy;
/// VTTComponents - The VTT components. /// VTTComponents - The VTT components.
VTTComponentsVectorTy VTTComponents; VTTComponentsVectorTy VTTComponents;
...@@ -54,25 +97,12 @@ class VTTBuilder { ...@@ -54,25 +97,12 @@ class VTTBuilder {
/// the VTT. /// the VTT.
bool GenerateDefinition; bool GenerateDefinition;
/// The linkage to use for any construction vtables required by this VTT.
/// Only required if we're building a definition.
llvm::GlobalVariable::LinkageTypes LinkageForConstructionVTables;
/// GetAddrOfVTable - Returns the address of the vtable for the base class in
/// the given vtable class.
///
/// \param AddressPoints - If the returned vtable is a construction vtable,
/// this will hold the address points for it.
llvm::Constant *GetAddrOfVTable(BaseSubobject Base, bool BaseIsVirtual,
AddressPointsMapTy& AddressPoints);
/// AddVTablePointer - Add a vtable pointer to the VTT currently being built. /// AddVTablePointer - Add a vtable pointer to the VTT currently being built.
/// ///
/// \param AddressPoints - If the vtable is a construction vtable, this has /// \param AddressPoints - If the vtable is a construction vtable, this has
/// the address points for it. /// the address points for it.
void AddVTablePointer(BaseSubobject Base, llvm::Constant *VTable, void AddVTablePointer(BaseSubobject Base, uint64_t VTableIndex,
const CXXRecordDecl *VTableClass, const CXXRecordDecl *VTableClass);
const AddressPointsMapTy& AddressPoints);
/// LayoutSecondaryVTTs - Lay out the secondary VTTs of the given base /// LayoutSecondaryVTTs - Lay out the secondary VTTs of the given base
/// subobject. /// subobject.
...@@ -88,9 +118,8 @@ class VTTBuilder { ...@@ -88,9 +118,8 @@ class VTTBuilder {
/// the address points for it. /// the address points for it.
void LayoutSecondaryVirtualPointers(BaseSubobject Base, void LayoutSecondaryVirtualPointers(BaseSubobject Base,
bool BaseIsMorallyVirtual, bool BaseIsMorallyVirtual,
llvm::Constant *VTable, uint64_t VTableIndex,
const CXXRecordDecl *VTableClass, const CXXRecordDecl *VTableClass,
const AddressPointsMapTy& AddressPoints,
VisitedVirtualBasesSetTy &VBases); VisitedVirtualBasesSetTy &VBases);
/// LayoutSecondaryVirtualPointers - Lay out the secondary virtual pointers /// LayoutSecondaryVirtualPointers - Lay out the secondary virtual pointers
...@@ -99,8 +128,7 @@ class VTTBuilder { ...@@ -99,8 +128,7 @@ class VTTBuilder {
/// \param AddressPoints - If the vtable is a construction vtable, this has /// \param AddressPoints - If the vtable is a construction vtable, this has
/// the address points for it. /// the address points for it.
void LayoutSecondaryVirtualPointers(BaseSubobject Base, void LayoutSecondaryVirtualPointers(BaseSubobject Base,
llvm::Constant *VTable, uint64_t VTableIndex);
const AddressPointsMapTy& AddressPoints);
/// LayoutVirtualVTTs - Lay out the VTTs for the virtual base classes of the /// LayoutVirtualVTTs - Lay out the VTTs for the virtual base classes of the
/// given record decl. /// given record decl.
...@@ -113,15 +141,18 @@ class VTTBuilder { ...@@ -113,15 +141,18 @@ class VTTBuilder {
public: public:
VTTBuilder(CodeGenModule &CGM, const CXXRecordDecl *MostDerivedClass, VTTBuilder(CodeGenModule &CGM, const CXXRecordDecl *MostDerivedClass,
bool GenerateDefinition, bool GenerateDefinition);
llvm::GlobalVariable::LinkageTypes LinkageForConstructionVTables
= (llvm::GlobalVariable::LinkageTypes) -1);
// getVTTComponents - Returns a reference to the VTT components. // getVTTComponents - Returns a reference to the VTT components.
const VTTComponentsVectorTy &getVTTComponents() const { const VTTComponentsVectorTy &getVTTComponents() const {
return VTTComponents; return VTTComponents;
} }
// getVTTVTables - Returns a reference to the VTT vtables.
const VTTVTablesVectorTy &getVTTVTables() const {
return VTTVTables;
}
/// getSubVTTIndicies - Returns a reference to the sub-VTT indices. /// getSubVTTIndicies - Returns a reference to the sub-VTT indices.
const llvm::DenseMap<BaseSubobject, uint64_t> &getSubVTTIndicies() const { const llvm::DenseMap<BaseSubobject, uint64_t> &getSubVTTIndicies() const {
return SubVTTIndicies; return SubVTTIndicies;
...@@ -138,43 +169,36 @@ public: ...@@ -138,43 +169,36 @@ public:
VTTBuilder::VTTBuilder(CodeGenModule &CGM, VTTBuilder::VTTBuilder(CodeGenModule &CGM,
const CXXRecordDecl *MostDerivedClass, const CXXRecordDecl *MostDerivedClass,
bool GenerateDefinition, bool GenerateDefinition)
llvm::GlobalVariable::LinkageTypes LinkageForConstructionVTables)
: CGM(CGM), MostDerivedClass(MostDerivedClass), : CGM(CGM), MostDerivedClass(MostDerivedClass),
MostDerivedClassLayout(CGM.getContext().getASTRecordLayout(MostDerivedClass)), MostDerivedClassLayout(CGM.getContext().getASTRecordLayout(MostDerivedClass)),
GenerateDefinition(GenerateDefinition), GenerateDefinition(GenerateDefinition) {
LinkageForConstructionVTables(LinkageForConstructionVTables) {
assert(!GenerateDefinition ||
LinkageForConstructionVTables
!= (llvm::GlobalVariable::LinkageTypes) -1);
// Lay out this VTT. // Lay out this VTT.
LayoutVTT(BaseSubobject(MostDerivedClass, CharUnits::Zero()), LayoutVTT(BaseSubobject(MostDerivedClass, CharUnits::Zero()),
/*BaseIsVirtual=*/false); /*BaseIsVirtual=*/false);
} }
llvm::Constant * llvm::Constant *GetAddrOfVTTVTable(CodeGenVTables &CGVT,
VTTBuilder::GetAddrOfVTable(BaseSubobject Base, bool BaseIsVirtual, const CXXRecordDecl *MostDerivedClass,
AddressPointsMapTy& AddressPoints) { const VTTVTable &VTable,
if (!GenerateDefinition) llvm::GlobalVariable::LinkageTypes Linkage,
return 0; llvm::DenseMap<BaseSubobject, uint64_t> &AddressPoints) {
if (VTable.getBase() == MostDerivedClass) {
if (Base.getBase() == MostDerivedClass) { assert(VTable.getBaseOffset().isZero() &&
assert(Base.getBaseOffset().isZero() &&
"Most derived class vtable must have a zero offset!"); "Most derived class vtable must have a zero offset!");
// This is a regular vtable. // This is a regular vtable.
return CGM.getVTables().GetAddrOfVTable(MostDerivedClass); return CGVT.GetAddrOfVTable(MostDerivedClass);
} }
return CGM.getVTables().GenerateConstructionVTable(MostDerivedClass, return CGVT.GenerateConstructionVTable(MostDerivedClass,
Base, BaseIsVirtual, VTable.getBaseSubobject(),
LinkageForConstructionVTables, VTable.isVirtual(),
AddressPoints); Linkage,
AddressPoints);
} }
void VTTBuilder::AddVTablePointer(BaseSubobject Base, llvm::Constant *VTable, void VTTBuilder::AddVTablePointer(BaseSubobject Base, uint64_t VTableIndex,
const CXXRecordDecl *VTableClass, const CXXRecordDecl *VTableClass) {
const AddressPointsMapTy& AddressPoints) {
// Store the vtable pointer index if we're generating the primary VTT. // Store the vtable pointer index if we're generating the primary VTT.
if (VTableClass == MostDerivedClass) { if (VTableClass == MostDerivedClass) {
assert(!SecondaryVirtualPointerIndices.count(Base) && assert(!SecondaryVirtualPointerIndices.count(Base) &&
...@@ -183,37 +207,11 @@ void VTTBuilder::AddVTablePointer(BaseSubobject Base, llvm::Constant *VTable, ...@@ -183,37 +207,11 @@ void VTTBuilder::AddVTablePointer(BaseSubobject Base, llvm::Constant *VTable,
} }
if (!GenerateDefinition) { if (!GenerateDefinition) {
VTTComponents.push_back(0); VTTComponents.push_back(VTTComponent());
return; return;
} }
uint64_t AddressPoint; VTTComponents.push_back(VTTComponent(VTableIndex, Base));
if (VTableClass != MostDerivedClass) {
// The vtable is a construction vtable, look in the construction vtable
// address points.
AddressPoint = AddressPoints.lookup(Base);
assert(AddressPoint != 0 && "Did not find ctor vtable address point!");
} else {
// Just get the address point for the regular vtable.
AddressPoint = CGM.getVTables().getAddressPoint(Base, VTableClass);
assert(AddressPoint != 0 && "Did not find vtable address point!");
}
if (!AddressPoint) AddressPoint = 0;
llvm::Value *Idxs[] = {
llvm::ConstantInt::get(llvm::Type::getInt64Ty(CGM.getLLVMContext()), 0),
llvm::ConstantInt::get(llvm::Type::getInt64Ty(CGM.getLLVMContext()),
AddressPoint)
};
llvm::Constant *Init =
llvm::ConstantExpr::getInBoundsGetElementPtr(VTable, Idxs);
llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGM.getLLVMContext());
Init = llvm::ConstantExpr::getBitCast(Init, Int8PtrTy);
VTTComponents.push_back(Init);
} }
void VTTBuilder::LayoutSecondaryVTTs(BaseSubobject Base) { void VTTBuilder::LayoutSecondaryVTTs(BaseSubobject Base) {
...@@ -240,11 +238,10 @@ void VTTBuilder::LayoutSecondaryVTTs(BaseSubobject Base) { ...@@ -240,11 +238,10 @@ void VTTBuilder::LayoutSecondaryVTTs(BaseSubobject Base) {
void void
VTTBuilder::LayoutSecondaryVirtualPointers(BaseSubobject Base, VTTBuilder::LayoutSecondaryVirtualPointers(BaseSubobject Base,
bool BaseIsMorallyVirtual, bool BaseIsMorallyVirtual,
llvm::Constant *VTable, uint64_t VTableIndex,
const CXXRecordDecl *VTableClass, const CXXRecordDecl *VTableClass,
const AddressPointsMapTy& AddressPoints, VisitedVirtualBasesSetTy &VBases) {
VisitedVirtualBasesSetTy &VBases) {
const CXXRecordDecl *RD = Base.getBase(); const CXXRecordDecl *RD = Base.getBase();
// We're not interested in bases that don't have virtual bases, and not // We're not interested in bases that don't have virtual bases, and not
...@@ -296,24 +293,23 @@ VTTBuilder::LayoutSecondaryVirtualPointers(BaseSubobject Base, ...@@ -296,24 +293,23 @@ VTTBuilder::LayoutSecondaryVirtualPointers(BaseSubobject Base,
if (!BaseDeclIsNonVirtualPrimaryBase && if (!BaseDeclIsNonVirtualPrimaryBase &&
(BaseDecl->getNumVBases() || BaseDeclIsMorallyVirtual)) { (BaseDecl->getNumVBases() || BaseDeclIsMorallyVirtual)) {
// Add the vtable pointer. // Add the vtable pointer.
AddVTablePointer(BaseSubobject(BaseDecl, BaseOffset), VTable, AddVTablePointer(BaseSubobject(BaseDecl, BaseOffset), VTableIndex,
VTableClass, AddressPoints); VTableClass);
} }
// And lay out the secondary virtual pointers for the base class. // And lay out the secondary virtual pointers for the base class.
LayoutSecondaryVirtualPointers(BaseSubobject(BaseDecl, BaseOffset), LayoutSecondaryVirtualPointers(BaseSubobject(BaseDecl, BaseOffset),
BaseDeclIsMorallyVirtual, VTable, BaseDeclIsMorallyVirtual, VTableIndex,
VTableClass, AddressPoints, VBases); VTableClass, VBases);
} }
} }
void void
VTTBuilder::LayoutSecondaryVirtualPointers(BaseSubobject Base, VTTBuilder::LayoutSecondaryVirtualPointers(BaseSubobject Base,
llvm::Constant *VTable, uint64_t VTableIndex) {
const AddressPointsMapTy& AddressPoints) {
VisitedVirtualBasesSetTy VBases; VisitedVirtualBasesSetTy VBases;
LayoutSecondaryVirtualPointers(Base, /*BaseIsMorallyVirtual=*/false, LayoutSecondaryVirtualPointers(Base, /*BaseIsMorallyVirtual=*/false,
VTable, Base.getBase(), AddressPoints, VBases); VTableIndex, Base.getBase(), VBases);
} }
void VTTBuilder::LayoutVirtualVTTs(const CXXRecordDecl *RD, void VTTBuilder::LayoutVirtualVTTs(const CXXRecordDecl *RD,
...@@ -358,17 +354,17 @@ void VTTBuilder::LayoutVTT(BaseSubobject Base, bool BaseIsVirtual) { ...@@ -358,17 +354,17 @@ void VTTBuilder::LayoutVTT(BaseSubobject Base, bool BaseIsVirtual) {
SubVTTIndicies[Base] = VTTComponents.size(); SubVTTIndicies[Base] = VTTComponents.size();
} }
AddressPointsMapTy AddressPoints; uint64_t VTableIndex = VTTVTables.size();
llvm::Constant *VTable = GetAddrOfVTable(Base, BaseIsVirtual, AddressPoints); VTTVTables.push_back(VTTVTable(Base, BaseIsVirtual));
// Add the primary vtable pointer. // Add the primary vtable pointer.
AddVTablePointer(Base, VTable, RD, AddressPoints); AddVTablePointer(Base, VTableIndex, RD);
// Add the secondary VTTs. // Add the secondary VTTs.
LayoutSecondaryVTTs(Base); LayoutSecondaryVTTs(Base);
// Add the secondary virtual pointers. // Add the secondary virtual pointers.
LayoutSecondaryVirtualPointers(Base, VTable, AddressPoints); LayoutSecondaryVirtualPointers(Base, VTableIndex);
// If this is the primary VTT, we want to lay out virtual VTTs as well. // If this is the primary VTT, we want to lay out virtual VTTs as well.
if (IsPrimaryVTT) { if (IsPrimaryVTT) {
...@@ -383,14 +379,51 @@ void ...@@ -383,14 +379,51 @@ void
CodeGenVTables::EmitVTTDefinition(llvm::GlobalVariable *VTT, CodeGenVTables::EmitVTTDefinition(llvm::GlobalVariable *VTT,
llvm::GlobalVariable::LinkageTypes Linkage, llvm::GlobalVariable::LinkageTypes Linkage,
const CXXRecordDecl *RD) { const CXXRecordDecl *RD) {
VTTBuilder Builder(CGM, RD, /*GenerateDefinition=*/true, Linkage); VTTBuilder Builder(CGM, RD, /*GenerateDefinition=*/true);
llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGM.getLLVMContext()); llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGM.getLLVMContext()),
*Int64Ty = llvm::Type::getInt64Ty(CGM.getLLVMContext());
llvm::ArrayType *ArrayType = llvm::ArrayType *ArrayType =
llvm::ArrayType::get(Int8PtrTy, Builder.getVTTComponents().size()); llvm::ArrayType::get(Int8PtrTy, Builder.getVTTComponents().size());
llvm::Constant *Init = SmallVector<llvm::Constant *, 8> VTables;
llvm::ConstantArray::get(ArrayType, Builder.getVTTComponents()); SmallVector<VTableAddressPointsMapTy, 8> VTableAddressPoints;
for (const VTTVTable *i = Builder.getVTTVTables().begin(),
*e = Builder.getVTTVTables().end(); i != e; ++i) {
VTableAddressPoints.push_back(VTableAddressPointsMapTy());
VTables.push_back(GetAddrOfVTTVTable(*this, RD, *i, Linkage,
VTableAddressPoints.back()));
}
SmallVector<llvm::Constant *, 8> VTTComponents;
for (const VTTComponent *i = Builder.getVTTComponents().begin(),
*e = Builder.getVTTComponents().end(); i != e; ++i) {
const VTTVTable &VTTVT = Builder.getVTTVTables()[i->VTableIndex];
llvm::Constant *VTable = VTables[i->VTableIndex];
uint64_t AddressPoint;
if (VTTVT.getBase() == RD) {
// Just get the address point for the regular vtable.
AddressPoint = getAddressPoint(i->VTableBase, RD);
assert(AddressPoint != 0 && "Did not find vtable address point!");
} else {
AddressPoint = VTableAddressPoints[i->VTableIndex].lookup(i->VTableBase);
assert(AddressPoint != 0 && "Did not find ctor vtable address point!");
}
llvm::Value *Idxs[] = {
llvm::ConstantInt::get(Int64Ty, 0),
llvm::ConstantInt::get(Int64Ty, AddressPoint)
};
llvm::Constant *Init =
llvm::ConstantExpr::getInBoundsGetElementPtr(VTable, Idxs);
Init = llvm::ConstantExpr::getBitCast(Init, Int8PtrTy);
VTTComponents.push_back(Init);
}
llvm::Constant *Init = llvm::ConstantArray::get(ArrayType, VTTComponents);
VTT->setInitializer(Init); VTT->setInitializer(Init);
......
...@@ -37,6 +37,7 @@ class BaseSubobject { ...@@ -37,6 +37,7 @@ class BaseSubobject {
CharUnits BaseOffset; CharUnits BaseOffset;
public: public:
BaseSubobject() { }
BaseSubobject(const CXXRecordDecl *Base, CharUnits BaseOffset) BaseSubobject(const CXXRecordDecl *Base, CharUnits BaseOffset)
: Base(Base), BaseOffset(BaseOffset) { } : Base(Base), BaseOffset(BaseOffset) { }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment