2009-10-30 09:42:31 +08:00
|
|
|
//===--- CGException.cpp - Emit LLVM Code for C++ exceptions --------------===//
|
|
|
|
//
|
|
|
|
// 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++ exception related code generation.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-11-21 07:44:51 +08:00
|
|
|
#include "clang/AST/StmtCXX.h"
|
|
|
|
|
|
|
|
#include "llvm/Intrinsics.h"
|
|
|
|
|
2009-10-30 09:42:31 +08:00
|
|
|
#include "CodeGenFunction.h"
|
|
|
|
using namespace clang;
|
|
|
|
using namespace CodeGen;
|
|
|
|
|
2009-10-30 10:27:02 +08:00
|
|
|
static llvm::Constant *getAllocateExceptionFn(CodeGenFunction &CGF) {
|
|
|
|
// void *__cxa_allocate_exception(size_t thrown_size);
|
|
|
|
const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
|
|
|
|
std::vector<const llvm::Type*> Args(1, SizeTy);
|
|
|
|
|
|
|
|
const llvm::FunctionType *FTy =
|
|
|
|
llvm::FunctionType::get(llvm::Type::getInt8PtrTy(CGF.getLLVMContext()),
|
|
|
|
Args, false);
|
|
|
|
|
|
|
|
return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_allocate_exception");
|
|
|
|
}
|
|
|
|
|
2009-12-02 15:41:41 +08:00
|
|
|
static llvm::Constant *getFreeExceptionFn(CodeGenFunction &CGF) {
|
|
|
|
// void __cxa_free_exception(void *thrown_exception);
|
|
|
|
const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
|
|
|
|
std::vector<const llvm::Type*> Args(1, Int8PtrTy);
|
|
|
|
|
|
|
|
const llvm::FunctionType *FTy =
|
|
|
|
llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()),
|
|
|
|
Args, false);
|
|
|
|
|
|
|
|
return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_free_exception");
|
|
|
|
}
|
|
|
|
|
2009-10-30 10:27:02 +08:00
|
|
|
static llvm::Constant *getThrowFn(CodeGenFunction &CGF) {
|
2009-12-02 15:41:41 +08:00
|
|
|
// void __cxa_throw(void *thrown_exception, std::type_info *tinfo,
|
|
|
|
// void (*dest) (void *));
|
2009-10-30 10:27:02 +08:00
|
|
|
|
|
|
|
const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
|
|
|
|
std::vector<const llvm::Type*> Args(3, Int8PtrTy);
|
|
|
|
|
|
|
|
const llvm::FunctionType *FTy =
|
2009-11-20 08:56:31 +08:00
|
|
|
llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()),
|
|
|
|
Args, false);
|
2009-10-30 10:27:02 +08:00
|
|
|
|
|
|
|
return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_throw");
|
|
|
|
}
|
|
|
|
|
2009-11-20 08:56:31 +08:00
|
|
|
static llvm::Constant *getReThrowFn(CodeGenFunction &CGF) {
|
2009-12-02 15:41:41 +08:00
|
|
|
// void __cxa_rethrow();
|
2009-11-20 08:56:31 +08:00
|
|
|
|
|
|
|
const llvm::FunctionType *FTy =
|
|
|
|
llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()), false);
|
|
|
|
|
|
|
|
return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_rethrow");
|
|
|
|
}
|
|
|
|
|
2009-11-21 07:44:51 +08:00
|
|
|
static llvm::Constant *getBeginCatchFn(CodeGenFunction &CGF) {
|
2009-12-02 15:41:41 +08:00
|
|
|
// void* __cxa_begin_catch();
|
2009-11-21 07:44:51 +08:00
|
|
|
|
|
|
|
const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
|
|
|
|
std::vector<const llvm::Type*> Args(1, Int8PtrTy);
|
|
|
|
|
|
|
|
const llvm::FunctionType *FTy =
|
2009-12-01 11:41:18 +08:00
|
|
|
llvm::FunctionType::get(Int8PtrTy, Args, false);
|
2009-11-21 07:44:51 +08:00
|
|
|
|
|
|
|
return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_begin_catch");
|
|
|
|
}
|
|
|
|
|
|
|
|
static llvm::Constant *getEndCatchFn(CodeGenFunction &CGF) {
|
2009-12-02 15:41:41 +08:00
|
|
|
// void __cxa_end_catch();
|
2009-11-21 07:44:51 +08:00
|
|
|
|
|
|
|
const llvm::FunctionType *FTy =
|
|
|
|
llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()), false);
|
|
|
|
|
|
|
|
return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_end_catch");
|
|
|
|
}
|
|
|
|
|
2009-12-01 11:41:18 +08:00
|
|
|
// FIXME: Eventually this will all go into the backend. Set from the target for
|
|
|
|
// now.
|
|
|
|
static int using_sjlj_exceptions = 0;
|
|
|
|
|
|
|
|
static llvm::Constant *getUnwindResumeOrRethrowFn(CodeGenFunction &CGF) {
|
|
|
|
const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
|
|
|
|
std::vector<const llvm::Type*> Args(1, Int8PtrTy);
|
|
|
|
|
|
|
|
const llvm::FunctionType *FTy =
|
|
|
|
llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()), Args,
|
|
|
|
false);
|
|
|
|
|
|
|
|
if (using_sjlj_exceptions)
|
|
|
|
return CGF.CGM.CreateRuntimeFunction(FTy, "_Unwind_SjLj_Resume");
|
|
|
|
return CGF.CGM.CreateRuntimeFunction(FTy, "_Unwind_Resume_or_Rethrow");
|
|
|
|
}
|
|
|
|
|
2009-12-02 15:41:41 +08:00
|
|
|
static llvm::Constant *getTerminateFn(CodeGenFunction &CGF) {
|
|
|
|
// void __terminate();
|
|
|
|
|
|
|
|
const llvm::FunctionType *FTy =
|
|
|
|
llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()), false);
|
|
|
|
|
|
|
|
return CGF.CGM.CreateRuntimeFunction(FTy, "_ZSt9terminatev");
|
|
|
|
}
|
|
|
|
|
2009-12-01 11:41:18 +08:00
|
|
|
// CopyObject - Utility to copy an object. Calls copy constructor as necessary.
|
|
|
|
// N is casted to the right type.
|
|
|
|
static void CopyObject(CodeGenFunction &CGF, const Expr *E, llvm::Value *N) {
|
|
|
|
QualType ObjectType = E->getType();
|
|
|
|
|
|
|
|
// Store the throw exception in the exception object.
|
|
|
|
if (!CGF.hasAggregateLLVMType(ObjectType)) {
|
|
|
|
llvm::Value *Value = CGF.EmitScalarExpr(E);
|
|
|
|
const llvm::Type *ValuePtrTy = Value->getType()->getPointerTo(0);
|
|
|
|
|
|
|
|
CGF.Builder.CreateStore(Value, CGF.Builder.CreateBitCast(N, ValuePtrTy));
|
|
|
|
} else {
|
|
|
|
const llvm::Type *Ty = CGF.ConvertType(ObjectType)->getPointerTo(0);
|
|
|
|
const CXXRecordDecl *RD;
|
|
|
|
RD = cast<CXXRecordDecl>(ObjectType->getAs<RecordType>()->getDecl());
|
|
|
|
llvm::Value *This = CGF.Builder.CreateBitCast(N, Ty);
|
|
|
|
if (RD->hasTrivialCopyConstructor()) {
|
|
|
|
CGF.EmitAggExpr(E, This, false);
|
|
|
|
} else if (CXXConstructorDecl *CopyCtor
|
|
|
|
= RD->getCopyConstructor(CGF.getContext(), 0)) {
|
2009-12-02 15:41:41 +08:00
|
|
|
// All temporaries end before we call __cxa_throw
|
2009-12-04 11:55:53 +08:00
|
|
|
// FIXME: Doesn't work well with eh31.C and PopCXXTemporary
|
|
|
|
// CodeGenFunction::CleanupScope TryScope(CGF);
|
2009-12-02 15:41:41 +08:00
|
|
|
{
|
|
|
|
// These actions are only on the exceptional edge.
|
2009-12-04 11:55:53 +08:00
|
|
|
#if 0
|
|
|
|
// FIXME: Doesn't work well with eh31.C and PopCXXTemporary
|
2009-12-02 15:41:41 +08:00
|
|
|
CodeGenFunction::DelayedCleanupBlock Scope(CGF, true);
|
|
|
|
|
|
|
|
llvm::Constant *FreeExceptionFn = getFreeExceptionFn(CGF);
|
|
|
|
const llvm::Type *Int8PtrTy
|
|
|
|
= llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
|
|
|
|
llvm::Value *ExceptionPtr = CGF.Builder.CreateBitCast(N, Int8PtrTy);
|
|
|
|
CGF.Builder.CreateCall(FreeExceptionFn, ExceptionPtr);
|
2009-12-04 11:55:53 +08:00
|
|
|
#endif
|
2009-12-02 15:41:41 +08:00
|
|
|
}
|
|
|
|
|
2009-12-01 11:41:18 +08:00
|
|
|
llvm::Value *Src = CGF.EmitLValue(E).getAddress();
|
|
|
|
|
|
|
|
// Stolen from EmitClassAggrMemberwiseCopy
|
|
|
|
llvm::Value *Callee = CGF.CGM.GetAddrOfCXXConstructor(CopyCtor,
|
|
|
|
Ctor_Complete);
|
|
|
|
CallArgList CallArgs;
|
|
|
|
CallArgs.push_back(std::make_pair(RValue::get(This),
|
|
|
|
CopyCtor->getThisType(CGF.getContext())));
|
|
|
|
|
|
|
|
// Push the Src ptr.
|
|
|
|
CallArgs.push_back(std::make_pair(RValue::get(Src),
|
|
|
|
CopyCtor->getParamDecl(0)->getType()));
|
|
|
|
QualType ResultType =
|
|
|
|
CopyCtor->getType()->getAs<FunctionType>()->getResultType();
|
|
|
|
CGF.EmitCall(CGF.CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
|
|
|
|
Callee, CallArgs, CopyCtor);
|
|
|
|
} else
|
2009-12-02 15:41:41 +08:00
|
|
|
llvm::llvm_unreachable("uncopyable object");
|
2009-12-01 11:41:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// CopyObject - Utility to copy an object. Calls copy constructor as necessary.
|
|
|
|
// N is casted to the right type.
|
|
|
|
static void CopyObject(CodeGenFunction &CGF, QualType ObjectType,
|
2009-12-04 06:38:15 +08:00
|
|
|
bool WasPointer, llvm::Value *E, llvm::Value *N) {
|
2009-12-01 11:41:18 +08:00
|
|
|
// Store the throw exception in the exception object.
|
|
|
|
if (!CGF.hasAggregateLLVMType(ObjectType)) {
|
|
|
|
llvm::Value *Value = E;
|
2009-12-04 06:38:15 +08:00
|
|
|
if (!WasPointer)
|
|
|
|
Value = CGF.Builder.CreateLoad(Value);
|
2009-12-01 11:41:18 +08:00
|
|
|
const llvm::Type *ValuePtrTy = Value->getType()->getPointerTo(0);
|
|
|
|
CGF.Builder.CreateStore(Value, CGF.Builder.CreateBitCast(N, ValuePtrTy));
|
|
|
|
} else {
|
|
|
|
const llvm::Type *Ty = CGF.ConvertType(ObjectType)->getPointerTo(0);
|
|
|
|
const CXXRecordDecl *RD;
|
|
|
|
RD = cast<CXXRecordDecl>(ObjectType->getAs<RecordType>()->getDecl());
|
|
|
|
llvm::Value *This = CGF.Builder.CreateBitCast(N, Ty);
|
|
|
|
if (RD->hasTrivialCopyConstructor()) {
|
|
|
|
CGF.EmitAggregateCopy(This, E, ObjectType);
|
|
|
|
} else if (CXXConstructorDecl *CopyCtor
|
|
|
|
= RD->getCopyConstructor(CGF.getContext(), 0)) {
|
|
|
|
llvm::Value *Src = E;
|
|
|
|
|
|
|
|
// Stolen from EmitClassAggrMemberwiseCopy
|
|
|
|
llvm::Value *Callee = CGF.CGM.GetAddrOfCXXConstructor(CopyCtor,
|
|
|
|
Ctor_Complete);
|
|
|
|
CallArgList CallArgs;
|
|
|
|
CallArgs.push_back(std::make_pair(RValue::get(This),
|
|
|
|
CopyCtor->getThisType(CGF.getContext())));
|
|
|
|
|
|
|
|
// Push the Src ptr.
|
|
|
|
CallArgs.push_back(std::make_pair(RValue::get(Src),
|
|
|
|
CopyCtor->getParamDecl(0)->getType()));
|
|
|
|
QualType ResultType =
|
|
|
|
CopyCtor->getType()->getAs<FunctionType>()->getResultType();
|
|
|
|
CGF.EmitCall(CGF.CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
|
|
|
|
Callee, CallArgs, CopyCtor);
|
|
|
|
} else
|
|
|
|
llvm::llvm_unreachable("uncopyable object");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-30 09:42:31 +08:00
|
|
|
void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E) {
|
2009-10-30 10:27:02 +08:00
|
|
|
if (!E->getSubExpr()) {
|
2009-12-04 09:51:45 +08:00
|
|
|
if (getInvokeDest()) {
|
|
|
|
llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
|
|
|
|
Builder.CreateInvoke(getReThrowFn(*this), Cont, getInvokeDest())
|
|
|
|
->setDoesNotReturn();
|
|
|
|
EmitBlock(Cont);
|
|
|
|
} else
|
|
|
|
Builder.CreateCall(getReThrowFn(*this))->setDoesNotReturn();
|
2009-11-20 08:56:31 +08:00
|
|
|
Builder.CreateUnreachable();
|
|
|
|
|
|
|
|
// Clear the insertion point to indicate we are in unreachable code.
|
|
|
|
Builder.ClearInsertionPoint();
|
2009-10-30 10:27:02 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QualType ThrowType = E->getSubExpr()->getType();
|
|
|
|
|
|
|
|
// Now allocate the exception object.
|
|
|
|
const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
|
|
|
|
uint64_t TypeSize = getContext().getTypeSize(ThrowType) / 8;
|
|
|
|
|
|
|
|
llvm::Constant *AllocExceptionFn = getAllocateExceptionFn(*this);
|
|
|
|
llvm::Value *ExceptionPtr =
|
|
|
|
Builder.CreateCall(AllocExceptionFn,
|
|
|
|
llvm::ConstantInt::get(SizeTy, TypeSize),
|
|
|
|
"exception");
|
|
|
|
|
2009-12-01 11:41:18 +08:00
|
|
|
CopyObject(*this, E->getSubExpr(), ExceptionPtr);
|
2009-10-30 10:27:02 +08:00
|
|
|
|
|
|
|
// Now throw the exception.
|
|
|
|
const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(getLLVMContext());
|
2009-12-03 02:57:08 +08:00
|
|
|
llvm::Constant *TypeInfo = CGM.GenerateRTTI(ThrowType);
|
2009-10-30 10:27:02 +08:00
|
|
|
llvm::Constant *Dtor = llvm::Constant::getNullValue(Int8PtrTy);
|
|
|
|
|
2009-12-04 09:51:45 +08:00
|
|
|
if (getInvokeDest()) {
|
|
|
|
llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
|
|
|
|
llvm::InvokeInst *ThrowCall =
|
|
|
|
Builder.CreateInvoke3(getThrowFn(*this), Cont, getInvokeDest(),
|
|
|
|
ExceptionPtr, TypeInfo, Dtor);
|
|
|
|
ThrowCall->setDoesNotReturn();
|
|
|
|
EmitBlock(Cont);
|
|
|
|
} else {
|
|
|
|
llvm::CallInst *ThrowCall =
|
|
|
|
Builder.CreateCall3(getThrowFn(*this), ExceptionPtr, TypeInfo, Dtor);
|
|
|
|
ThrowCall->setDoesNotReturn();
|
|
|
|
}
|
2009-10-30 10:27:02 +08:00
|
|
|
Builder.CreateUnreachable();
|
|
|
|
|
|
|
|
// Clear the insertion point to indicate we are in unreachable code.
|
|
|
|
Builder.ClearInsertionPoint();
|
2009-10-30 09:42:31 +08:00
|
|
|
}
|
2009-11-21 07:44:51 +08:00
|
|
|
|
|
|
|
void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) {
|
2009-12-04 11:57:07 +08:00
|
|
|
if (0) {
|
2009-12-03 02:20:18 +08:00
|
|
|
EmitStmt(S.getTryBlock());
|
|
|
|
return;
|
2009-12-01 11:41:18 +08:00
|
|
|
}
|
|
|
|
// FIXME: The below is still just a sketch of the code we need.
|
2009-11-21 07:44:51 +08:00
|
|
|
// Pointer to the personality function
|
|
|
|
llvm::Constant *Personality =
|
|
|
|
CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::getInt32Ty
|
|
|
|
(VMContext),
|
|
|
|
true),
|
|
|
|
"__gxx_personality_v0");
|
|
|
|
Personality = llvm::ConstantExpr::getBitCast(Personality, PtrToInt8Ty);
|
2009-12-03 03:53:57 +08:00
|
|
|
llvm::Value *llvm_eh_exception =
|
|
|
|
CGM.getIntrinsic(llvm::Intrinsic::eh_exception);
|
|
|
|
llvm::Value *llvm_eh_selector =
|
|
|
|
CGM.getIntrinsic(llvm::Intrinsic::eh_selector);
|
2009-11-21 07:44:51 +08:00
|
|
|
|
|
|
|
llvm::BasicBlock *PrevLandingPad = getInvokeDest();
|
|
|
|
llvm::BasicBlock *TryHandler = createBasicBlock("try.handler");
|
|
|
|
llvm::BasicBlock *FinallyBlock = createBasicBlock("finally");
|
2009-12-01 11:41:18 +08:00
|
|
|
llvm::BasicBlock *FinallyRethrow = createBasicBlock("finally.throw");
|
2009-11-21 07:44:51 +08:00
|
|
|
llvm::BasicBlock *FinallyEnd = createBasicBlock("finally.end");
|
|
|
|
|
|
|
|
// Push an EH context entry, used for handling rethrows.
|
|
|
|
PushCleanupBlock(FinallyBlock);
|
|
|
|
|
|
|
|
// Emit the statements in the try {} block
|
|
|
|
setInvokeDest(TryHandler);
|
|
|
|
|
|
|
|
EmitStmt(S.getTryBlock());
|
|
|
|
|
|
|
|
// Jump to end if there is no exception
|
|
|
|
EmitBranchThroughCleanup(FinallyEnd);
|
|
|
|
|
2009-12-03 03:53:57 +08:00
|
|
|
// Set up terminate handler
|
|
|
|
llvm::BasicBlock *TerminateHandler = createBasicBlock("terminate.handler");
|
|
|
|
EmitBlock(TerminateHandler);
|
|
|
|
llvm::Value *Exc = Builder.CreateCall(llvm_eh_exception, "exc");
|
|
|
|
// We are required to emit this call to satisfy LLVM, even
|
|
|
|
// though we don't use the result.
|
|
|
|
llvm::SmallVector<llvm::Value*, 8> Args;
|
|
|
|
Args.clear();
|
|
|
|
Args.push_back(Exc);
|
|
|
|
Args.push_back(Personality);
|
|
|
|
Args.push_back(llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext),
|
|
|
|
0));
|
|
|
|
Builder.CreateCall(llvm_eh_selector, Args.begin(), Args.end());
|
|
|
|
llvm::CallInst *TerminateCall =
|
|
|
|
Builder.CreateCall(getTerminateFn(*this));
|
|
|
|
TerminateCall->setDoesNotReturn();
|
|
|
|
TerminateCall->setDoesNotThrow();
|
|
|
|
Builder.CreateUnreachable();
|
|
|
|
|
|
|
|
// Clear the insertion point to indicate we are in unreachable code.
|
|
|
|
Builder.ClearInsertionPoint();
|
|
|
|
|
2009-11-21 07:44:51 +08:00
|
|
|
// Emit the handlers
|
|
|
|
EmitBlock(TryHandler);
|
|
|
|
|
|
|
|
const llvm::IntegerType *Int8Ty;
|
|
|
|
const llvm::PointerType *PtrToInt8Ty;
|
|
|
|
Int8Ty = llvm::Type::getInt8Ty(VMContext);
|
|
|
|
// C string type. Used in lots of places.
|
|
|
|
PtrToInt8Ty = llvm::PointerType::getUnqual(Int8Ty);
|
2009-12-01 11:41:18 +08:00
|
|
|
llvm::Constant *Null = llvm::ConstantPointerNull::get(PtrToInt8Ty);
|
|
|
|
llvm::SmallVector<llvm::Value*, 8> SelectorArgs;
|
|
|
|
llvm::Value *llvm_eh_typeid_for =
|
|
|
|
CGM.getIntrinsic(llvm::Intrinsic::eh_typeid_for);
|
2009-11-21 07:44:51 +08:00
|
|
|
// Exception object
|
2009-12-03 03:53:57 +08:00
|
|
|
Exc = Builder.CreateCall(llvm_eh_exception, "exc");
|
2009-12-01 11:41:18 +08:00
|
|
|
llvm::Value *RethrowPtr = CreateTempAlloca(Exc->getType(), "_rethrow");
|
2009-11-21 07:44:51 +08:00
|
|
|
|
2009-12-03 03:53:57 +08:00
|
|
|
Args.clear();
|
2009-12-01 11:41:18 +08:00
|
|
|
SelectorArgs.push_back(Exc);
|
|
|
|
SelectorArgs.push_back(Personality);
|
2009-11-21 07:44:51 +08:00
|
|
|
|
2009-12-01 11:41:18 +08:00
|
|
|
bool HasCatchAll = false;
|
2009-11-21 07:44:51 +08:00
|
|
|
for (unsigned i = 0; i<S.getNumHandlers(); ++i) {
|
|
|
|
const CXXCatchStmt *C = S.getHandler(i);
|
2009-12-01 11:41:18 +08:00
|
|
|
VarDecl *CatchParam = C->getExceptionDecl();
|
|
|
|
if (CatchParam) {
|
2009-12-03 02:57:08 +08:00
|
|
|
llvm::Value *EHType
|
|
|
|
= CGM.GenerateRTTI(C->getCaughtType().getNonReferenceType());
|
2009-12-01 11:41:18 +08:00
|
|
|
SelectorArgs.push_back(EHType);
|
2009-11-21 07:44:51 +08:00
|
|
|
} else {
|
|
|
|
// null indicates catch all
|
2009-12-01 11:41:18 +08:00
|
|
|
SelectorArgs.push_back(Null);
|
|
|
|
HasCatchAll = true;
|
2009-11-21 07:44:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-01 11:41:18 +08:00
|
|
|
// We use a cleanup unless there was already a catch all.
|
|
|
|
if (!HasCatchAll) {
|
|
|
|
SelectorArgs.push_back(Null);
|
|
|
|
}
|
2009-11-21 07:44:51 +08:00
|
|
|
|
2009-12-01 11:41:18 +08:00
|
|
|
// Find which handler was matched.
|
|
|
|
llvm::Value *Selector
|
|
|
|
= Builder.CreateCall(llvm_eh_selector, SelectorArgs.begin(),
|
|
|
|
SelectorArgs.end(), "selector");
|
2009-11-21 07:44:51 +08:00
|
|
|
for (unsigned i = 0; i<S.getNumHandlers(); ++i) {
|
|
|
|
const CXXCatchStmt *C = S.getHandler(i);
|
2009-12-01 11:41:18 +08:00
|
|
|
VarDecl *CatchParam = C->getExceptionDecl();
|
|
|
|
Stmt *CatchBody = C->getHandlerBlock();
|
|
|
|
|
|
|
|
llvm::BasicBlock *Next = 0;
|
|
|
|
|
|
|
|
if (SelectorArgs[i+2] != Null) {
|
|
|
|
llvm::BasicBlock *Match = createBasicBlock("match");
|
|
|
|
Next = createBasicBlock("catch.next");
|
|
|
|
const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(getLLVMContext());
|
|
|
|
llvm::Value *Id
|
|
|
|
= Builder.CreateCall(llvm_eh_typeid_for,
|
|
|
|
Builder.CreateBitCast(SelectorArgs[i+2],
|
|
|
|
Int8PtrTy));
|
|
|
|
Builder.CreateCondBr(Builder.CreateICmpEQ(Selector, Id),
|
|
|
|
Match, Next);
|
|
|
|
EmitBlock(Match);
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::BasicBlock *MatchEnd = createBasicBlock("match.end");
|
|
|
|
llvm::BasicBlock *MatchHandler = createBasicBlock("match.handler");
|
|
|
|
|
|
|
|
PushCleanupBlock(MatchEnd);
|
|
|
|
setInvokeDest(MatchHandler);
|
|
|
|
|
|
|
|
llvm::Value *ExcObject = Builder.CreateCall(getBeginCatchFn(*this), Exc);
|
|
|
|
|
2009-12-03 07:37:16 +08:00
|
|
|
{
|
|
|
|
CleanupScope CatchScope(*this);
|
|
|
|
// Bind the catch parameter if it exists.
|
|
|
|
if (CatchParam) {
|
|
|
|
QualType CatchType = CatchParam->getType().getNonReferenceType();
|
|
|
|
setInvokeDest(TerminateHandler);
|
2009-12-04 06:38:15 +08:00
|
|
|
bool WasPointer = true;
|
|
|
|
if (!CatchType.getTypePtr()->isPointerType()) {
|
2009-12-04 09:51:45 +08:00
|
|
|
if (!isa<ReferenceType>(CatchParam->getType()))
|
|
|
|
WasPointer = false;
|
2009-12-03 07:37:16 +08:00
|
|
|
CatchType = getContext().getPointerType(CatchType);
|
2009-12-04 06:38:15 +08:00
|
|
|
}
|
2009-12-03 07:37:16 +08:00
|
|
|
ExcObject = Builder.CreateBitCast(ExcObject, ConvertType(CatchType));
|
|
|
|
EmitLocalBlockVarDecl(*CatchParam);
|
2009-12-01 11:41:18 +08:00
|
|
|
#if 0
|
2009-12-03 07:37:16 +08:00
|
|
|
// FIXME: objects with ctors, references
|
|
|
|
Builder.CreateStore(ExcObject, GetAddrOfLocalVar(CatchParam));
|
2009-12-01 11:41:18 +08:00
|
|
|
#else
|
2009-12-03 11:40:14 +08:00
|
|
|
// FIXME: we need to do this sooner so that the EH region for the
|
|
|
|
// cleanup doesn't start until after the ctor completes, use a decl
|
|
|
|
// init?
|
2009-12-03 07:37:16 +08:00
|
|
|
CopyObject(*this, CatchParam->getType().getNonReferenceType(),
|
2009-12-04 06:38:15 +08:00
|
|
|
WasPointer, ExcObject, GetAddrOfLocalVar(CatchParam));
|
2009-12-01 11:41:18 +08:00
|
|
|
#endif
|
2009-12-03 07:37:16 +08:00
|
|
|
setInvokeDest(MatchHandler);
|
|
|
|
}
|
|
|
|
|
|
|
|
EmitStmt(CatchBody);
|
2009-12-01 11:41:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
EmitBranchThroughCleanup(FinallyEnd);
|
|
|
|
|
|
|
|
EmitBlock(MatchHandler);
|
|
|
|
|
|
|
|
llvm::Value *Exc = Builder.CreateCall(llvm_eh_exception, "exc");
|
|
|
|
// We are required to emit this call to satisfy LLVM, even
|
|
|
|
// though we don't use the result.
|
2009-12-03 03:53:57 +08:00
|
|
|
Args.clear();
|
2009-12-01 11:41:18 +08:00
|
|
|
Args.push_back(Exc);
|
|
|
|
Args.push_back(Personality);
|
|
|
|
Args.push_back(llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext),
|
|
|
|
0));
|
|
|
|
Builder.CreateCall(llvm_eh_selector, Args.begin(), Args.end());
|
|
|
|
Builder.CreateStore(Exc, RethrowPtr);
|
|
|
|
EmitBranchThroughCleanup(FinallyRethrow);
|
|
|
|
|
|
|
|
CodeGenFunction::CleanupBlockInfo Info = PopCleanupBlock();
|
|
|
|
|
|
|
|
EmitBlock(MatchEnd);
|
|
|
|
|
2009-12-02 15:41:41 +08:00
|
|
|
llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
|
2009-12-01 11:41:18 +08:00
|
|
|
Builder.CreateInvoke(getEndCatchFn(*this),
|
2009-12-02 15:41:41 +08:00
|
|
|
Cont, TerminateHandler,
|
2009-12-01 11:41:18 +08:00
|
|
|
Args.begin(), Args.begin());
|
|
|
|
EmitBlock(Cont);
|
|
|
|
if (Info.SwitchBlock)
|
|
|
|
EmitBlock(Info.SwitchBlock);
|
|
|
|
if (Info.EndBlock)
|
|
|
|
EmitBlock(Info.EndBlock);
|
|
|
|
|
|
|
|
Exc = Builder.CreateCall(llvm_eh_exception, "exc");
|
|
|
|
Builder.CreateStore(Exc, RethrowPtr);
|
|
|
|
EmitBranchThroughCleanup(FinallyRethrow);
|
|
|
|
|
|
|
|
if (Next)
|
|
|
|
EmitBlock(Next);
|
|
|
|
}
|
|
|
|
if (!HasCatchAll)
|
|
|
|
EmitBranchThroughCleanup(FinallyRethrow);
|
2009-11-21 07:44:51 +08:00
|
|
|
|
|
|
|
CodeGenFunction::CleanupBlockInfo Info = PopCleanupBlock();
|
|
|
|
|
|
|
|
setInvokeDest(PrevLandingPad);
|
|
|
|
|
|
|
|
EmitBlock(FinallyBlock);
|
|
|
|
|
2009-12-01 11:41:18 +08:00
|
|
|
if (Info.SwitchBlock)
|
|
|
|
EmitBlock(Info.SwitchBlock);
|
|
|
|
if (Info.EndBlock)
|
|
|
|
EmitBlock(Info.EndBlock);
|
|
|
|
|
2009-11-21 07:44:51 +08:00
|
|
|
// Branch around the rethrow code.
|
|
|
|
EmitBranch(FinallyEnd);
|
|
|
|
|
|
|
|
EmitBlock(FinallyRethrow);
|
2009-12-01 11:41:18 +08:00
|
|
|
Builder.CreateCall(getUnwindResumeOrRethrowFn(*this),
|
|
|
|
Builder.CreateLoad(RethrowPtr));
|
2009-11-21 07:44:51 +08:00
|
|
|
Builder.CreateUnreachable();
|
|
|
|
|
|
|
|
EmitBlock(FinallyEnd);
|
|
|
|
}
|