2009-11-24 13:51:11 +08:00
|
|
|
//===--- CGExprCXX.cpp - Emit LLVM Code for C++ expressions ---------------===//
|
2009-09-23 06:53:17 +08:00
|
|
|
//
|
|
|
|
// 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 code generation of C++ expressions
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "CodeGenFunction.h"
|
2010-05-21 05:38:57 +08:00
|
|
|
#include "CGObjCRuntime.h"
|
2010-07-21 04:19:24 +08:00
|
|
|
#include "llvm/Intrinsics.h"
|
2009-09-23 06:53:17 +08:00
|
|
|
using namespace clang;
|
|
|
|
using namespace CodeGen;
|
|
|
|
|
2010-01-02 04:29:01 +08:00
|
|
|
RValue CodeGenFunction::EmitCXXMemberCall(const CXXMethodDecl *MD,
|
|
|
|
llvm::Value *Callee,
|
|
|
|
ReturnValueSlot ReturnValue,
|
|
|
|
llvm::Value *This,
|
2010-01-02 09:01:18 +08:00
|
|
|
llvm::Value *VTT,
|
2010-01-02 04:29:01 +08:00
|
|
|
CallExpr::const_arg_iterator ArgBeg,
|
|
|
|
CallExpr::const_arg_iterator ArgEnd) {
|
|
|
|
assert(MD->isInstance() &&
|
|
|
|
"Trying to emit a member call expr on a static method!");
|
|
|
|
|
|
|
|
const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
|
|
|
|
|
|
|
|
CallArgList Args;
|
|
|
|
|
|
|
|
// Push the this ptr.
|
|
|
|
Args.push_back(std::make_pair(RValue::get(This),
|
|
|
|
MD->getThisType(getContext())));
|
|
|
|
|
2010-01-02 09:01:18 +08:00
|
|
|
// If there is a VTT parameter, emit it.
|
|
|
|
if (VTT) {
|
|
|
|
QualType T = getContext().getPointerType(getContext().VoidPtrTy);
|
|
|
|
Args.push_back(std::make_pair(RValue::get(VTT), T));
|
|
|
|
}
|
|
|
|
|
2010-01-02 04:29:01 +08:00
|
|
|
// And the rest of the call args
|
|
|
|
EmitCallArgs(Args, FPT, ArgBeg, ArgEnd);
|
|
|
|
|
2010-02-06 05:31:56 +08:00
|
|
|
QualType ResultType = FPT->getResultType();
|
|
|
|
return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args,
|
2010-03-31 04:24:48 +08:00
|
|
|
FPT->getExtInfo()),
|
|
|
|
Callee, ReturnValue, Args, MD);
|
2010-01-02 04:29:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// canDevirtualizeMemberFunctionCalls - Checks whether virtual calls on given
|
|
|
|
/// expr can be devirtualized.
|
|
|
|
static bool canDevirtualizeMemberFunctionCalls(const Expr *Base) {
|
|
|
|
if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) {
|
|
|
|
if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) {
|
|
|
|
// This is a record decl. We know the type and can devirtualize it.
|
|
|
|
return VD->getType()->isRecordType();
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We can always devirtualize calls on temporary object expressions.
|
2010-02-01 04:58:15 +08:00
|
|
|
if (isa<CXXConstructExpr>(Base))
|
2010-01-02 04:29:01 +08:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// And calls on bound temporaries.
|
|
|
|
if (isa<CXXBindTemporaryExpr>(Base))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Check if this is a call expr that returns a record type.
|
|
|
|
if (const CallExpr *CE = dyn_cast<CallExpr>(Base))
|
|
|
|
return CE->getCallReturnType()->isRecordType();
|
|
|
|
|
|
|
|
// We can't devirtualize the call.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE,
|
|
|
|
ReturnValueSlot ReturnValue) {
|
|
|
|
if (isa<BinaryOperator>(CE->getCallee()->IgnoreParens()))
|
|
|
|
return EmitCXXMemberPointerCallExpr(CE, ReturnValue);
|
|
|
|
|
|
|
|
const MemberExpr *ME = cast<MemberExpr>(CE->getCallee()->IgnoreParens());
|
|
|
|
const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl());
|
|
|
|
|
|
|
|
if (MD->isStatic()) {
|
|
|
|
// The method is static, emit it as we would a regular call.
|
|
|
|
llvm::Value *Callee = CGM.GetAddrOfFunction(MD);
|
|
|
|
return EmitCall(getContext().getPointerType(MD->getType()), Callee,
|
|
|
|
ReturnValue, CE->arg_begin(), CE->arg_end());
|
|
|
|
}
|
|
|
|
|
|
|
|
const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
|
|
|
|
|
|
|
|
const llvm::Type *Ty =
|
|
|
|
CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
|
|
|
|
FPT->isVariadic());
|
|
|
|
llvm::Value *This;
|
|
|
|
|
|
|
|
if (ME->isArrow())
|
|
|
|
This = EmitScalarExpr(ME->getBase());
|
|
|
|
else {
|
|
|
|
LValue BaseLV = EmitLValue(ME->getBase());
|
|
|
|
This = BaseLV.getAddress();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (MD->isCopyAssignment() && MD->isTrivial()) {
|
|
|
|
// We don't like to generate the trivial copy assignment operator when
|
|
|
|
// it isn't necessary; just produce the proper effect here.
|
|
|
|
llvm::Value *RHS = EmitLValue(*CE->arg_begin()).getAddress();
|
|
|
|
EmitAggregateCopy(This, RHS, CE->getType());
|
|
|
|
return RValue::get(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
// C++ [class.virtual]p12:
|
|
|
|
// Explicit qualification with the scope operator (5.1) suppresses the
|
|
|
|
// virtual call mechanism.
|
|
|
|
//
|
|
|
|
// We also don't emit a virtual call if the base expression has a record type
|
|
|
|
// because then we know what the type is.
|
|
|
|
llvm::Value *Callee;
|
|
|
|
if (const CXXDestructorDecl *Destructor
|
|
|
|
= dyn_cast<CXXDestructorDecl>(MD)) {
|
|
|
|
if (Destructor->isTrivial())
|
|
|
|
return RValue::get(0);
|
|
|
|
if (MD->isVirtual() && !ME->hasQualifier() &&
|
|
|
|
!canDevirtualizeMemberFunctionCalls(ME->getBase())) {
|
|
|
|
Callee = BuildVirtualCall(Destructor, Dtor_Complete, This, Ty);
|
|
|
|
} else {
|
|
|
|
Callee = CGM.GetAddrOfFunction(GlobalDecl(Destructor, Dtor_Complete), Ty);
|
|
|
|
}
|
|
|
|
} else if (MD->isVirtual() && !ME->hasQualifier() &&
|
|
|
|
!canDevirtualizeMemberFunctionCalls(ME->getBase())) {
|
|
|
|
Callee = BuildVirtualCall(MD, This, Ty);
|
|
|
|
} else {
|
|
|
|
Callee = CGM.GetAddrOfFunction(MD, Ty);
|
|
|
|
}
|
|
|
|
|
2010-01-02 09:01:18 +08:00
|
|
|
return EmitCXXMemberCall(MD, Callee, ReturnValue, This, /*VTT=*/0,
|
2010-01-02 04:29:01 +08:00
|
|
|
CE->arg_begin(), CE->arg_end());
|
|
|
|
}
|
|
|
|
|
|
|
|
RValue
|
|
|
|
CodeGenFunction::EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E,
|
|
|
|
ReturnValueSlot ReturnValue) {
|
|
|
|
const BinaryOperator *BO =
|
|
|
|
cast<BinaryOperator>(E->getCallee()->IgnoreParens());
|
|
|
|
const Expr *BaseExpr = BO->getLHS();
|
|
|
|
const Expr *MemFnExpr = BO->getRHS();
|
|
|
|
|
|
|
|
const MemberPointerType *MPT =
|
|
|
|
MemFnExpr->getType()->getAs<MemberPointerType>();
|
2010-08-22 08:05:51 +08:00
|
|
|
|
2010-01-02 04:29:01 +08:00
|
|
|
const FunctionProtoType *FPT =
|
|
|
|
MPT->getPointeeType()->getAs<FunctionProtoType>();
|
|
|
|
const CXXRecordDecl *RD =
|
|
|
|
cast<CXXRecordDecl>(MPT->getClass()->getAs<RecordType>()->getDecl());
|
|
|
|
|
|
|
|
// Get the member function pointer.
|
2010-08-22 18:59:02 +08:00
|
|
|
llvm::Value *MemFnPtr = EmitScalarExpr(MemFnExpr);
|
2010-01-02 04:29:01 +08:00
|
|
|
|
|
|
|
// Emit the 'this' pointer.
|
|
|
|
llvm::Value *This;
|
|
|
|
|
2010-08-25 19:45:40 +08:00
|
|
|
if (BO->getOpcode() == BO_PtrMemI)
|
2010-01-02 04:29:01 +08:00
|
|
|
This = EmitScalarExpr(BaseExpr);
|
|
|
|
else
|
|
|
|
This = EmitLValue(BaseExpr).getAddress();
|
|
|
|
|
2010-08-22 08:05:51 +08:00
|
|
|
// Ask the ABI to load the callee. Note that This is modified.
|
|
|
|
llvm::Value *Callee =
|
|
|
|
CGM.getCXXABI().EmitLoadOfMemberFunctionPointer(CGF, This, MemFnPtr, MPT);
|
2010-01-02 04:29:01 +08:00
|
|
|
|
|
|
|
CallArgList Args;
|
|
|
|
|
|
|
|
QualType ThisType =
|
|
|
|
getContext().getPointerType(getContext().getTagDeclType(RD));
|
|
|
|
|
|
|
|
// Push the this ptr.
|
|
|
|
Args.push_back(std::make_pair(RValue::get(This), ThisType));
|
|
|
|
|
|
|
|
// And the rest of the call args
|
|
|
|
EmitCallArgs(Args, FPT, E->arg_begin(), E->arg_end());
|
2010-02-06 05:31:56 +08:00
|
|
|
const FunctionType *BO_FPT = BO->getType()->getAs<FunctionProtoType>();
|
|
|
|
return EmitCall(CGM.getTypes().getFunctionInfo(Args, BO_FPT), Callee,
|
2010-01-02 04:29:01 +08:00
|
|
|
ReturnValue, Args);
|
|
|
|
}
|
|
|
|
|
|
|
|
RValue
|
|
|
|
CodeGenFunction::EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
|
|
|
|
const CXXMethodDecl *MD,
|
|
|
|
ReturnValueSlot ReturnValue) {
|
|
|
|
assert(MD->isInstance() &&
|
|
|
|
"Trying to emit a member call expr on a static method!");
|
|
|
|
if (MD->isCopyAssignment()) {
|
|
|
|
const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(MD->getDeclContext());
|
|
|
|
if (ClassDecl->hasTrivialCopyAssignment()) {
|
|
|
|
assert(!ClassDecl->hasUserDeclaredCopyAssignment() &&
|
|
|
|
"EmitCXXOperatorMemberCallExpr - user declared copy assignment");
|
2010-05-11 06:57:35 +08:00
|
|
|
LValue LV = EmitLValue(E->getArg(0));
|
|
|
|
llvm::Value *This;
|
|
|
|
if (LV.isPropertyRef()) {
|
2010-05-16 08:10:46 +08:00
|
|
|
llvm::Value *AggLoc = CreateMemTemp(E->getArg(1)->getType());
|
2010-05-16 07:05:52 +08:00
|
|
|
EmitAggExpr(E->getArg(1), AggLoc, false /*VolatileDest*/);
|
|
|
|
EmitObjCPropertySet(LV.getPropertyRefExpr(),
|
|
|
|
RValue::getAggregate(AggLoc, false /*VolatileDest*/));
|
|
|
|
return RValue::getAggregate(0, false);
|
2010-05-11 06:57:35 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
This = LV.getAddress();
|
|
|
|
|
2010-01-02 04:29:01 +08:00
|
|
|
llvm::Value *Src = EmitLValue(E->getArg(1)).getAddress();
|
|
|
|
QualType Ty = E->getType();
|
2010-06-16 06:44:06 +08:00
|
|
|
EmitAggregateCopy(This, Src, Ty);
|
2010-01-02 04:29:01 +08:00
|
|
|
return RValue::get(This);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
|
|
|
|
const llvm::Type *Ty =
|
|
|
|
CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
|
|
|
|
FPT->isVariadic());
|
2010-05-08 02:56:13 +08:00
|
|
|
LValue LV = EmitLValue(E->getArg(0));
|
|
|
|
llvm::Value *This;
|
|
|
|
if (LV.isPropertyRef()) {
|
2010-05-21 00:46:55 +08:00
|
|
|
RValue RV = EmitLoadOfPropertyRefLValue(LV, E->getArg(0)->getType());
|
|
|
|
assert (!RV.isScalar() && "EmitCXXOperatorMemberCallExpr");
|
|
|
|
This = RV.getAggregateAddr();
|
2010-05-08 02:56:13 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
This = LV.getAddress();
|
2010-01-02 04:29:01 +08:00
|
|
|
|
|
|
|
llvm::Value *Callee;
|
|
|
|
if (MD->isVirtual() && !canDevirtualizeMemberFunctionCalls(E->getArg(0)))
|
|
|
|
Callee = BuildVirtualCall(MD, This, Ty);
|
|
|
|
else
|
|
|
|
Callee = CGM.GetAddrOfFunction(MD, Ty);
|
|
|
|
|
2010-01-02 09:01:18 +08:00
|
|
|
return EmitCXXMemberCall(MD, Callee, ReturnValue, This, /*VTT=*/0,
|
2010-01-02 04:29:01 +08:00
|
|
|
E->arg_begin() + 1, E->arg_end());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CodeGenFunction::EmitCXXConstructExpr(llvm::Value *Dest,
|
|
|
|
const CXXConstructExpr *E) {
|
|
|
|
assert(Dest && "Must have a destination!");
|
|
|
|
const CXXConstructorDecl *CD = E->getConstructor();
|
2010-08-23 00:15:35 +08:00
|
|
|
|
|
|
|
// If we require zero initialization before (or instead of) calling the
|
|
|
|
// constructor, as can be the case with a non-user-provided default
|
|
|
|
// constructor, emit the zero initialization now.
|
|
|
|
if (E->requiresZeroInitialization())
|
|
|
|
EmitNullInitialization(Dest, E->getType());
|
|
|
|
|
|
|
|
|
|
|
|
// If this is a call to a trivial default constructor, do nothing.
|
|
|
|
if (CD->isTrivial() && CD->isDefaultConstructor())
|
|
|
|
return;
|
|
|
|
|
2010-01-02 04:29:01 +08:00
|
|
|
// Code gen optimization to eliminate copy constructor and return
|
2010-05-15 08:13:29 +08:00
|
|
|
// its first argument instead, if in fact that argument is a temporary
|
|
|
|
// object.
|
2010-01-02 04:29:01 +08:00
|
|
|
if (getContext().getLangOptions().ElideConstructors && E->isElidable()) {
|
2010-05-15 08:13:29 +08:00
|
|
|
if (const Expr *Arg = E->getArg(0)->getTemporaryObject()) {
|
|
|
|
EmitAggExpr(Arg, Dest, false);
|
|
|
|
return;
|
|
|
|
}
|
2010-01-02 04:29:01 +08:00
|
|
|
}
|
2010-08-23 00:15:35 +08:00
|
|
|
|
|
|
|
const ConstantArrayType *Array
|
|
|
|
= getContext().getAsConstantArrayType(E->getType());
|
2010-01-02 04:29:01 +08:00
|
|
|
if (Array) {
|
|
|
|
QualType BaseElementTy = getContext().getBaseElementType(Array);
|
|
|
|
const llvm::Type *BasePtr = ConvertType(BaseElementTy);
|
|
|
|
BasePtr = llvm::PointerType::getUnqual(BasePtr);
|
|
|
|
llvm::Value *BaseAddrPtr =
|
2010-05-02 01:02:18 +08:00
|
|
|
Builder.CreateBitCast(Dest, BasePtr);
|
2010-01-02 04:29:01 +08:00
|
|
|
|
|
|
|
EmitCXXAggrConstructorCall(CD, Array, BaseAddrPtr,
|
|
|
|
E->arg_begin(), E->arg_end());
|
|
|
|
}
|
2010-05-03 07:20:53 +08:00
|
|
|
else {
|
|
|
|
CXXCtorType Type =
|
|
|
|
(E->getConstructionKind() == CXXConstructExpr::CK_Complete)
|
|
|
|
? Ctor_Complete : Ctor_Base;
|
|
|
|
bool ForVirtualBase =
|
|
|
|
E->getConstructionKind() == CXXConstructExpr::CK_VirtualBase;
|
|
|
|
|
2010-01-02 04:29:01 +08:00
|
|
|
// Call the constructor.
|
2010-05-03 07:20:53 +08:00
|
|
|
EmitCXXConstructorCall(CD, Type, ForVirtualBase, Dest,
|
2010-01-02 04:29:01 +08:00
|
|
|
E->arg_begin(), E->arg_end());
|
2010-05-03 07:20:53 +08:00
|
|
|
}
|
2010-01-02 04:29:01 +08:00
|
|
|
}
|
|
|
|
|
2010-01-27 03:44:24 +08:00
|
|
|
static CharUnits CalculateCookiePadding(ASTContext &Ctx, QualType ElementType) {
|
2010-08-26 23:23:38 +08:00
|
|
|
ElementType = Ctx.getBaseElementType(ElementType);
|
2009-12-14 04:04:38 +08:00
|
|
|
const RecordType *RT = ElementType->getAs<RecordType>();
|
2009-09-24 00:07:23 +08:00
|
|
|
if (!RT)
|
2010-01-27 03:44:24 +08:00
|
|
|
return CharUnits::Zero();
|
2009-09-24 00:07:23 +08:00
|
|
|
|
|
|
|
const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
|
|
|
|
if (!RD)
|
2010-01-27 03:44:24 +08:00
|
|
|
return CharUnits::Zero();
|
2009-09-24 00:07:23 +08:00
|
|
|
|
|
|
|
// Check if the class has a trivial destructor.
|
|
|
|
if (RD->hasTrivialDestructor()) {
|
2009-12-14 04:04:38 +08:00
|
|
|
// Check if the usual deallocation function takes two arguments.
|
2009-12-14 04:10:12 +08:00
|
|
|
const CXXMethodDecl *UsualDeallocationFunction = 0;
|
|
|
|
|
2009-12-14 04:04:38 +08:00
|
|
|
DeclarationName OpName =
|
|
|
|
Ctx.DeclarationNames.getCXXOperatorName(OO_Array_Delete);
|
|
|
|
DeclContext::lookup_const_iterator Op, OpEnd;
|
|
|
|
for (llvm::tie(Op, OpEnd) = RD->lookup(OpName);
|
|
|
|
Op != OpEnd; ++Op) {
|
2009-12-14 04:10:12 +08:00
|
|
|
const CXXMethodDecl *Delete = cast<CXXMethodDecl>(*Op);
|
2009-12-14 04:04:38 +08:00
|
|
|
|
|
|
|
if (Delete->isUsualDeallocationFunction()) {
|
2009-12-14 04:10:12 +08:00
|
|
|
UsualDeallocationFunction = Delete;
|
2009-12-14 04:04:38 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-12-14 04:10:12 +08:00
|
|
|
|
|
|
|
// No usual deallocation function, we don't need a cookie.
|
|
|
|
if (!UsualDeallocationFunction)
|
2010-01-27 03:44:24 +08:00
|
|
|
return CharUnits::Zero();
|
2009-12-14 04:10:12 +08:00
|
|
|
|
|
|
|
// The usual deallocation function doesn't take a size_t argument, so we
|
|
|
|
// don't need a cookie.
|
|
|
|
if (UsualDeallocationFunction->getNumParams() == 1)
|
2010-01-27 03:44:24 +08:00
|
|
|
return CharUnits::Zero();
|
2009-12-14 04:10:12 +08:00
|
|
|
|
|
|
|
assert(UsualDeallocationFunction->getNumParams() == 2 &&
|
|
|
|
"Unexpected deallocation function type!");
|
|
|
|
}
|
2009-09-24 00:07:23 +08:00
|
|
|
|
2009-12-14 04:04:38 +08:00
|
|
|
// Padding is the maximum of sizeof(size_t) and alignof(ElementType)
|
2010-01-27 03:44:24 +08:00
|
|
|
return std::max(Ctx.getTypeSizeInChars(Ctx.getSizeType()),
|
|
|
|
Ctx.getTypeAlignInChars(ElementType));
|
2009-12-14 04:04:38 +08:00
|
|
|
}
|
|
|
|
|
2010-08-23 09:17:59 +08:00
|
|
|
/// Check whether the given operator new[] is the global placement
|
|
|
|
/// operator new[].
|
|
|
|
static bool IsPlacementOperatorNewArray(ASTContext &Ctx,
|
|
|
|
const FunctionDecl *Fn) {
|
|
|
|
// Must be in global scope. Note that allocation functions can't be
|
|
|
|
// declared in namespaces.
|
|
|
|
if (!Fn->getDeclContext()->getLookupContext()->isFileContext())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Signature must be void *operator new[](size_t, void*).
|
|
|
|
// The size_t is common to all operator new[]s.
|
|
|
|
if (Fn->getNumParams() != 2)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
CanQualType ParamType = Ctx.getCanonicalType(Fn->getParamDecl(1)->getType());
|
|
|
|
return (ParamType == Ctx.VoidPtrTy);
|
|
|
|
}
|
|
|
|
|
2010-01-27 03:44:24 +08:00
|
|
|
static CharUnits CalculateCookiePadding(ASTContext &Ctx, const CXXNewExpr *E) {
|
2009-12-14 04:04:38 +08:00
|
|
|
if (!E->isArray())
|
2010-01-27 03:44:24 +08:00
|
|
|
return CharUnits::Zero();
|
2009-12-14 04:04:38 +08:00
|
|
|
|
2009-12-14 04:34:34 +08:00
|
|
|
// No cookie is required if the new operator being used is
|
|
|
|
// ::operator new[](size_t, void*).
|
|
|
|
const FunctionDecl *OperatorNew = E->getOperatorNew();
|
2010-08-23 09:17:59 +08:00
|
|
|
if (IsPlacementOperatorNewArray(Ctx, OperatorNew))
|
|
|
|
return CharUnits::Zero();
|
|
|
|
|
2009-12-14 04:04:38 +08:00
|
|
|
return CalculateCookiePadding(Ctx, E->getAllocatedType());
|
2009-09-24 00:07:23 +08:00
|
|
|
}
|
|
|
|
|
2010-03-25 00:57:01 +08:00
|
|
|
static llvm::Value *EmitCXXNewAllocSize(ASTContext &Context,
|
2010-07-21 02:45:57 +08:00
|
|
|
CodeGenFunction &CGF,
|
2009-09-24 00:07:23 +08:00
|
|
|
const CXXNewExpr *E,
|
2010-07-21 09:10:17 +08:00
|
|
|
llvm::Value *&NumElements,
|
|
|
|
llvm::Value *&SizeWithoutCookie) {
|
2010-08-26 23:23:38 +08:00
|
|
|
QualType ElemType = E->getAllocatedType();
|
2009-09-24 00:07:23 +08:00
|
|
|
|
2010-07-21 09:10:17 +08:00
|
|
|
if (!E->isArray()) {
|
2010-08-26 23:23:38 +08:00
|
|
|
CharUnits TypeSize = CGF.getContext().getTypeSizeInChars(ElemType);
|
|
|
|
const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
|
2010-07-21 09:10:17 +08:00
|
|
|
SizeWithoutCookie = llvm::ConstantInt::get(SizeTy, TypeSize.getQuantity());
|
|
|
|
return SizeWithoutCookie;
|
|
|
|
}
|
2009-09-24 00:07:23 +08:00
|
|
|
|
|
|
|
// Emit the array size expression.
|
2010-08-26 23:23:38 +08:00
|
|
|
// We multiply the size of all dimensions for NumElements.
|
|
|
|
// e.g for 'int[2][3]', ElemType is 'int' and NumElements is 6.
|
2009-09-24 00:07:23 +08:00
|
|
|
NumElements = CGF.EmitScalarExpr(E->getArraySize());
|
2010-08-26 23:23:38 +08:00
|
|
|
while (const ConstantArrayType *CAT
|
|
|
|
= CGF.getContext().getAsConstantArrayType(ElemType)) {
|
|
|
|
ElemType = CAT->getElementType();
|
|
|
|
llvm::Value *ArraySize
|
|
|
|
= llvm::ConstantInt::get(CGF.CGM.getLLVMContext(), CAT->getSize());
|
|
|
|
NumElements = CGF.Builder.CreateMul(NumElements, ArraySize);
|
|
|
|
}
|
|
|
|
|
|
|
|
CharUnits TypeSize = CGF.getContext().getTypeSizeInChars(ElemType);
|
|
|
|
const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
|
2010-07-21 05:55:52 +08:00
|
|
|
llvm::Value *Size = llvm::ConstantInt::get(SizeTy, TypeSize.getQuantity());
|
2010-07-21 04:19:24 +08:00
|
|
|
|
2010-07-21 05:55:52 +08:00
|
|
|
// If someone is doing 'new int[42]' there is no need to do a dynamic check.
|
|
|
|
// Don't bloat the -O0 code.
|
|
|
|
if (llvm::ConstantInt *NumElementsC =
|
|
|
|
dyn_cast<llvm::ConstantInt>(NumElements)) {
|
|
|
|
// Determine if there is an overflow here by doing an extended multiply.
|
|
|
|
llvm::APInt NEC = NumElementsC->getValue();
|
|
|
|
NEC.zext(NEC.getBitWidth()*2);
|
|
|
|
|
|
|
|
llvm::APInt SC = cast<llvm::ConstantInt>(Size)->getValue();
|
|
|
|
SC.zext(SC.getBitWidth()*2);
|
|
|
|
SC *= NEC;
|
|
|
|
|
|
|
|
if (SC.countLeadingZeros() >= NumElementsC->getValue().getBitWidth()) {
|
|
|
|
SC.trunc(NumElementsC->getValue().getBitWidth());
|
|
|
|
Size = llvm::ConstantInt::get(Size->getContext(), SC);
|
|
|
|
} else {
|
|
|
|
// On overflow, produce a -1 so operator new throws.
|
|
|
|
Size = llvm::Constant::getAllOnesValue(Size->getType());
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// Multiply with the type size. This multiply can overflow, e.g. in:
|
|
|
|
// new double[n]
|
|
|
|
// where n is 2^30 on a 32-bit machine or 2^62 on a 64-bit machine. Because
|
|
|
|
// of this, we need to detect the overflow and ensure that an exception is
|
|
|
|
// called by forcing the size to -1 on overflow.
|
|
|
|
llvm::Value *UMulF =
|
|
|
|
CGF.CGM.getIntrinsic(llvm::Intrinsic::umul_with_overflow, &SizeTy, 1);
|
|
|
|
llvm::Value *MulRes = CGF.Builder.CreateCall2(UMulF, NumElements, Size);
|
|
|
|
// Branch on the overflow bit to the overflow block, which is lazily
|
|
|
|
// created.
|
|
|
|
llvm::Value *DidOverflow = CGF.Builder.CreateExtractValue(MulRes, 1);
|
|
|
|
// Get the normal result of the multiplication.
|
|
|
|
llvm::Value *V = CGF.Builder.CreateExtractValue(MulRes, 0);
|
|
|
|
|
|
|
|
llvm::BasicBlock *NormalBB = CGF.createBasicBlock("no_overflow");
|
|
|
|
llvm::BasicBlock *OverflowBB = CGF.createBasicBlock("overflow");
|
|
|
|
|
|
|
|
CGF.Builder.CreateCondBr(DidOverflow, OverflowBB, NormalBB);
|
2010-07-21 05:07:09 +08:00
|
|
|
|
2010-07-21 05:55:52 +08:00
|
|
|
llvm::BasicBlock *PrevBB = CGF.Builder.GetInsertBlock();
|
|
|
|
|
|
|
|
// We just need the overflow block to build a PHI node.
|
|
|
|
CGF.EmitBlock(OverflowBB);
|
|
|
|
CGF.EmitBlock(NormalBB);
|
|
|
|
|
|
|
|
llvm::PHINode *PN = CGF.Builder.CreatePHI(V->getType());
|
|
|
|
|
|
|
|
PN->addIncoming(V, PrevBB);
|
|
|
|
PN->addIncoming(llvm::Constant::getAllOnesValue(V->getType()), OverflowBB);
|
|
|
|
Size = PN;
|
|
|
|
}
|
2010-07-21 09:10:17 +08:00
|
|
|
SizeWithoutCookie = Size;
|
2010-07-21 05:07:09 +08:00
|
|
|
|
2010-07-21 05:55:52 +08:00
|
|
|
// Add the cookie padding if necessary.
|
|
|
|
CharUnits CookiePadding = CalculateCookiePadding(CGF.getContext(), E);
|
2010-01-27 03:44:24 +08:00
|
|
|
if (!CookiePadding.isZero())
|
2010-07-21 05:55:52 +08:00
|
|
|
Size = CGF.Builder.CreateAdd(Size,
|
2010-01-27 03:44:24 +08:00
|
|
|
llvm::ConstantInt::get(SizeTy, CookiePadding.getQuantity()));
|
2009-09-24 00:07:23 +08:00
|
|
|
|
2010-07-21 05:55:52 +08:00
|
|
|
return Size;
|
2009-09-24 00:07:23 +08:00
|
|
|
}
|
|
|
|
|
2010-06-26 02:26:07 +08:00
|
|
|
static void StoreAnyExprIntoOneUnit(CodeGenFunction &CGF, const CXXNewExpr *E,
|
|
|
|
llvm::Value *NewPtr) {
|
|
|
|
|
|
|
|
assert(E->getNumConstructorArgs() == 1 &&
|
|
|
|
"Can only have one argument to initializer of POD type.");
|
|
|
|
|
|
|
|
const Expr *Init = E->getConstructorArg(0);
|
|
|
|
QualType AllocType = E->getAllocatedType();
|
2010-08-21 10:24:36 +08:00
|
|
|
|
|
|
|
unsigned Alignment =
|
|
|
|
CGF.getContext().getTypeAlignInChars(AllocType).getQuantity();
|
2010-06-26 02:26:07 +08:00
|
|
|
if (!CGF.hasAggregateLLVMType(AllocType))
|
|
|
|
CGF.EmitStoreOfScalar(CGF.EmitScalarExpr(Init), NewPtr,
|
2010-08-21 10:24:36 +08:00
|
|
|
AllocType.isVolatileQualified(), Alignment,
|
|
|
|
AllocType);
|
2010-06-26 02:26:07 +08:00
|
|
|
else if (AllocType->isAnyComplexType())
|
|
|
|
CGF.EmitComplexExprIntoAddr(Init, NewPtr,
|
|
|
|
AllocType.isVolatileQualified());
|
|
|
|
else
|
|
|
|
CGF.EmitAggExpr(Init, NewPtr, AllocType.isVolatileQualified());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CodeGenFunction::EmitNewArrayInitializer(const CXXNewExpr *E,
|
|
|
|
llvm::Value *NewPtr,
|
|
|
|
llvm::Value *NumElements) {
|
2010-06-26 04:01:13 +08:00
|
|
|
// We have a POD type.
|
|
|
|
if (E->getNumConstructorArgs() == 0)
|
|
|
|
return;
|
|
|
|
|
2010-06-26 02:26:07 +08:00
|
|
|
const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
|
|
|
|
|
|
|
|
// Create a temporary for the loop index and initialize it with 0.
|
|
|
|
llvm::Value *IndexPtr = CreateTempAlloca(SizeTy, "loop.index");
|
|
|
|
llvm::Value *Zero = llvm::Constant::getNullValue(SizeTy);
|
|
|
|
Builder.CreateStore(Zero, IndexPtr);
|
|
|
|
|
|
|
|
// Start the loop with a block that tests the condition.
|
|
|
|
llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
|
|
|
|
llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
|
|
|
|
|
|
|
|
EmitBlock(CondBlock);
|
|
|
|
|
|
|
|
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.
|
|
|
|
llvm::Value *Counter = Builder.CreateLoad(IndexPtr);
|
|
|
|
llvm::Value *IsLess = Builder.CreateICmpULT(Counter, NumElements, "isless");
|
|
|
|
// If the condition is true, execute the body.
|
|
|
|
Builder.CreateCondBr(IsLess, ForBody, AfterFor);
|
|
|
|
|
|
|
|
EmitBlock(ForBody);
|
|
|
|
|
|
|
|
llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc");
|
|
|
|
// Inside the loop body, emit the constructor call on the array element.
|
|
|
|
Counter = Builder.CreateLoad(IndexPtr);
|
|
|
|
llvm::Value *Address = Builder.CreateInBoundsGEP(NewPtr, Counter,
|
|
|
|
"arrayidx");
|
|
|
|
StoreAnyExprIntoOneUnit(*this, E, Address);
|
|
|
|
|
|
|
|
EmitBlock(ContinueBlock);
|
|
|
|
|
|
|
|
// Emit the increment of the loop counter.
|
|
|
|
llvm::Value *NextVal = llvm::ConstantInt::get(SizeTy, 1);
|
|
|
|
Counter = Builder.CreateLoad(IndexPtr);
|
|
|
|
NextVal = Builder.CreateAdd(Counter, NextVal, "inc");
|
|
|
|
Builder.CreateStore(NextVal, IndexPtr);
|
|
|
|
|
|
|
|
// Finally, branch back up to the condition for the next iteration.
|
|
|
|
EmitBranch(CondBlock);
|
|
|
|
|
|
|
|
// Emit the fall-through block.
|
|
|
|
EmitBlock(AfterFor, true);
|
|
|
|
}
|
|
|
|
|
2010-07-21 09:10:17 +08:00
|
|
|
static void EmitZeroMemSet(CodeGenFunction &CGF, QualType T,
|
|
|
|
llvm::Value *NewPtr, llvm::Value *Size) {
|
|
|
|
llvm::LLVMContext &VMContext = CGF.CGM.getLLVMContext();
|
|
|
|
const llvm::Type *BP = llvm::Type::getInt8PtrTy(VMContext);
|
|
|
|
if (NewPtr->getType() != BP)
|
|
|
|
NewPtr = CGF.Builder.CreateBitCast(NewPtr, BP, "tmp");
|
|
|
|
|
|
|
|
CGF.Builder.CreateCall5(CGF.CGM.getMemSetFn(BP, CGF.IntPtrTy), NewPtr,
|
|
|
|
llvm::Constant::getNullValue(llvm::Type::getInt8Ty(VMContext)),
|
|
|
|
Size,
|
|
|
|
llvm::ConstantInt::get(CGF.Int32Ty,
|
|
|
|
CGF.getContext().getTypeAlign(T)/8),
|
|
|
|
llvm::ConstantInt::get(llvm::Type::getInt1Ty(VMContext),
|
|
|
|
0));
|
|
|
|
}
|
|
|
|
|
2009-09-24 00:07:23 +08:00
|
|
|
static void EmitNewInitializer(CodeGenFunction &CGF, const CXXNewExpr *E,
|
|
|
|
llvm::Value *NewPtr,
|
2010-07-21 09:10:17 +08:00
|
|
|
llvm::Value *NumElements,
|
|
|
|
llvm::Value *AllocSizeWithoutCookie) {
|
2009-11-25 02:43:52 +08:00
|
|
|
if (E->isArray()) {
|
2010-05-03 23:09:17 +08:00
|
|
|
if (CXXConstructorDecl *Ctor = E->getConstructor()) {
|
2010-07-21 09:10:17 +08:00
|
|
|
bool RequiresZeroInitialization = false;
|
|
|
|
if (Ctor->getParent()->hasTrivialConstructor()) {
|
|
|
|
// If new expression did not specify value-initialization, then there
|
|
|
|
// is no initialization.
|
|
|
|
if (!E->hasInitializer() || Ctor->getParent()->isEmpty())
|
|
|
|
return;
|
|
|
|
|
2010-08-23 05:01:12 +08:00
|
|
|
if (CGF.CGM.getTypes().isZeroInitializable(E->getAllocatedType())) {
|
2010-07-21 09:10:17 +08:00
|
|
|
// Optimization: since zero initialization will just set the memory
|
|
|
|
// to all zeroes, generate a single memset to do it in one shot.
|
|
|
|
EmitZeroMemSet(CGF, E->getAllocatedType(), NewPtr,
|
|
|
|
AllocSizeWithoutCookie);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
RequiresZeroInitialization = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
CGF.EmitCXXAggrConstructorCall(Ctor, NumElements, NewPtr,
|
|
|
|
E->constructor_arg_begin(),
|
|
|
|
E->constructor_arg_end(),
|
|
|
|
RequiresZeroInitialization);
|
2010-05-03 23:09:17 +08:00
|
|
|
return;
|
2010-07-21 09:10:17 +08:00
|
|
|
} else if (E->getNumConstructorArgs() == 1 &&
|
|
|
|
isa<ImplicitValueInitExpr>(E->getConstructorArg(0))) {
|
|
|
|
// Optimization: since zero initialization will just set the memory
|
|
|
|
// to all zeroes, generate a single memset to do it in one shot.
|
|
|
|
EmitZeroMemSet(CGF, E->getAllocatedType(), NewPtr,
|
|
|
|
AllocSizeWithoutCookie);
|
|
|
|
return;
|
|
|
|
} else {
|
2010-06-26 02:26:07 +08:00
|
|
|
CGF.EmitNewArrayInitializer(E, NewPtr, NumElements);
|
|
|
|
return;
|
|
|
|
}
|
2009-11-25 02:43:52 +08:00
|
|
|
}
|
2009-09-24 00:07:23 +08:00
|
|
|
|
2009-11-25 02:43:52 +08:00
|
|
|
if (CXXConstructorDecl *Ctor = E->getConstructor()) {
|
2010-07-08 14:14:04 +08:00
|
|
|
// Per C++ [expr.new]p15, if we have an initializer, then we're performing
|
|
|
|
// direct initialization. C++ [dcl.init]p5 requires that we
|
|
|
|
// zero-initialize storage if there are no user-declared constructors.
|
|
|
|
if (E->hasInitializer() &&
|
|
|
|
!Ctor->getParent()->hasUserDeclaredConstructor() &&
|
|
|
|
!Ctor->getParent()->isEmpty())
|
|
|
|
CGF.EmitNullInitialization(NewPtr, E->getAllocatedType());
|
|
|
|
|
2010-07-08 07:37:33 +08:00
|
|
|
CGF.EmitCXXConstructorCall(Ctor, Ctor_Complete, /*ForVirtualBase=*/false,
|
|
|
|
NewPtr, E->constructor_arg_begin(),
|
|
|
|
E->constructor_arg_end());
|
2009-09-24 00:07:23 +08:00
|
|
|
|
2009-11-25 02:43:52 +08:00
|
|
|
return;
|
|
|
|
}
|
2010-06-26 04:01:13 +08:00
|
|
|
// We have a POD type.
|
|
|
|
if (E->getNumConstructorArgs() == 0)
|
|
|
|
return;
|
|
|
|
|
2010-06-26 02:26:07 +08:00
|
|
|
StoreAnyExprIntoOneUnit(CGF, E, NewPtr);
|
2009-09-24 00:07:23 +08:00
|
|
|
}
|
|
|
|
|
2009-09-23 06:53:17 +08:00
|
|
|
llvm::Value *CodeGenFunction::EmitCXXNewExpr(const CXXNewExpr *E) {
|
|
|
|
QualType AllocType = E->getAllocatedType();
|
|
|
|
FunctionDecl *NewFD = E->getOperatorNew();
|
|
|
|
const FunctionProtoType *NewFTy = NewFD->getType()->getAs<FunctionProtoType>();
|
|
|
|
|
|
|
|
CallArgList NewArgs;
|
|
|
|
|
|
|
|
// The allocation size is the first argument.
|
|
|
|
QualType SizeTy = getContext().getSizeType();
|
|
|
|
|
2009-09-24 00:07:23 +08:00
|
|
|
llvm::Value *NumElements = 0;
|
2010-07-21 09:10:17 +08:00
|
|
|
llvm::Value *AllocSizeWithoutCookie = 0;
|
2010-03-25 00:57:01 +08:00
|
|
|
llvm::Value *AllocSize = EmitCXXNewAllocSize(getContext(),
|
2010-07-21 09:10:17 +08:00
|
|
|
*this, E, NumElements,
|
|
|
|
AllocSizeWithoutCookie);
|
2009-09-24 00:07:23 +08:00
|
|
|
|
2009-09-23 06:53:17 +08:00
|
|
|
NewArgs.push_back(std::make_pair(RValue::get(AllocSize), SizeTy));
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
|
|
|
|
assert(getContext().getCanonicalType(ArgType.getNonReferenceType()).
|
|
|
|
getTypePtr() ==
|
|
|
|
getContext().getCanonicalType(NewArg->getType()).getTypePtr() &&
|
|
|
|
"type mismatch in call argument!");
|
|
|
|
|
|
|
|
NewArgs.push_back(std::make_pair(EmitCallArg(*NewArg, ArgType),
|
|
|
|
ArgType));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Either we've emitted all the call args, or we have a call to a
|
|
|
|
// variadic function.
|
|
|
|
assert((NewArg == E->placement_arg_end() || NewFTy->isVariadic()) &&
|
|
|
|
"Extra arguments in non-variadic function!");
|
|
|
|
|
|
|
|
// If we still have any arguments, emit them using the type of the argument.
|
|
|
|
for (CXXNewExpr::const_arg_iterator NewArgEnd = E->placement_arg_end();
|
|
|
|
NewArg != NewArgEnd; ++NewArg) {
|
|
|
|
QualType ArgType = NewArg->getType();
|
|
|
|
NewArgs.push_back(std::make_pair(EmitCallArg(*NewArg, ArgType),
|
|
|
|
ArgType));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Emit the call to new.
|
|
|
|
RValue RV =
|
2010-02-06 05:31:56 +08:00
|
|
|
EmitCall(CGM.getTypes().getFunctionInfo(NewArgs, NewFTy),
|
2009-12-25 03:25:24 +08:00
|
|
|
CGM.GetAddrOfFunction(NewFD), ReturnValueSlot(), NewArgs, NewFD);
|
2009-09-23 06:53:17 +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());
|
|
|
|
|
|
|
|
llvm::BasicBlock *NewNull = 0;
|
|
|
|
llvm::BasicBlock *NewNotNull = 0;
|
|
|
|
llvm::BasicBlock *NewEnd = 0;
|
|
|
|
|
|
|
|
llvm::Value *NewPtr = RV.getScalarVal();
|
|
|
|
|
|
|
|
if (NullCheckResult) {
|
|
|
|
NewNull = createBasicBlock("new.null");
|
|
|
|
NewNotNull = createBasicBlock("new.notnull");
|
|
|
|
NewEnd = createBasicBlock("new.end");
|
|
|
|
|
|
|
|
llvm::Value *IsNull =
|
|
|
|
Builder.CreateICmpEQ(NewPtr,
|
|
|
|
llvm::Constant::getNullValue(NewPtr->getType()),
|
|
|
|
"isnull");
|
|
|
|
|
|
|
|
Builder.CreateCondBr(IsNull, NewNull, NewNotNull);
|
|
|
|
EmitBlock(NewNotNull);
|
|
|
|
}
|
2010-01-27 03:44:24 +08:00
|
|
|
|
|
|
|
CharUnits CookiePadding = CalculateCookiePadding(getContext(), E);
|
|
|
|
if (!CookiePadding.isZero()) {
|
|
|
|
CharUnits CookieOffset =
|
|
|
|
CookiePadding - getContext().getTypeSizeInChars(SizeTy);
|
2009-09-24 02:59:48 +08:00
|
|
|
|
|
|
|
llvm::Value *NumElementsPtr =
|
2010-01-27 03:44:24 +08:00
|
|
|
Builder.CreateConstInBoundsGEP1_64(NewPtr, CookieOffset.getQuantity());
|
2009-09-24 02:59:48 +08:00
|
|
|
|
|
|
|
NumElementsPtr = Builder.CreateBitCast(NumElementsPtr,
|
|
|
|
ConvertType(SizeTy)->getPointerTo());
|
|
|
|
Builder.CreateStore(NumElements, NumElementsPtr);
|
|
|
|
|
|
|
|
// Now add the padding to the new ptr.
|
2010-01-27 03:44:24 +08:00
|
|
|
NewPtr = Builder.CreateConstInBoundsGEP1_64(NewPtr,
|
|
|
|
CookiePadding.getQuantity());
|
2009-09-24 02:59:48 +08:00
|
|
|
}
|
|
|
|
|
2010-03-25 00:57:01 +08:00
|
|
|
if (AllocType->isArrayType()) {
|
|
|
|
while (const ArrayType *AType = getContext().getAsArrayType(AllocType))
|
|
|
|
AllocType = AType->getElementType();
|
|
|
|
NewPtr =
|
|
|
|
Builder.CreateBitCast(NewPtr,
|
|
|
|
ConvertType(getContext().getPointerType(AllocType)));
|
2010-07-21 09:10:17 +08:00
|
|
|
EmitNewInitializer(*this, E, NewPtr, NumElements, AllocSizeWithoutCookie);
|
2010-03-25 00:57:01 +08:00
|
|
|
NewPtr = Builder.CreateBitCast(NewPtr, ConvertType(E->getType()));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
NewPtr = Builder.CreateBitCast(NewPtr, ConvertType(E->getType()));
|
2010-07-21 09:10:17 +08:00
|
|
|
EmitNewInitializer(*this, E, NewPtr, NumElements, AllocSizeWithoutCookie);
|
2010-03-25 00:57:01 +08:00
|
|
|
}
|
|
|
|
|
2009-09-23 06:53:17 +08:00
|
|
|
if (NullCheckResult) {
|
|
|
|
Builder.CreateBr(NewEnd);
|
2009-11-11 06:39:09 +08:00
|
|
|
NewNotNull = Builder.GetInsertBlock();
|
2009-09-23 06:53:17 +08:00
|
|
|
EmitBlock(NewNull);
|
|
|
|
Builder.CreateBr(NewEnd);
|
|
|
|
EmitBlock(NewEnd);
|
|
|
|
|
|
|
|
llvm::PHINode *PHI = Builder.CreatePHI(NewPtr->getType());
|
|
|
|
PHI->reserveOperandSpace(2);
|
|
|
|
PHI->addIncoming(NewPtr, NewNotNull);
|
|
|
|
PHI->addIncoming(llvm::Constant::getNullValue(NewPtr->getType()), NewNull);
|
|
|
|
|
|
|
|
NewPtr = PHI;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NewPtr;
|
|
|
|
}
|
|
|
|
|
2009-12-14 04:04:38 +08:00
|
|
|
static std::pair<llvm::Value *, llvm::Value *>
|
|
|
|
GetAllocatedObjectPtrAndNumElements(CodeGenFunction &CGF,
|
|
|
|
llvm::Value *Ptr, QualType DeleteTy) {
|
|
|
|
QualType SizeTy = CGF.getContext().getSizeType();
|
|
|
|
const llvm::Type *SizeLTy = CGF.ConvertType(SizeTy);
|
|
|
|
|
2010-01-27 03:44:24 +08:00
|
|
|
CharUnits DeleteTypeAlign = CGF.getContext().getTypeAlignInChars(DeleteTy);
|
|
|
|
CharUnits CookiePadding =
|
|
|
|
std::max(CGF.getContext().getTypeSizeInChars(SizeTy),
|
|
|
|
DeleteTypeAlign);
|
|
|
|
assert(!CookiePadding.isZero() && "CookiePadding should not be 0.");
|
2009-12-14 04:04:38 +08:00
|
|
|
|
|
|
|
const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
|
2010-01-27 03:44:24 +08:00
|
|
|
CharUnits CookieOffset =
|
|
|
|
CookiePadding - CGF.getContext().getTypeSizeInChars(SizeTy);
|
2009-12-14 04:04:38 +08:00
|
|
|
|
|
|
|
llvm::Value *AllocatedObjectPtr = CGF.Builder.CreateBitCast(Ptr, Int8PtrTy);
|
|
|
|
AllocatedObjectPtr =
|
|
|
|
CGF.Builder.CreateConstInBoundsGEP1_64(AllocatedObjectPtr,
|
2010-01-27 03:44:24 +08:00
|
|
|
-CookiePadding.getQuantity());
|
2009-12-14 04:04:38 +08:00
|
|
|
|
|
|
|
llvm::Value *NumElementsPtr =
|
|
|
|
CGF.Builder.CreateConstInBoundsGEP1_64(AllocatedObjectPtr,
|
2010-01-27 03:44:24 +08:00
|
|
|
CookieOffset.getQuantity());
|
2009-12-14 04:04:38 +08:00
|
|
|
NumElementsPtr =
|
|
|
|
CGF.Builder.CreateBitCast(NumElementsPtr, SizeLTy->getPointerTo());
|
|
|
|
|
|
|
|
llvm::Value *NumElements = CGF.Builder.CreateLoad(NumElementsPtr);
|
|
|
|
NumElements =
|
|
|
|
CGF.Builder.CreateIntCast(NumElements, SizeLTy, /*isSigned=*/false);
|
|
|
|
|
|
|
|
return std::make_pair(AllocatedObjectPtr, NumElements);
|
|
|
|
}
|
|
|
|
|
2009-11-18 08:50:08 +08:00
|
|
|
void CodeGenFunction::EmitDeleteCall(const FunctionDecl *DeleteFD,
|
|
|
|
llvm::Value *Ptr,
|
|
|
|
QualType DeleteTy) {
|
|
|
|
const FunctionProtoType *DeleteFTy =
|
|
|
|
DeleteFD->getType()->getAs<FunctionProtoType>();
|
|
|
|
|
|
|
|
CallArgList DeleteArgs;
|
|
|
|
|
2009-12-14 04:04:38 +08:00
|
|
|
// Check if we need to pass the size to the delete operator.
|
|
|
|
llvm::Value *Size = 0;
|
|
|
|
QualType SizeTy;
|
2009-11-18 08:50:08 +08:00
|
|
|
if (DeleteFTy->getNumArgs() == 2) {
|
2009-12-14 04:04:38 +08:00
|
|
|
SizeTy = DeleteFTy->getArgType(1);
|
2010-01-27 03:59:28 +08:00
|
|
|
CharUnits DeleteTypeSize = getContext().getTypeSizeInChars(DeleteTy);
|
|
|
|
Size = llvm::ConstantInt::get(ConvertType(SizeTy),
|
|
|
|
DeleteTypeSize.getQuantity());
|
2009-12-14 04:04:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (DeleteFD->getOverloadedOperator() == OO_Array_Delete &&
|
2010-01-27 03:44:24 +08:00
|
|
|
!CalculateCookiePadding(getContext(), DeleteTy).isZero()) {
|
2009-12-14 04:04:38 +08:00
|
|
|
// We need to get the number of elements in the array from the cookie.
|
|
|
|
llvm::Value *AllocatedObjectPtr;
|
|
|
|
llvm::Value *NumElements;
|
|
|
|
llvm::tie(AllocatedObjectPtr, NumElements) =
|
|
|
|
GetAllocatedObjectPtrAndNumElements(*this, Ptr, DeleteTy);
|
2009-12-14 02:48:07 +08:00
|
|
|
|
2009-12-14 04:04:38 +08:00
|
|
|
// Multiply the size with the number of elements.
|
|
|
|
if (Size)
|
2009-12-14 02:48:07 +08:00
|
|
|
Size = Builder.CreateMul(NumElements, Size);
|
2009-12-14 04:04:38 +08:00
|
|
|
|
|
|
|
Ptr = AllocatedObjectPtr;
|
2009-11-18 08:50:08 +08:00
|
|
|
}
|
2009-12-14 04:04:38 +08:00
|
|
|
|
|
|
|
QualType ArgTy = DeleteFTy->getArgType(0);
|
|
|
|
llvm::Value *DeletePtr = Builder.CreateBitCast(Ptr, ConvertType(ArgTy));
|
|
|
|
DeleteArgs.push_back(std::make_pair(RValue::get(DeletePtr), ArgTy));
|
|
|
|
|
|
|
|
if (Size)
|
|
|
|
DeleteArgs.push_back(std::make_pair(RValue::get(Size), SizeTy));
|
2009-11-18 08:50:08 +08:00
|
|
|
|
|
|
|
// Emit the call to delete.
|
2010-02-06 05:31:56 +08:00
|
|
|
EmitCall(CGM.getTypes().getFunctionInfo(DeleteArgs, DeleteFTy),
|
2009-12-25 03:25:24 +08:00
|
|
|
CGM.GetAddrOfFunction(DeleteFD), ReturnValueSlot(),
|
2009-11-18 08:50:08 +08:00
|
|
|
DeleteArgs, DeleteFD);
|
|
|
|
}
|
|
|
|
|
2009-09-23 06:53:17 +08:00
|
|
|
void CodeGenFunction::EmitCXXDeleteExpr(const CXXDeleteExpr *E) {
|
2009-11-14 03:27:47 +08:00
|
|
|
|
2009-09-30 02:16:17 +08:00
|
|
|
// Get at the argument before we performed the implicit conversion
|
|
|
|
// to void*.
|
|
|
|
const Expr *Arg = E->getArgument();
|
|
|
|
while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg)) {
|
2010-08-25 19:45:40 +08:00
|
|
|
if (ICE->getCastKind() != CK_UserDefinedConversion &&
|
2009-09-30 02:16:17 +08:00
|
|
|
ICE->getType()->isVoidPointerType())
|
|
|
|
Arg = ICE->getSubExpr();
|
2009-10-01 13:49:51 +08:00
|
|
|
else
|
|
|
|
break;
|
2009-09-30 02:16:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
QualType DeleteTy = Arg->getType()->getAs<PointerType>()->getPointeeType();
|
2009-09-23 06:53:17 +08:00
|
|
|
|
2009-09-30 02:16:17 +08:00
|
|
|
llvm::Value *Ptr = EmitScalarExpr(Arg);
|
2009-09-23 06:53:17 +08:00
|
|
|
|
|
|
|
// Null check the pointer.
|
|
|
|
llvm::BasicBlock *DeleteNotNull = createBasicBlock("delete.notnull");
|
|
|
|
llvm::BasicBlock *DeleteEnd = createBasicBlock("delete.end");
|
|
|
|
|
|
|
|
llvm::Value *IsNull =
|
|
|
|
Builder.CreateICmpEQ(Ptr, llvm::Constant::getNullValue(Ptr->getType()),
|
|
|
|
"isnull");
|
|
|
|
|
|
|
|
Builder.CreateCondBr(IsNull, DeleteEnd, DeleteNotNull);
|
|
|
|
EmitBlock(DeleteNotNull);
|
2009-11-13 12:45:41 +08:00
|
|
|
|
|
|
|
bool ShouldCallDelete = true;
|
|
|
|
|
2009-09-23 06:53:17 +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()) {
|
2010-07-01 22:13:13 +08:00
|
|
|
const CXXDestructorDecl *Dtor = RD->getDestructor();
|
2009-11-14 03:27:47 +08:00
|
|
|
if (E->isArrayForm()) {
|
2009-12-14 04:04:38 +08:00
|
|
|
llvm::Value *AllocatedObjectPtr;
|
|
|
|
llvm::Value *NumElements;
|
|
|
|
llvm::tie(AllocatedObjectPtr, NumElements) =
|
|
|
|
GetAllocatedObjectPtrAndNumElements(*this, Ptr, DeleteTy);
|
|
|
|
|
2009-12-14 02:48:07 +08:00
|
|
|
EmitCXXAggrDestructorCall(Dtor, NumElements, Ptr);
|
|
|
|
} else if (Dtor->isVirtual()) {
|
2009-09-23 06:53:17 +08:00
|
|
|
const llvm::Type *Ty =
|
|
|
|
CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(Dtor),
|
|
|
|
/*isVariadic=*/false);
|
|
|
|
|
2009-11-13 12:45:41 +08:00
|
|
|
llvm::Value *Callee = BuildVirtualCall(Dtor, Dtor_Deleting, Ptr, Ty);
|
2010-01-02 09:01:18 +08:00
|
|
|
EmitCXXMemberCall(Dtor, Callee, ReturnValueSlot(), Ptr, /*VTT=*/0,
|
|
|
|
0, 0);
|
2009-11-13 12:45:41 +08:00
|
|
|
|
|
|
|
// The dtor took care of deleting the object.
|
|
|
|
ShouldCallDelete = false;
|
2009-09-23 06:53:17 +08:00
|
|
|
} else
|
2010-05-03 07:29:11 +08:00
|
|
|
EmitCXXDestructorCall(Dtor, Dtor_Complete, /*ForVirtualBase=*/false,
|
|
|
|
Ptr);
|
2009-09-23 06:53:17 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-18 08:50:08 +08:00
|
|
|
if (ShouldCallDelete)
|
|
|
|
EmitDeleteCall(E->getOperatorDelete(), Ptr, DeleteTy);
|
2009-09-23 06:53:17 +08:00
|
|
|
|
|
|
|
EmitBlock(DeleteEnd);
|
|
|
|
}
|
2009-11-15 16:09:41 +08:00
|
|
|
|
|
|
|
llvm::Value * CodeGenFunction::EmitCXXTypeidExpr(const CXXTypeidExpr *E) {
|
|
|
|
QualType Ty = E->getType();
|
|
|
|
const llvm::Type *LTy = ConvertType(Ty)->getPointerTo();
|
2009-12-11 10:46:30 +08:00
|
|
|
|
2009-12-17 15:09:17 +08:00
|
|
|
if (E->isTypeOperand()) {
|
|
|
|
llvm::Constant *TypeInfo =
|
|
|
|
CGM.GetAddrOfRTTIDescriptor(E->getTypeOperand());
|
|
|
|
return Builder.CreateBitCast(TypeInfo, LTy);
|
|
|
|
}
|
|
|
|
|
2009-11-15 16:09:41 +08:00
|
|
|
Expr *subE = E->getExprOperand();
|
2009-11-18 06:33:00 +08:00
|
|
|
Ty = subE->getType();
|
|
|
|
CanQualType CanTy = CGM.getContext().getCanonicalType(Ty);
|
|
|
|
Ty = CanTy.getUnqualifiedType().getNonReferenceType();
|
2009-11-15 16:09:41 +08:00
|
|
|
if (const RecordType *RT = Ty->getAs<RecordType>()) {
|
|
|
|
const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
|
|
|
|
if (RD->isPolymorphic()) {
|
|
|
|
// FIXME: if subE is an lvalue do
|
|
|
|
LValue Obj = EmitLValue(subE);
|
|
|
|
llvm::Value *This = Obj.getAddress();
|
2009-11-16 00:52:53 +08:00
|
|
|
LTy = LTy->getPointerTo()->getPointerTo();
|
|
|
|
llvm::Value *V = Builder.CreateBitCast(This, LTy);
|
|
|
|
// We need to do a zero check for *p, unless it has NonNullAttr.
|
|
|
|
// FIXME: PointerType->hasAttr<NonNullAttr>()
|
|
|
|
bool CanBeZero = false;
|
2009-11-17 08:45:21 +08:00
|
|
|
if (UnaryOperator *UO = dyn_cast<UnaryOperator>(subE->IgnoreParens()))
|
2010-08-25 19:45:40 +08:00
|
|
|
if (UO->getOpcode() == UO_Deref)
|
2009-11-16 00:52:53 +08:00
|
|
|
CanBeZero = true;
|
|
|
|
if (CanBeZero) {
|
|
|
|
llvm::BasicBlock *NonZeroBlock = createBasicBlock();
|
|
|
|
llvm::BasicBlock *ZeroBlock = createBasicBlock();
|
|
|
|
|
|
|
|
llvm::Value *Zero = llvm::Constant::getNullValue(LTy);
|
|
|
|
Builder.CreateCondBr(Builder.CreateICmpNE(V, Zero),
|
|
|
|
NonZeroBlock, ZeroBlock);
|
|
|
|
EmitBlock(ZeroBlock);
|
|
|
|
/// Call __cxa_bad_typeid
|
|
|
|
const llvm::Type *ResultType = llvm::Type::getVoidTy(VMContext);
|
|
|
|
const llvm::FunctionType *FTy;
|
|
|
|
FTy = llvm::FunctionType::get(ResultType, false);
|
|
|
|
llvm::Value *F = CGM.CreateRuntimeFunction(FTy, "__cxa_bad_typeid");
|
2009-11-16 14:50:58 +08:00
|
|
|
Builder.CreateCall(F)->setDoesNotReturn();
|
2009-11-16 00:52:53 +08:00
|
|
|
Builder.CreateUnreachable();
|
|
|
|
EmitBlock(NonZeroBlock);
|
|
|
|
}
|
2009-11-15 16:09:41 +08:00
|
|
|
V = Builder.CreateLoad(V, "vtable");
|
|
|
|
V = Builder.CreateConstInBoundsGEP1_64(V, -1ULL);
|
|
|
|
V = Builder.CreateLoad(V);
|
|
|
|
return V;
|
2009-12-17 15:09:17 +08:00
|
|
|
}
|
2009-11-15 16:09:41 +08:00
|
|
|
}
|
2009-12-17 15:09:17 +08:00
|
|
|
return Builder.CreateBitCast(CGM.GetAddrOfRTTIDescriptor(Ty), LTy);
|
2009-11-15 16:09:41 +08:00
|
|
|
}
|
2009-11-16 14:50:58 +08:00
|
|
|
|
|
|
|
llvm::Value *CodeGenFunction::EmitDynamicCast(llvm::Value *V,
|
|
|
|
const CXXDynamicCastExpr *DCE) {
|
2009-12-17 15:09:17 +08:00
|
|
|
QualType SrcTy = DCE->getSubExpr()->getType();
|
|
|
|
QualType DestTy = DCE->getTypeAsWritten();
|
|
|
|
QualType InnerType = DestTy->getPointeeType();
|
|
|
|
|
2009-11-16 14:50:58 +08:00
|
|
|
const llvm::Type *LTy = ConvertType(DCE->getType());
|
2009-11-17 06:52:20 +08:00
|
|
|
|
2009-11-16 14:50:58 +08:00
|
|
|
bool CanBeZero = false;
|
|
|
|
bool ToVoid = false;
|
2009-11-17 06:52:20 +08:00
|
|
|
bool ThrowOnBad = false;
|
2009-12-17 15:09:17 +08:00
|
|
|
if (DestTy->isPointerType()) {
|
2009-11-16 14:50:58 +08:00
|
|
|
// FIXME: if PointerType->hasAttr<NonNullAttr>(), we don't set this
|
|
|
|
CanBeZero = true;
|
|
|
|
if (InnerType->isVoidType())
|
|
|
|
ToVoid = true;
|
|
|
|
} else {
|
|
|
|
LTy = LTy->getPointerTo();
|
2010-05-15 05:14:41 +08:00
|
|
|
|
|
|
|
// FIXME: What if exceptions are disabled?
|
2009-11-16 14:50:58 +08:00
|
|
|
ThrowOnBad = true;
|
|
|
|
}
|
|
|
|
|
2009-12-17 15:09:17 +08:00
|
|
|
if (SrcTy->isPointerType() || SrcTy->isReferenceType())
|
|
|
|
SrcTy = SrcTy->getPointeeType();
|
|
|
|
SrcTy = SrcTy.getUnqualifiedType();
|
|
|
|
|
2009-12-18 22:55:04 +08:00
|
|
|
if (DestTy->isPointerType() || DestTy->isReferenceType())
|
2009-12-17 15:09:17 +08:00
|
|
|
DestTy = DestTy->getPointeeType();
|
|
|
|
DestTy = DestTy.getUnqualifiedType();
|
2009-11-16 14:50:58 +08:00
|
|
|
|
|
|
|
llvm::BasicBlock *ContBlock = createBasicBlock();
|
|
|
|
llvm::BasicBlock *NullBlock = 0;
|
|
|
|
llvm::BasicBlock *NonZeroBlock = 0;
|
|
|
|
if (CanBeZero) {
|
|
|
|
NonZeroBlock = createBasicBlock();
|
|
|
|
NullBlock = createBasicBlock();
|
2009-12-17 15:09:17 +08:00
|
|
|
Builder.CreateCondBr(Builder.CreateIsNotNull(V), NonZeroBlock, NullBlock);
|
2009-11-16 14:50:58 +08:00
|
|
|
EmitBlock(NonZeroBlock);
|
|
|
|
}
|
|
|
|
|
2009-11-17 06:52:20 +08:00
|
|
|
llvm::BasicBlock *BadCastBlock = 0;
|
2009-11-16 14:50:58 +08:00
|
|
|
|
2009-12-17 15:09:17 +08:00
|
|
|
const llvm::Type *PtrDiffTy = ConvertType(getContext().getPointerDiffType());
|
2009-11-16 14:50:58 +08:00
|
|
|
|
2009-11-17 06:52:20 +08:00
|
|
|
// See if this is a dynamic_cast(void*)
|
|
|
|
if (ToVoid) {
|
|
|
|
llvm::Value *This = V;
|
|
|
|
V = Builder.CreateBitCast(This, PtrDiffTy->getPointerTo()->getPointerTo());
|
|
|
|
V = Builder.CreateLoad(V, "vtable");
|
|
|
|
V = Builder.CreateConstInBoundsGEP1_64(V, -2ULL);
|
|
|
|
V = Builder.CreateLoad(V, "offset to top");
|
|
|
|
This = Builder.CreateBitCast(This, llvm::Type::getInt8PtrTy(VMContext));
|
|
|
|
V = Builder.CreateInBoundsGEP(This, V);
|
|
|
|
V = Builder.CreateBitCast(V, LTy);
|
|
|
|
} else {
|
|
|
|
/// Call __dynamic_cast
|
|
|
|
const llvm::Type *ResultType = llvm::Type::getInt8PtrTy(VMContext);
|
|
|
|
const llvm::FunctionType *FTy;
|
|
|
|
std::vector<const llvm::Type*> ArgTys;
|
|
|
|
const llvm::Type *PtrToInt8Ty
|
|
|
|
= llvm::Type::getInt8Ty(VMContext)->getPointerTo();
|
|
|
|
ArgTys.push_back(PtrToInt8Ty);
|
|
|
|
ArgTys.push_back(PtrToInt8Ty);
|
|
|
|
ArgTys.push_back(PtrToInt8Ty);
|
|
|
|
ArgTys.push_back(PtrDiffTy);
|
|
|
|
FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
|
|
|
|
|
|
|
|
// FIXME: Calculate better hint.
|
|
|
|
llvm::Value *hint = llvm::ConstantInt::get(PtrDiffTy, -1ULL);
|
2009-12-17 15:09:17 +08:00
|
|
|
|
|
|
|
assert(SrcTy->isRecordType() && "Src type must be record type!");
|
|
|
|
assert(DestTy->isRecordType() && "Dest type must be record type!");
|
|
|
|
|
2009-12-24 06:04:40 +08:00
|
|
|
llvm::Value *SrcArg
|
|
|
|
= CGM.GetAddrOfRTTIDescriptor(SrcTy.getUnqualifiedType());
|
|
|
|
llvm::Value *DestArg
|
|
|
|
= CGM.GetAddrOfRTTIDescriptor(DestTy.getUnqualifiedType());
|
2009-12-17 15:09:17 +08:00
|
|
|
|
2009-11-17 06:52:20 +08:00
|
|
|
V = Builder.CreateBitCast(V, PtrToInt8Ty);
|
|
|
|
V = Builder.CreateCall4(CGM.CreateRuntimeFunction(FTy, "__dynamic_cast"),
|
2009-12-17 15:09:17 +08:00
|
|
|
V, SrcArg, DestArg, hint);
|
2009-11-17 06:52:20 +08:00
|
|
|
V = Builder.CreateBitCast(V, LTy);
|
|
|
|
|
|
|
|
if (ThrowOnBad) {
|
|
|
|
BadCastBlock = createBasicBlock();
|
2009-12-17 15:09:17 +08:00
|
|
|
Builder.CreateCondBr(Builder.CreateIsNotNull(V), ContBlock, BadCastBlock);
|
2009-11-17 06:52:20 +08:00
|
|
|
EmitBlock(BadCastBlock);
|
2010-05-15 05:14:41 +08:00
|
|
|
/// Invoke __cxa_bad_cast
|
2009-11-17 06:52:20 +08:00
|
|
|
ResultType = llvm::Type::getVoidTy(VMContext);
|
|
|
|
const llvm::FunctionType *FBadTy;
|
2009-11-17 11:01:03 +08:00
|
|
|
FBadTy = llvm::FunctionType::get(ResultType, false);
|
2009-11-17 06:52:20 +08:00
|
|
|
llvm::Value *F = CGM.CreateRuntimeFunction(FBadTy, "__cxa_bad_cast");
|
2010-05-15 05:14:41 +08:00
|
|
|
if (llvm::BasicBlock *InvokeDest = getInvokeDest()) {
|
|
|
|
llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
|
|
|
|
Builder.CreateInvoke(F, Cont, InvokeDest)->setDoesNotReturn();
|
|
|
|
EmitBlock(Cont);
|
|
|
|
} else {
|
|
|
|
// FIXME: Does this ever make sense?
|
|
|
|
Builder.CreateCall(F)->setDoesNotReturn();
|
|
|
|
}
|
2009-11-17 08:08:50 +08:00
|
|
|
Builder.CreateUnreachable();
|
2009-11-17 06:52:20 +08:00
|
|
|
}
|
2009-11-16 14:50:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (CanBeZero) {
|
|
|
|
Builder.CreateBr(ContBlock);
|
|
|
|
EmitBlock(NullBlock);
|
|
|
|
Builder.CreateBr(ContBlock);
|
|
|
|
}
|
|
|
|
EmitBlock(ContBlock);
|
|
|
|
if (CanBeZero) {
|
|
|
|
llvm::PHINode *PHI = Builder.CreatePHI(LTy);
|
2009-11-17 08:10:05 +08:00
|
|
|
PHI->reserveOperandSpace(2);
|
2009-11-16 14:50:58 +08:00
|
|
|
PHI->addIncoming(V, NonZeroBlock);
|
|
|
|
PHI->addIncoming(llvm::Constant::getNullValue(LTy), NullBlock);
|
|
|
|
V = PHI;
|
|
|
|
}
|
|
|
|
|
|
|
|
return V;
|
|
|
|
}
|