2009-10-12 06:13:54 +08:00
|
|
|
//===--- CGVtable.cpp - Emit LLVM Code for C++ vtables --------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This contains code dealing with C++ code generation of virtual tables.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "CodeGenModule.h"
|
|
|
|
#include "CodeGenFunction.h"
|
|
|
|
|
|
|
|
#include "clang/AST/RecordLayout.h"
|
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
using namespace CodeGen;
|
|
|
|
|
|
|
|
class VtableBuilder {
|
|
|
|
public:
|
|
|
|
/// Index_t - Vtable index type.
|
|
|
|
typedef uint64_t Index_t;
|
|
|
|
private:
|
|
|
|
std::vector<llvm::Constant *> &methods;
|
|
|
|
std::vector<llvm::Constant *> submethods;
|
|
|
|
llvm::Type *Ptr8Ty;
|
|
|
|
/// Class - The most derived class that this vtable is being built for.
|
|
|
|
const CXXRecordDecl *Class;
|
|
|
|
/// BLayout - Layout for the most derived class that this vtable is being
|
|
|
|
/// built for.
|
|
|
|
const ASTRecordLayout &BLayout;
|
|
|
|
llvm::SmallSet<const CXXRecordDecl *, 32> IndirectPrimary;
|
|
|
|
llvm::SmallSet<const CXXRecordDecl *, 32> SeenVBase;
|
|
|
|
llvm::Constant *rtti;
|
|
|
|
llvm::LLVMContext &VMContext;
|
|
|
|
CodeGenModule &CGM; // Per-module state.
|
|
|
|
/// Index - Maps a method decl into a vtable index. Useful for virtual
|
|
|
|
/// dispatch codegen.
|
|
|
|
llvm::DenseMap<const CXXMethodDecl *, Index_t> Index;
|
|
|
|
llvm::DenseMap<const CXXMethodDecl *, Index_t> VCall;
|
|
|
|
llvm::DenseMap<const CXXMethodDecl *, Index_t> VCallOffset;
|
2009-11-07 07:27:42 +08:00
|
|
|
// This is the offset to the nearest virtual base
|
|
|
|
llvm::DenseMap<const CXXMethodDecl *, Index_t> NonVirtualOffset;
|
2009-10-12 06:13:54 +08:00
|
|
|
llvm::DenseMap<const CXXRecordDecl *, Index_t> VBIndex;
|
2009-10-28 07:46:47 +08:00
|
|
|
|
|
|
|
typedef llvm::DenseMap<const CXXMethodDecl *, int> Pures_t;
|
|
|
|
Pures_t Pures;
|
2009-10-12 06:13:54 +08:00
|
|
|
typedef std::pair<Index_t, Index_t> CallOffset;
|
|
|
|
typedef llvm::DenseMap<const CXXMethodDecl *, CallOffset> Thunks_t;
|
|
|
|
Thunks_t Thunks;
|
|
|
|
typedef llvm::DenseMap<const CXXMethodDecl *,
|
2009-10-13 18:55:21 +08:00
|
|
|
std::pair<std::pair<CallOffset, CallOffset>,
|
|
|
|
CanQualType> > CovariantThunks_t;
|
2009-10-12 06:13:54 +08:00
|
|
|
CovariantThunks_t CovariantThunks;
|
|
|
|
std::vector<Index_t> VCalls;
|
|
|
|
typedef CXXRecordDecl::method_iterator method_iter;
|
|
|
|
// FIXME: Linkage should follow vtable
|
|
|
|
const bool Extern;
|
|
|
|
const uint32_t LLVMPointerWidth;
|
|
|
|
Index_t extra;
|
2009-10-15 10:04:03 +08:00
|
|
|
typedef std::vector<std::pair<const CXXRecordDecl *, int64_t> > Path_t;
|
2009-10-28 07:46:47 +08:00
|
|
|
llvm::Constant *cxa_pure;
|
2009-10-12 06:13:54 +08:00
|
|
|
public:
|
|
|
|
VtableBuilder(std::vector<llvm::Constant *> &meth,
|
|
|
|
const CXXRecordDecl *c,
|
|
|
|
CodeGenModule &cgm)
|
|
|
|
: methods(meth), Class(c), BLayout(cgm.getContext().getASTRecordLayout(c)),
|
|
|
|
rtti(cgm.GenerateRtti(c)), VMContext(cgm.getModule().getContext()),
|
|
|
|
CGM(cgm), Extern(true),
|
2009-11-07 07:27:42 +08:00
|
|
|
LLVMPointerWidth(cgm.getContext().Target.getPointerWidth(0)) {
|
2009-10-12 06:13:54 +08:00
|
|
|
Ptr8Ty = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
|
2009-10-28 08:35:46 +08:00
|
|
|
|
|
|
|
// Calculate pointer for ___cxa_pure_virtual.
|
|
|
|
const llvm::FunctionType *FTy;
|
|
|
|
std::vector<const llvm::Type*> ArgTys;
|
|
|
|
const llvm::Type *ResultType = llvm::Type::getVoidTy(VMContext);
|
|
|
|
FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
|
|
|
|
cxa_pure = wrap(CGM.CreateRuntimeFunction(FTy, "__cxa_pure_virtual"));
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
llvm::DenseMap<const CXXMethodDecl *, Index_t> &getIndex() { return Index; }
|
|
|
|
llvm::DenseMap<const CXXRecordDecl *, Index_t> &getVBIndex()
|
|
|
|
{ return VBIndex; }
|
|
|
|
|
|
|
|
llvm::Constant *wrap(Index_t i) {
|
|
|
|
llvm::Constant *m;
|
|
|
|
m = llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), i);
|
|
|
|
return llvm::ConstantExpr::getIntToPtr(m, Ptr8Ty);
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::Constant *wrap(llvm::Constant *m) {
|
|
|
|
return llvm::ConstantExpr::getBitCast(m, Ptr8Ty);
|
|
|
|
}
|
|
|
|
|
2009-11-01 04:06:59 +08:00
|
|
|
#define D1(x)
|
|
|
|
//#define D1(X) do { if (getenv("DEBUG")) { X; } } while (0)
|
|
|
|
|
|
|
|
void GenerateVBaseOffsets(const CXXRecordDecl *RD, uint64_t Offset,
|
2009-10-14 06:54:56 +08:00
|
|
|
bool updateVBIndex, Index_t current_vbindex) {
|
2009-10-12 06:13:54 +08:00
|
|
|
for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
|
|
|
|
e = RD->bases_end(); i != e; ++i) {
|
|
|
|
const CXXRecordDecl *Base =
|
|
|
|
cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
|
2009-10-14 06:54:56 +08:00
|
|
|
Index_t next_vbindex = current_vbindex;
|
2009-10-12 06:13:54 +08:00
|
|
|
if (i->isVirtual() && !SeenVBase.count(Base)) {
|
|
|
|
SeenVBase.insert(Base);
|
2009-10-14 06:54:56 +08:00
|
|
|
if (updateVBIndex) {
|
2009-11-01 04:06:59 +08:00
|
|
|
next_vbindex = (ssize_t)(-(VCalls.size()*LLVMPointerWidth/8)
|
2009-10-14 06:54:56 +08:00
|
|
|
- 3*LLVMPointerWidth/8);
|
|
|
|
VBIndex[Base] = next_vbindex;
|
|
|
|
}
|
2009-11-01 04:06:59 +08:00
|
|
|
int64_t BaseOffset = -(Offset/8) + BLayout.getVBaseClassOffset(Base)/8;
|
|
|
|
VCalls.push_back((0?700:0) + BaseOffset);
|
|
|
|
D1(printf(" vbase for %s at %d delta %d most derived %s\n",
|
|
|
|
Base->getNameAsCString(),
|
|
|
|
(int)-VCalls.size()-3, (int)BaseOffset,
|
|
|
|
Class->getNameAsCString()));
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
2009-10-14 06:54:56 +08:00
|
|
|
// We also record offsets for non-virtual bases to closest enclosing
|
|
|
|
// virtual base. We do this so that we don't have to search
|
|
|
|
// for the nearst virtual base class when generating thunks.
|
|
|
|
if (updateVBIndex && VBIndex.count(Base) == 0)
|
|
|
|
VBIndex[Base] = next_vbindex;
|
2009-11-01 04:06:59 +08:00
|
|
|
GenerateVBaseOffsets(Base, Offset, updateVBIndex, next_vbindex);
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void StartNewTable() {
|
|
|
|
SeenVBase.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
Index_t VBlookup(CXXRecordDecl *D, CXXRecordDecl *B);
|
|
|
|
|
2009-10-15 17:30:16 +08:00
|
|
|
Index_t getNVOffset_1(const CXXRecordDecl *D, const CXXRecordDecl *B,
|
|
|
|
Index_t Offset = 0) {
|
|
|
|
|
|
|
|
if (B == D)
|
|
|
|
return Offset;
|
|
|
|
|
|
|
|
const ASTRecordLayout &Layout = CGM.getContext().getASTRecordLayout(D);
|
|
|
|
for (CXXRecordDecl::base_class_const_iterator i = D->bases_begin(),
|
|
|
|
e = D->bases_end(); i != e; ++i) {
|
|
|
|
const CXXRecordDecl *Base =
|
|
|
|
cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
|
|
|
|
int64_t BaseOffset = 0;
|
|
|
|
if (!i->isVirtual())
|
|
|
|
BaseOffset = Offset + Layout.getBaseClassOffset(Base);
|
|
|
|
int64_t o = getNVOffset_1(Base, B, BaseOffset);
|
|
|
|
if (o >= 0)
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getNVOffset - Returns the non-virtual offset for the given (B) base of the
|
|
|
|
/// derived class D.
|
|
|
|
Index_t getNVOffset(QualType qB, QualType qD) {
|
2009-11-04 03:03:17 +08:00
|
|
|
qD = qD->getPointeeType();
|
|
|
|
qB = qB->getPointeeType();
|
2009-10-15 17:30:16 +08:00
|
|
|
CXXRecordDecl *D = cast<CXXRecordDecl>(qD->getAs<RecordType>()->getDecl());
|
|
|
|
CXXRecordDecl *B = cast<CXXRecordDecl>(qB->getAs<RecordType>()->getDecl());
|
|
|
|
int64_t o = getNVOffset_1(D, B);
|
|
|
|
if (o >= 0)
|
|
|
|
return o;
|
|
|
|
|
|
|
|
assert(false && "FIXME: non-virtual base not found");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-12 06:13:54 +08:00
|
|
|
/// getVbaseOffset - Returns the index into the vtable for the virtual base
|
|
|
|
/// offset for the given (B) virtual base of the derived class D.
|
|
|
|
Index_t getVbaseOffset(QualType qB, QualType qD) {
|
2009-11-04 03:03:17 +08:00
|
|
|
qD = qD->getPointeeType();
|
|
|
|
qB = qB->getPointeeType();
|
2009-10-12 06:13:54 +08:00
|
|
|
CXXRecordDecl *D = cast<CXXRecordDecl>(qD->getAs<RecordType>()->getDecl());
|
|
|
|
CXXRecordDecl *B = cast<CXXRecordDecl>(qB->getAs<RecordType>()->getDecl());
|
|
|
|
if (D != Class)
|
|
|
|
return VBlookup(D, B);
|
|
|
|
llvm::DenseMap<const CXXRecordDecl *, Index_t>::iterator i;
|
|
|
|
i = VBIndex.find(B);
|
|
|
|
if (i != VBIndex.end())
|
|
|
|
return i->second;
|
|
|
|
|
2009-10-14 06:54:56 +08:00
|
|
|
assert(false && "FIXME: Base not found");
|
2009-10-12 06:13:54 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OverrideMethod(const CXXMethodDecl *MD, llvm::Constant *m,
|
2009-10-15 17:30:16 +08:00
|
|
|
bool MorallyVirtual, Index_t OverrideOffset,
|
2009-11-07 07:27:42 +08:00
|
|
|
Index_t Offset, int64_t CurrentVBaseOffset) {
|
2009-10-28 08:35:46 +08:00
|
|
|
const bool isPure = MD->isPure();
|
2009-10-12 06:13:54 +08:00
|
|
|
typedef CXXMethodDecl::method_iterator meth_iter;
|
2009-10-15 17:30:16 +08:00
|
|
|
// FIXME: Should OverrideOffset's be Offset?
|
2009-10-12 06:13:54 +08:00
|
|
|
|
|
|
|
// FIXME: Don't like the nested loops. For very large inheritance
|
|
|
|
// heirarchies we could have a table on the side with the final overridder
|
|
|
|
// and just replace each instance of an overridden method once. Would be
|
|
|
|
// nice to measure the cost/benefit on real code.
|
|
|
|
|
|
|
|
for (meth_iter mi = MD->begin_overridden_methods(),
|
|
|
|
e = MD->end_overridden_methods();
|
|
|
|
mi != e; ++mi) {
|
|
|
|
const CXXMethodDecl *OMD = *mi;
|
|
|
|
llvm::Constant *om;
|
|
|
|
om = CGM.GetAddrOfFunction(OMD, Ptr8Ty);
|
|
|
|
om = llvm::ConstantExpr::getBitCast(om, Ptr8Ty);
|
|
|
|
|
|
|
|
for (Index_t i = 0, e = submethods.size();
|
|
|
|
i != e; ++i) {
|
|
|
|
// FIXME: begin_overridden_methods might be too lax, covariance */
|
|
|
|
if (submethods[i] != om)
|
|
|
|
continue;
|
|
|
|
QualType nc_oret = OMD->getType()->getAs<FunctionType>()->getResultType();
|
|
|
|
CanQualType oret = CGM.getContext().getCanonicalType(nc_oret);
|
|
|
|
QualType nc_ret = MD->getType()->getAs<FunctionType>()->getResultType();
|
|
|
|
CanQualType ret = CGM.getContext().getCanonicalType(nc_ret);
|
|
|
|
CallOffset ReturnOffset = std::make_pair(0, 0);
|
|
|
|
if (oret != ret) {
|
|
|
|
// FIXME: calculate offsets for covariance
|
2009-10-13 18:55:21 +08:00
|
|
|
if (CovariantThunks.count(OMD)) {
|
|
|
|
oret = CovariantThunks[OMD].second;
|
|
|
|
CovariantThunks.erase(OMD);
|
|
|
|
}
|
2009-10-15 17:30:16 +08:00
|
|
|
// FIXME: Double check oret
|
|
|
|
Index_t nv = getNVOffset(oret, ret)/8;
|
2009-10-13 18:55:21 +08:00
|
|
|
ReturnOffset = std::make_pair(nv, getVbaseOffset(oret, ret));
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
Index[MD] = i;
|
|
|
|
submethods[i] = m;
|
2009-10-28 08:35:46 +08:00
|
|
|
if (isPure)
|
|
|
|
Pures[MD] = 1;
|
|
|
|
Pures.erase(OMD);
|
2009-10-12 06:13:54 +08:00
|
|
|
Thunks.erase(OMD);
|
2009-11-07 07:27:42 +08:00
|
|
|
if (MorallyVirtual || VCall.count(OMD)) {
|
2009-10-12 06:13:54 +08:00
|
|
|
Index_t &idx = VCall[OMD];
|
|
|
|
if (idx == 0) {
|
2009-11-07 07:27:42 +08:00
|
|
|
NonVirtualOffset[MD] = -OverrideOffset/8 + CurrentVBaseOffset/8;
|
2009-10-15 17:30:16 +08:00
|
|
|
VCallOffset[MD] = OverrideOffset/8;
|
2009-10-12 06:13:54 +08:00
|
|
|
idx = VCalls.size()+1;
|
|
|
|
VCalls.push_back(0);
|
2009-11-01 04:06:59 +08:00
|
|
|
D1(printf(" vcall for %s at %d with delta %d most derived %s\n",
|
2009-11-06 10:38:24 +08:00
|
|
|
MD->getNameAsCString(), (int)-idx-3, (int)VCalls[idx-1],
|
2009-11-01 04:06:59 +08:00
|
|
|
Class->getNameAsCString()));
|
2009-10-12 06:13:54 +08:00
|
|
|
} else {
|
2009-11-07 07:27:42 +08:00
|
|
|
NonVirtualOffset[MD] = NonVirtualOffset[OMD];
|
2009-10-12 06:13:54 +08:00
|
|
|
VCallOffset[MD] = VCallOffset[OMD];
|
2009-10-15 17:30:16 +08:00
|
|
|
VCalls[idx-1] = -VCallOffset[OMD] + OverrideOffset/8;
|
2009-11-01 04:06:59 +08:00
|
|
|
D1(printf(" vcall patch for %s at %d with delta %d most derived %s\n",
|
2009-11-06 10:38:24 +08:00
|
|
|
MD->getNameAsCString(), (int)-idx-3, (int)VCalls[idx-1],
|
2009-11-01 04:06:59 +08:00
|
|
|
Class->getNameAsCString()));
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
VCall[MD] = idx;
|
2009-11-07 07:27:42 +08:00
|
|
|
int64_t O = NonVirtualOffset[MD];
|
|
|
|
int v = -((idx+extra+2)*LLVMPointerWidth/8);
|
|
|
|
// Optimize out virtual adjustments of 0.
|
|
|
|
if (VCalls[idx-1] == 0)
|
|
|
|
v = 0;
|
|
|
|
CallOffset ThisOffset = std::make_pair(O, v);
|
2009-10-15 10:04:03 +08:00
|
|
|
// FIXME: Do we always have to build a covariant thunk to save oret,
|
|
|
|
// which is the containing virtual base class?
|
2009-10-12 06:13:54 +08:00
|
|
|
if (ReturnOffset.first || ReturnOffset.second)
|
2009-10-13 18:55:21 +08:00
|
|
|
CovariantThunks[MD] = std::make_pair(std::make_pair(ThisOffset,
|
|
|
|
ReturnOffset),
|
|
|
|
oret);
|
2009-11-07 07:27:42 +08:00
|
|
|
else if (!isPure && (ThisOffset.first || ThisOffset.second))
|
2009-10-12 06:13:54 +08:00
|
|
|
Thunks[MD] = ThisOffset;
|
|
|
|
return true;
|
|
|
|
}
|
2009-10-14 06:54:56 +08:00
|
|
|
|
2009-10-12 06:13:54 +08:00
|
|
|
// FIXME: finish off
|
2009-10-15 17:30:16 +08:00
|
|
|
int64_t O = VCallOffset[OMD] - OverrideOffset/8;
|
2009-11-07 07:27:42 +08:00
|
|
|
|
2009-10-14 06:54:56 +08:00
|
|
|
if (O || ReturnOffset.first || ReturnOffset.second) {
|
|
|
|
CallOffset ThisOffset = std::make_pair(O, 0);
|
|
|
|
|
|
|
|
if (ReturnOffset.first || ReturnOffset.second)
|
|
|
|
CovariantThunks[MD] = std::make_pair(std::make_pair(ThisOffset,
|
|
|
|
ReturnOffset),
|
|
|
|
oret);
|
2009-10-28 08:35:46 +08:00
|
|
|
else if (!isPure)
|
2009-10-14 06:54:56 +08:00
|
|
|
Thunks[MD] = ThisOffset;
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstallThunks() {
|
|
|
|
for (Thunks_t::iterator i = Thunks.begin(), e = Thunks.end();
|
|
|
|
i != e; ++i) {
|
|
|
|
const CXXMethodDecl *MD = i->first;
|
2009-10-28 08:35:46 +08:00
|
|
|
assert(!MD->isPure() && "Trying to thunk a pure");
|
2009-10-12 06:13:54 +08:00
|
|
|
Index_t idx = Index[MD];
|
|
|
|
Index_t nv_O = i->second.first;
|
|
|
|
Index_t v_O = i->second.second;
|
|
|
|
submethods[idx] = CGM.BuildThunk(MD, Extern, nv_O, v_O);
|
|
|
|
}
|
|
|
|
Thunks.clear();
|
|
|
|
for (CovariantThunks_t::iterator i = CovariantThunks.begin(),
|
|
|
|
e = CovariantThunks.end();
|
|
|
|
i != e; ++i) {
|
|
|
|
const CXXMethodDecl *MD = i->first;
|
2009-10-28 08:35:46 +08:00
|
|
|
if (MD->isPure())
|
|
|
|
continue;
|
2009-10-12 06:13:54 +08:00
|
|
|
Index_t idx = Index[MD];
|
2009-10-13 18:55:21 +08:00
|
|
|
Index_t nv_t = i->second.first.first.first;
|
|
|
|
Index_t v_t = i->second.first.first.second;
|
|
|
|
Index_t nv_r = i->second.first.second.first;
|
|
|
|
Index_t v_r = i->second.first.second.second;
|
2009-10-12 06:13:54 +08:00
|
|
|
submethods[idx] = CGM.BuildCovariantThunk(MD, Extern, nv_t, v_t, nv_r,
|
|
|
|
v_r);
|
|
|
|
}
|
|
|
|
CovariantThunks.clear();
|
2009-10-28 07:46:47 +08:00
|
|
|
for (Pures_t::iterator i = Pures.begin(), e = Pures.end();
|
|
|
|
i != e; ++i) {
|
|
|
|
const CXXMethodDecl *MD = i->first;
|
|
|
|
Index_t idx = Index[MD];
|
|
|
|
submethods[idx] = cxa_pure;
|
|
|
|
}
|
|
|
|
Pures.clear();
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
|
2009-10-28 07:36:26 +08:00
|
|
|
llvm::Constant *WrapAddrOf(const CXXMethodDecl *MD) {
|
|
|
|
if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(MD))
|
|
|
|
return wrap(CGM.GetAddrOfCXXDestructor(Dtor, Dtor_Complete));
|
|
|
|
|
|
|
|
const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
|
|
|
|
const llvm::Type *Ty =
|
|
|
|
CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
|
|
|
|
FPT->isVariadic());
|
|
|
|
|
|
|
|
return wrap(CGM.GetAddrOfFunction(MD, Ty));
|
|
|
|
}
|
|
|
|
|
2009-11-07 07:27:42 +08:00
|
|
|
void OverrideMethods(Path_t *Path, bool MorallyVirtual, int64_t Offset,
|
|
|
|
int64_t CurrentVBaseOffset) {
|
2009-10-15 10:04:03 +08:00
|
|
|
for (Path_t::reverse_iterator i = Path->rbegin(),
|
2009-10-12 06:13:54 +08:00
|
|
|
e = Path->rend(); i != e; ++i) {
|
|
|
|
const CXXRecordDecl *RD = i->first;
|
2009-10-15 17:30:16 +08:00
|
|
|
int64_t OverrideOffset = i->second;
|
2009-10-12 06:13:54 +08:00
|
|
|
for (method_iter mi = RD->method_begin(), me = RD->method_end(); mi != me;
|
|
|
|
++mi) {
|
|
|
|
if (!mi->isVirtual())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const CXXMethodDecl *MD = *mi;
|
2009-10-28 07:36:26 +08:00
|
|
|
llvm::Constant *m = WrapAddrOf(MD);
|
2009-11-07 07:27:42 +08:00
|
|
|
OverrideMethod(MD, m, MorallyVirtual, OverrideOffset, Offset,
|
|
|
|
CurrentVBaseOffset);
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-01 04:06:59 +08:00
|
|
|
void AddMethod(const CXXMethodDecl *MD, bool MorallyVirtual, Index_t Offset,
|
2009-11-07 07:27:42 +08:00
|
|
|
bool ForVirtualBase, int64_t CurrentVBaseOffset) {
|
2009-10-28 07:36:26 +08:00
|
|
|
llvm::Constant *m = WrapAddrOf(MD);
|
|
|
|
|
2009-10-12 06:13:54 +08:00
|
|
|
// If we can find a previously allocated slot for this, reuse it.
|
2009-11-07 07:27:42 +08:00
|
|
|
if (OverrideMethod(MD, m, MorallyVirtual, Offset, Offset,
|
|
|
|
CurrentVBaseOffset))
|
2009-10-12 06:13:54 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
// else allocate a new slot.
|
|
|
|
Index[MD] = submethods.size();
|
|
|
|
submethods.push_back(m);
|
2009-11-01 04:06:59 +08:00
|
|
|
D1(printf(" vfn for %s at %d\n", MD->getNameAsCString(), (int)Index[MD]));
|
2009-10-28 08:35:46 +08:00
|
|
|
if (MD->isPure())
|
|
|
|
Pures[MD] = 1;
|
2009-10-12 06:13:54 +08:00
|
|
|
if (MorallyVirtual) {
|
|
|
|
VCallOffset[MD] = Offset/8;
|
|
|
|
Index_t &idx = VCall[MD];
|
|
|
|
// Allocate the first one, after that, we reuse the previous one.
|
|
|
|
if (idx == 0) {
|
2009-11-07 07:27:42 +08:00
|
|
|
NonVirtualOffset[MD] = CurrentVBaseOffset/8 - Offset/8;
|
2009-10-12 06:13:54 +08:00
|
|
|
idx = VCalls.size()+1;
|
|
|
|
VCalls.push_back(0);
|
2009-11-01 04:06:59 +08:00
|
|
|
D1(printf(" vcall for %s at %d with delta %d\n",
|
2009-11-06 10:38:24 +08:00
|
|
|
MD->getNameAsCString(), (int)-VCalls.size()-3, 0));
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AddMethods(const CXXRecordDecl *RD, bool MorallyVirtual,
|
2009-11-07 07:27:42 +08:00
|
|
|
Index_t Offset, bool RDisVirtualBase,
|
|
|
|
int64_t CurrentVBaseOffset) {
|
2009-10-12 06:13:54 +08:00
|
|
|
for (method_iter mi = RD->method_begin(), me = RD->method_end(); mi != me;
|
|
|
|
++mi)
|
|
|
|
if (mi->isVirtual())
|
2009-11-07 07:27:42 +08:00
|
|
|
AddMethod(*mi, MorallyVirtual, Offset, RDisVirtualBase,
|
|
|
|
CurrentVBaseOffset);
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void NonVirtualBases(const CXXRecordDecl *RD, const ASTRecordLayout &Layout,
|
|
|
|
const CXXRecordDecl *PrimaryBase,
|
|
|
|
bool PrimaryBaseWasVirtual, bool MorallyVirtual,
|
2009-11-07 07:27:42 +08:00
|
|
|
int64_t Offset, int64_t CurrentVBaseOffset,
|
|
|
|
Path_t *Path) {
|
2009-10-15 10:04:03 +08:00
|
|
|
Path->push_back(std::make_pair(RD, Offset));
|
2009-10-12 06:13:54 +08:00
|
|
|
for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
|
|
|
|
e = RD->bases_end(); i != e; ++i) {
|
|
|
|
if (i->isVirtual())
|
|
|
|
continue;
|
|
|
|
const CXXRecordDecl *Base =
|
|
|
|
cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
|
|
|
|
if (Base != PrimaryBase || PrimaryBaseWasVirtual) {
|
|
|
|
uint64_t o = Offset + Layout.getBaseClassOffset(Base);
|
|
|
|
StartNewTable();
|
2009-11-07 07:27:42 +08:00
|
|
|
GenerateVtableForBase(Base, MorallyVirtual, o, false,
|
|
|
|
CurrentVBaseOffset, Path);
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
}
|
2009-10-15 10:04:03 +08:00
|
|
|
Path->pop_back();
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
|
2009-10-15 02:14:51 +08:00
|
|
|
// #define D(X) do { X; } while (0)
|
|
|
|
#define D(X)
|
|
|
|
|
|
|
|
void insertVCalls(int InsertionPoint) {
|
|
|
|
llvm::Constant *e = 0;
|
2009-11-01 04:06:59 +08:00
|
|
|
D1(printf("============= combining vbase/vcall\n"));
|
2009-10-15 02:14:51 +08:00
|
|
|
D(VCalls.insert(VCalls.begin(), 673));
|
|
|
|
D(VCalls.push_back(672));
|
2009-10-15 17:30:16 +08:00
|
|
|
methods.insert(methods.begin() + InsertionPoint, VCalls.size(), e);
|
2009-10-15 02:14:51 +08:00
|
|
|
// The vcalls come first...
|
|
|
|
for (std::vector<Index_t>::reverse_iterator i = VCalls.rbegin(),
|
|
|
|
e = VCalls.rend();
|
|
|
|
i != e; ++i)
|
|
|
|
methods[InsertionPoint++] = wrap((0?600:0) + *i);
|
|
|
|
VCalls.clear();
|
2009-11-10 10:30:51 +08:00
|
|
|
VCall.clear();
|
2009-10-15 02:14:51 +08:00
|
|
|
}
|
|
|
|
|
2009-11-01 04:06:59 +08:00
|
|
|
Index_t end(const CXXRecordDecl *RD, const ASTRecordLayout &Layout,
|
|
|
|
const CXXRecordDecl *PrimaryBase, bool PrimaryBaseWasVirtual,
|
|
|
|
bool MorallyVirtual, int64_t Offset, bool ForVirtualBase,
|
2009-11-07 07:27:42 +08:00
|
|
|
int64_t CurrentVBaseOffset,
|
2009-11-01 04:06:59 +08:00
|
|
|
Path_t *Path) {
|
2009-10-15 10:04:03 +08:00
|
|
|
bool alloc = false;
|
|
|
|
if (Path == 0) {
|
|
|
|
alloc = true;
|
|
|
|
Path = new Path_t;
|
|
|
|
}
|
|
|
|
|
2009-10-12 06:13:54 +08:00
|
|
|
StartNewTable();
|
|
|
|
extra = 0;
|
2009-10-15 02:14:51 +08:00
|
|
|
bool DeferVCalls = MorallyVirtual || ForVirtualBase;
|
|
|
|
int VCallInsertionPoint = methods.size();
|
|
|
|
if (!DeferVCalls) {
|
|
|
|
insertVCalls(VCallInsertionPoint);
|
2009-10-15 17:30:16 +08:00
|
|
|
} else
|
|
|
|
// FIXME: just for extra, or for all uses of VCalls.size post this?
|
|
|
|
extra = -VCalls.size();
|
2009-10-12 06:13:54 +08:00
|
|
|
|
|
|
|
methods.push_back(wrap(-(Offset/8)));
|
|
|
|
methods.push_back(rtti);
|
|
|
|
Index_t AddressPoint = methods.size();
|
|
|
|
|
|
|
|
InstallThunks();
|
2009-11-01 04:06:59 +08:00
|
|
|
D1(printf("============= combining methods\n"));
|
2009-10-12 06:13:54 +08:00
|
|
|
methods.insert(methods.end(), submethods.begin(), submethods.end());
|
|
|
|
submethods.clear();
|
|
|
|
|
|
|
|
// and then the non-virtual bases.
|
|
|
|
NonVirtualBases(RD, Layout, PrimaryBase, PrimaryBaseWasVirtual,
|
2009-11-07 07:27:42 +08:00
|
|
|
MorallyVirtual, Offset, CurrentVBaseOffset, Path);
|
2009-10-15 02:14:51 +08:00
|
|
|
|
|
|
|
if (ForVirtualBase) {
|
|
|
|
insertVCalls(VCallInsertionPoint);
|
|
|
|
AddressPoint += VCalls.size();
|
|
|
|
}
|
|
|
|
|
2009-10-15 10:04:03 +08:00
|
|
|
if (alloc) {
|
|
|
|
delete Path;
|
|
|
|
}
|
2009-10-12 06:13:54 +08:00
|
|
|
return AddressPoint;
|
|
|
|
}
|
|
|
|
|
2009-11-01 04:06:59 +08:00
|
|
|
void Primaries(const CXXRecordDecl *RD, bool MorallyVirtual, int64_t Offset,
|
|
|
|
bool updateVBIndex, Index_t current_vbindex,
|
2009-11-07 07:27:42 +08:00
|
|
|
bool RDisVirtualBase, int64_t CurrentVBaseOffset) {
|
2009-11-01 04:06:59 +08:00
|
|
|
if (!RD->isDynamicClass())
|
|
|
|
return;
|
|
|
|
|
|
|
|
const ASTRecordLayout &Layout = CGM.getContext().getASTRecordLayout(RD);
|
|
|
|
const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase();
|
|
|
|
const bool PrimaryBaseWasVirtual = Layout.getPrimaryBaseWasVirtual();
|
|
|
|
|
|
|
|
// vtables are composed from the chain of primaries.
|
|
|
|
if (PrimaryBase) {
|
|
|
|
D1(printf(" doing primaries for %s most derived %s\n",
|
|
|
|
RD->getNameAsCString(), Class->getNameAsCString()));
|
|
|
|
|
2009-11-07 07:27:42 +08:00
|
|
|
int BaseCurrentVBaseOffset = CurrentVBaseOffset;
|
|
|
|
if (PrimaryBaseWasVirtual)
|
|
|
|
BaseCurrentVBaseOffset = BLayout.getVBaseClassOffset(PrimaryBase);
|
|
|
|
|
2009-11-01 04:06:59 +08:00
|
|
|
if (!PrimaryBaseWasVirtual)
|
|
|
|
Primaries(PrimaryBase, PrimaryBaseWasVirtual|MorallyVirtual, Offset,
|
2009-11-07 07:27:42 +08:00
|
|
|
updateVBIndex, current_vbindex, PrimaryBaseWasVirtual,
|
|
|
|
BaseCurrentVBaseOffset);
|
2009-11-01 04:06:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
D1(printf(" doing vcall entries for %s most derived %s\n",
|
|
|
|
RD->getNameAsCString(), Class->getNameAsCString()));
|
|
|
|
|
|
|
|
// And add the virtuals for the class to the primary vtable.
|
2009-11-07 07:27:42 +08:00
|
|
|
AddMethods(RD, MorallyVirtual, Offset, RDisVirtualBase, CurrentVBaseOffset);
|
2009-11-01 04:06:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void VBPrimaries(const CXXRecordDecl *RD, bool MorallyVirtual, int64_t Offset,
|
|
|
|
bool updateVBIndex, Index_t current_vbindex,
|
2009-11-07 07:27:42 +08:00
|
|
|
bool RDisVirtualBase, int64_t CurrentVBaseOffset,
|
|
|
|
bool bottom=false) {
|
2009-10-12 06:13:54 +08:00
|
|
|
if (!RD->isDynamicClass())
|
|
|
|
return;
|
|
|
|
|
|
|
|
const ASTRecordLayout &Layout = CGM.getContext().getASTRecordLayout(RD);
|
|
|
|
const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase();
|
|
|
|
const bool PrimaryBaseWasVirtual = Layout.getPrimaryBaseWasVirtual();
|
|
|
|
|
|
|
|
// vtables are composed from the chain of primaries.
|
|
|
|
if (PrimaryBase) {
|
2009-11-07 07:27:42 +08:00
|
|
|
int BaseCurrentVBaseOffset = CurrentVBaseOffset;
|
|
|
|
if (PrimaryBaseWasVirtual) {
|
2009-10-12 06:13:54 +08:00
|
|
|
IndirectPrimary.insert(PrimaryBase);
|
2009-11-07 07:27:42 +08:00
|
|
|
BaseCurrentVBaseOffset = BLayout.getVBaseClassOffset(PrimaryBase);
|
|
|
|
}
|
2009-11-01 04:06:59 +08:00
|
|
|
|
|
|
|
D1(printf(" doing primaries for %s most derived %s\n",
|
|
|
|
RD->getNameAsCString(), Class->getNameAsCString()));
|
|
|
|
|
|
|
|
VBPrimaries(PrimaryBase, PrimaryBaseWasVirtual|MorallyVirtual, Offset,
|
2009-11-07 07:27:42 +08:00
|
|
|
updateVBIndex, current_vbindex, PrimaryBaseWasVirtual,
|
|
|
|
BaseCurrentVBaseOffset);
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
|
2009-11-01 04:06:59 +08:00
|
|
|
D1(printf(" doing vbase entries for %s most derived %s\n",
|
|
|
|
RD->getNameAsCString(), Class->getNameAsCString()));
|
|
|
|
GenerateVBaseOffsets(RD, Offset, updateVBIndex, current_vbindex);
|
|
|
|
|
|
|
|
if (RDisVirtualBase || bottom) {
|
|
|
|
Primaries(RD, MorallyVirtual, Offset, updateVBIndex, current_vbindex,
|
2009-11-07 07:27:42 +08:00
|
|
|
RDisVirtualBase, CurrentVBaseOffset);
|
2009-11-01 04:06:59 +08:00
|
|
|
}
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int64_t GenerateVtableForBase(const CXXRecordDecl *RD,
|
|
|
|
bool MorallyVirtual = false, int64_t Offset = 0,
|
|
|
|
bool ForVirtualBase = false,
|
2009-11-07 07:27:42 +08:00
|
|
|
int CurrentVBaseOffset = 0,
|
2009-10-15 10:04:03 +08:00
|
|
|
Path_t *Path = 0) {
|
2009-10-12 06:13:54 +08:00
|
|
|
if (!RD->isDynamicClass())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
const ASTRecordLayout &Layout = CGM.getContext().getASTRecordLayout(RD);
|
|
|
|
const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase();
|
|
|
|
const bool PrimaryBaseWasVirtual = Layout.getPrimaryBaseWasVirtual();
|
|
|
|
|
|
|
|
extra = 0;
|
2009-11-01 04:06:59 +08:00
|
|
|
D1(printf("building entries for base %s most derived %s\n",
|
|
|
|
RD->getNameAsCString(), Class->getNameAsCString()));
|
|
|
|
|
2009-10-12 06:13:54 +08:00
|
|
|
if (ForVirtualBase)
|
2009-11-01 04:06:59 +08:00
|
|
|
extra = VCalls.size();
|
2009-10-12 06:13:54 +08:00
|
|
|
|
2009-11-01 04:06:59 +08:00
|
|
|
VBPrimaries(RD, MorallyVirtual, Offset, !ForVirtualBase, 0, ForVirtualBase,
|
2009-11-07 07:27:42 +08:00
|
|
|
CurrentVBaseOffset, true);
|
2009-10-12 06:13:54 +08:00
|
|
|
|
|
|
|
if (Path)
|
2009-11-07 07:27:42 +08:00
|
|
|
OverrideMethods(Path, MorallyVirtual, Offset, CurrentVBaseOffset);
|
2009-10-12 06:13:54 +08:00
|
|
|
|
2009-11-01 04:06:59 +08:00
|
|
|
return end(RD, Layout, PrimaryBase, PrimaryBaseWasVirtual, MorallyVirtual,
|
2009-11-07 07:27:42 +08:00
|
|
|
Offset, ForVirtualBase, CurrentVBaseOffset, Path);
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void GenerateVtableForVBases(const CXXRecordDecl *RD,
|
|
|
|
int64_t Offset = 0,
|
2009-10-15 10:04:03 +08:00
|
|
|
Path_t *Path = 0) {
|
2009-10-12 06:13:54 +08:00
|
|
|
bool alloc = false;
|
|
|
|
if (Path == 0) {
|
|
|
|
alloc = true;
|
2009-10-15 10:04:03 +08:00
|
|
|
Path = new Path_t;
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
// FIXME: We also need to override using all paths to a virtual base,
|
|
|
|
// right now, we just process the first path
|
|
|
|
Path->push_back(std::make_pair(RD, Offset));
|
|
|
|
for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
|
|
|
|
e = RD->bases_end(); i != e; ++i) {
|
|
|
|
const CXXRecordDecl *Base =
|
|
|
|
cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
|
|
|
|
if (i->isVirtual() && !IndirectPrimary.count(Base)) {
|
|
|
|
// Mark it so we don't output it twice.
|
|
|
|
IndirectPrimary.insert(Base);
|
|
|
|
StartNewTable();
|
2009-10-15 02:14:51 +08:00
|
|
|
VCall.clear();
|
2009-10-12 06:13:54 +08:00
|
|
|
int64_t BaseOffset = BLayout.getVBaseClassOffset(Base);
|
2009-11-07 07:27:42 +08:00
|
|
|
int64_t CurrentVBaseOffset = BaseOffset;
|
2009-11-01 04:06:59 +08:00
|
|
|
D1(printf("vtable %s virtual base %s\n",
|
|
|
|
Class->getNameAsCString(), Base->getNameAsCString()));
|
2009-11-07 07:27:42 +08:00
|
|
|
GenerateVtableForBase(Base, true, BaseOffset, true, CurrentVBaseOffset,
|
|
|
|
Path);
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
int64_t BaseOffset = Offset;
|
|
|
|
if (i->isVirtual())
|
|
|
|
BaseOffset = BLayout.getVBaseClassOffset(Base);
|
2009-10-15 10:04:03 +08:00
|
|
|
if (Base->getNumVBases()) {
|
2009-10-12 06:13:54 +08:00
|
|
|
GenerateVtableForVBases(Base, BaseOffset, Path);
|
2009-10-15 10:04:03 +08:00
|
|
|
}
|
2009-10-12 06:13:54 +08:00
|
|
|
}
|
|
|
|
Path->pop_back();
|
|
|
|
if (alloc)
|
|
|
|
delete Path;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
VtableBuilder::Index_t VtableBuilder::VBlookup(CXXRecordDecl *D,
|
|
|
|
CXXRecordDecl *B) {
|
|
|
|
return CGM.getVtableInfo().getVirtualBaseOffsetIndex(D, B);
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t CGVtableInfo::getMethodVtableIndex(const CXXMethodDecl *MD) {
|
|
|
|
MD = MD->getCanonicalDecl();
|
|
|
|
|
|
|
|
MethodVtableIndicesTy::iterator I = MethodVtableIndices.find(MD);
|
|
|
|
if (I != MethodVtableIndices.end())
|
|
|
|
return I->second;
|
|
|
|
|
|
|
|
const CXXRecordDecl *RD = MD->getParent();
|
|
|
|
|
|
|
|
std::vector<llvm::Constant *> methods;
|
|
|
|
// FIXME: This seems expensive. Can we do a partial job to get
|
|
|
|
// just this data.
|
|
|
|
VtableBuilder b(methods, RD, CGM);
|
2009-11-01 04:06:59 +08:00
|
|
|
D1(printf("vtable %s\n", RD->getNameAsCString()));
|
2009-10-12 06:13:54 +08:00
|
|
|
b.GenerateVtableForBase(RD);
|
|
|
|
b.GenerateVtableForVBases(RD);
|
|
|
|
|
|
|
|
MethodVtableIndices.insert(b.getIndex().begin(),
|
|
|
|
b.getIndex().end());
|
|
|
|
|
|
|
|
I = MethodVtableIndices.find(MD);
|
|
|
|
assert(I != MethodVtableIndices.end() && "Did not find index!");
|
|
|
|
return I->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t CGVtableInfo::getVirtualBaseOffsetIndex(const CXXRecordDecl *RD,
|
|
|
|
const CXXRecordDecl *VBase) {
|
|
|
|
ClassPairTy ClassPair(RD, VBase);
|
|
|
|
|
|
|
|
VirtualBaseClassIndiciesTy::iterator I =
|
|
|
|
VirtualBaseClassIndicies.find(ClassPair);
|
|
|
|
if (I != VirtualBaseClassIndicies.end())
|
|
|
|
return I->second;
|
|
|
|
|
|
|
|
std::vector<llvm::Constant *> methods;
|
|
|
|
// FIXME: This seems expensive. Can we do a partial job to get
|
|
|
|
// just this data.
|
|
|
|
VtableBuilder b(methods, RD, CGM);
|
2009-11-01 04:06:59 +08:00
|
|
|
D1(printf("vtable %s\n", RD->getNameAsCString()));
|
2009-10-12 06:13:54 +08:00
|
|
|
b.GenerateVtableForBase(RD);
|
|
|
|
b.GenerateVtableForVBases(RD);
|
|
|
|
|
|
|
|
for (llvm::DenseMap<const CXXRecordDecl *, uint64_t>::iterator I =
|
|
|
|
b.getVBIndex().begin(), E = b.getVBIndex().end(); I != E; ++I) {
|
|
|
|
// Insert all types.
|
|
|
|
ClassPairTy ClassPair(RD, I->first);
|
|
|
|
|
|
|
|
VirtualBaseClassIndicies.insert(std::make_pair(ClassPair, I->second));
|
|
|
|
}
|
|
|
|
|
|
|
|
I = VirtualBaseClassIndicies.find(ClassPair);
|
|
|
|
assert(I != VirtualBaseClassIndicies.end() && "Did not find index!");
|
|
|
|
|
|
|
|
return I->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::Value *CodeGenFunction::GenerateVtable(const CXXRecordDecl *RD) {
|
|
|
|
llvm::SmallString<256> OutName;
|
|
|
|
llvm::raw_svector_ostream Out(OutName);
|
|
|
|
mangleCXXVtable(CGM.getMangleContext(), RD, Out);
|
2009-10-12 06:57:54 +08:00
|
|
|
|
2009-10-12 06:13:54 +08:00
|
|
|
llvm::GlobalVariable::LinkageTypes linktype;
|
2009-10-27 01:14:14 +08:00
|
|
|
linktype = llvm::GlobalValue::LinkOnceODRLinkage;
|
2009-10-12 06:13:54 +08:00
|
|
|
std::vector<llvm::Constant *> methods;
|
|
|
|
llvm::Type *Ptr8Ty=llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext),0);
|
|
|
|
int64_t AddressPoint;
|
|
|
|
|
|
|
|
VtableBuilder b(methods, RD, CGM);
|
|
|
|
|
2009-11-01 04:06:59 +08:00
|
|
|
D1(printf("vtable %s\n", RD->getNameAsCString()));
|
2009-10-12 06:13:54 +08:00
|
|
|
// First comes the vtables for all the non-virtual bases...
|
|
|
|
AddressPoint = b.GenerateVtableForBase(RD);
|
|
|
|
|
|
|
|
// then the vtables for all the virtual bases.
|
|
|
|
b.GenerateVtableForVBases(RD);
|
|
|
|
|
2009-11-10 10:30:51 +08:00
|
|
|
//GenerateVTT(RD);
|
|
|
|
|
2009-10-12 06:13:54 +08:00
|
|
|
llvm::Constant *C;
|
|
|
|
llvm::ArrayType *type = llvm::ArrayType::get(Ptr8Ty, methods.size());
|
|
|
|
C = llvm::ConstantArray::get(type, methods);
|
|
|
|
llvm::Value *vtable = new llvm::GlobalVariable(CGM.getModule(), type, true,
|
|
|
|
linktype, C, Out.str());
|
|
|
|
vtable = Builder.CreateBitCast(vtable, Ptr8Ty);
|
|
|
|
vtable = Builder.CreateGEP(vtable,
|
|
|
|
llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
|
|
|
|
AddressPoint*LLVMPointerWidth/8));
|
|
|
|
return vtable;
|
|
|
|
}
|
2009-11-10 10:30:51 +08:00
|
|
|
|
|
|
|
class VTTBuilder {
|
|
|
|
/// Inits - The list of values built for the VTT.
|
|
|
|
std::vector<llvm::Constant *> &Inits;
|
|
|
|
/// Class - The most derived class that this vtable is being built for.
|
|
|
|
const CXXRecordDecl *Class;
|
|
|
|
CodeGenModule &CGM; // Per-module state.
|
|
|
|
|
|
|
|
public:
|
|
|
|
VTTBuilder(std::vector<llvm::Constant *> &inits, const CXXRecordDecl *c,
|
|
|
|
CodeGenModule &cgm) : Inits(inits), Class(c), CGM(cgm) {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
llvm::Value *CodeGenFunction::GenerateVTT(const CXXRecordDecl *RD) {
|
|
|
|
llvm::SmallString<256> OutName;
|
|
|
|
llvm::raw_svector_ostream Out(OutName);
|
|
|
|
mangleCXXVTT(CGM.getMangleContext(), RD, Out);
|
|
|
|
|
|
|
|
llvm::GlobalVariable::LinkageTypes linktype;
|
|
|
|
linktype = llvm::GlobalValue::LinkOnceODRLinkage;
|
|
|
|
std::vector<llvm::Constant *> inits;
|
|
|
|
llvm::Type *Ptr8Ty=llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext),0);
|
|
|
|
|
|
|
|
VTTBuilder b(inits, RD, CGM);
|
|
|
|
|
|
|
|
D1(printf("vtt %s\n", RD->getNameAsCString()));
|
|
|
|
|
|
|
|
llvm::Constant *C;
|
|
|
|
llvm::ArrayType *type = llvm::ArrayType::get(Ptr8Ty, inits.size());
|
|
|
|
C = llvm::ConstantArray::get(type, inits);
|
|
|
|
llvm::Value *vtt = new llvm::GlobalVariable(CGM.getModule(), type, true,
|
|
|
|
linktype, C, Out.str());
|
|
|
|
vtt = Builder.CreateBitCast(vtt, Ptr8Ty);
|
|
|
|
return vtt;
|
|
|
|
}
|