2008-08-23 00:00:37 +08:00
|
|
|
//===--- CGDecl.cpp - Emit LLVM Code for declarations ---------------------===//
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
// We might split this into multiple files if it gets too unwieldy
|
2008-08-23 00:00:37 +08:00
|
|
|
|
|
|
|
#include "CodeGenFunction.h"
|
|
|
|
#include "CodeGenModule.h"
|
2009-04-14 02:03:33 +08:00
|
|
|
#include "Mangle.h"
|
2008-08-23 00:00:37 +08:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2009-07-26 05:12:28 +08:00
|
|
|
#include "clang/AST/RecordLayout.h"
|
2008-08-23 00:00:37 +08:00
|
|
|
#include "clang/AST/Decl.h"
|
2009-04-04 06:50:24 +08:00
|
|
|
#include "clang/AST/DeclCXX.h"
|
2008-08-24 03:42:54 +08:00
|
|
|
#include "clang/AST/DeclObjC.h"
|
2008-08-23 00:00:37 +08:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
|
|
|
using namespace clang;
|
|
|
|
using namespace CodeGen;
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
2009-08-09 05:45:14 +08:00
|
|
|
CodeGenFunction::EmitCXXGlobalDtorRegistration(const CXXDestructorDecl *Dtor,
|
|
|
|
llvm::Constant *DeclPtr) {
|
|
|
|
// FIXME: This is ABI dependent and we use the Itanium ABI.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
const llvm::Type *Int8PtrTy =
|
2009-08-14 05:57:51 +08:00
|
|
|
llvm::PointerType::getUnqual(llvm::Type::getInt8Ty(VMContext));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 05:45:14 +08:00
|
|
|
std::vector<const llvm::Type *> Params;
|
|
|
|
Params.push_back(Int8PtrTy);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 05:45:14 +08:00
|
|
|
// Get the destructor function type
|
2009-09-09 23:08:12 +08:00
|
|
|
const llvm::Type *DtorFnTy =
|
2009-08-14 05:57:51 +08:00
|
|
|
llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext), Params, false);
|
2009-08-09 05:45:14 +08:00
|
|
|
DtorFnTy = llvm::PointerType::getUnqual(DtorFnTy);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 05:45:14 +08:00
|
|
|
Params.clear();
|
|
|
|
Params.push_back(DtorFnTy);
|
|
|
|
Params.push_back(Int8PtrTy);
|
|
|
|
Params.push_back(Int8PtrTy);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 05:45:14 +08:00
|
|
|
// Get the __cxa_atexit function type
|
|
|
|
// extern "C" int __cxa_atexit ( void (*f)(void *), void *p, void *d );
|
2009-09-09 23:08:12 +08:00
|
|
|
const llvm::FunctionType *AtExitFnTy =
|
2009-08-09 05:45:14 +08:00
|
|
|
llvm::FunctionType::get(ConvertType(getContext().IntTy), Params, false);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 05:45:14 +08:00
|
|
|
llvm::Constant *AtExitFn = CGM.CreateRuntimeFunction(AtExitFnTy,
|
|
|
|
"__cxa_atexit");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 05:45:14 +08:00
|
|
|
llvm::Constant *Handle = CGM.CreateRuntimeVariable(Int8PtrTy,
|
|
|
|
"__dso_handle");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 05:45:14 +08:00
|
|
|
llvm::Constant *DtorFn = CGM.GetAddrOfCXXDestructor(Dtor, Dtor_Complete);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 05:45:14 +08:00
|
|
|
llvm::Value *Args[3] = { llvm::ConstantExpr::getBitCast(DtorFn, DtorFnTy),
|
|
|
|
llvm::ConstantExpr::getBitCast(DeclPtr, Int8PtrTy),
|
|
|
|
llvm::ConstantExpr::getBitCast(Handle, Int8PtrTy) };
|
|
|
|
Builder.CreateCall(AtExitFn, &Args[0], llvm::array_endof(Args));
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
void CodeGenFunction::EmitCXXGlobalVarDeclInit(const VarDecl &D,
|
2009-08-09 05:45:14 +08:00
|
|
|
llvm::Constant *DeclPtr) {
|
|
|
|
assert(D.hasGlobalStorage() &&
|
|
|
|
"VarDecl must have global storage!");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 05:45:14 +08:00
|
|
|
const Expr *Init = D.getInit();
|
|
|
|
QualType T = D.getType();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 05:45:14 +08:00
|
|
|
if (T->isReferenceType()) {
|
2009-08-18 02:24:57 +08:00
|
|
|
ErrorUnsupported(Init, "global variable that binds to a reference");
|
2009-08-09 05:45:14 +08:00
|
|
|
} else if (!hasAggregateLLVMType(T)) {
|
|
|
|
llvm::Value *V = EmitScalarExpr(Init);
|
|
|
|
EmitStoreOfScalar(V, DeclPtr, T.isVolatileQualified(), T);
|
|
|
|
} else if (T->isAnyComplexType()) {
|
|
|
|
EmitComplexExprIntoAddr(Init, DeclPtr, T.isVolatileQualified());
|
|
|
|
} else {
|
|
|
|
EmitAggExpr(Init, DeclPtr, T.isVolatileQualified());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 05:45:14 +08:00
|
|
|
if (const RecordType *RT = T->getAs<RecordType>()) {
|
|
|
|
CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
|
|
|
|
if (!RD->hasTrivialDestructor())
|
|
|
|
EmitCXXGlobalDtorRegistration(RD->getDestructor(getContext()), DeclPtr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-09 07:24:23 +08:00
|
|
|
void
|
|
|
|
CodeGenModule::EmitCXXGlobalInitFunc() {
|
|
|
|
if (CXXGlobalInits.empty())
|
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-14 05:57:51 +08:00
|
|
|
const llvm::FunctionType *FTy = llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext),
|
2009-08-09 07:24:23 +08:00
|
|
|
false);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 07:24:23 +08:00
|
|
|
// Create our global initialization function.
|
|
|
|
// FIXME: Should this be tweakable by targets?
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Function *Fn =
|
2009-08-09 07:24:23 +08:00
|
|
|
llvm::Function::Create(FTy, llvm::GlobalValue::InternalLinkage,
|
|
|
|
"__cxx_global_initialization", &TheModule);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 07:24:23 +08:00
|
|
|
CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn,
|
2009-08-09 07:43:26 +08:00
|
|
|
&CXXGlobalInits[0],
|
2009-08-09 07:24:23 +08:00
|
|
|
CXXGlobalInits.size());
|
|
|
|
AddGlobalCtor(Fn);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeGenFunction::GenerateCXXGlobalInitFunc(llvm::Function *Fn,
|
|
|
|
const VarDecl **Decls,
|
|
|
|
unsigned NumDecls) {
|
2009-09-11 08:07:24 +08:00
|
|
|
StartFunction(GlobalDecl(), getContext().VoidTy, Fn, FunctionArgList(),
|
2009-08-09 07:24:23 +08:00
|
|
|
SourceLocation());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 07:24:23 +08:00
|
|
|
for (unsigned i = 0; i != NumDecls; ++i) {
|
|
|
|
const VarDecl *D = Decls[i];
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 07:24:23 +08:00
|
|
|
llvm::Constant *DeclPtr = CGM.GetAddrOfGlobalVar(D);
|
|
|
|
EmitCXXGlobalVarDeclInit(*D, DeclPtr);
|
|
|
|
}
|
|
|
|
FinishFunction();
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
|
|
|
CodeGenFunction::EmitStaticCXXBlockVarDeclInit(const VarDecl &D,
|
2009-08-09 05:45:14 +08:00
|
|
|
llvm::GlobalVariable *GV) {
|
2009-02-26 03:24:29 +08:00
|
|
|
// FIXME: This should use __cxa_guard_{acquire,release}?
|
|
|
|
|
2008-08-23 00:00:37 +08:00
|
|
|
assert(!getContext().getLangOptions().ThreadsafeStatics &&
|
|
|
|
"thread safe statics are currently not supported!");
|
|
|
|
|
2009-04-14 02:03:33 +08:00
|
|
|
llvm::SmallString<256> GuardVName;
|
|
|
|
llvm::raw_svector_ostream GuardVOut(GuardVName);
|
|
|
|
mangleGuardVariable(&D, getContext(), GuardVOut);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-08-23 00:00:37 +08:00
|
|
|
// Create the guard variable.
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::GlobalValue *GuardV =
|
2009-08-14 05:57:51 +08:00
|
|
|
new llvm::GlobalVariable(CGM.getModule(), llvm::Type::getInt64Ty(VMContext), false,
|
2009-02-26 03:24:29 +08:00
|
|
|
GV->getLinkage(),
|
2009-08-14 05:57:51 +08:00
|
|
|
llvm::Constant::getNullValue(llvm::Type::getInt64Ty(VMContext)),
|
2009-08-20 04:04:03 +08:00
|
|
|
GuardVName.str());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-08-23 00:00:37 +08:00
|
|
|
// Load the first byte of the guard variable.
|
2009-08-14 05:57:51 +08:00
|
|
|
const llvm::Type *PtrTy = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *V = Builder.CreateLoad(Builder.CreateBitCast(GuardV, PtrTy),
|
2008-08-23 00:00:37 +08:00
|
|
|
"tmp");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-08-23 00:00:37 +08:00
|
|
|
// Compare it against 0.
|
2009-08-14 05:57:51 +08:00
|
|
|
llvm::Value *nullValue = llvm::Constant::getNullValue(llvm::Type::getInt8Ty(VMContext));
|
2008-08-23 00:00:37 +08:00
|
|
|
llvm::Value *ICmp = Builder.CreateICmpEQ(V, nullValue , "tobool");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-11-11 10:29:29 +08:00
|
|
|
llvm::BasicBlock *InitBlock = createBasicBlock("init");
|
2008-11-13 09:38:36 +08:00
|
|
|
llvm::BasicBlock *EndBlock = createBasicBlock("init.end");
|
2008-08-23 00:00:37 +08:00
|
|
|
|
|
|
|
// If the guard variable is 0, jump to the initializer code.
|
|
|
|
Builder.CreateCondBr(ICmp, InitBlock, EndBlock);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-08-23 00:00:37 +08:00
|
|
|
EmitBlock(InitBlock);
|
|
|
|
|
2009-08-09 05:45:14 +08:00
|
|
|
EmitCXXGlobalVarDeclInit(D, GV);
|
|
|
|
|
2009-08-14 05:57:51 +08:00
|
|
|
Builder.CreateStore(llvm::ConstantInt::get(llvm::Type::getInt8Ty(VMContext), 1),
|
2008-08-23 00:00:37 +08:00
|
|
|
Builder.CreateBitCast(GuardV, PtrTy));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-08-23 00:00:37 +08:00
|
|
|
EmitBlock(EndBlock);
|
|
|
|
}
|
|
|
|
|
2009-05-12 07:37:08 +08:00
|
|
|
RValue CodeGenFunction::EmitCXXMemberCall(const CXXMethodDecl *MD,
|
|
|
|
llvm::Value *Callee,
|
|
|
|
llvm::Value *This,
|
|
|
|
CallExpr::const_arg_iterator ArgBeg,
|
|
|
|
CallExpr::const_arg_iterator ArgEnd) {
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(MD->isInstance() &&
|
2009-04-04 06:50:24 +08:00
|
|
|
"Trying to emit a member call expr on a static method!");
|
2009-05-12 07:37:08 +08:00
|
|
|
|
2009-09-05 03:04:08 +08:00
|
|
|
// A call to a trivial destructor requires no code generation.
|
|
|
|
if (const CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(MD))
|
|
|
|
if (Destructor->isTrivial())
|
|
|
|
return RValue::get(0);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-12 07:37:08 +08:00
|
|
|
const FunctionProtoType *FPT = MD->getType()->getAsFunctionProtoType();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-12 07:37:08 +08:00
|
|
|
CallArgList Args;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-12 07:37:08 +08:00
|
|
|
// Push the this ptr.
|
|
|
|
Args.push_back(std::make_pair(RValue::get(This),
|
|
|
|
MD->getThisType(getContext())));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-12 07:37:08 +08:00
|
|
|
// And the rest of the call args
|
|
|
|
EmitCallArgs(Args, FPT, ArgBeg, ArgEnd);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-12 07:37:08 +08:00
|
|
|
QualType ResultType = MD->getType()->getAsFunctionType()->getResultType();
|
|
|
|
return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
|
|
|
|
Callee, Args, MD);
|
|
|
|
}
|
|
|
|
|
|
|
|
RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE) {
|
|
|
|
const MemberExpr *ME = cast<MemberExpr>(CE->getCallee());
|
|
|
|
const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl());
|
|
|
|
|
2009-04-09 04:31:57 +08:00
|
|
|
const FunctionProtoType *FPT = MD->getType()->getAsFunctionProtoType();
|
2009-07-31 05:47:44 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
const llvm::Type *Ty =
|
|
|
|
CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
|
2009-04-09 04:31:57 +08:00
|
|
|
FPT->isVariadic());
|
2009-05-12 07:37:08 +08:00
|
|
|
llvm::Value *This;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-04-04 06:50:24 +08:00
|
|
|
if (ME->isArrow())
|
2009-05-12 07:37:08 +08:00
|
|
|
This = EmitScalarExpr(ME->getBase());
|
2009-04-04 06:50:24 +08:00
|
|
|
else {
|
|
|
|
LValue BaseLV = EmitLValue(ME->getBase());
|
2009-05-12 07:37:08 +08:00
|
|
|
This = BaseLV.getAddress();
|
2009-04-04 06:50:24 +08:00
|
|
|
}
|
2009-08-27 04:46:33 +08:00
|
|
|
|
When a member reference expression includes a qualifier on the member
name, e.g.,
x->Base::f()
retain the qualifier (and its source range information) in a new
subclass of MemberExpr called CXXQualifiedMemberExpr. Provide
construction, transformation, profiling, printing, etc., for this new
expression type.
When a virtual function is called via a qualified name, don't emit a
virtual call. Instead, call that function directly. Mike, could you
add a CodeGen test for this, too?
llvm-svn: 80167
2009-08-27 06:36:53 +08:00
|
|
|
// C++ [class.virtual]p12:
|
2009-09-09 23:08:12 +08:00
|
|
|
// Explicit qualification with the scope operator (5.1) suppresses the
|
When a member reference expression includes a qualifier on the member
name, e.g.,
x->Base::f()
retain the qualifier (and its source range information) in a new
subclass of MemberExpr called CXXQualifiedMemberExpr. Provide
construction, transformation, profiling, printing, etc., for this new
expression type.
When a virtual function is called via a qualified name, don't emit a
virtual call. Instead, call that function directly. Mike, could you
add a CodeGen test for this, too?
llvm-svn: 80167
2009-08-27 06:36:53 +08:00
|
|
|
// virtual call mechanism.
|
2009-08-27 04:46:33 +08:00
|
|
|
llvm::Value *Callee;
|
2009-09-01 05:41:48 +08:00
|
|
|
if (MD->isVirtual() && !ME->hasQualifier())
|
2009-08-27 04:46:33 +08:00
|
|
|
Callee = BuildVirtualCall(MD, This, Ty);
|
2009-09-09 23:08:12 +08:00
|
|
|
else if (const CXXDestructorDecl *Destructor
|
2009-09-05 03:04:08 +08:00
|
|
|
= dyn_cast<CXXDestructorDecl>(MD))
|
|
|
|
Callee = CGM.GetAddrOfFunction(GlobalDecl(Destructor, Dtor_Complete), Ty);
|
2009-09-01 05:41:48 +08:00
|
|
|
else
|
2009-09-11 07:43:36 +08:00
|
|
|
Callee = CGM.GetAddrOfFunction(MD, Ty);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
return EmitCXXMemberCall(MD, Callee, This,
|
2009-05-12 07:37:08 +08:00
|
|
|
CE->arg_begin(), CE->arg_end());
|
2009-04-04 06:50:24 +08:00
|
|
|
}
|
2009-04-15 00:58:56 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
RValue
|
2009-05-27 12:18:27 +08:00
|
|
|
CodeGenFunction::EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
|
|
|
|
const CXXMethodDecl *MD) {
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(MD->isInstance() &&
|
2009-05-27 12:18:27 +08:00
|
|
|
"Trying to emit a member call expr on a static method!");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-14 05:09:41 +08:00
|
|
|
if (MD->isCopyAssignment()) {
|
|
|
|
const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(MD->getDeclContext());
|
|
|
|
if (ClassDecl->hasTrivialCopyAssignment()) {
|
|
|
|
assert(!ClassDecl->hasUserDeclaredCopyAssignment() &&
|
|
|
|
"EmitCXXOperatorMemberCallExpr - user declared copy assignment");
|
|
|
|
llvm::Value *This = EmitLValue(E->getArg(0)).getAddress();
|
|
|
|
llvm::Value *Src = EmitLValue(E->getArg(1)).getAddress();
|
|
|
|
QualType Ty = E->getType();
|
|
|
|
EmitAggregateCopy(This, Src, Ty);
|
|
|
|
return RValue::get(This);
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-27 12:18:27 +08:00
|
|
|
const FunctionProtoType *FPT = MD->getType()->getAsFunctionProtoType();
|
2009-09-09 23:08:12 +08:00
|
|
|
const llvm::Type *Ty =
|
|
|
|
CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
|
2009-09-05 02:27:16 +08:00
|
|
|
FPT->isVariadic());
|
2009-09-11 07:43:36 +08:00
|
|
|
llvm::Constant *Callee = CGM.GetAddrOfFunction(MD, Ty);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-27 12:18:27 +08:00
|
|
|
llvm::Value *This = EmitLValue(E->getArg(0)).getAddress();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-27 12:18:27 +08:00
|
|
|
return EmitCXXMemberCall(MD, Callee, This,
|
|
|
|
E->arg_begin() + 1, E->arg_end());
|
|
|
|
}
|
|
|
|
|
2009-04-15 00:58:56 +08:00
|
|
|
llvm::Value *CodeGenFunction::LoadCXXThis() {
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(isa<CXXMethodDecl>(CurFuncDecl) &&
|
2009-04-15 00:58:56 +08:00
|
|
|
"Must be in a C++ member function decl to load 'this'");
|
|
|
|
assert(cast<CXXMethodDecl>(CurFuncDecl)->isInstance() &&
|
|
|
|
"Must be in a C++ member function decl to load 'this'");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-04-15 00:58:56 +08:00
|
|
|
// FIXME: What if we're inside a block?
|
2009-05-16 15:57:57 +08:00
|
|
|
// ans: See how CodeGenFunction::LoadObjCSelf() uses
|
|
|
|
// CodeGenFunction::BlockForwardSelf() for how to do this.
|
2009-04-15 00:58:56 +08:00
|
|
|
return Builder.CreateLoad(LocalDeclMap[CXXThisDecl], "this");
|
|
|
|
}
|
2009-04-15 23:55:24 +08:00
|
|
|
|
2009-08-20 04:55:16 +08:00
|
|
|
/// EmitCXXAggrConstructorCall - This routine essentially creates a (nested)
|
|
|
|
/// for-loop to call the default constructor on individual members of the
|
|
|
|
/// array. 'Array' is the array type, 'This' is llvm pointer of the start
|
|
|
|
/// of the array and 'D' is the default costructor Decl for elements of the
|
|
|
|
/// array. It is assumed that all relevant checks have been made by the
|
|
|
|
/// caller.
|
|
|
|
void
|
|
|
|
CodeGenFunction::EmitCXXAggrConstructorCall(const CXXConstructorDecl *D,
|
|
|
|
const ArrayType *Array,
|
|
|
|
llvm::Value *This) {
|
|
|
|
const ConstantArrayType *CA = dyn_cast<ConstantArrayType>(Array);
|
|
|
|
assert(CA && "Do we support VLA for construction ?");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-20 04:55:16 +08:00
|
|
|
// Create a temporary for the loop index and initialize it with 0.
|
2009-08-22 00:31:06 +08:00
|
|
|
llvm::Value *IndexPtr = CreateTempAlloca(llvm::Type::getInt64Ty(VMContext),
|
2009-08-20 04:55:16 +08:00
|
|
|
"loop.index");
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value* zeroConstant =
|
2009-08-22 00:31:06 +08:00
|
|
|
llvm::Constant::getNullValue(llvm::Type::getInt64Ty(VMContext));
|
2009-08-20 04:55:16 +08:00
|
|
|
Builder.CreateStore(zeroConstant, IndexPtr, false);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-20 04:55:16 +08:00
|
|
|
// Start the loop with a block that tests the condition.
|
|
|
|
llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
|
|
|
|
llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-20 04:55:16 +08:00
|
|
|
EmitBlock(CondBlock);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-20 04:55:16 +08:00
|
|
|
llvm::BasicBlock *ForBody = createBasicBlock("for.body");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-20 04:55:16 +08:00
|
|
|
// Generate: if (loop-index < number-of-elements fall to the loop body,
|
|
|
|
// otherwise, go to the block after the for-loop.
|
2009-08-26 08:23:27 +08:00
|
|
|
uint64_t NumElements = getContext().getConstantArrayElementCount(CA);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value * NumElementsPtr =
|
2009-08-26 08:23:27 +08:00
|
|
|
llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), NumElements);
|
2009-08-20 04:55:16 +08:00
|
|
|
llvm::Value *Counter = Builder.CreateLoad(IndexPtr);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *IsLess = Builder.CreateICmpULT(Counter, NumElementsPtr,
|
2009-08-20 04:55:16 +08:00
|
|
|
"isless");
|
|
|
|
// If the condition is true, execute the body.
|
|
|
|
Builder.CreateCondBr(IsLess, ForBody, AfterFor);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-20 04:55:16 +08:00
|
|
|
EmitBlock(ForBody);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-20 04:55:16 +08:00
|
|
|
llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc");
|
|
|
|
// Inside the loop body, emit the constructor call on the array element.
|
2009-08-20 09:01:06 +08:00
|
|
|
Counter = Builder.CreateLoad(IndexPtr);
|
2009-08-26 08:23:27 +08:00
|
|
|
llvm::Value *Address = Builder.CreateInBoundsGEP(This, Counter, "arrayidx");
|
|
|
|
EmitCXXConstructorCall(D, Ctor_Complete, Address, 0, 0);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-20 04:55:16 +08:00
|
|
|
EmitBlock(ContinueBlock);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-20 04:55:16 +08:00
|
|
|
// Emit the increment of the loop counter.
|
|
|
|
llvm::Value *NextVal = llvm::ConstantInt::get(Counter->getType(), 1);
|
|
|
|
Counter = Builder.CreateLoad(IndexPtr);
|
|
|
|
NextVal = Builder.CreateAdd(Counter, NextVal, "inc");
|
|
|
|
Builder.CreateStore(NextVal, IndexPtr, false);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-20 04:55:16 +08:00
|
|
|
// Finally, branch back up to the condition for the next iteration.
|
|
|
|
EmitBranch(CondBlock);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-20 04:55:16 +08:00
|
|
|
// Emit the fall-through block.
|
|
|
|
EmitBlock(AfterFor, true);
|
|
|
|
}
|
|
|
|
|
2009-08-21 07:02:58 +08:00
|
|
|
/// EmitCXXAggrDestructorCall - calls the default destructor on array
|
|
|
|
/// elements in reverse order of construction.
|
2009-08-21 04:54:15 +08:00
|
|
|
void
|
|
|
|
CodeGenFunction::EmitCXXAggrDestructorCall(const CXXDestructorDecl *D,
|
|
|
|
const ArrayType *Array,
|
|
|
|
llvm::Value *This) {
|
2009-08-21 07:02:58 +08:00
|
|
|
const ConstantArrayType *CA = dyn_cast<ConstantArrayType>(Array);
|
|
|
|
assert(CA && "Do we support VLA for destruction ?");
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *One = llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
|
2009-08-21 07:02:58 +08:00
|
|
|
1);
|
2009-08-22 00:31:06 +08:00
|
|
|
uint64_t ElementCount = getContext().getConstantArrayElementCount(CA);
|
2009-08-21 07:02:58 +08:00
|
|
|
// Create a temporary for the loop index and initialize it with count of
|
|
|
|
// array elements.
|
|
|
|
llvm::Value *IndexPtr = CreateTempAlloca(llvm::Type::getInt64Ty(VMContext),
|
|
|
|
"loop.index");
|
|
|
|
// Index = ElementCount;
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value* UpperCount =
|
2009-08-21 07:02:58 +08:00
|
|
|
llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), ElementCount);
|
|
|
|
Builder.CreateStore(UpperCount, IndexPtr, false);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-21 07:02:58 +08:00
|
|
|
// Start the loop with a block that tests the condition.
|
|
|
|
llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
|
|
|
|
llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-21 07:02:58 +08:00
|
|
|
EmitBlock(CondBlock);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-21 07:02:58 +08:00
|
|
|
llvm::BasicBlock *ForBody = createBasicBlock("for.body");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-21 07:02:58 +08:00
|
|
|
// Generate: if (loop-index != 0 fall to the loop body,
|
|
|
|
// otherwise, go to the block after the for-loop.
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value* zeroConstant =
|
2009-08-21 07:02:58 +08:00
|
|
|
llvm::Constant::getNullValue(llvm::Type::getInt64Ty(VMContext));
|
|
|
|
llvm::Value *Counter = Builder.CreateLoad(IndexPtr);
|
|
|
|
llvm::Value *IsNE = Builder.CreateICmpNE(Counter, zeroConstant,
|
|
|
|
"isne");
|
|
|
|
// If the condition is true, execute the body.
|
|
|
|
Builder.CreateCondBr(IsNE, ForBody, AfterFor);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-21 07:02:58 +08:00
|
|
|
EmitBlock(ForBody);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-21 07:02:58 +08:00
|
|
|
llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc");
|
|
|
|
// Inside the loop body, emit the constructor call on the array element.
|
|
|
|
Counter = Builder.CreateLoad(IndexPtr);
|
|
|
|
Counter = Builder.CreateSub(Counter, One);
|
|
|
|
llvm::Value *Address = Builder.CreateInBoundsGEP(This, Counter, "arrayidx");
|
|
|
|
EmitCXXDestructorCall(D, Dtor_Complete, Address);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-21 07:02:58 +08:00
|
|
|
EmitBlock(ContinueBlock);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-21 07:02:58 +08:00
|
|
|
// Emit the decrement of the loop counter.
|
|
|
|
Counter = Builder.CreateLoad(IndexPtr);
|
|
|
|
Counter = Builder.CreateSub(Counter, One, "dec");
|
|
|
|
Builder.CreateStore(Counter, IndexPtr, false);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-21 07:02:58 +08:00
|
|
|
// Finally, branch back up to the condition for the next iteration.
|
|
|
|
EmitBranch(CondBlock);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-21 07:02:58 +08:00
|
|
|
// Emit the fall-through block.
|
|
|
|
EmitBlock(AfterFor, true);
|
2009-08-21 04:54:15 +08:00
|
|
|
}
|
|
|
|
|
2009-04-17 08:06:03 +08:00
|
|
|
void
|
2009-09-09 23:08:12 +08:00
|
|
|
CodeGenFunction::EmitCXXConstructorCall(const CXXConstructorDecl *D,
|
|
|
|
CXXCtorType Type,
|
2009-04-17 08:06:03 +08:00
|
|
|
llvm::Value *This,
|
|
|
|
CallExpr::const_arg_iterator ArgBeg,
|
|
|
|
CallExpr::const_arg_iterator ArgEnd) {
|
2009-08-15 04:11:43 +08:00
|
|
|
if (D->isCopyConstructor(getContext())) {
|
|
|
|
const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D->getDeclContext());
|
|
|
|
if (ClassDecl->hasTrivialCopyConstructor()) {
|
|
|
|
assert(!ClassDecl->hasUserDeclaredCopyConstructor() &&
|
|
|
|
"EmitCXXConstructorCall - user declared copy constructor");
|
|
|
|
const Expr *E = (*ArgBeg);
|
|
|
|
QualType Ty = E->getType();
|
|
|
|
llvm::Value *Src = EmitLValue(E).getAddress();
|
|
|
|
EmitAggregateCopy(This, Src, Ty);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-12 07:37:08 +08:00
|
|
|
llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(D, Type);
|
|
|
|
|
|
|
|
EmitCXXMemberCall(D, Callee, This, ArgBeg, ArgEnd);
|
2009-04-17 08:06:03 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
void CodeGenFunction::EmitCXXDestructorCall(const CXXDestructorDecl *D,
|
2009-05-30 05:03:38 +08:00
|
|
|
CXXDtorType Type,
|
|
|
|
llvm::Value *This) {
|
|
|
|
llvm::Value *Callee = CGM.GetAddrOfCXXDestructor(D, Type);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-05-30 05:03:38 +08:00
|
|
|
EmitCXXMemberCall(D, Callee, This, 0, 0);
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
|
|
|
CodeGenFunction::EmitCXXConstructExpr(llvm::Value *Dest,
|
2009-05-04 01:47:16 +08:00
|
|
|
const CXXConstructExpr *E) {
|
2009-04-17 08:06:03 +08:00
|
|
|
assert(Dest && "Must have a destination!");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
const CXXRecordDecl *RD =
|
2009-07-30 05:53:49 +08:00
|
|
|
cast<CXXRecordDecl>(E->getType()->getAs<RecordType>()->getDecl());
|
2009-04-17 08:06:03 +08:00
|
|
|
if (RD->hasTrivialConstructor())
|
|
|
|
return;
|
2009-08-06 09:02:49 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
// Code gen optimization to eliminate copy constructor and return
|
2009-08-06 09:02:49 +08:00
|
|
|
// its first argument instead.
|
2009-08-23 06:30:33 +08:00
|
|
|
if (getContext().getLangOptions().ElideConstructors && E->isElidable()) {
|
2009-08-06 09:02:49 +08:00
|
|
|
CXXConstructExpr::const_arg_iterator i = E->arg_begin();
|
2009-08-07 03:12:38 +08:00
|
|
|
EmitAggExpr((*i), Dest, false);
|
|
|
|
return;
|
2009-08-06 09:02:49 +08:00
|
|
|
}
|
2009-04-17 08:06:03 +08:00
|
|
|
// Call the constructor.
|
2009-09-09 23:08:12 +08:00
|
|
|
EmitCXXConstructorCall(E->getConstructor(), Ctor_Complete, Dest,
|
2009-04-17 08:06:03 +08:00
|
|
|
E->arg_begin(), E->arg_end());
|
|
|
|
}
|
|
|
|
|
2009-05-31 09:40:14 +08:00
|
|
|
llvm::Value *CodeGenFunction::EmitCXXNewExpr(const CXXNewExpr *E) {
|
2009-06-01 04:21:44 +08:00
|
|
|
if (E->isArray()) {
|
|
|
|
ErrorUnsupported(E, "new[] expression");
|
2009-07-31 07:11:26 +08:00
|
|
|
return llvm::UndefValue::get(ConvertType(E->getType()));
|
2009-06-01 04:21:44 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-01 04:21:44 +08:00
|
|
|
QualType AllocType = E->getAllocatedType();
|
|
|
|
FunctionDecl *NewFD = E->getOperatorNew();
|
|
|
|
const FunctionProtoType *NewFTy = NewFD->getType()->getAsFunctionProtoType();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-01 04:21:44 +08:00
|
|
|
CallArgList NewArgs;
|
|
|
|
|
|
|
|
// The allocation size is the first argument.
|
|
|
|
QualType SizeTy = getContext().getSizeType();
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *AllocSize =
|
|
|
|
llvm::ConstantInt::get(ConvertType(SizeTy),
|
2009-06-01 04:21:44 +08:00
|
|
|
getContext().getTypeSize(AllocType) / 8);
|
|
|
|
|
|
|
|
NewArgs.push_back(std::make_pair(RValue::get(AllocSize), SizeTy));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-01 04:21:44 +08:00
|
|
|
// Emit the rest of the arguments.
|
|
|
|
// FIXME: Ideally, this should just use EmitCallArgs.
|
|
|
|
CXXNewExpr::const_arg_iterator NewArg = E->placement_arg_begin();
|
|
|
|
|
|
|
|
// First, use the types from the function type.
|
|
|
|
// We start at 1 here because the first argument (the allocation size)
|
|
|
|
// has already been emitted.
|
|
|
|
for (unsigned i = 1, e = NewFTy->getNumArgs(); i != e; ++i, ++NewArg) {
|
|
|
|
QualType ArgType = NewFTy->getArgType(i);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-01 04:21:44 +08:00
|
|
|
assert(getContext().getCanonicalType(ArgType.getNonReferenceType()).
|
2009-09-09 23:08:12 +08:00
|
|
|
getTypePtr() ==
|
|
|
|
getContext().getCanonicalType(NewArg->getType()).getTypePtr() &&
|
2009-06-01 04:21:44 +08:00
|
|
|
"type mismatch in call argument!");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
NewArgs.push_back(std::make_pair(EmitCallArg(*NewArg, ArgType),
|
2009-06-01 04:21:44 +08:00
|
|
|
ArgType));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-01 04:21:44 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
// Either we've emitted all the call args, or we have a call to a
|
2009-06-01 04:21:44 +08:00
|
|
|
// variadic function.
|
2009-09-09 23:08:12 +08:00
|
|
|
assert((NewArg == E->placement_arg_end() || NewFTy->isVariadic()) &&
|
2009-06-01 04:21:44 +08:00
|
|
|
"Extra arguments in non-variadic function!");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-01 04:21:44 +08:00
|
|
|
// If we still have any arguments, emit them using the type of the argument.
|
2009-09-09 23:08:12 +08:00
|
|
|
for (CXXNewExpr::const_arg_iterator NewArgEnd = E->placement_arg_end();
|
2009-06-01 04:21:44 +08:00
|
|
|
NewArg != NewArgEnd; ++NewArg) {
|
|
|
|
QualType ArgType = NewArg->getType();
|
|
|
|
NewArgs.push_back(std::make_pair(EmitCallArg(*NewArg, ArgType),
|
|
|
|
ArgType));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Emit the call to new.
|
2009-09-09 23:08:12 +08:00
|
|
|
RValue RV =
|
2009-06-01 04:21:44 +08:00
|
|
|
EmitCall(CGM.getTypes().getFunctionInfo(NewFTy->getResultType(), NewArgs),
|
2009-09-11 07:43:36 +08:00
|
|
|
CGM.GetAddrOfFunction(NewFD), NewArgs, NewFD);
|
2009-06-01 04:21:44 +08:00
|
|
|
|
2009-06-01 05:53:59 +08:00
|
|
|
// If an allocation function is declared with an empty exception specification
|
|
|
|
// it returns null to indicate failure to allocate storage. [expr.new]p13.
|
|
|
|
// (We don't need to check for null when there's no new initializer and
|
|
|
|
// we're allocating a POD type).
|
|
|
|
bool NullCheckResult = NewFTy->hasEmptyExceptionSpec() &&
|
|
|
|
!(AllocType->isPODType() && !E->hasInitializer());
|
2009-06-01 04:21:44 +08:00
|
|
|
|
2009-06-01 08:05:16 +08:00
|
|
|
llvm::BasicBlock *NewNull = 0;
|
|
|
|
llvm::BasicBlock *NewNotNull = 0;
|
|
|
|
llvm::BasicBlock *NewEnd = 0;
|
|
|
|
|
|
|
|
llvm::Value *NewPtr = RV.getScalarVal();
|
|
|
|
|
2009-06-01 05:53:59 +08:00
|
|
|
if (NullCheckResult) {
|
2009-06-01 08:05:16 +08:00
|
|
|
NewNull = createBasicBlock("new.null");
|
|
|
|
NewNotNull = createBasicBlock("new.notnull");
|
|
|
|
NewEnd = createBasicBlock("new.end");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
llvm::Value *IsNull =
|
|
|
|
Builder.CreateICmpEQ(NewPtr,
|
2009-08-01 04:28:54 +08:00
|
|
|
llvm::Constant::getNullValue(NewPtr->getType()),
|
2009-06-01 08:05:16 +08:00
|
|
|
"isnull");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-01 08:05:16 +08:00
|
|
|
Builder.CreateCondBr(IsNull, NewNull, NewNotNull);
|
|
|
|
EmitBlock(NewNotNull);
|
2009-06-01 05:53:59 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-01 08:05:16 +08:00
|
|
|
NewPtr = Builder.CreateBitCast(NewPtr, ConvertType(E->getType()));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-01 04:56:36 +08:00
|
|
|
if (AllocType->isPODType()) {
|
2009-06-01 08:26:14 +08:00
|
|
|
if (E->getNumConstructorArgs() > 0) {
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(E->getNumConstructorArgs() == 1 &&
|
2009-06-01 04:56:36 +08:00
|
|
|
"Can only have one argument to initializer of POD type.");
|
|
|
|
|
|
|
|
const Expr *Init = E->getConstructorArg(0);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
if (!hasAggregateLLVMType(AllocType))
|
2009-06-01 04:56:36 +08:00
|
|
|
Builder.CreateStore(EmitScalarExpr(Init), NewPtr);
|
2009-06-01 05:07:58 +08:00
|
|
|
else if (AllocType->isAnyComplexType())
|
|
|
|
EmitComplexExprIntoAddr(Init, NewPtr, AllocType.isVolatileQualified());
|
2009-06-01 05:12:26 +08:00
|
|
|
else
|
|
|
|
EmitAggExpr(Init, NewPtr, AllocType.isVolatileQualified());
|
2009-06-01 04:56:36 +08:00
|
|
|
}
|
2009-06-01 05:53:59 +08:00
|
|
|
} else {
|
2009-09-09 23:08:12 +08:00
|
|
|
// Call the constructor.
|
2009-06-01 05:53:59 +08:00
|
|
|
CXXConstructorDecl *Ctor = E->getConstructor();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
EmitCXXConstructorCall(Ctor, Ctor_Complete, NewPtr,
|
|
|
|
E->constructor_arg_begin(),
|
2009-06-01 05:53:59 +08:00
|
|
|
E->constructor_arg_end());
|
2009-06-01 04:21:44 +08:00
|
|
|
}
|
2009-06-01 05:53:59 +08:00
|
|
|
|
2009-06-01 08:05:16 +08:00
|
|
|
if (NullCheckResult) {
|
|
|
|
Builder.CreateBr(NewEnd);
|
|
|
|
EmitBlock(NewNull);
|
|
|
|
Builder.CreateBr(NewEnd);
|
|
|
|
EmitBlock(NewEnd);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-01 08:05:16 +08:00
|
|
|
llvm::PHINode *PHI = Builder.CreatePHI(NewPtr->getType());
|
|
|
|
PHI->reserveOperandSpace(2);
|
|
|
|
PHI->addIncoming(NewPtr, NewNotNull);
|
2009-08-01 04:28:54 +08:00
|
|
|
PHI->addIncoming(llvm::Constant::getNullValue(NewPtr->getType()), NewNull);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-01 08:05:16 +08:00
|
|
|
NewPtr = PHI;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-01 05:53:59 +08:00
|
|
|
return NewPtr;
|
2009-05-31 09:40:14 +08:00
|
|
|
}
|
|
|
|
|
2009-08-17 05:13:42 +08:00
|
|
|
void CodeGenFunction::EmitCXXDeleteExpr(const CXXDeleteExpr *E) {
|
|
|
|
if (E->isArrayForm()) {
|
|
|
|
ErrorUnsupported(E, "delete[] expression");
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType DeleteTy =
|
2009-08-17 05:13:42 +08:00
|
|
|
E->getArgument()->getType()->getAs<PointerType>()->getPointeeType();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-17 05:13:42 +08:00
|
|
|
llvm::Value *Ptr = EmitScalarExpr(E->getArgument());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-17 05:13:42 +08:00
|
|
|
// Null check the pointer.
|
|
|
|
llvm::BasicBlock *DeleteNotNull = createBasicBlock("delete.notnull");
|
|
|
|
llvm::BasicBlock *DeleteEnd = createBasicBlock("delete.end");
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *IsNull =
|
2009-08-17 05:13:42 +08:00
|
|
|
Builder.CreateICmpEQ(Ptr, llvm::Constant::getNullValue(Ptr->getType()),
|
|
|
|
"isnull");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-17 05:13:42 +08:00
|
|
|
Builder.CreateCondBr(IsNull, DeleteEnd, DeleteNotNull);
|
|
|
|
EmitBlock(DeleteNotNull);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-17 05:13:42 +08:00
|
|
|
// Call the destructor if necessary.
|
|
|
|
if (const RecordType *RT = DeleteTy->getAs<RecordType>()) {
|
|
|
|
if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
|
|
|
|
if (!RD->hasTrivialDestructor()) {
|
|
|
|
const CXXDestructorDecl *Dtor = RD->getDestructor(getContext());
|
|
|
|
if (Dtor->isVirtual()) {
|
2009-09-14 08:16:25 +08:00
|
|
|
const llvm::Type *Ty =
|
|
|
|
CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(Dtor),
|
|
|
|
/*isVariadic=*/false);
|
|
|
|
|
|
|
|
llvm::Value *Callee = BuildVirtualCall(Dtor, Ptr, Ty);
|
|
|
|
EmitCXXMemberCall(Dtor, Callee, Ptr, 0, 0);
|
|
|
|
} else
|
|
|
|
EmitCXXDestructorCall(Dtor, Dtor_Complete, Ptr);
|
2009-08-17 05:13:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-17 05:13:42 +08:00
|
|
|
// Call delete.
|
|
|
|
FunctionDecl *DeleteFD = E->getOperatorDelete();
|
2009-09-09 23:08:12 +08:00
|
|
|
const FunctionProtoType *DeleteFTy =
|
2009-08-17 05:13:42 +08:00
|
|
|
DeleteFD->getType()->getAsFunctionProtoType();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-17 05:13:42 +08:00
|
|
|
CallArgList DeleteArgs;
|
|
|
|
|
|
|
|
QualType ArgTy = DeleteFTy->getArgType(0);
|
|
|
|
llvm::Value *DeletePtr = Builder.CreateBitCast(Ptr, ConvertType(ArgTy));
|
|
|
|
DeleteArgs.push_back(std::make_pair(RValue::get(DeletePtr), ArgTy));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-17 05:13:42 +08:00
|
|
|
// Emit the call to delete.
|
2009-09-09 23:08:12 +08:00
|
|
|
EmitCall(CGM.getTypes().getFunctionInfo(DeleteFTy->getResultType(),
|
2009-08-17 05:13:42 +08:00
|
|
|
DeleteArgs),
|
2009-09-11 07:43:36 +08:00
|
|
|
CGM.GetAddrOfFunction(DeleteFD),
|
2009-08-17 05:13:42 +08:00
|
|
|
DeleteArgs, DeleteFD);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-17 05:13:42 +08:00
|
|
|
EmitBlock(DeleteEnd);
|
|
|
|
}
|
|
|
|
|
2009-04-15 23:55:24 +08:00
|
|
|
void CodeGenModule::EmitCXXConstructors(const CXXConstructorDecl *D) {
|
2009-05-05 12:44:02 +08:00
|
|
|
EmitGlobal(GlobalDecl(D, Ctor_Complete));
|
|
|
|
EmitGlobal(GlobalDecl(D, Ctor_Base));
|
2009-04-15 23:55:24 +08:00
|
|
|
}
|
2009-04-17 07:57:24 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
void CodeGenModule::EmitCXXConstructor(const CXXConstructorDecl *D,
|
2009-04-17 09:58:57 +08:00
|
|
|
CXXCtorType Type) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-04-17 09:58:57 +08:00
|
|
|
llvm::Function *Fn = GetAddrOfCXXConstructor(D, Type);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-09-11 08:07:24 +08:00
|
|
|
CodeGenFunction(*this).GenerateCode(GlobalDecl(D, Type), Fn);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-04-17 09:58:57 +08:00
|
|
|
SetFunctionDefinitionAttributes(D, Fn);
|
|
|
|
SetLLVMFunctionAttributesForDefinition(D, Fn);
|
|
|
|
}
|
|
|
|
|
2009-04-17 07:57:24 +08:00
|
|
|
llvm::Function *
|
2009-09-09 23:08:12 +08:00
|
|
|
CodeGenModule::GetAddrOfCXXConstructor(const CXXConstructorDecl *D,
|
2009-04-17 07:57:24 +08:00
|
|
|
CXXCtorType Type) {
|
|
|
|
const llvm::FunctionType *FTy =
|
|
|
|
getTypes().GetFunctionType(getTypes().getFunctionInfo(D), false);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-04-17 07:57:24 +08:00
|
|
|
const char *Name = getMangledCXXCtorName(D, Type);
|
2009-05-13 05:21:08 +08:00
|
|
|
return cast<llvm::Function>(
|
|
|
|
GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(D, Type)));
|
2009-04-17 07:57:24 +08:00
|
|
|
}
|
2009-04-17 09:58:57 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
const char *CodeGenModule::getMangledCXXCtorName(const CXXConstructorDecl *D,
|
2009-04-17 09:58:57 +08:00
|
|
|
CXXCtorType Type) {
|
|
|
|
llvm::SmallString<256> Name;
|
|
|
|
llvm::raw_svector_ostream Out(Name);
|
|
|
|
mangleCXXCtor(D, Type, Context, Out);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-04-17 09:58:57 +08:00
|
|
|
Name += '\0';
|
|
|
|
return UniqueMangledName(Name.begin(), Name.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeGenModule::EmitCXXDestructors(const CXXDestructorDecl *D) {
|
|
|
|
EmitCXXDestructor(D, Dtor_Complete);
|
|
|
|
EmitCXXDestructor(D, Dtor_Base);
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
void CodeGenModule::EmitCXXDestructor(const CXXDestructorDecl *D,
|
2009-04-17 09:58:57 +08:00
|
|
|
CXXDtorType Type) {
|
|
|
|
llvm::Function *Fn = GetAddrOfCXXDestructor(D, Type);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-09-11 08:07:24 +08:00
|
|
|
CodeGenFunction(*this).GenerateCode(GlobalDecl(D, Type), Fn);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-04-17 09:58:57 +08:00
|
|
|
SetFunctionDefinitionAttributes(D, Fn);
|
|
|
|
SetLLVMFunctionAttributesForDefinition(D, Fn);
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::Function *
|
2009-09-09 23:08:12 +08:00
|
|
|
CodeGenModule::GetAddrOfCXXDestructor(const CXXDestructorDecl *D,
|
2009-04-17 09:58:57 +08:00
|
|
|
CXXDtorType Type) {
|
|
|
|
const llvm::FunctionType *FTy =
|
|
|
|
getTypes().GetFunctionType(getTypes().getFunctionInfo(D), false);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-04-17 09:58:57 +08:00
|
|
|
const char *Name = getMangledCXXDtorName(D, Type);
|
2009-05-13 05:21:08 +08:00
|
|
|
return cast<llvm::Function>(
|
|
|
|
GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(D, Type)));
|
2009-04-17 09:58:57 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
const char *CodeGenModule::getMangledCXXDtorName(const CXXDestructorDecl *D,
|
2009-04-17 09:58:57 +08:00
|
|
|
CXXDtorType Type) {
|
|
|
|
llvm::SmallString<256> Name;
|
|
|
|
llvm::raw_svector_ostream Out(Name);
|
|
|
|
mangleCXXDtor(D, Type, Context, Out);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-04-17 09:58:57 +08:00
|
|
|
Name += '\0';
|
|
|
|
return UniqueMangledName(Name.begin(), Name.end());
|
|
|
|
}
|
2009-07-21 07:18:55 +08:00
|
|
|
|
2009-08-19 05:49:00 +08:00
|
|
|
llvm::Constant *CodeGenModule::GenerateRtti(const CXXRecordDecl *RD) {
|
2009-08-01 07:15:31 +08:00
|
|
|
llvm::Type *Ptr8Ty;
|
2009-08-14 05:57:51 +08:00
|
|
|
Ptr8Ty = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
|
2009-08-05 04:06:48 +08:00
|
|
|
llvm::Constant *Rtti = llvm::Constant::getNullValue(Ptr8Ty);
|
2009-08-01 07:15:31 +08:00
|
|
|
|
|
|
|
if (!getContext().getLangOptions().Rtti)
|
2009-08-05 04:06:48 +08:00
|
|
|
return Rtti;
|
2009-08-01 07:15:31 +08:00
|
|
|
|
|
|
|
llvm::SmallString<256> OutName;
|
|
|
|
llvm::raw_svector_ostream Out(OutName);
|
|
|
|
QualType ClassTy;
|
2009-08-08 02:05:12 +08:00
|
|
|
ClassTy = getContext().getTagDeclType(RD);
|
2009-08-01 07:15:31 +08:00
|
|
|
mangleCXXRtti(ClassTy, getContext(), Out);
|
|
|
|
llvm::GlobalVariable::LinkageTypes linktype;
|
|
|
|
linktype = llvm::GlobalValue::WeakAnyLinkage;
|
|
|
|
std::vector<llvm::Constant *> info;
|
2009-08-14 06:53:07 +08:00
|
|
|
// assert(0 && "FIXME: implement rtti descriptor");
|
2009-08-01 07:15:31 +08:00
|
|
|
// FIXME: descriptor
|
|
|
|
info.push_back(llvm::Constant::getNullValue(Ptr8Ty));
|
2009-08-14 06:53:07 +08:00
|
|
|
// assert(0 && "FIXME: implement rtti ts");
|
2009-08-01 07:15:31 +08:00
|
|
|
// FIXME: TS
|
|
|
|
info.push_back(llvm::Constant::getNullValue(Ptr8Ty));
|
|
|
|
|
|
|
|
llvm::Constant *C;
|
|
|
|
llvm::ArrayType *type = llvm::ArrayType::get(Ptr8Ty, info.size());
|
|
|
|
C = llvm::ConstantArray::get(type, info);
|
2009-08-19 05:49:00 +08:00
|
|
|
Rtti = new llvm::GlobalVariable(getModule(), type, true, linktype, C,
|
2009-08-20 04:04:03 +08:00
|
|
|
Out.str());
|
2009-08-05 04:06:48 +08:00
|
|
|
Rtti = llvm::ConstantExpr::getBitCast(Rtti, Ptr8Ty);
|
|
|
|
return Rtti;
|
2009-08-01 07:15:31 +08:00
|
|
|
}
|
|
|
|
|
2009-08-20 02:10:47 +08:00
|
|
|
class VtableBuilder {
|
2009-08-27 04:46:33 +08:00
|
|
|
public:
|
|
|
|
/// Index_t - Vtable index type.
|
|
|
|
typedef uint64_t Index_t;
|
|
|
|
private:
|
2009-08-19 04:50:28 +08:00
|
|
|
std::vector<llvm::Constant *> &methods;
|
2009-08-29 07:22:54 +08:00
|
|
|
std::vector<llvm::Constant *> submethods;
|
2009-08-19 04:50:28 +08:00
|
|
|
llvm::Type *Ptr8Ty;
|
2009-08-21 09:45:00 +08:00
|
|
|
/// Class - The most derived class that this vtable is being built for.
|
2009-08-19 05:49:00 +08:00
|
|
|
const CXXRecordDecl *Class;
|
2009-08-21 09:45:00 +08:00
|
|
|
/// BLayout - Layout for the most derived class that this vtable is being
|
|
|
|
/// built for.
|
2009-08-19 10:06:38 +08:00
|
|
|
const ASTRecordLayout &BLayout;
|
2009-08-19 22:40:47 +08:00
|
|
|
llvm::SmallSet<const CXXRecordDecl *, 32> IndirectPrimary;
|
2009-08-20 10:11:48 +08:00
|
|
|
llvm::SmallSet<const CXXRecordDecl *, 32> SeenVBase;
|
2009-08-19 05:49:00 +08:00
|
|
|
llvm::Constant *rtti;
|
2009-08-19 04:50:28 +08:00
|
|
|
llvm::LLVMContext &VMContext;
|
2009-08-19 05:03:28 +08:00
|
|
|
CodeGenModule &CGM; // Per-module state.
|
2009-08-21 09:45:00 +08:00
|
|
|
/// Index - Maps a method decl into a vtable index. Useful for virtual
|
|
|
|
/// dispatch codegen.
|
2009-08-27 04:46:33 +08:00
|
|
|
llvm::DenseMap<const CXXMethodDecl *, Index_t> Index;
|
2009-08-29 07:22:54 +08:00
|
|
|
llvm::DenseMap<const CXXMethodDecl *, Index_t> VCall;
|
|
|
|
llvm::DenseMap<const CXXMethodDecl *, Index_t> VCallOffset;
|
2009-09-12 07:25:56 +08:00
|
|
|
typedef std::pair<Index_t, Index_t> CallOffset;
|
|
|
|
typedef llvm::DenseMap<const CXXMethodDecl *, CallOffset> Thunks_t;
|
2009-09-05 15:20:32 +08:00
|
|
|
Thunks_t Thunks;
|
2009-09-12 07:25:56 +08:00
|
|
|
typedef llvm::DenseMap<const CXXMethodDecl *,
|
|
|
|
std::pair<CallOffset, CallOffset> > CovariantThunks_t;
|
|
|
|
CovariantThunks_t CovariantThunks;
|
2009-08-29 07:22:54 +08:00
|
|
|
std::vector<Index_t> VCalls;
|
2009-08-19 06:04:08 +08:00
|
|
|
typedef CXXRecordDecl::method_iterator method_iter;
|
2009-09-05 02:27:16 +08:00
|
|
|
// FIXME: Linkage should follow vtable
|
|
|
|
const bool Extern;
|
2009-09-05 15:20:32 +08:00
|
|
|
const uint32_t LLVMPointerWidth;
|
|
|
|
Index_t extra;
|
2009-08-19 04:50:28 +08:00
|
|
|
public:
|
2009-08-20 02:10:47 +08:00
|
|
|
VtableBuilder(std::vector<llvm::Constant *> &meth,
|
|
|
|
const CXXRecordDecl *c,
|
|
|
|
CodeGenModule &cgm)
|
2009-08-19 10:06:38 +08:00
|
|
|
: methods(meth), Class(c), BLayout(cgm.getContext().getASTRecordLayout(c)),
|
|
|
|
rtti(cgm.GenerateRtti(c)), VMContext(cgm.getModule().getContext()),
|
2009-09-05 15:20:32 +08:00
|
|
|
CGM(cgm), Extern(true),
|
|
|
|
LLVMPointerWidth(cgm.getContext().Target.getPointerWidth(0)) {
|
2009-08-19 04:50:28 +08:00
|
|
|
Ptr8Ty = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
|
|
|
|
}
|
2009-08-19 05:49:00 +08:00
|
|
|
|
2009-08-27 04:46:33 +08:00
|
|
|
llvm::DenseMap<const CXXMethodDecl *, Index_t> &getIndex() { return Index; }
|
2009-08-19 10:06:38 +08:00
|
|
|
|
2009-08-29 07:22:54 +08:00
|
|
|
llvm::Constant *wrap(Index_t i) {
|
2009-08-19 04:50:28 +08:00
|
|
|
llvm::Constant *m;
|
2009-08-29 07:22:54 +08:00
|
|
|
m = llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), i);
|
|
|
|
return llvm::ConstantExpr::getIntToPtr(m, Ptr8Ty);
|
|
|
|
}
|
2009-08-19 04:50:28 +08:00
|
|
|
|
2009-08-29 07:22:54 +08:00
|
|
|
llvm::Constant *wrap(llvm::Constant *m) {
|
|
|
|
return llvm::ConstantExpr::getBitCast(m, Ptr8Ty);
|
2009-08-13 07:25:18 +08:00
|
|
|
}
|
2009-08-13 07:14:12 +08:00
|
|
|
|
2009-08-20 10:11:48 +08:00
|
|
|
void GenerateVBaseOffsets(std::vector<llvm::Constant *> &offsets,
|
2009-08-20 15:22:17 +08:00
|
|
|
const CXXRecordDecl *RD, uint64_t Offset) {
|
2009-08-20 10:11:48 +08:00
|
|
|
for (CXXRecordDecl::base_class_const_iterator i =RD->bases_begin(),
|
|
|
|
e = RD->bases_end(); i != e; ++i) {
|
2009-09-09 23:08:12 +08:00
|
|
|
const CXXRecordDecl *Base =
|
2009-08-20 10:11:48 +08:00
|
|
|
cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
|
|
|
|
if (i->isVirtual() && !SeenVBase.count(Base)) {
|
|
|
|
SeenVBase.insert(Base);
|
2009-08-20 15:22:17 +08:00
|
|
|
int64_t BaseOffset = -(Offset/8) + BLayout.getVBaseClassOffset(Base)/8;
|
2009-08-29 07:22:54 +08:00
|
|
|
llvm::Constant *m = wrap(BaseOffset);
|
|
|
|
m = wrap((0?700:0) + BaseOffset);
|
2009-08-20 10:11:48 +08:00
|
|
|
offsets.push_back(m);
|
|
|
|
}
|
2009-08-20 15:22:17 +08:00
|
|
|
GenerateVBaseOffsets(offsets, Base, Offset);
|
2009-08-20 10:11:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-21 09:45:00 +08:00
|
|
|
void StartNewTable() {
|
|
|
|
SeenVBase.clear();
|
|
|
|
}
|
2009-08-19 05:03:28 +08:00
|
|
|
|
2009-09-02 06:20:28 +08:00
|
|
|
bool OverrideMethod(const CXXMethodDecl *MD, llvm::Constant *m,
|
2009-09-07 12:27:52 +08:00
|
|
|
bool MorallyVirtual, Index_t Offset) {
|
2009-08-21 09:45:00 +08:00
|
|
|
typedef CXXMethodDecl::method_iterator meth_iter;
|
|
|
|
|
|
|
|
// 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;
|
2009-09-11 07:43:36 +08:00
|
|
|
om = CGM.GetAddrOfFunction(OMD, Ptr8Ty);
|
2009-08-21 09:45:00 +08:00
|
|
|
om = llvm::ConstantExpr::getBitCast(om, Ptr8Ty);
|
|
|
|
|
2009-09-07 12:27:52 +08:00
|
|
|
for (Index_t i = 0, e = submethods.size();
|
2009-08-27 04:46:33 +08:00
|
|
|
i != e; ++i) {
|
2009-08-21 09:45:00 +08:00
|
|
|
// FIXME: begin_overridden_methods might be too lax, covariance */
|
2009-09-05 15:20:32 +08:00
|
|
|
if (submethods[i] != om)
|
|
|
|
continue;
|
2009-09-12 07:25:56 +08:00
|
|
|
QualType nc_oret = OMD->getType()->getAsFunctionType()->getResultType();
|
|
|
|
CanQualType oret = CGM.getContext().getCanonicalType(nc_oret);
|
|
|
|
QualType nc_ret = MD->getType()->getAsFunctionType()->getResultType();
|
|
|
|
CanQualType ret = CGM.getContext().getCanonicalType(nc_ret);
|
|
|
|
CallOffset ReturnOffset = std::make_pair(0, 0);
|
|
|
|
if (oret != ret) {
|
|
|
|
// FIXME: calculate offsets for covariance
|
|
|
|
ReturnOffset = std::make_pair(42,42);
|
|
|
|
}
|
2009-09-07 12:27:52 +08:00
|
|
|
Index[MD] = i;
|
2009-09-05 15:20:32 +08:00
|
|
|
submethods[i] = m;
|
|
|
|
|
|
|
|
Thunks.erase(OMD);
|
|
|
|
if (MorallyVirtual) {
|
|
|
|
Index_t &idx = VCall[OMD];
|
|
|
|
if (idx == 0) {
|
2009-09-07 12:27:52 +08:00
|
|
|
VCallOffset[MD] = Offset/8;
|
2009-09-05 15:20:32 +08:00
|
|
|
idx = VCalls.size()+1;
|
|
|
|
VCalls.push_back(0);
|
2009-09-07 12:27:52 +08:00
|
|
|
} else {
|
|
|
|
VCallOffset[MD] = VCallOffset[OMD];
|
|
|
|
VCalls[idx-1] = -VCallOffset[OMD] + Offset/8;
|
2009-08-29 07:22:54 +08:00
|
|
|
}
|
2009-09-05 15:20:32 +08:00
|
|
|
VCall[MD] = idx;
|
2009-09-12 07:25:56 +08:00
|
|
|
CallOffset ThisOffset;
|
|
|
|
// FIXME: calculate non-virtual offset
|
|
|
|
ThisOffset = std::make_pair(0, -((idx+extra+2)*LLVMPointerWidth/8));
|
|
|
|
if (ReturnOffset.first || ReturnOffset.second)
|
|
|
|
CovariantThunks[MD] = std::make_pair(ThisOffset, ReturnOffset);
|
|
|
|
else
|
|
|
|
Thunks[MD] = ThisOffset;
|
2009-09-02 06:20:28 +08:00
|
|
|
return true;
|
2009-08-21 09:45:00 +08:00
|
|
|
}
|
2009-09-05 15:20:32 +08:00
|
|
|
#if 0
|
|
|
|
// FIXME: finish off
|
|
|
|
int64_t O = VCallOffset[OMD] - Offset/8;
|
|
|
|
if (O) {
|
|
|
|
Thunks[MD] = std::make_pair(O, 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return true;
|
2009-08-19 05:03:28 +08:00
|
|
|
}
|
2009-08-13 07:00:59 +08:00
|
|
|
}
|
2009-08-21 09:45:00 +08:00
|
|
|
|
2009-09-02 06:20:28 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-09-05 19:28:33 +08:00
|
|
|
void InstallThunks() {
|
2009-09-05 15:20:32 +08:00
|
|
|
for (Thunks_t::iterator i = Thunks.begin(), e = Thunks.end();
|
|
|
|
i != e; ++i) {
|
|
|
|
const CXXMethodDecl *MD = i->first;
|
|
|
|
Index_t idx = Index[MD];
|
|
|
|
Index_t nv_O = i->second.first;
|
|
|
|
Index_t v_O = i->second.second;
|
2009-09-05 19:28:33 +08:00
|
|
|
submethods[idx] = CGM.BuildThunk(MD, Extern, nv_O, v_O);
|
2009-09-05 15:20:32 +08:00
|
|
|
}
|
|
|
|
Thunks.clear();
|
2009-09-12 07:25:56 +08:00
|
|
|
for (CovariantThunks_t::iterator i = CovariantThunks.begin(),
|
|
|
|
e = CovariantThunks.end();
|
|
|
|
i != e; ++i) {
|
|
|
|
const CXXMethodDecl *MD = i->first;
|
|
|
|
Index_t idx = Index[MD];
|
|
|
|
Index_t nv_t = i->second.first.first;
|
|
|
|
Index_t v_t = i->second.first.second;
|
|
|
|
Index_t nv_r = i->second.second.first;
|
|
|
|
Index_t v_r = i->second.second.second;
|
|
|
|
submethods[idx] = CGM.BuildCovariantThunk(MD, Extern, nv_t, v_t, nv_r,
|
|
|
|
v_r);
|
|
|
|
}
|
|
|
|
CovariantThunks.clear();
|
2009-09-05 15:20:32 +08:00
|
|
|
}
|
|
|
|
|
2009-09-07 12:27:52 +08:00
|
|
|
void OverrideMethods(std::vector<std::pair<const CXXRecordDecl *,
|
|
|
|
int64_t> > *Path, bool MorallyVirtual) {
|
|
|
|
for (std::vector<std::pair<const CXXRecordDecl *,
|
|
|
|
int64_t> >::reverse_iterator i =Path->rbegin(),
|
2009-09-05 19:28:33 +08:00
|
|
|
e = Path->rend(); i != e; ++i) {
|
2009-09-07 12:27:52 +08:00
|
|
|
const CXXRecordDecl *RD = i->first;
|
|
|
|
int64_t Offset = i->second;
|
2009-09-05 19:28:33 +08:00
|
|
|
for (method_iter mi = RD->method_begin(), me = RD->method_end(); mi != me;
|
|
|
|
++mi)
|
|
|
|
if (mi->isVirtual()) {
|
|
|
|
const CXXMethodDecl *MD = *mi;
|
2009-09-12 08:00:29 +08:00
|
|
|
llvm::Constant *m = wrap(CGM.GetAddrOfFunction(MD));
|
2009-09-07 12:27:52 +08:00
|
|
|
OverrideMethod(MD, m, MorallyVirtual, Offset);
|
2009-09-05 19:28:33 +08:00
|
|
|
}
|
|
|
|
}
|
2009-09-02 07:22:44 +08:00
|
|
|
}
|
|
|
|
|
2009-09-05 15:49:12 +08:00
|
|
|
void AddMethod(const CXXMethodDecl *MD, bool MorallyVirtual, Index_t Offset) {
|
2009-09-12 08:00:29 +08:00
|
|
|
llvm::Constant *m = 0;
|
2009-09-10 07:17:18 +08:00
|
|
|
if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(MD))
|
2009-09-12 08:00:29 +08:00
|
|
|
m = wrap(CGM.GetAddrOfCXXDestructor(Dtor, Dtor_Complete));
|
2009-09-10 07:17:18 +08:00
|
|
|
else
|
2009-09-12 08:00:29 +08:00
|
|
|
m = wrap(CGM.GetAddrOfFunction(MD));
|
2009-09-10 07:17:18 +08:00
|
|
|
|
2009-09-05 15:20:32 +08:00
|
|
|
// If we can find a previously allocated slot for this, reuse it.
|
2009-09-07 12:27:52 +08:00
|
|
|
if (OverrideMethod(MD, m, MorallyVirtual, Offset))
|
2009-09-02 06:20:28 +08:00
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-21 09:45:00 +08:00
|
|
|
// else allocate a new slot.
|
2009-08-29 07:22:54 +08:00
|
|
|
Index[MD] = submethods.size();
|
2009-09-07 12:27:52 +08:00
|
|
|
submethods.push_back(m);
|
2009-08-29 07:22: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) {
|
|
|
|
idx = VCalls.size()+1;
|
|
|
|
VCalls.push_back(0);
|
|
|
|
}
|
|
|
|
}
|
2009-08-21 09:45:00 +08:00
|
|
|
}
|
|
|
|
|
2009-09-05 15:49:12 +08:00
|
|
|
void AddMethods(const CXXRecordDecl *RD, bool MorallyVirtual,
|
|
|
|
Index_t Offset) {
|
2009-08-21 09:45:00 +08:00
|
|
|
for (method_iter mi = RD->method_begin(), me = RD->method_end(); mi != me;
|
|
|
|
++mi)
|
|
|
|
if (mi->isVirtual())
|
2009-09-05 15:49:12 +08:00
|
|
|
AddMethod(*mi, MorallyVirtual, Offset);
|
2009-08-13 07:00:59 +08:00
|
|
|
}
|
|
|
|
|
2009-09-05 15:20:32 +08:00
|
|
|
void NonVirtualBases(const CXXRecordDecl *RD, const ASTRecordLayout &Layout,
|
|
|
|
const CXXRecordDecl *PrimaryBase,
|
|
|
|
bool PrimaryBaseWasVirtual, bool MorallyVirtual,
|
|
|
|
int64_t Offset) {
|
|
|
|
for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
|
|
|
|
e = RD->bases_end(); i != e; ++i) {
|
|
|
|
if (i->isVirtual())
|
|
|
|
continue;
|
2009-09-09 23:08:12 +08:00
|
|
|
const CXXRecordDecl *Base =
|
2009-09-05 15:20:32 +08:00
|
|
|
cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
|
|
|
|
if (Base != PrimaryBase || PrimaryBaseWasVirtual) {
|
|
|
|
uint64_t o = Offset + Layout.getBaseClassOffset(Base);
|
|
|
|
StartNewTable();
|
2009-09-07 12:27:52 +08:00
|
|
|
std::vector<std::pair<const CXXRecordDecl *,
|
|
|
|
int64_t> > S;
|
|
|
|
S.push_back(std::make_pair(RD, Offset));
|
2009-09-05 19:28:33 +08:00
|
|
|
GenerateVtableForBase(Base, MorallyVirtual, o, false, &S);
|
2009-09-05 15:20:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-05 15:49:12 +08:00
|
|
|
Index_t end(const CXXRecordDecl *RD, std::vector<llvm::Constant *> &offsets,
|
|
|
|
const ASTRecordLayout &Layout,
|
|
|
|
const CXXRecordDecl *PrimaryBase,
|
|
|
|
bool PrimaryBaseWasVirtual, bool MorallyVirtual,
|
|
|
|
int64_t Offset, bool ForVirtualBase) {
|
|
|
|
StartNewTable();
|
|
|
|
extra = 0;
|
|
|
|
// FIXME: Cleanup.
|
|
|
|
if (!ForVirtualBase) {
|
|
|
|
// then virtual base offsets...
|
|
|
|
for (std::vector<llvm::Constant *>::reverse_iterator i = offsets.rbegin(),
|
|
|
|
e = offsets.rend(); i != e; ++i)
|
|
|
|
methods.push_back(*i);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The vcalls come first...
|
2009-09-07 12:27:52 +08:00
|
|
|
for (std::vector<Index_t>::reverse_iterator i=VCalls.rbegin(),
|
|
|
|
e=VCalls.rend();
|
|
|
|
i != e; ++i)
|
2009-09-05 15:49:12 +08:00
|
|
|
methods.push_back(wrap((0?600:0) + *i));
|
|
|
|
VCalls.clear();
|
|
|
|
|
|
|
|
if (ForVirtualBase) {
|
|
|
|
// then virtual base offsets...
|
|
|
|
for (std::vector<llvm::Constant *>::reverse_iterator i = offsets.rbegin(),
|
|
|
|
e = offsets.rend(); i != e; ++i)
|
|
|
|
methods.push_back(*i);
|
|
|
|
}
|
|
|
|
|
|
|
|
methods.push_back(wrap(-(Offset/8)));
|
|
|
|
methods.push_back(rtti);
|
|
|
|
Index_t AddressPoint = methods.size();
|
|
|
|
|
2009-09-05 19:28:33 +08:00
|
|
|
InstallThunks();
|
2009-09-05 15:49:12 +08:00
|
|
|
methods.insert(methods.end(), submethods.begin(), submethods.end());
|
|
|
|
submethods.clear();
|
|
|
|
|
|
|
|
// and then the non-virtual bases.
|
|
|
|
NonVirtualBases(RD, Layout, PrimaryBase, PrimaryBaseWasVirtual,
|
|
|
|
MorallyVirtual, Offset);
|
|
|
|
return AddressPoint;
|
|
|
|
}
|
|
|
|
|
2009-09-05 16:40:18 +08:00
|
|
|
void Primaries(const CXXRecordDecl *RD, bool MorallyVirtual, int64_t Offset) {
|
2009-09-05 16:37:03 +08:00
|
|
|
if (!RD->isDynamicClass())
|
|
|
|
return;
|
|
|
|
|
|
|
|
const ASTRecordLayout &Layout = CGM.getContext().getASTRecordLayout(RD);
|
2009-09-09 23:08:12 +08:00
|
|
|
const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase();
|
2009-09-05 16:37:03 +08:00
|
|
|
const bool PrimaryBaseWasVirtual = Layout.getPrimaryBaseWasVirtual();
|
|
|
|
|
|
|
|
// vtables are composed from the chain of primaries.
|
|
|
|
if (PrimaryBase) {
|
|
|
|
if (PrimaryBaseWasVirtual)
|
|
|
|
IndirectPrimary.insert(PrimaryBase);
|
2009-09-05 16:40:18 +08:00
|
|
|
Primaries(PrimaryBase, PrimaryBaseWasVirtual|MorallyVirtual, Offset);
|
2009-09-05 16:37:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// And add the virtuals for the class to the primary vtable.
|
|
|
|
AddMethods(RD, MorallyVirtual, Offset);
|
|
|
|
}
|
|
|
|
|
2009-09-05 17:10:58 +08:00
|
|
|
int64_t GenerateVtableForBase(const CXXRecordDecl *RD,
|
2009-09-05 17:24:43 +08:00
|
|
|
bool MorallyVirtual = false, int64_t Offset = 0,
|
|
|
|
bool ForVirtualBase = false,
|
2009-09-07 12:27:52 +08:00
|
|
|
std::vector<std::pair<const CXXRecordDecl *,
|
|
|
|
int64_t> > *Path = 0) {
|
2009-09-05 16:07:32 +08:00
|
|
|
if (!RD->isDynamicClass())
|
2009-08-22 07:09:30 +08:00
|
|
|
return 0;
|
2009-08-19 05:30:21 +08:00
|
|
|
|
|
|
|
const ASTRecordLayout &Layout = CGM.getContext().getASTRecordLayout(RD);
|
2009-09-09 23:08:12 +08:00
|
|
|
const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase();
|
2009-08-19 05:30:21 +08:00
|
|
|
const bool PrimaryBaseWasVirtual = Layout.getPrimaryBaseWasVirtual();
|
|
|
|
|
2009-08-29 07:22:54 +08:00
|
|
|
std::vector<llvm::Constant *> offsets;
|
2009-09-05 16:45:02 +08:00
|
|
|
extra = 0;
|
|
|
|
GenerateVBaseOffsets(offsets, RD, Offset);
|
|
|
|
if (ForVirtualBase)
|
|
|
|
extra = offsets.size();
|
2009-08-07 07:48:32 +08:00
|
|
|
|
2009-08-19 05:30:21 +08:00
|
|
|
// vtables are composed from the chain of primaries.
|
|
|
|
if (PrimaryBase) {
|
|
|
|
if (PrimaryBaseWasVirtual)
|
|
|
|
IndirectPrimary.insert(PrimaryBase);
|
2009-09-05 16:40:18 +08:00
|
|
|
Primaries(PrimaryBase, PrimaryBaseWasVirtual|MorallyVirtual, Offset);
|
2009-08-19 05:30:21 +08:00
|
|
|
}
|
2009-08-16 09:46:26 +08:00
|
|
|
|
2009-08-29 07:22:54 +08:00
|
|
|
// And add the virtuals for the class to the primary vtable.
|
2009-09-05 15:49:12 +08:00
|
|
|
AddMethods(RD, MorallyVirtual, Offset);
|
2009-08-29 07:22:54 +08:00
|
|
|
|
2009-09-05 19:28:33 +08:00
|
|
|
if (Path)
|
2009-09-07 12:27:52 +08:00
|
|
|
OverrideMethods(Path, MorallyVirtual);
|
2009-09-05 19:28:33 +08:00
|
|
|
|
2009-09-05 15:49:12 +08:00
|
|
|
return end(RD, offsets, Layout, PrimaryBase, PrimaryBaseWasVirtual,
|
|
|
|
MorallyVirtual, Offset, ForVirtualBase);
|
2009-08-16 09:46:26 +08:00
|
|
|
}
|
|
|
|
|
2009-09-05 19:28:33 +08:00
|
|
|
void GenerateVtableForVBases(const CXXRecordDecl *RD,
|
2009-09-07 12:27:52 +08:00
|
|
|
int64_t Offset = 0,
|
|
|
|
std::vector<std::pair<const CXXRecordDecl *,
|
|
|
|
int64_t> > *Path = 0) {
|
2009-09-05 19:28:33 +08:00
|
|
|
bool alloc = false;
|
|
|
|
if (Path == 0) {
|
|
|
|
alloc = true;
|
2009-09-07 12:27:52 +08:00
|
|
|
Path = new std::vector<std::pair<const CXXRecordDecl *,
|
|
|
|
int64_t> >;
|
2009-09-05 19:28:33 +08:00
|
|
|
}
|
|
|
|
// FIXME: We also need to override using all paths to a virtual base,
|
|
|
|
// right now, we just process the first path
|
2009-09-07 12:27:52 +08:00
|
|
|
Path->push_back(std::make_pair(RD, Offset));
|
2009-08-19 05:30:21 +08:00
|
|
|
for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
|
|
|
|
e = RD->bases_end(); i != e; ++i) {
|
2009-09-09 23:08:12 +08:00
|
|
|
const CXXRecordDecl *Base =
|
2009-08-19 05:30:21 +08:00
|
|
|
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);
|
2009-08-21 09:45:00 +08:00
|
|
|
StartNewTable();
|
2009-08-20 15:22:17 +08:00
|
|
|
int64_t BaseOffset = BLayout.getVBaseClassOffset(Base);
|
2009-09-05 19:28:33 +08:00
|
|
|
GenerateVtableForBase(Base, true, BaseOffset, true, Path);
|
2009-08-19 05:30:21 +08:00
|
|
|
}
|
2009-09-07 12:27:52 +08:00
|
|
|
int64_t BaseOffset = Offset;
|
|
|
|
if (i->isVirtual())
|
|
|
|
BaseOffset = BLayout.getVBaseClassOffset(Base);
|
2009-08-19 05:30:21 +08:00
|
|
|
if (Base->getNumVBases())
|
2009-09-07 12:27:52 +08:00
|
|
|
GenerateVtableForVBases(Base, BaseOffset, Path);
|
2009-08-19 05:30:21 +08:00
|
|
|
}
|
2009-09-05 19:28:33 +08:00
|
|
|
Path->pop_back();
|
|
|
|
if (alloc)
|
|
|
|
delete Path;
|
2009-08-07 05:49:36 +08:00
|
|
|
}
|
2009-08-19 05:30:21 +08:00
|
|
|
};
|
2009-08-06 23:50:11 +08:00
|
|
|
|
2009-08-27 04:46:33 +08:00
|
|
|
class VtableInfo {
|
|
|
|
public:
|
|
|
|
typedef VtableBuilder::Index_t Index_t;
|
|
|
|
private:
|
|
|
|
CodeGenModule &CGM; // Per-module state.
|
|
|
|
/// Index_t - Vtable index type.
|
|
|
|
typedef llvm::DenseMap<const CXXMethodDecl *, Index_t> ElTy;
|
|
|
|
typedef llvm::DenseMap<const CXXRecordDecl *, ElTy *> MapTy;
|
|
|
|
// FIXME: Move to Context.
|
|
|
|
static MapTy IndexFor;
|
|
|
|
public:
|
|
|
|
VtableInfo(CodeGenModule &cgm) : CGM(cgm) { }
|
|
|
|
void register_index(const CXXRecordDecl *RD, const ElTy &e) {
|
|
|
|
assert(IndexFor.find(RD) == IndexFor.end() && "Don't compute vtbl twice");
|
|
|
|
// We own a copy of this, it will go away shortly.
|
|
|
|
new ElTy (e);
|
|
|
|
IndexFor[RD] = new ElTy (e);
|
|
|
|
}
|
|
|
|
Index_t lookup(const CXXMethodDecl *MD) {
|
|
|
|
const CXXRecordDecl *RD = MD->getParent();
|
|
|
|
MapTy::iterator I = IndexFor.find(RD);
|
|
|
|
if (I == IndexFor.end()) {
|
|
|
|
std::vector<llvm::Constant *> methods;
|
|
|
|
VtableBuilder b(methods, RD, CGM);
|
2009-09-05 17:24:43 +08:00
|
|
|
b.GenerateVtableForBase(RD);
|
2009-09-05 16:07:32 +08:00
|
|
|
b.GenerateVtableForVBases(RD);
|
2009-08-27 04:46:33 +08:00
|
|
|
register_index(RD, b.getIndex());
|
|
|
|
I = IndexFor.find(RD);
|
|
|
|
}
|
|
|
|
assert(I->second->find(MD)!=I->second->end() && "Can't find vtable index");
|
|
|
|
return (*I->second)[MD];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// FIXME: Move to Context.
|
|
|
|
VtableInfo::MapTy VtableInfo::IndexFor;
|
|
|
|
|
2009-08-01 02:25:34 +08:00
|
|
|
llvm::Value *CodeGenFunction::GenerateVtable(const CXXRecordDecl *RD) {
|
|
|
|
llvm::SmallString<256> OutName;
|
|
|
|
llvm::raw_svector_ostream Out(OutName);
|
|
|
|
QualType ClassTy;
|
2009-08-08 02:05:12 +08:00
|
|
|
ClassTy = getContext().getTagDeclType(RD);
|
2009-08-01 02:25:34 +08:00
|
|
|
mangleCXXVtable(ClassTy, getContext(), Out);
|
2009-08-01 05:43:43 +08:00
|
|
|
llvm::GlobalVariable::LinkageTypes linktype;
|
|
|
|
linktype = llvm::GlobalValue::WeakAnyLinkage;
|
|
|
|
std::vector<llvm::Constant *> methods;
|
2009-08-16 09:46:26 +08:00
|
|
|
llvm::Type *Ptr8Ty=llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext),0);
|
2009-09-05 19:28:33 +08:00
|
|
|
int64_t AddressPoint;
|
2009-08-06 06:37:18 +08:00
|
|
|
|
2009-08-20 02:10:47 +08:00
|
|
|
VtableBuilder b(methods, RD, CGM);
|
2009-08-19 05:30:21 +08:00
|
|
|
|
2009-08-16 09:46:26 +08:00
|
|
|
// First comes the vtables for all the non-virtual bases...
|
2009-09-05 19:28:33 +08:00
|
|
|
AddressPoint = b.GenerateVtableForBase(RD);
|
2009-08-07 02:05:22 +08:00
|
|
|
|
2009-08-16 09:46:26 +08:00
|
|
|
// then the vtables for all the virtual bases.
|
2009-09-05 16:07:32 +08:00
|
|
|
b.GenerateVtableForVBases(RD);
|
2009-08-06 06:37:18 +08:00
|
|
|
|
2009-08-01 05:43:43 +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,
|
2009-08-20 04:04:03 +08:00
|
|
|
linktype, C, Out.str());
|
2009-08-01 02:25:34 +08:00
|
|
|
vtable = Builder.CreateBitCast(vtable, Ptr8Ty);
|
|
|
|
vtable = Builder.CreateGEP(vtable,
|
2009-08-16 09:46:26 +08:00
|
|
|
llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
|
2009-09-05 19:28:33 +08:00
|
|
|
AddressPoint*LLVMPointerWidth/8));
|
2009-08-01 02:25:34 +08:00
|
|
|
return vtable;
|
|
|
|
}
|
|
|
|
|
2009-08-27 04:46:33 +08:00
|
|
|
// FIXME: move to Context
|
|
|
|
static VtableInfo *vtableinfo;
|
|
|
|
|
2009-09-05 02:27:16 +08:00
|
|
|
llvm::Constant *CodeGenFunction::GenerateThunk(llvm::Function *Fn,
|
|
|
|
const CXXMethodDecl *MD,
|
2009-09-05 15:20:32 +08:00
|
|
|
bool Extern, int64_t nv,
|
|
|
|
int64_t v) {
|
2009-09-05 02:27:16 +08:00
|
|
|
QualType R = MD->getType()->getAsFunctionType()->getResultType();
|
|
|
|
|
|
|
|
FunctionArgList Args;
|
|
|
|
ImplicitParamDecl *ThisDecl =
|
|
|
|
ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
|
|
|
|
MD->getThisType(getContext()));
|
|
|
|
Args.push_back(std::make_pair(ThisDecl, ThisDecl->getType()));
|
|
|
|
for (FunctionDecl::param_const_iterator i = MD->param_begin(),
|
|
|
|
e = MD->param_end();
|
|
|
|
i != e; ++i) {
|
|
|
|
ParmVarDecl *D = *i;
|
|
|
|
Args.push_back(std::make_pair(D, D->getType()));
|
|
|
|
}
|
|
|
|
IdentifierInfo *II
|
|
|
|
= &CGM.getContext().Idents.get("__thunk_named_foo_");
|
|
|
|
FunctionDecl *FD = FunctionDecl::Create(getContext(),
|
|
|
|
getContext().getTranslationUnitDecl(),
|
|
|
|
SourceLocation(), II, R, 0,
|
|
|
|
Extern
|
|
|
|
? FunctionDecl::Extern
|
|
|
|
: FunctionDecl::Static,
|
|
|
|
false, true);
|
|
|
|
StartFunction(FD, R, Fn, Args, SourceLocation());
|
|
|
|
// FIXME: generate body
|
|
|
|
FinishFunction();
|
|
|
|
return Fn;
|
|
|
|
}
|
|
|
|
|
2009-09-12 07:25:56 +08:00
|
|
|
llvm::Constant *CodeGenFunction::GenerateCovariantThunk(llvm::Function *Fn,
|
|
|
|
const CXXMethodDecl *MD,
|
|
|
|
bool Extern,
|
|
|
|
int64_t nv_t,
|
|
|
|
int64_t v_t,
|
|
|
|
int64_t nv_r,
|
|
|
|
int64_t v_r) {
|
|
|
|
QualType R = MD->getType()->getAsFunctionType()->getResultType();
|
|
|
|
|
|
|
|
FunctionArgList Args;
|
|
|
|
ImplicitParamDecl *ThisDecl =
|
|
|
|
ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
|
|
|
|
MD->getThisType(getContext()));
|
|
|
|
Args.push_back(std::make_pair(ThisDecl, ThisDecl->getType()));
|
|
|
|
for (FunctionDecl::param_const_iterator i = MD->param_begin(),
|
|
|
|
e = MD->param_end();
|
|
|
|
i != e; ++i) {
|
|
|
|
ParmVarDecl *D = *i;
|
|
|
|
Args.push_back(std::make_pair(D, D->getType()));
|
|
|
|
}
|
|
|
|
IdentifierInfo *II
|
|
|
|
= &CGM.getContext().Idents.get("__thunk_named_foo_");
|
|
|
|
FunctionDecl *FD = FunctionDecl::Create(getContext(),
|
|
|
|
getContext().getTranslationUnitDecl(),
|
|
|
|
SourceLocation(), II, R, 0,
|
|
|
|
Extern
|
|
|
|
? FunctionDecl::Extern
|
|
|
|
: FunctionDecl::Static,
|
|
|
|
false, true);
|
|
|
|
StartFunction(FD, R, Fn, Args, SourceLocation());
|
|
|
|
// FIXME: generate body
|
|
|
|
FinishFunction();
|
|
|
|
return Fn;
|
|
|
|
}
|
|
|
|
|
2009-09-05 15:20:32 +08:00
|
|
|
llvm::Constant *CodeGenModule::BuildThunk(const CXXMethodDecl *MD, bool Extern,
|
|
|
|
int64_t nv, int64_t v) {
|
2009-09-05 02:27:16 +08:00
|
|
|
llvm::SmallString<256> OutName;
|
|
|
|
llvm::raw_svector_ostream Out(OutName);
|
2009-09-05 15:20:32 +08:00
|
|
|
mangleThunk(MD, nv, v, getContext(), Out);
|
2009-09-05 02:27:16 +08:00
|
|
|
llvm::GlobalVariable::LinkageTypes linktype;
|
|
|
|
linktype = llvm::GlobalValue::WeakAnyLinkage;
|
|
|
|
if (!Extern)
|
|
|
|
linktype = llvm::GlobalValue::InternalLinkage;
|
|
|
|
llvm::Type *Ptr8Ty=llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext),0);
|
|
|
|
const FunctionProtoType *FPT = MD->getType()->getAsFunctionProtoType();
|
|
|
|
const llvm::FunctionType *FTy =
|
|
|
|
getTypes().GetFunctionType(getTypes().getFunctionInfo(MD),
|
|
|
|
FPT->isVariadic());
|
|
|
|
|
|
|
|
llvm::Function *Fn = llvm::Function::Create(FTy, linktype, Out.str(),
|
|
|
|
&getModule());
|
2009-09-05 15:20:32 +08:00
|
|
|
CodeGenFunction(*this).GenerateThunk(Fn, MD, Extern, nv, v);
|
2009-09-05 02:27:16 +08:00
|
|
|
// Fn = Builder.CreateBitCast(Fn, Ptr8Ty);
|
|
|
|
llvm::Constant *m = llvm::ConstantExpr::getBitCast(Fn, Ptr8Ty);
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
2009-09-12 07:25:56 +08:00
|
|
|
llvm::Constant *CodeGenModule::BuildCovariantThunk(const CXXMethodDecl *MD,
|
|
|
|
bool Extern, int64_t nv_t,
|
|
|
|
int64_t v_t, int64_t nv_r,
|
|
|
|
int64_t v_r) {
|
|
|
|
llvm::SmallString<256> OutName;
|
|
|
|
llvm::raw_svector_ostream Out(OutName);
|
|
|
|
mangleCovariantThunk(MD, nv_t, v_t, nv_r, v_r, getContext(), Out);
|
|
|
|
llvm::GlobalVariable::LinkageTypes linktype;
|
|
|
|
linktype = llvm::GlobalValue::WeakAnyLinkage;
|
|
|
|
if (!Extern)
|
|
|
|
linktype = llvm::GlobalValue::InternalLinkage;
|
|
|
|
llvm::Type *Ptr8Ty=llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext),0);
|
|
|
|
const FunctionProtoType *FPT = MD->getType()->getAsFunctionProtoType();
|
|
|
|
const llvm::FunctionType *FTy =
|
|
|
|
getTypes().GetFunctionType(getTypes().getFunctionInfo(MD),
|
|
|
|
FPT->isVariadic());
|
|
|
|
|
|
|
|
llvm::Function *Fn = llvm::Function::Create(FTy, linktype, Out.str(),
|
|
|
|
&getModule());
|
|
|
|
CodeGenFunction(*this).GenerateCovariantThunk(Fn, MD, Extern, nv_t, v_t, nv_r,
|
|
|
|
v_r);
|
|
|
|
// Fn = Builder.CreateBitCast(Fn, Ptr8Ty);
|
|
|
|
llvm::Constant *m = llvm::ConstantExpr::getBitCast(Fn, Ptr8Ty);
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
2009-08-27 04:46:33 +08:00
|
|
|
llvm::Value *
|
|
|
|
CodeGenFunction::BuildVirtualCall(const CXXMethodDecl *MD, llvm::Value *&This,
|
|
|
|
const llvm::Type *Ty) {
|
|
|
|
// FIXME: If we know the dynamic type, we don't have to do a virtual dispatch.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-27 04:46:33 +08:00
|
|
|
// FIXME: move to Context
|
|
|
|
if (vtableinfo == 0)
|
|
|
|
vtableinfo = new VtableInfo(CGM);
|
|
|
|
|
|
|
|
VtableInfo::Index_t Idx = vtableinfo->lookup(MD);
|
|
|
|
|
|
|
|
Ty = llvm::PointerType::get(Ty, 0);
|
|
|
|
Ty = llvm::PointerType::get(Ty, 0);
|
|
|
|
Ty = llvm::PointerType::get(Ty, 0);
|
|
|
|
llvm::Value *vtbl = Builder.CreateBitCast(This, Ty);
|
|
|
|
vtbl = Builder.CreateLoad(vtbl);
|
|
|
|
llvm::Value *vfn = Builder.CreateConstInBoundsGEP1_64(vtbl,
|
|
|
|
Idx, "vfn");
|
|
|
|
vfn = Builder.CreateLoad(vfn);
|
|
|
|
return vfn;
|
|
|
|
}
|
|
|
|
|
2009-08-22 02:30:26 +08:00
|
|
|
/// EmitClassAggrMemberwiseCopy - This routine generates code to copy a class
|
|
|
|
/// array of objects from SrcValue to DestValue. Copying can be either a bitwise
|
|
|
|
/// copy or via a copy constructor call.
|
2009-08-26 08:23:27 +08:00
|
|
|
// FIXME. Consolidate this with EmitCXXAggrConstructorCall.
|
2009-09-09 23:08:12 +08:00
|
|
|
void CodeGenFunction::EmitClassAggrMemberwiseCopy(llvm::Value *Dest,
|
2009-08-22 02:30:26 +08:00
|
|
|
llvm::Value *Src,
|
|
|
|
const ArrayType *Array,
|
2009-09-09 23:08:12 +08:00
|
|
|
const CXXRecordDecl *BaseClassDecl,
|
2009-08-22 02:30:26 +08:00
|
|
|
QualType Ty) {
|
|
|
|
const ConstantArrayType *CA = dyn_cast<ConstantArrayType>(Array);
|
|
|
|
assert(CA && "VLA cannot be copied over");
|
|
|
|
bool BitwiseCopy = BaseClassDecl->hasTrivialCopyConstructor();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 02:30:26 +08:00
|
|
|
// Create a temporary for the loop index and initialize it with 0.
|
|
|
|
llvm::Value *IndexPtr = CreateTempAlloca(llvm::Type::getInt64Ty(VMContext),
|
|
|
|
"loop.index");
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value* zeroConstant =
|
2009-08-22 02:30:26 +08:00
|
|
|
llvm::Constant::getNullValue(llvm::Type::getInt64Ty(VMContext));
|
|
|
|
Builder.CreateStore(zeroConstant, IndexPtr, false);
|
|
|
|
// Start the loop with a block that tests the condition.
|
|
|
|
llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
|
|
|
|
llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 02:30:26 +08:00
|
|
|
EmitBlock(CondBlock);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 02:30:26 +08:00
|
|
|
llvm::BasicBlock *ForBody = createBasicBlock("for.body");
|
|
|
|
// Generate: if (loop-index < number-of-elements fall to the loop body,
|
|
|
|
// otherwise, go to the block after the for-loop.
|
|
|
|
uint64_t NumElements = getContext().getConstantArrayElementCount(CA);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value * NumElementsPtr =
|
2009-08-22 02:30:26 +08:00
|
|
|
llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), NumElements);
|
|
|
|
llvm::Value *Counter = Builder.CreateLoad(IndexPtr);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *IsLess = Builder.CreateICmpULT(Counter, NumElementsPtr,
|
2009-08-22 02:30:26 +08:00
|
|
|
"isless");
|
|
|
|
// If the condition is true, execute the body.
|
|
|
|
Builder.CreateCondBr(IsLess, ForBody, AfterFor);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 02:30:26 +08:00
|
|
|
EmitBlock(ForBody);
|
|
|
|
llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc");
|
|
|
|
// Inside the loop body, emit the constructor call on the array element.
|
|
|
|
Counter = Builder.CreateLoad(IndexPtr);
|
|
|
|
Src = Builder.CreateInBoundsGEP(Src, Counter, "srcaddress");
|
|
|
|
Dest = Builder.CreateInBoundsGEP(Dest, Counter, "destaddress");
|
|
|
|
if (BitwiseCopy)
|
|
|
|
EmitAggregateCopy(Dest, Src, Ty);
|
2009-09-09 23:08:12 +08:00
|
|
|
else if (CXXConstructorDecl *BaseCopyCtor =
|
2009-08-22 02:30:26 +08:00
|
|
|
BaseClassDecl->getCopyConstructor(getContext(), 0)) {
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(BaseCopyCtor,
|
2009-08-22 02:30:26 +08:00
|
|
|
Ctor_Complete);
|
|
|
|
CallArgList CallArgs;
|
|
|
|
// Push the this (Dest) ptr.
|
|
|
|
CallArgs.push_back(std::make_pair(RValue::get(Dest),
|
|
|
|
BaseCopyCtor->getThisType(getContext())));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 02:30:26 +08:00
|
|
|
// Push the Src ptr.
|
|
|
|
CallArgs.push_back(std::make_pair(RValue::get(Src),
|
|
|
|
BaseCopyCtor->getParamDecl(0)->getType()));
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType ResultType =
|
2009-08-22 02:30:26 +08:00
|
|
|
BaseCopyCtor->getType()->getAsFunctionType()->getResultType();
|
|
|
|
EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
|
|
|
|
Callee, CallArgs, BaseCopyCtor);
|
|
|
|
}
|
|
|
|
EmitBlock(ContinueBlock);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 02:30:26 +08:00
|
|
|
// Emit the increment of the loop counter.
|
|
|
|
llvm::Value *NextVal = llvm::ConstantInt::get(Counter->getType(), 1);
|
|
|
|
Counter = Builder.CreateLoad(IndexPtr);
|
|
|
|
NextVal = Builder.CreateAdd(Counter, NextVal, "inc");
|
|
|
|
Builder.CreateStore(NextVal, IndexPtr, false);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 02:30:26 +08:00
|
|
|
// Finally, branch back up to the condition for the next iteration.
|
|
|
|
EmitBranch(CondBlock);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 02:30:26 +08:00
|
|
|
// Emit the fall-through block.
|
|
|
|
EmitBlock(AfterFor, true);
|
|
|
|
}
|
|
|
|
|
2009-08-22 06:34:55 +08:00
|
|
|
/// EmitClassAggrCopyAssignment - This routine generates code to assign a class
|
2009-09-09 23:08:12 +08:00
|
|
|
/// array of objects from SrcValue to DestValue. Assignment can be either a
|
2009-08-22 06:34:55 +08:00
|
|
|
/// bitwise assignment or via a copy assignment operator function call.
|
|
|
|
/// FIXME. This can be consolidated with EmitClassAggrMemberwiseCopy
|
2009-09-09 23:08:12 +08:00
|
|
|
void CodeGenFunction::EmitClassAggrCopyAssignment(llvm::Value *Dest,
|
2009-08-22 06:34:55 +08:00
|
|
|
llvm::Value *Src,
|
|
|
|
const ArrayType *Array,
|
2009-09-09 23:08:12 +08:00
|
|
|
const CXXRecordDecl *BaseClassDecl,
|
2009-08-22 06:34:55 +08:00
|
|
|
QualType Ty) {
|
|
|
|
const ConstantArrayType *CA = dyn_cast<ConstantArrayType>(Array);
|
|
|
|
assert(CA && "VLA cannot be asssigned");
|
|
|
|
bool BitwiseAssign = BaseClassDecl->hasTrivialCopyAssignment();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 06:34:55 +08:00
|
|
|
// Create a temporary for the loop index and initialize it with 0.
|
|
|
|
llvm::Value *IndexPtr = CreateTempAlloca(llvm::Type::getInt64Ty(VMContext),
|
|
|
|
"loop.index");
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value* zeroConstant =
|
2009-08-22 06:34:55 +08:00
|
|
|
llvm::Constant::getNullValue(llvm::Type::getInt64Ty(VMContext));
|
|
|
|
Builder.CreateStore(zeroConstant, IndexPtr, false);
|
|
|
|
// Start the loop with a block that tests the condition.
|
|
|
|
llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
|
|
|
|
llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 06:34:55 +08:00
|
|
|
EmitBlock(CondBlock);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 06:34:55 +08:00
|
|
|
llvm::BasicBlock *ForBody = createBasicBlock("for.body");
|
|
|
|
// Generate: if (loop-index < number-of-elements fall to the loop body,
|
|
|
|
// otherwise, go to the block after the for-loop.
|
|
|
|
uint64_t NumElements = getContext().getConstantArrayElementCount(CA);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value * NumElementsPtr =
|
2009-08-22 06:34:55 +08:00
|
|
|
llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), NumElements);
|
|
|
|
llvm::Value *Counter = Builder.CreateLoad(IndexPtr);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *IsLess = Builder.CreateICmpULT(Counter, NumElementsPtr,
|
2009-08-22 06:34:55 +08:00
|
|
|
"isless");
|
|
|
|
// If the condition is true, execute the body.
|
|
|
|
Builder.CreateCondBr(IsLess, ForBody, AfterFor);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 06:34:55 +08:00
|
|
|
EmitBlock(ForBody);
|
|
|
|
llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc");
|
|
|
|
// Inside the loop body, emit the assignment operator call on array element.
|
|
|
|
Counter = Builder.CreateLoad(IndexPtr);
|
|
|
|
Src = Builder.CreateInBoundsGEP(Src, Counter, "srcaddress");
|
|
|
|
Dest = Builder.CreateInBoundsGEP(Dest, Counter, "destaddress");
|
|
|
|
const CXXMethodDecl *MD = 0;
|
|
|
|
if (BitwiseAssign)
|
|
|
|
EmitAggregateCopy(Dest, Src, Ty);
|
|
|
|
else {
|
|
|
|
bool hasCopyAssign = BaseClassDecl->hasConstCopyAssignment(getContext(),
|
|
|
|
MD);
|
|
|
|
assert(hasCopyAssign && "EmitClassAggrCopyAssignment - No user assign");
|
|
|
|
(void)hasCopyAssign;
|
|
|
|
const FunctionProtoType *FPT = MD->getType()->getAsFunctionProtoType();
|
|
|
|
const llvm::Type *LTy =
|
|
|
|
CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
|
|
|
|
FPT->isVariadic());
|
2009-09-11 07:43:36 +08:00
|
|
|
llvm::Constant *Callee = CGM.GetAddrOfFunction(MD, LTy);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 06:34:55 +08:00
|
|
|
CallArgList CallArgs;
|
|
|
|
// Push the this (Dest) ptr.
|
|
|
|
CallArgs.push_back(std::make_pair(RValue::get(Dest),
|
|
|
|
MD->getThisType(getContext())));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 06:34:55 +08:00
|
|
|
// Push the Src ptr.
|
|
|
|
CallArgs.push_back(std::make_pair(RValue::get(Src),
|
|
|
|
MD->getParamDecl(0)->getType()));
|
2009-09-05 02:27:16 +08:00
|
|
|
QualType ResultType = MD->getType()->getAsFunctionType()->getResultType();
|
2009-08-22 06:34:55 +08:00
|
|
|
EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
|
|
|
|
Callee, CallArgs, MD);
|
|
|
|
}
|
|
|
|
EmitBlock(ContinueBlock);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 06:34:55 +08:00
|
|
|
// Emit the increment of the loop counter.
|
|
|
|
llvm::Value *NextVal = llvm::ConstantInt::get(Counter->getType(), 1);
|
|
|
|
Counter = Builder.CreateLoad(IndexPtr);
|
|
|
|
NextVal = Builder.CreateAdd(Counter, NextVal, "inc");
|
|
|
|
Builder.CreateStore(NextVal, IndexPtr, false);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 06:34:55 +08:00
|
|
|
// Finally, branch back up to the condition for the next iteration.
|
|
|
|
EmitBranch(CondBlock);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 06:34:55 +08:00
|
|
|
// Emit the fall-through block.
|
|
|
|
EmitBlock(AfterFor, true);
|
|
|
|
}
|
|
|
|
|
2009-08-08 07:51:33 +08:00
|
|
|
/// EmitClassMemberwiseCopy - This routine generates code to copy a class
|
|
|
|
/// object from SrcValue to DestValue. Copying can be either a bitwise copy
|
2009-08-22 02:30:26 +08:00
|
|
|
/// or via a copy constructor call.
|
2009-08-08 07:51:33 +08:00
|
|
|
void CodeGenFunction::EmitClassMemberwiseCopy(
|
2009-08-09 07:32:22 +08:00
|
|
|
llvm::Value *Dest, llvm::Value *Src,
|
2009-09-09 23:08:12 +08:00
|
|
|
const CXXRecordDecl *ClassDecl,
|
2009-08-09 07:32:22 +08:00
|
|
|
const CXXRecordDecl *BaseClassDecl, QualType Ty) {
|
|
|
|
if (ClassDecl) {
|
2009-09-12 12:26:35 +08:00
|
|
|
Dest = GetAddressCXXOfBaseClass(Dest, ClassDecl, BaseClassDecl,
|
|
|
|
/*NullCheckValue=*/false);
|
|
|
|
Src = GetAddressCXXOfBaseClass(Src, ClassDecl, BaseClassDecl,
|
|
|
|
/*NullCheckValue=*/false);
|
2009-08-09 07:32:22 +08:00
|
|
|
}
|
|
|
|
if (BaseClassDecl->hasTrivialCopyConstructor()) {
|
|
|
|
EmitAggregateCopy(Dest, Src, Ty);
|
2009-08-08 07:51:33 +08:00
|
|
|
return;
|
2009-08-09 07:32:22 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
if (CXXConstructorDecl *BaseCopyCtor =
|
2009-08-08 08:59:58 +08:00
|
|
|
BaseClassDecl->getCopyConstructor(getContext(), 0)) {
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(BaseCopyCtor,
|
2009-08-08 07:51:33 +08:00
|
|
|
Ctor_Complete);
|
|
|
|
CallArgList CallArgs;
|
|
|
|
// Push the this (Dest) ptr.
|
|
|
|
CallArgs.push_back(std::make_pair(RValue::get(Dest),
|
|
|
|
BaseCopyCtor->getThisType(getContext())));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-08 07:51:33 +08:00
|
|
|
// Push the Src ptr.
|
|
|
|
CallArgs.push_back(std::make_pair(RValue::get(Src),
|
2009-08-11 01:20:45 +08:00
|
|
|
BaseCopyCtor->getParamDecl(0)->getType()));
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType ResultType =
|
2009-08-08 07:51:33 +08:00
|
|
|
BaseCopyCtor->getType()->getAsFunctionType()->getResultType();
|
|
|
|
EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
|
|
|
|
Callee, CallArgs, BaseCopyCtor);
|
|
|
|
}
|
|
|
|
}
|
2009-08-11 02:46:38 +08:00
|
|
|
|
2009-08-13 07:34:46 +08:00
|
|
|
/// EmitClassCopyAssignment - This routine generates code to copy assign a class
|
2009-09-09 23:08:12 +08:00
|
|
|
/// object from SrcValue to DestValue. Assignment can be either a bitwise
|
2009-08-13 07:34:46 +08:00
|
|
|
/// assignment of via an assignment operator call.
|
2009-08-22 06:34:55 +08:00
|
|
|
// FIXME. Consolidate this with EmitClassMemberwiseCopy as they share a lot.
|
2009-08-13 07:34:46 +08:00
|
|
|
void CodeGenFunction::EmitClassCopyAssignment(
|
|
|
|
llvm::Value *Dest, llvm::Value *Src,
|
2009-09-09 23:08:12 +08:00
|
|
|
const CXXRecordDecl *ClassDecl,
|
|
|
|
const CXXRecordDecl *BaseClassDecl,
|
2009-08-13 07:34:46 +08:00
|
|
|
QualType Ty) {
|
|
|
|
if (ClassDecl) {
|
2009-09-12 12:26:35 +08:00
|
|
|
Dest = GetAddressCXXOfBaseClass(Dest, ClassDecl, BaseClassDecl,
|
|
|
|
/*NullCheckValue=*/false);
|
|
|
|
Src = GetAddressCXXOfBaseClass(Src, ClassDecl, BaseClassDecl,
|
|
|
|
/*NullCheckValue=*/false);
|
2009-08-13 07:34:46 +08:00
|
|
|
}
|
|
|
|
if (BaseClassDecl->hasTrivialCopyAssignment()) {
|
|
|
|
EmitAggregateCopy(Dest, Src, Ty);
|
|
|
|
return;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-13 07:34:46 +08:00
|
|
|
const CXXMethodDecl *MD = 0;
|
2009-09-09 23:08:12 +08:00
|
|
|
bool ConstCopyAssignOp = BaseClassDecl->hasConstCopyAssignment(getContext(),
|
2009-08-13 08:53:36 +08:00
|
|
|
MD);
|
|
|
|
assert(ConstCopyAssignOp && "EmitClassCopyAssignment - missing copy assign");
|
|
|
|
(void)ConstCopyAssignOp;
|
|
|
|
|
|
|
|
const FunctionProtoType *FPT = MD->getType()->getAsFunctionProtoType();
|
2009-09-09 23:08:12 +08:00
|
|
|
const llvm::Type *LTy =
|
|
|
|
CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
|
2009-08-13 08:53:36 +08:00
|
|
|
FPT->isVariadic());
|
2009-09-11 07:43:36 +08:00
|
|
|
llvm::Constant *Callee = CGM.GetAddrOfFunction(MD, LTy);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-13 08:53:36 +08:00
|
|
|
CallArgList CallArgs;
|
|
|
|
// Push the this (Dest) ptr.
|
|
|
|
CallArgs.push_back(std::make_pair(RValue::get(Dest),
|
|
|
|
MD->getThisType(getContext())));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-13 08:53:36 +08:00
|
|
|
// Push the Src ptr.
|
|
|
|
CallArgs.push_back(std::make_pair(RValue::get(Src),
|
|
|
|
MD->getParamDecl(0)->getType()));
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType ResultType =
|
2009-08-13 08:53:36 +08:00
|
|
|
MD->getType()->getAsFunctionType()->getResultType();
|
|
|
|
EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
|
|
|
|
Callee, CallArgs, MD);
|
2009-08-13 07:34:46 +08:00
|
|
|
}
|
|
|
|
|
2009-08-11 02:46:38 +08:00
|
|
|
/// SynthesizeDefaultConstructor - synthesize a default constructor
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
2009-09-11 08:07:24 +08:00
|
|
|
CodeGenFunction::SynthesizeDefaultConstructor(GlobalDecl GD,
|
2009-08-11 02:46:38 +08:00
|
|
|
const FunctionDecl *FD,
|
|
|
|
llvm::Function *Fn,
|
|
|
|
const FunctionArgList &Args) {
|
2009-09-11 08:07:24 +08:00
|
|
|
const CXXConstructorDecl *Ctor = cast<CXXConstructorDecl>(GD.getDecl());
|
|
|
|
|
|
|
|
StartFunction(GD, FD->getResultType(), Fn, Args, SourceLocation());
|
|
|
|
EmitCtorPrologue(Ctor);
|
2009-08-11 02:46:38 +08:00
|
|
|
FinishFunction();
|
|
|
|
}
|
|
|
|
|
2009-08-09 03:31:03 +08:00
|
|
|
/// SynthesizeCXXCopyConstructor - This routine implicitly defines body of a copy
|
2009-08-08 04:22:40 +08:00
|
|
|
/// constructor, in accordance with section 12.8 (p7 and p8) of C++03
|
2009-09-09 23:08:12 +08:00
|
|
|
/// The implicitly-defined copy constructor for class X performs a memberwise
|
|
|
|
/// copy of its subobjects. The order of copying is the same as the order
|
2009-08-08 04:22:40 +08:00
|
|
|
/// of initialization of bases and members in a user-defined constructor
|
|
|
|
/// Each subobject is copied in the manner appropriate to its type:
|
2009-09-09 23:08:12 +08:00
|
|
|
/// if the subobject is of class type, the copy constructor for the class is
|
2009-08-08 04:22:40 +08:00
|
|
|
/// used;
|
2009-09-09 23:08:12 +08:00
|
|
|
/// if the subobject is an array, each element is copied, in the manner
|
2009-08-08 04:22:40 +08:00
|
|
|
/// appropriate to the element type;
|
2009-09-09 23:08:12 +08:00
|
|
|
/// if the subobject is of scalar type, the built-in assignment operator is
|
2009-08-08 04:22:40 +08:00
|
|
|
/// used.
|
2009-09-09 23:08:12 +08:00
|
|
|
/// Virtual base class subobjects shall be copied only once by the
|
|
|
|
/// implicitly-defined copy constructor
|
2009-08-08 04:22:40 +08:00
|
|
|
|
2009-09-11 08:07:24 +08:00
|
|
|
void CodeGenFunction::SynthesizeCXXCopyConstructor(GlobalDecl GD,
|
2009-08-09 03:31:03 +08:00
|
|
|
const FunctionDecl *FD,
|
|
|
|
llvm::Function *Fn,
|
2009-08-08 07:51:33 +08:00
|
|
|
const FunctionArgList &Args) {
|
2009-09-11 08:07:24 +08:00
|
|
|
const CXXConstructorDecl *Ctor = cast<CXXConstructorDecl>(GD.getDecl());
|
|
|
|
const CXXRecordDecl *ClassDecl = Ctor->getParent();
|
2009-08-08 04:22:40 +08:00
|
|
|
assert(!ClassDecl->hasUserDeclaredCopyConstructor() &&
|
2009-08-09 03:31:03 +08:00
|
|
|
"SynthesizeCXXCopyConstructor - copy constructor has definition already");
|
2009-09-11 08:07:24 +08:00
|
|
|
StartFunction(GD, Ctor->getResultType(), Fn, Args, SourceLocation());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-08 08:15:41 +08:00
|
|
|
FunctionArgList::const_iterator i = Args.begin();
|
|
|
|
const VarDecl *ThisArg = i->first;
|
|
|
|
llvm::Value *ThisObj = GetAddrOfLocalVar(ThisArg);
|
|
|
|
llvm::Value *LoadOfThis = Builder.CreateLoad(ThisObj, "this");
|
|
|
|
const VarDecl *SrcArg = (i+1)->first;
|
|
|
|
llvm::Value *SrcObj = GetAddrOfLocalVar(SrcArg);
|
|
|
|
llvm::Value *LoadOfSrc = Builder.CreateLoad(SrcObj);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-08 04:22:40 +08:00
|
|
|
for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
|
|
|
|
Base != ClassDecl->bases_end(); ++Base) {
|
|
|
|
// FIXME. copy constrution of virtual base NYI
|
|
|
|
if (Base->isVirtual())
|
|
|
|
continue;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-08 04:22:40 +08:00
|
|
|
CXXRecordDecl *BaseClassDecl
|
|
|
|
= cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
|
2009-08-09 07:32:22 +08:00
|
|
|
EmitClassMemberwiseCopy(LoadOfThis, LoadOfSrc, ClassDecl, BaseClassDecl,
|
|
|
|
Base->getType());
|
2009-08-08 04:22:40 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-08 08:15:41 +08:00
|
|
|
for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
|
|
|
|
FieldEnd = ClassDecl->field_end();
|
|
|
|
Field != FieldEnd; ++Field) {
|
|
|
|
QualType FieldType = getContext().getCanonicalType((*Field)->getType());
|
2009-09-09 23:08:12 +08:00
|
|
|
const ConstantArrayType *Array =
|
2009-08-22 02:30:26 +08:00
|
|
|
getContext().getAsConstantArrayType(FieldType);
|
|
|
|
if (Array)
|
|
|
|
FieldType = getContext().getBaseElementType(FieldType);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-08 08:15:41 +08:00
|
|
|
if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
|
|
|
|
CXXRecordDecl *FieldClassDecl
|
|
|
|
= cast<CXXRecordDecl>(FieldClassType->getDecl());
|
|
|
|
LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
|
|
|
|
LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
|
2009-08-22 02:30:26 +08:00
|
|
|
if (Array) {
|
|
|
|
const llvm::Type *BasePtr = ConvertType(FieldType);
|
|
|
|
BasePtr = llvm::PointerType::getUnqual(BasePtr);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *DestBaseAddrPtr =
|
2009-08-22 02:30:26 +08:00
|
|
|
Builder.CreateBitCast(LHS.getAddress(), BasePtr);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *SrcBaseAddrPtr =
|
2009-08-22 02:30:26 +08:00
|
|
|
Builder.CreateBitCast(RHS.getAddress(), BasePtr);
|
|
|
|
EmitClassAggrMemberwiseCopy(DestBaseAddrPtr, SrcBaseAddrPtr, Array,
|
|
|
|
FieldClassDecl, FieldType);
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
else
|
|
|
|
EmitClassMemberwiseCopy(LHS.getAddress(), RHS.getAddress(),
|
2009-08-22 02:30:26 +08:00
|
|
|
0 /*ClassDecl*/, FieldClassDecl, FieldType);
|
2009-08-08 08:15:41 +08:00
|
|
|
continue;
|
|
|
|
}
|
2009-08-11 02:34:26 +08:00
|
|
|
// Do a built-in assignment of scalar data members.
|
|
|
|
LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
|
|
|
|
LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
|
|
|
|
RValue RVRHS = EmitLoadOfLValue(RHS, FieldType);
|
|
|
|
EmitStoreThroughLValue(RVRHS, LHS, FieldType);
|
2009-08-08 08:15:41 +08:00
|
|
|
}
|
2009-08-09 03:31:03 +08:00
|
|
|
FinishFunction();
|
2009-09-09 23:08:12 +08:00
|
|
|
}
|
2009-08-08 04:22:40 +08:00
|
|
|
|
2009-08-13 05:14:35 +08:00
|
|
|
/// SynthesizeCXXCopyAssignment - Implicitly define copy assignment operator.
|
2009-09-09 23:08:12 +08:00
|
|
|
/// Before the implicitly-declared copy assignment operator for a class is
|
|
|
|
/// implicitly defined, all implicitly- declared copy assignment operators for
|
|
|
|
/// its direct base classes and its nonstatic data members shall have been
|
2009-08-13 05:14:35 +08:00
|
|
|
/// implicitly defined. [12.8-p12]
|
2009-09-09 23:08:12 +08:00
|
|
|
/// The implicitly-defined copy assignment operator for class X performs
|
|
|
|
/// memberwise assignment of its subob- jects. The direct base classes of X are
|
|
|
|
/// assigned first, in the order of their declaration in
|
|
|
|
/// the base-specifier-list, and then the immediate nonstatic data members of X
|
|
|
|
/// are assigned, in the order in which they were declared in the class
|
2009-08-13 05:14:35 +08:00
|
|
|
/// definition.Each subobject is assigned in the manner appropriate to its type:
|
2009-09-09 23:08:12 +08:00
|
|
|
/// if the subobject is of class type, the copy assignment operator for the
|
|
|
|
/// class is used (as if by explicit qualification; that is, ignoring any
|
2009-08-13 05:14:35 +08:00
|
|
|
/// possible virtual overriding functions in more derived classes);
|
2009-08-13 07:34:46 +08:00
|
|
|
///
|
2009-09-09 23:08:12 +08:00
|
|
|
/// if the subobject is an array, each element is assigned, in the manner
|
2009-08-13 05:14:35 +08:00
|
|
|
/// appropriate to the element type;
|
2009-08-13 07:34:46 +08:00
|
|
|
///
|
2009-09-09 23:08:12 +08:00
|
|
|
/// if the subobject is of scalar type, the built-in assignment operator is
|
2009-08-13 05:14:35 +08:00
|
|
|
/// used.
|
|
|
|
void CodeGenFunction::SynthesizeCXXCopyAssignment(const CXXMethodDecl *CD,
|
|
|
|
const FunctionDecl *FD,
|
|
|
|
llvm::Function *Fn,
|
|
|
|
const FunctionArgList &Args) {
|
2009-08-13 07:34:46 +08:00
|
|
|
|
|
|
|
const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(CD->getDeclContext());
|
|
|
|
assert(!ClassDecl->hasUserDeclaredCopyAssignment() &&
|
|
|
|
"SynthesizeCXXCopyAssignment - copy assignment has user declaration");
|
2009-08-13 05:14:35 +08:00
|
|
|
StartFunction(FD, FD->getResultType(), Fn, Args, SourceLocation());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-13 07:34:46 +08:00
|
|
|
FunctionArgList::const_iterator i = Args.begin();
|
|
|
|
const VarDecl *ThisArg = i->first;
|
|
|
|
llvm::Value *ThisObj = GetAddrOfLocalVar(ThisArg);
|
|
|
|
llvm::Value *LoadOfThis = Builder.CreateLoad(ThisObj, "this");
|
|
|
|
const VarDecl *SrcArg = (i+1)->first;
|
|
|
|
llvm::Value *SrcObj = GetAddrOfLocalVar(SrcArg);
|
|
|
|
llvm::Value *LoadOfSrc = Builder.CreateLoad(SrcObj);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-13 07:34:46 +08:00
|
|
|
for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
|
|
|
|
Base != ClassDecl->bases_end(); ++Base) {
|
|
|
|
// FIXME. copy assignment of virtual base NYI
|
|
|
|
if (Base->isVirtual())
|
|
|
|
continue;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-13 07:34:46 +08:00
|
|
|
CXXRecordDecl *BaseClassDecl
|
|
|
|
= cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
|
|
|
|
EmitClassCopyAssignment(LoadOfThis, LoadOfSrc, ClassDecl, BaseClassDecl,
|
|
|
|
Base->getType());
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-13 07:34:46 +08:00
|
|
|
for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
|
|
|
|
FieldEnd = ClassDecl->field_end();
|
|
|
|
Field != FieldEnd; ++Field) {
|
|
|
|
QualType FieldType = getContext().getCanonicalType((*Field)->getType());
|
2009-09-09 23:08:12 +08:00
|
|
|
const ConstantArrayType *Array =
|
2009-08-22 06:34:55 +08:00
|
|
|
getContext().getAsConstantArrayType(FieldType);
|
|
|
|
if (Array)
|
|
|
|
FieldType = getContext().getBaseElementType(FieldType);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-13 07:34:46 +08:00
|
|
|
if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
|
|
|
|
CXXRecordDecl *FieldClassDecl
|
|
|
|
= cast<CXXRecordDecl>(FieldClassType->getDecl());
|
|
|
|
LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
|
|
|
|
LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
|
2009-08-22 06:34:55 +08:00
|
|
|
if (Array) {
|
|
|
|
const llvm::Type *BasePtr = ConvertType(FieldType);
|
|
|
|
BasePtr = llvm::PointerType::getUnqual(BasePtr);
|
|
|
|
llvm::Value *DestBaseAddrPtr =
|
|
|
|
Builder.CreateBitCast(LHS.getAddress(), BasePtr);
|
|
|
|
llvm::Value *SrcBaseAddrPtr =
|
|
|
|
Builder.CreateBitCast(RHS.getAddress(), BasePtr);
|
|
|
|
EmitClassAggrCopyAssignment(DestBaseAddrPtr, SrcBaseAddrPtr, Array,
|
|
|
|
FieldClassDecl, FieldType);
|
|
|
|
}
|
|
|
|
else
|
2009-09-09 23:08:12 +08:00
|
|
|
EmitClassCopyAssignment(LHS.getAddress(), RHS.getAddress(),
|
2009-08-22 06:34:55 +08:00
|
|
|
0 /*ClassDecl*/, FieldClassDecl, FieldType);
|
2009-08-13 07:34:46 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Do a built-in assignment of scalar data members.
|
|
|
|
LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
|
|
|
|
LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
|
|
|
|
RValue RVRHS = EmitLoadOfLValue(RHS, FieldType);
|
|
|
|
EmitStoreThroughLValue(RVRHS, LHS, FieldType);
|
2009-08-14 08:01:54 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-14 08:01:54 +08:00
|
|
|
// return *this;
|
|
|
|
Builder.CreateStore(LoadOfThis, ReturnValue);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-13 05:14:35 +08:00
|
|
|
FinishFunction();
|
2009-09-09 23:08:12 +08:00
|
|
|
}
|
2009-08-08 04:22:40 +08:00
|
|
|
|
2009-07-21 07:18:55 +08:00
|
|
|
/// EmitCtorPrologue - This routine generates necessary code to initialize
|
|
|
|
/// base classes and non-static data members belonging to this constructor.
|
2009-09-02 02:33:46 +08:00
|
|
|
/// FIXME: This needs to take a CXXCtorType.
|
2009-07-21 07:18:55 +08:00
|
|
|
void CodeGenFunction::EmitCtorPrologue(const CXXConstructorDecl *CD) {
|
2009-07-26 05:12:28 +08:00
|
|
|
const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(CD->getDeclContext());
|
2009-08-06 21:41:24 +08:00
|
|
|
// FIXME: Add vbase initialization
|
2009-08-01 02:25:34 +08:00
|
|
|
llvm::Value *LoadOfThis = 0;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-26 05:12:28 +08:00
|
|
|
for (CXXConstructorDecl::init_const_iterator B = CD->init_begin(),
|
2009-07-21 07:18:55 +08:00
|
|
|
E = CD->init_end();
|
|
|
|
B != E; ++B) {
|
|
|
|
CXXBaseOrMemberInitializer *Member = (*B);
|
|
|
|
if (Member->isBaseInitializer()) {
|
2009-08-01 02:25:34 +08:00
|
|
|
LoadOfThis = LoadCXXThis();
|
2009-07-29 02:09:28 +08:00
|
|
|
Type *BaseType = Member->getBaseClass();
|
2009-09-09 23:08:12 +08:00
|
|
|
CXXRecordDecl *BaseClassDecl =
|
2009-07-30 05:53:49 +08:00
|
|
|
cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
|
2009-09-12 12:26:35 +08:00
|
|
|
llvm::Value *V = GetAddressCXXOfBaseClass(LoadOfThis, ClassDecl,
|
|
|
|
BaseClassDecl,
|
|
|
|
/*NullCheckValue=*/false);
|
2009-07-26 05:12:28 +08:00
|
|
|
EmitCXXConstructorCall(Member->getConstructor(),
|
|
|
|
Ctor_Complete, V,
|
2009-09-09 23:08:12 +08:00
|
|
|
Member->const_arg_begin(),
|
2009-07-26 05:12:28 +08:00
|
|
|
Member->const_arg_end());
|
2009-07-31 06:28:39 +08:00
|
|
|
} else {
|
2009-07-21 07:18:55 +08:00
|
|
|
// non-static data member initilaizers.
|
|
|
|
FieldDecl *Field = Member->getMember();
|
|
|
|
QualType FieldType = getContext().getCanonicalType((Field)->getType());
|
2009-09-09 23:08:12 +08:00
|
|
|
const ConstantArrayType *Array =
|
2009-08-22 02:30:26 +08:00
|
|
|
getContext().getAsConstantArrayType(FieldType);
|
2009-08-22 01:09:38 +08:00
|
|
|
if (Array)
|
|
|
|
FieldType = getContext().getBaseElementType(FieldType);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-01 02:25:34 +08:00
|
|
|
LoadOfThis = LoadCXXThis();
|
2009-08-30 04:58:20 +08:00
|
|
|
LValue LHS;
|
|
|
|
if (FieldType->isReferenceType()) {
|
|
|
|
// FIXME: This is really ugly; should be refactored somehow
|
|
|
|
unsigned idx = CGM.getTypes().getLLVMFieldNo(Field);
|
|
|
|
llvm::Value *V = Builder.CreateStructGEP(LoadOfThis, idx, "tmp");
|
|
|
|
LHS = LValue::MakeAddr(V, FieldType.getCVRQualifiers(),
|
|
|
|
QualType::GCNone, FieldType.getAddressSpace());
|
|
|
|
} else {
|
|
|
|
LHS = EmitLValueForField(LoadOfThis, Field, false, 0);
|
|
|
|
}
|
2009-07-30 05:53:49 +08:00
|
|
|
if (FieldType->getAs<RecordType>()) {
|
2009-08-12 02:49:54 +08:00
|
|
|
if (!Field->isAnonymousStructOrUnion()) {
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(Member->getConstructor() &&
|
2009-07-25 01:57:02 +08:00
|
|
|
"EmitCtorPrologue - no constructor to initialize member");
|
2009-08-22 01:09:38 +08:00
|
|
|
if (Array) {
|
|
|
|
const llvm::Type *BasePtr = ConvertType(FieldType);
|
|
|
|
BasePtr = llvm::PointerType::getUnqual(BasePtr);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *BaseAddrPtr =
|
2009-08-22 01:09:38 +08:00
|
|
|
Builder.CreateBitCast(LHS.getAddress(), BasePtr);
|
2009-09-09 23:08:12 +08:00
|
|
|
EmitCXXAggrConstructorCall(Member->getConstructor(),
|
2009-08-22 01:09:38 +08:00
|
|
|
Array, BaseAddrPtr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
EmitCXXConstructorCall(Member->getConstructor(),
|
|
|
|
Ctor_Complete, LHS.getAddress(),
|
2009-09-09 23:08:12 +08:00
|
|
|
Member->const_arg_begin(),
|
2009-08-22 01:09:38 +08:00
|
|
|
Member->const_arg_end());
|
2009-08-12 02:49:54 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Initializing an anonymous union data member.
|
|
|
|
FieldDecl *anonMember = Member->getAnonUnionMember();
|
2009-09-09 23:08:12 +08:00
|
|
|
LHS = EmitLValueForField(LHS.getAddress(), anonMember,
|
2009-09-03 05:14:47 +08:00
|
|
|
/*IsUnion=*/true, 0);
|
2009-08-12 02:49:54 +08:00
|
|
|
FieldType = anonMember->getType();
|
|
|
|
}
|
2009-07-25 01:57:02 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-21 07:18:55 +08:00
|
|
|
assert(Member->getNumArgs() == 1 && "Initializer count must be 1 only");
|
2009-07-25 01:57:02 +08:00
|
|
|
Expr *RhsExpr = *Member->arg_begin();
|
2009-08-30 04:58:20 +08:00
|
|
|
RValue RHS;
|
|
|
|
if (FieldType->isReferenceType())
|
|
|
|
RHS = EmitReferenceBindingToExpr(RhsExpr, FieldType,
|
|
|
|
/*IsInitializer=*/true);
|
|
|
|
else
|
|
|
|
RHS = RValue::get(EmitScalarExpr(RhsExpr, true));
|
|
|
|
EmitStoreThroughLValue(RHS, LHS, FieldType);
|
2009-07-21 07:18:55 +08:00
|
|
|
}
|
|
|
|
}
|
2009-08-01 02:25:34 +08:00
|
|
|
|
2009-08-18 03:04:50 +08:00
|
|
|
if (!CD->getNumBaseOrMemberInitializers() && !CD->isTrivial()) {
|
2009-08-16 02:55:17 +08:00
|
|
|
// Nontrivial default constructor with no initializer list. It may still
|
2009-09-09 23:08:12 +08:00
|
|
|
// have bases classes and/or contain non-static data members which require
|
2009-08-18 03:04:50 +08:00
|
|
|
// construction.
|
2009-09-09 23:08:12 +08:00
|
|
|
for (CXXRecordDecl::base_class_const_iterator Base =
|
2009-08-18 03:04:50 +08:00
|
|
|
ClassDecl->bases_begin();
|
|
|
|
Base != ClassDecl->bases_end(); ++Base) {
|
|
|
|
// FIXME. copy assignment of virtual base NYI
|
|
|
|
if (Base->isVirtual())
|
|
|
|
continue;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-18 03:04:50 +08:00
|
|
|
CXXRecordDecl *BaseClassDecl
|
|
|
|
= cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
|
|
|
|
if (BaseClassDecl->hasTrivialConstructor())
|
|
|
|
continue;
|
2009-09-09 23:08:12 +08:00
|
|
|
if (CXXConstructorDecl *BaseCX =
|
2009-08-18 03:04:50 +08:00
|
|
|
BaseClassDecl->getDefaultConstructor(getContext())) {
|
|
|
|
LoadOfThis = LoadCXXThis();
|
2009-09-12 12:26:35 +08:00
|
|
|
llvm::Value *V = GetAddressCXXOfBaseClass(LoadOfThis, ClassDecl,
|
|
|
|
BaseClassDecl,
|
|
|
|
/*NullCheckValue=*/false);
|
2009-08-18 03:04:50 +08:00
|
|
|
EmitCXXConstructorCall(BaseCX, Ctor_Complete, V, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-16 02:55:17 +08:00
|
|
|
for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
|
|
|
|
FieldEnd = ClassDecl->field_end();
|
|
|
|
Field != FieldEnd; ++Field) {
|
|
|
|
QualType FieldType = getContext().getCanonicalType((*Field)->getType());
|
2009-09-09 23:08:12 +08:00
|
|
|
const ConstantArrayType *Array =
|
2009-08-20 04:55:16 +08:00
|
|
|
getContext().getAsConstantArrayType(FieldType);
|
2009-08-21 04:54:15 +08:00
|
|
|
if (Array)
|
|
|
|
FieldType = getContext().getBaseElementType(FieldType);
|
2009-08-16 02:55:17 +08:00
|
|
|
if (!FieldType->getAs<RecordType>() || Field->isAnonymousStructOrUnion())
|
|
|
|
continue;
|
|
|
|
const RecordType *ClassRec = FieldType->getAs<RecordType>();
|
2009-09-09 23:08:12 +08:00
|
|
|
CXXRecordDecl *MemberClassDecl =
|
2009-08-18 03:04:50 +08:00
|
|
|
dyn_cast<CXXRecordDecl>(ClassRec->getDecl());
|
|
|
|
if (!MemberClassDecl || MemberClassDecl->hasTrivialConstructor())
|
|
|
|
continue;
|
2009-09-09 23:08:12 +08:00
|
|
|
if (CXXConstructorDecl *MamberCX =
|
2009-08-18 03:04:50 +08:00
|
|
|
MemberClassDecl->getDefaultConstructor(getContext())) {
|
|
|
|
LoadOfThis = LoadCXXThis();
|
|
|
|
LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
|
2009-08-20 04:55:16 +08:00
|
|
|
if (Array) {
|
|
|
|
const llvm::Type *BasePtr = ConvertType(FieldType);
|
|
|
|
BasePtr = llvm::PointerType::getUnqual(BasePtr);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *BaseAddrPtr =
|
2009-08-20 04:55:16 +08:00
|
|
|
Builder.CreateBitCast(LHS.getAddress(), BasePtr);
|
|
|
|
EmitCXXAggrConstructorCall(MamberCX, Array, BaseAddrPtr);
|
|
|
|
}
|
|
|
|
else
|
2009-09-09 23:08:12 +08:00
|
|
|
EmitCXXConstructorCall(MamberCX, Ctor_Complete, LHS.getAddress(),
|
2009-08-20 04:55:16 +08:00
|
|
|
0, 0);
|
2009-08-16 02:55:17 +08:00
|
|
|
}
|
|
|
|
}
|
2009-08-18 03:04:50 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-01 02:25:34 +08:00
|
|
|
// Initialize the vtable pointer
|
2009-08-06 06:59:44 +08:00
|
|
|
if (ClassDecl->isDynamicClass()) {
|
2009-08-01 02:25:34 +08:00
|
|
|
if (!LoadOfThis)
|
|
|
|
LoadOfThis = LoadCXXThis();
|
|
|
|
llvm::Value *VtableField;
|
|
|
|
llvm::Type *Ptr8Ty, *PtrPtr8Ty;
|
2009-08-14 05:57:51 +08:00
|
|
|
Ptr8Ty = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
|
2009-08-01 02:25:34 +08:00
|
|
|
PtrPtr8Ty = llvm::PointerType::get(Ptr8Ty, 0);
|
|
|
|
VtableField = Builder.CreateBitCast(LoadOfThis, PtrPtr8Ty);
|
|
|
|
llvm::Value *vtable = GenerateVtable(ClassDecl);
|
|
|
|
Builder.CreateStore(vtable, VtableField);
|
|
|
|
}
|
2009-07-21 07:18:55 +08:00
|
|
|
}
|
2009-07-31 01:49:11 +08:00
|
|
|
|
|
|
|
/// EmitDtorEpilogue - Emit all code that comes at the end of class's
|
2009-09-09 23:08:12 +08:00
|
|
|
/// destructor. This is to call destructors on members and base classes
|
2009-07-31 01:49:11 +08:00
|
|
|
/// in reverse order of their construction.
|
2009-09-02 02:33:46 +08:00
|
|
|
/// FIXME: This needs to take a CXXDtorType.
|
2009-07-31 01:49:11 +08:00
|
|
|
void CodeGenFunction::EmitDtorEpilogue(const CXXDestructorDecl *DD) {
|
|
|
|
const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(DD->getDeclContext());
|
2009-09-02 05:12:16 +08:00
|
|
|
assert(!ClassDecl->getNumVBases() &&
|
|
|
|
"FIXME: Destruction of virtual bases not supported");
|
2009-07-31 01:49:11 +08:00
|
|
|
(void)ClassDecl; // prevent warning.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-31 01:49:11 +08:00
|
|
|
for (CXXDestructorDecl::destr_const_iterator *B = DD->destr_begin(),
|
|
|
|
*E = DD->destr_end(); B != E; ++B) {
|
|
|
|
uintptr_t BaseOrMember = (*B);
|
|
|
|
if (DD->isMemberToDestroy(BaseOrMember)) {
|
|
|
|
FieldDecl *FD = DD->getMemberToDestroy(BaseOrMember);
|
|
|
|
QualType FieldType = getContext().getCanonicalType((FD)->getType());
|
2009-09-09 23:08:12 +08:00
|
|
|
const ConstantArrayType *Array =
|
2009-08-21 04:54:15 +08:00
|
|
|
getContext().getAsConstantArrayType(FieldType);
|
|
|
|
if (Array)
|
|
|
|
FieldType = getContext().getBaseElementType(FieldType);
|
2009-07-31 01:49:11 +08:00
|
|
|
const RecordType *RT = FieldType->getAs<RecordType>();
|
|
|
|
CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
|
|
|
|
if (FieldClassDecl->hasTrivialDestructor())
|
|
|
|
continue;
|
|
|
|
llvm::Value *LoadOfThis = LoadCXXThis();
|
|
|
|
LValue LHS = EmitLValueForField(LoadOfThis, FD, false, 0);
|
2009-08-21 04:54:15 +08:00
|
|
|
if (Array) {
|
|
|
|
const llvm::Type *BasePtr = ConvertType(FieldType);
|
|
|
|
BasePtr = llvm::PointerType::getUnqual(BasePtr);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *BaseAddrPtr =
|
2009-08-21 04:54:15 +08:00
|
|
|
Builder.CreateBitCast(LHS.getAddress(), BasePtr);
|
2009-09-09 23:08:12 +08:00
|
|
|
EmitCXXAggrDestructorCall(FieldClassDecl->getDestructor(getContext()),
|
2009-08-21 04:54:15 +08:00
|
|
|
Array, BaseAddrPtr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
EmitCXXDestructorCall(FieldClassDecl->getDestructor(getContext()),
|
|
|
|
Dtor_Complete, LHS.getAddress());
|
2009-07-31 06:28:39 +08:00
|
|
|
} else {
|
2009-07-31 01:49:11 +08:00
|
|
|
const RecordType *RT =
|
|
|
|
DD->getAnyBaseClassToDestroy(BaseOrMember)->getAs<RecordType>();
|
|
|
|
CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
|
|
|
|
if (BaseClassDecl->hasTrivialDestructor())
|
|
|
|
continue;
|
2009-09-12 12:26:35 +08:00
|
|
|
llvm::Value *V = GetAddressCXXOfBaseClass(LoadCXXThis(),
|
|
|
|
ClassDecl, BaseClassDecl,
|
|
|
|
/*NullCheckValue=*/false);
|
2009-07-31 01:49:11 +08:00
|
|
|
EmitCXXDestructorCall(BaseClassDecl->getDestructor(getContext()),
|
|
|
|
Dtor_Complete, V);
|
|
|
|
}
|
|
|
|
}
|
2009-08-18 03:04:50 +08:00
|
|
|
if (DD->getNumBaseOrMemberDestructions() || DD->isTrivial())
|
|
|
|
return;
|
|
|
|
// Case of destructor synthesis with fields and base classes
|
2009-09-09 23:08:12 +08:00
|
|
|
// which have non-trivial destructors. They must be destructed in
|
2009-08-18 03:04:50 +08:00
|
|
|
// reverse order of their construction.
|
|
|
|
llvm::SmallVector<FieldDecl *, 16> DestructedFields;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-18 03:04:50 +08:00
|
|
|
for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
|
|
|
|
FieldEnd = ClassDecl->field_end();
|
|
|
|
Field != FieldEnd; ++Field) {
|
|
|
|
QualType FieldType = getContext().getCanonicalType((*Field)->getType());
|
2009-08-21 04:54:15 +08:00
|
|
|
if (getContext().getAsConstantArrayType(FieldType))
|
|
|
|
FieldType = getContext().getBaseElementType(FieldType);
|
2009-08-18 03:04:50 +08:00
|
|
|
if (const RecordType *RT = FieldType->getAs<RecordType>()) {
|
|
|
|
CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
|
|
|
|
if (FieldClassDecl->hasTrivialDestructor())
|
|
|
|
continue;
|
|
|
|
DestructedFields.push_back(*Field);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!DestructedFields.empty())
|
|
|
|
for (int i = DestructedFields.size() -1; i >= 0; --i) {
|
|
|
|
FieldDecl *Field = DestructedFields[i];
|
|
|
|
QualType FieldType = Field->getType();
|
2009-09-09 23:08:12 +08:00
|
|
|
const ConstantArrayType *Array =
|
2009-08-21 04:54:15 +08:00
|
|
|
getContext().getAsConstantArrayType(FieldType);
|
|
|
|
if (Array)
|
|
|
|
FieldType = getContext().getBaseElementType(FieldType);
|
2009-08-18 03:04:50 +08:00
|
|
|
const RecordType *RT = FieldType->getAs<RecordType>();
|
|
|
|
CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
|
|
|
|
llvm::Value *LoadOfThis = LoadCXXThis();
|
|
|
|
LValue LHS = EmitLValueForField(LoadOfThis, Field, false, 0);
|
2009-08-21 04:54:15 +08:00
|
|
|
if (Array) {
|
|
|
|
const llvm::Type *BasePtr = ConvertType(FieldType);
|
|
|
|
BasePtr = llvm::PointerType::getUnqual(BasePtr);
|
2009-09-09 23:08:12 +08:00
|
|
|
llvm::Value *BaseAddrPtr =
|
2009-08-21 04:54:15 +08:00
|
|
|
Builder.CreateBitCast(LHS.getAddress(), BasePtr);
|
2009-09-09 23:08:12 +08:00
|
|
|
EmitCXXAggrDestructorCall(FieldClassDecl->getDestructor(getContext()),
|
2009-08-21 04:54:15 +08:00
|
|
|
Array, BaseAddrPtr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
EmitCXXDestructorCall(FieldClassDecl->getDestructor(getContext()),
|
|
|
|
Dtor_Complete, LHS.getAddress());
|
2009-08-18 03:04:50 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-18 03:04:50 +08:00
|
|
|
llvm::SmallVector<CXXRecordDecl*, 4> DestructedBases;
|
|
|
|
for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
|
|
|
|
Base != ClassDecl->bases_end(); ++Base) {
|
|
|
|
// FIXME. copy assignment of virtual base NYI
|
|
|
|
if (Base->isVirtual())
|
|
|
|
continue;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-18 03:04:50 +08:00
|
|
|
CXXRecordDecl *BaseClassDecl
|
|
|
|
= cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
|
|
|
|
if (BaseClassDecl->hasTrivialDestructor())
|
|
|
|
continue;
|
|
|
|
DestructedBases.push_back(BaseClassDecl);
|
|
|
|
}
|
|
|
|
if (DestructedBases.empty())
|
|
|
|
return;
|
|
|
|
for (int i = DestructedBases.size() -1; i >= 0; --i) {
|
|
|
|
CXXRecordDecl *BaseClassDecl = DestructedBases[i];
|
2009-09-12 12:26:35 +08:00
|
|
|
llvm::Value *V = GetAddressCXXOfBaseClass(LoadCXXThis(),
|
|
|
|
ClassDecl,BaseClassDecl,
|
|
|
|
/*NullCheckValue=*/false);
|
2009-08-18 03:04:50 +08:00
|
|
|
EmitCXXDestructorCall(BaseClassDecl->getDestructor(getContext()),
|
|
|
|
Dtor_Complete, V);
|
|
|
|
}
|
2009-07-31 01:49:11 +08:00
|
|
|
}
|
2009-08-18 03:04:50 +08:00
|
|
|
|
2009-09-11 08:07:24 +08:00
|
|
|
void CodeGenFunction::SynthesizeDefaultDestructor(GlobalDecl GD,
|
2009-08-18 03:04:50 +08:00
|
|
|
const FunctionDecl *FD,
|
|
|
|
llvm::Function *Fn,
|
|
|
|
const FunctionArgList &Args) {
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-09-11 08:07:24 +08:00
|
|
|
const CXXDestructorDecl *Dtor = cast<CXXDestructorDecl>(GD.getDecl());
|
|
|
|
|
|
|
|
const CXXRecordDecl *ClassDecl = Dtor->getParent();
|
2009-08-18 03:04:50 +08:00
|
|
|
assert(!ClassDecl->hasUserDeclaredDestructor() &&
|
|
|
|
"SynthesizeDefaultDestructor - destructor has user declaration");
|
|
|
|
(void) ClassDecl;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-09-11 08:07:24 +08:00
|
|
|
StartFunction(GD, Dtor->getResultType(), Fn, Args, SourceLocation());
|
|
|
|
EmitDtorEpilogue(Dtor);
|
2009-08-18 03:04:50 +08:00
|
|
|
FinishFunction();
|
2009-09-09 23:08:12 +08:00
|
|
|
}
|