blob: bcb59f5f97c672c9936d52f3c3a4edf346dbaadd [file] [log] [blame]
Anders Carlsson4b08db72009-10-30 01:42:31 +00001//===--- CGException.cpp - Emit LLVM Code for C++ exceptions --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This contains code dealing with C++ exception related code generation.
11//
12//===----------------------------------------------------------------------===//
13
Mike Stump58ef18b2009-11-20 23:44:51 +000014#include "clang/AST/StmtCXX.h"
15
16#include "llvm/Intrinsics.h"
17
Anders Carlsson4b08db72009-10-30 01:42:31 +000018#include "CodeGenFunction.h"
19using namespace clang;
20using namespace CodeGen;
21
Anders Carlsson32e1b1c2009-10-30 02:27:02 +000022static llvm::Constant *getAllocateExceptionFn(CodeGenFunction &CGF) {
23 // void *__cxa_allocate_exception(size_t thrown_size);
24 const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
25 std::vector<const llvm::Type*> Args(1, SizeTy);
26
27 const llvm::FunctionType *FTy =
28 llvm::FunctionType::get(llvm::Type::getInt8PtrTy(CGF.getLLVMContext()),
29 Args, false);
30
31 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_allocate_exception");
32}
33
Mike Stump33270212009-12-02 07:41:41 +000034static llvm::Constant *getFreeExceptionFn(CodeGenFunction &CGF) {
35 // void __cxa_free_exception(void *thrown_exception);
36 const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
37 std::vector<const llvm::Type*> Args(1, Int8PtrTy);
38
39 const llvm::FunctionType *FTy =
40 llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()),
41 Args, false);
42
43 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_free_exception");
44}
45
Anders Carlsson32e1b1c2009-10-30 02:27:02 +000046static llvm::Constant *getThrowFn(CodeGenFunction &CGF) {
Mike Stump33270212009-12-02 07:41:41 +000047 // void __cxa_throw(void *thrown_exception, std::type_info *tinfo,
48 // void (*dest) (void *));
Anders Carlsson32e1b1c2009-10-30 02:27:02 +000049
50 const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
51 std::vector<const llvm::Type*> Args(3, Int8PtrTy);
52
53 const llvm::FunctionType *FTy =
Mike Stumpd1782cc2009-11-20 00:56:31 +000054 llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()),
55 Args, false);
Anders Carlsson32e1b1c2009-10-30 02:27:02 +000056
57 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_throw");
58}
59
Mike Stumpd1782cc2009-11-20 00:56:31 +000060static llvm::Constant *getReThrowFn(CodeGenFunction &CGF) {
Mike Stump33270212009-12-02 07:41:41 +000061 // void __cxa_rethrow();
Mike Stumpd1782cc2009-11-20 00:56:31 +000062
63 const llvm::FunctionType *FTy =
64 llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()), false);
65
66 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_rethrow");
67}
68
Mike Stump58ef18b2009-11-20 23:44:51 +000069static llvm::Constant *getBeginCatchFn(CodeGenFunction &CGF) {
Mike Stump33270212009-12-02 07:41:41 +000070 // void* __cxa_begin_catch();
Mike Stump58ef18b2009-11-20 23:44:51 +000071
72 const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
73 std::vector<const llvm::Type*> Args(1, Int8PtrTy);
74
75 const llvm::FunctionType *FTy =
Mike Stump54066142009-12-01 03:41:18 +000076 llvm::FunctionType::get(Int8PtrTy, Args, false);
Mike Stump58ef18b2009-11-20 23:44:51 +000077
78 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_begin_catch");
79}
80
81static llvm::Constant *getEndCatchFn(CodeGenFunction &CGF) {
Mike Stump33270212009-12-02 07:41:41 +000082 // void __cxa_end_catch();
Mike Stump58ef18b2009-11-20 23:44:51 +000083
84 const llvm::FunctionType *FTy =
85 llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()), false);
86
87 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_end_catch");
88}
89
Mike Stump1d849212009-12-07 23:38:24 +000090static llvm::Constant *getUnexpectedFn(CodeGenFunction &CGF) {
91 // void __cxa_call_unexepcted(void *thrown_exception);
92
93 const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
94 std::vector<const llvm::Type*> Args(1, Int8PtrTy);
95
96 const llvm::FunctionType *FTy =
97 llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()),
98 Args, false);
99
100 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_call_unexpected");
101}
102
Mike Stump54066142009-12-01 03:41:18 +0000103// FIXME: Eventually this will all go into the backend. Set from the target for
104// now.
105static int using_sjlj_exceptions = 0;
106
107static llvm::Constant *getUnwindResumeOrRethrowFn(CodeGenFunction &CGF) {
108 const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
109 std::vector<const llvm::Type*> Args(1, Int8PtrTy);
110
111 const llvm::FunctionType *FTy =
112 llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()), Args,
113 false);
114
115 if (using_sjlj_exceptions)
116 return CGF.CGM.CreateRuntimeFunction(FTy, "_Unwind_SjLj_Resume");
117 return CGF.CGM.CreateRuntimeFunction(FTy, "_Unwind_Resume_or_Rethrow");
118}
119
Mike Stump33270212009-12-02 07:41:41 +0000120static llvm::Constant *getTerminateFn(CodeGenFunction &CGF) {
121 // void __terminate();
122
123 const llvm::FunctionType *FTy =
124 llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()), false);
125
126 return CGF.CGM.CreateRuntimeFunction(FTy, "_ZSt9terminatev");
127}
128
Mike Stump54066142009-12-01 03:41:18 +0000129// CopyObject - Utility to copy an object. Calls copy constructor as necessary.
130// N is casted to the right type.
131static void CopyObject(CodeGenFunction &CGF, const Expr *E, llvm::Value *N) {
132 QualType ObjectType = E->getType();
133
134 // Store the throw exception in the exception object.
135 if (!CGF.hasAggregateLLVMType(ObjectType)) {
136 llvm::Value *Value = CGF.EmitScalarExpr(E);
137 const llvm::Type *ValuePtrTy = Value->getType()->getPointerTo(0);
138
139 CGF.Builder.CreateStore(Value, CGF.Builder.CreateBitCast(N, ValuePtrTy));
140 } else {
141 const llvm::Type *Ty = CGF.ConvertType(ObjectType)->getPointerTo(0);
142 const CXXRecordDecl *RD;
143 RD = cast<CXXRecordDecl>(ObjectType->getAs<RecordType>()->getDecl());
144 llvm::Value *This = CGF.Builder.CreateBitCast(N, Ty);
145 if (RD->hasTrivialCopyConstructor()) {
146 CGF.EmitAggExpr(E, This, false);
147 } else if (CXXConstructorDecl *CopyCtor
148 = RD->getCopyConstructor(CGF.getContext(), 0)) {
Mike Stump33270212009-12-02 07:41:41 +0000149 // All temporaries end before we call __cxa_throw
Mike Stump2ab55762009-12-04 03:55:53 +0000150 // FIXME: Doesn't work well with eh31.C and PopCXXTemporary
151 // CodeGenFunction::CleanupScope TryScope(CGF);
Mike Stump33270212009-12-02 07:41:41 +0000152 {
153 // These actions are only on the exceptional edge.
Mike Stump5c820752009-12-04 19:03:47 +0000154 if (0) {
Mike Stump2ab55762009-12-04 03:55:53 +0000155 // FIXME: Doesn't work well with eh31.C and PopCXXTemporary
Mike Stump33270212009-12-02 07:41:41 +0000156 CodeGenFunction::DelayedCleanupBlock Scope(CGF, true);
157
158 llvm::Constant *FreeExceptionFn = getFreeExceptionFn(CGF);
159 const llvm::Type *Int8PtrTy
160 = llvm::Type::getInt8PtrTy(CGF.getLLVMContext());
161 llvm::Value *ExceptionPtr = CGF.Builder.CreateBitCast(N, Int8PtrTy);
162 CGF.Builder.CreateCall(FreeExceptionFn, ExceptionPtr);
Mike Stump5c820752009-12-04 19:03:47 +0000163 }
Mike Stump33270212009-12-02 07:41:41 +0000164 }
165
Mike Stump54066142009-12-01 03:41:18 +0000166 llvm::Value *Src = CGF.EmitLValue(E).getAddress();
167
168 // Stolen from EmitClassAggrMemberwiseCopy
169 llvm::Value *Callee = CGF.CGM.GetAddrOfCXXConstructor(CopyCtor,
170 Ctor_Complete);
171 CallArgList CallArgs;
172 CallArgs.push_back(std::make_pair(RValue::get(This),
173 CopyCtor->getThisType(CGF.getContext())));
174
175 // Push the Src ptr.
176 CallArgs.push_back(std::make_pair(RValue::get(Src),
177 CopyCtor->getParamDecl(0)->getType()));
178 QualType ResultType =
179 CopyCtor->getType()->getAs<FunctionType>()->getResultType();
180 CGF.EmitCall(CGF.CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
181 Callee, CallArgs, CopyCtor);
Mike Stump54066142009-12-01 03:41:18 +0000182 } else
Mike Stump33270212009-12-02 07:41:41 +0000183 llvm::llvm_unreachable("uncopyable object");
Mike Stump54066142009-12-01 03:41:18 +0000184 }
185}
186
187// CopyObject - Utility to copy an object. Calls copy constructor as necessary.
188// N is casted to the right type.
189static void CopyObject(CodeGenFunction &CGF, QualType ObjectType,
Mike Stump7398ff02009-12-03 22:38:15 +0000190 bool WasPointer, llvm::Value *E, llvm::Value *N) {
Mike Stump54066142009-12-01 03:41:18 +0000191 // Store the throw exception in the exception object.
Mike Stump02c23d62009-12-08 01:29:31 +0000192 if (WasPointer || !CGF.hasAggregateLLVMType(ObjectType)) {
Mike Stump54066142009-12-01 03:41:18 +0000193 llvm::Value *Value = E;
Mike Stump7398ff02009-12-03 22:38:15 +0000194 if (!WasPointer)
195 Value = CGF.Builder.CreateLoad(Value);
Mike Stump54066142009-12-01 03:41:18 +0000196 const llvm::Type *ValuePtrTy = Value->getType()->getPointerTo(0);
Mike Stump54066142009-12-01 03:41:18 +0000197 CGF.Builder.CreateStore(Value, CGF.Builder.CreateBitCast(N, ValuePtrTy));
198 } else {
199 const llvm::Type *Ty = CGF.ConvertType(ObjectType)->getPointerTo(0);
200 const CXXRecordDecl *RD;
201 RD = cast<CXXRecordDecl>(ObjectType->getAs<RecordType>()->getDecl());
202 llvm::Value *This = CGF.Builder.CreateBitCast(N, Ty);
203 if (RD->hasTrivialCopyConstructor()) {
204 CGF.EmitAggregateCopy(This, E, ObjectType);
205 } else if (CXXConstructorDecl *CopyCtor
206 = RD->getCopyConstructor(CGF.getContext(), 0)) {
Mike Stump54066142009-12-01 03:41:18 +0000207 llvm::Value *Src = E;
208
209 // Stolen from EmitClassAggrMemberwiseCopy
210 llvm::Value *Callee = CGF.CGM.GetAddrOfCXXConstructor(CopyCtor,
211 Ctor_Complete);
212 CallArgList CallArgs;
213 CallArgs.push_back(std::make_pair(RValue::get(This),
214 CopyCtor->getThisType(CGF.getContext())));
215
216 // Push the Src ptr.
217 CallArgs.push_back(std::make_pair(RValue::get(Src),
218 CopyCtor->getParamDecl(0)->getType()));
219 QualType ResultType =
220 CopyCtor->getType()->getAs<FunctionType>()->getResultType();
221 CGF.EmitCall(CGF.CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
222 Callee, CallArgs, CopyCtor);
Mike Stump54066142009-12-01 03:41:18 +0000223 } else
224 llvm::llvm_unreachable("uncopyable object");
225 }
226}
227
Anders Carlsson4b08db72009-10-30 01:42:31 +0000228void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E) {
Anders Carlsson32e1b1c2009-10-30 02:27:02 +0000229 if (!E->getSubExpr()) {
Mike Stump114ab9f2009-12-04 01:51:45 +0000230 if (getInvokeDest()) {
231 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
232 Builder.CreateInvoke(getReThrowFn(*this), Cont, getInvokeDest())
233 ->setDoesNotReturn();
234 EmitBlock(Cont);
235 } else
236 Builder.CreateCall(getReThrowFn(*this))->setDoesNotReturn();
Mike Stumpd1782cc2009-11-20 00:56:31 +0000237 Builder.CreateUnreachable();
238
239 // Clear the insertion point to indicate we are in unreachable code.
240 Builder.ClearInsertionPoint();
Anders Carlsson32e1b1c2009-10-30 02:27:02 +0000241 return;
242 }
243
244 QualType ThrowType = E->getSubExpr()->getType();
Anders Carlsson32e1b1c2009-10-30 02:27:02 +0000245
246 // Now allocate the exception object.
247 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
248 uint64_t TypeSize = getContext().getTypeSize(ThrowType) / 8;
249
250 llvm::Constant *AllocExceptionFn = getAllocateExceptionFn(*this);
251 llvm::Value *ExceptionPtr =
252 Builder.CreateCall(AllocExceptionFn,
253 llvm::ConstantInt::get(SizeTy, TypeSize),
254 "exception");
255
Mike Stump4a6b3372009-12-08 22:12:48 +0000256 // FIXME: terminate protect this
Mike Stump54066142009-12-01 03:41:18 +0000257 CopyObject(*this, E->getSubExpr(), ExceptionPtr);
Anders Carlsson32e1b1c2009-10-30 02:27:02 +0000258
259 // Now throw the exception.
260 const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(getLLVMContext());
Mike Stumpc01c2b82009-12-02 18:57:08 +0000261 llvm::Constant *TypeInfo = CGM.GenerateRTTI(ThrowType);
Anders Carlsson32e1b1c2009-10-30 02:27:02 +0000262 llvm::Constant *Dtor = llvm::Constant::getNullValue(Int8PtrTy);
263
Mike Stump114ab9f2009-12-04 01:51:45 +0000264 if (getInvokeDest()) {
265 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
266 llvm::InvokeInst *ThrowCall =
267 Builder.CreateInvoke3(getThrowFn(*this), Cont, getInvokeDest(),
268 ExceptionPtr, TypeInfo, Dtor);
269 ThrowCall->setDoesNotReturn();
270 EmitBlock(Cont);
271 } else {
272 llvm::CallInst *ThrowCall =
273 Builder.CreateCall3(getThrowFn(*this), ExceptionPtr, TypeInfo, Dtor);
274 ThrowCall->setDoesNotReturn();
275 }
Anders Carlsson32e1b1c2009-10-30 02:27:02 +0000276 Builder.CreateUnreachable();
277
278 // Clear the insertion point to indicate we are in unreachable code.
279 Builder.ClearInsertionPoint();
Mike Stump62afe992009-12-07 20:12:14 +0000280
281 // FIXME: For now, emit a dummy basic block because expr emitters in generally
282 // are not ready to handle emitting expressions at unreachable points.
283 EnsureInsertPoint();
Anders Carlsson4b08db72009-10-30 01:42:31 +0000284}
Mike Stump58ef18b2009-11-20 23:44:51 +0000285
Mike Stump1d849212009-12-07 23:38:24 +0000286void CodeGenFunction::EmitStartEHSpec(const Decl *D) {
287 const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
288 if (FD == 0)
289 return;
290 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
291 if (Proto == 0)
292 return;
293
294 assert(!Proto->hasAnyExceptionSpec() && "function with parameter pack");
295
296 if (!Proto->hasExceptionSpec())
297 return;
298
299 llvm::Constant *Personality =
300 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::getInt32Ty
301 (VMContext),
302 true),
303 "__gxx_personality_v0");
304 Personality = llvm::ConstantExpr::getBitCast(Personality, PtrToInt8Ty);
305 llvm::Value *llvm_eh_exception =
306 CGM.getIntrinsic(llvm::Intrinsic::eh_exception);
307 llvm::Value *llvm_eh_selector =
308 CGM.getIntrinsic(llvm::Intrinsic::eh_selector);
309 const llvm::IntegerType *Int8Ty;
310 const llvm::PointerType *PtrToInt8Ty;
311 Int8Ty = llvm::Type::getInt8Ty(VMContext);
312 // C string type. Used in lots of places.
313 PtrToInt8Ty = llvm::PointerType::getUnqual(Int8Ty);
314 llvm::Constant *Null = llvm::ConstantPointerNull::get(PtrToInt8Ty);
315 llvm::SmallVector<llvm::Value*, 8> SelectorArgs;
316
317 llvm::BasicBlock *PrevLandingPad = getInvokeDest();
318 llvm::BasicBlock *EHSpecHandler = createBasicBlock("ehspec.handler");
319 llvm::BasicBlock *Match = createBasicBlock("match");
320 llvm::BasicBlock *Unwind = 0;
321
322 assert(PrevLandingPad == 0 && "EHSpec has invoke context");
323
324 llvm::BasicBlock *Cont = createBasicBlock("cont");
325
326 EmitBranchThroughCleanup(Cont);
327
328 // Emit the statements in the try {} block
329 setInvokeDest(EHSpecHandler);
330
331 EmitBlock(EHSpecHandler);
332 // Exception object
333 llvm::Value *Exc = Builder.CreateCall(llvm_eh_exception, "exc");
334 llvm::Value *RethrowPtr = CreateTempAlloca(Exc->getType(), "_rethrow");
335
336 SelectorArgs.push_back(Exc);
337 SelectorArgs.push_back(Personality);
338 SelectorArgs.push_back(llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext),
339 Proto->getNumExceptions()+1));
340
341 for (unsigned i = 0; i < Proto->getNumExceptions(); ++i) {
342 QualType Ty = Proto->getExceptionType(i);
343 llvm::Value *EHType
344 = CGM.GenerateRTTI(Ty.getNonReferenceType());
345 SelectorArgs.push_back(EHType);
346 }
347 if (Proto->getNumExceptions())
348 SelectorArgs.push_back(Null);
349
350 // Find which handler was matched.
351 llvm::Value *Selector
352 = Builder.CreateCall(llvm_eh_selector, SelectorArgs.begin(),
353 SelectorArgs.end(), "selector");
354 if (Proto->getNumExceptions()) {
355 Unwind = createBasicBlock("Unwind");
356
357 Builder.CreateStore(Exc, RethrowPtr);
358 Builder.CreateCondBr(Builder.CreateICmpSLT(Selector,
359 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext),
360 0)),
361 Match, Unwind);
362
363 EmitBlock(Match);
364 }
365 Builder.CreateCall(getUnexpectedFn(*this), Exc)->setDoesNotReturn();
366 Builder.CreateUnreachable();
367
368 if (Proto->getNumExceptions()) {
369 EmitBlock(Unwind);
370 Builder.CreateCall(getUnwindResumeOrRethrowFn(*this),
371 Builder.CreateLoad(RethrowPtr));
372 Builder.CreateUnreachable();
373 }
374
375 EmitBlock(Cont);
376}
377
378void CodeGenFunction::EmitEndEHSpec(const Decl *D) {
379 const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
380 if (FD == 0)
381 return;
382 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
383 if (Proto == 0)
384 return;
385
386 if (!Proto->hasExceptionSpec())
387 return;
388
389 setInvokeDest(0);
390}
391
Mike Stump58ef18b2009-11-20 23:44:51 +0000392void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) {
Mike Stump8c1253b2009-12-04 03:57:07 +0000393 if (0) {
Mike Stumpa9a590c2009-12-02 18:20:18 +0000394 EmitStmt(S.getTryBlock());
395 return;
Mike Stump54066142009-12-01 03:41:18 +0000396 }
Mike Stumpbee78dd2009-12-04 23:26:17 +0000397
Mike Stump54066142009-12-01 03:41:18 +0000398 // FIXME: The below is still just a sketch of the code we need.
Mike Stump58ef18b2009-11-20 23:44:51 +0000399 // Pointer to the personality function
400 llvm::Constant *Personality =
401 CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::getInt32Ty
402 (VMContext),
403 true),
404 "__gxx_personality_v0");
405 Personality = llvm::ConstantExpr::getBitCast(Personality, PtrToInt8Ty);
Mike Stump97329152009-12-02 19:53:57 +0000406 llvm::Value *llvm_eh_exception =
407 CGM.getIntrinsic(llvm::Intrinsic::eh_exception);
408 llvm::Value *llvm_eh_selector =
409 CGM.getIntrinsic(llvm::Intrinsic::eh_selector);
Mike Stump58ef18b2009-11-20 23:44:51 +0000410
Mike Stump58ef18b2009-11-20 23:44:51 +0000411 llvm::BasicBlock *PrevLandingPad = getInvokeDest();
412 llvm::BasicBlock *TryHandler = createBasicBlock("try.handler");
Mike Stump58ef18b2009-11-20 23:44:51 +0000413 llvm::BasicBlock *FinallyBlock = createBasicBlock("finally");
Mike Stump54066142009-12-01 03:41:18 +0000414 llvm::BasicBlock *FinallyRethrow = createBasicBlock("finally.throw");
Mike Stump58ef18b2009-11-20 23:44:51 +0000415 llvm::BasicBlock *FinallyEnd = createBasicBlock("finally.end");
416
417 // Push an EH context entry, used for handling rethrows.
418 PushCleanupBlock(FinallyBlock);
419
420 // Emit the statements in the try {} block
421 setInvokeDest(TryHandler);
422
Mike Stumpbee78dd2009-12-04 23:26:17 +0000423 // FIXME: We should not have to do this here. The AST should have the member
424 // initializers under the CXXTryStmt's TryBlock.
425 if (OuterTryBlock == &S) {
426 GlobalDecl GD = CurGD;
427 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
428
429 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) {
430 size_t OldCleanupStackSize = CleanupEntries.size();
431 EmitCtorPrologue(CD, CurGD.getCtorType());
432 EmitStmt(S.getTryBlock());
433
434 // If any of the member initializers are temporaries bound to references
435 // make sure to emit their destructors.
436 EmitCleanupBlocks(OldCleanupStackSize);
437 } else if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(FD)) {
438 llvm::BasicBlock *DtorEpilogue = createBasicBlock("dtor.epilogue");
439 PushCleanupBlock(DtorEpilogue);
440
441 EmitStmt(S.getTryBlock());
442
443 CleanupBlockInfo Info = PopCleanupBlock();
444
445 assert(Info.CleanupBlock == DtorEpilogue && "Block mismatch!");
446 EmitBlock(DtorEpilogue);
447 EmitDtorEpilogue(DD, GD.getDtorType());
448
449 if (Info.SwitchBlock)
450 EmitBlock(Info.SwitchBlock);
451 if (Info.EndBlock)
452 EmitBlock(Info.EndBlock);
453 } else
454 EmitStmt(S.getTryBlock());
455 } else
456 EmitStmt(S.getTryBlock());
Mike Stump58ef18b2009-11-20 23:44:51 +0000457
458 // Jump to end if there is no exception
459 EmitBranchThroughCleanup(FinallyEnd);
460
Mike Stump97329152009-12-02 19:53:57 +0000461 // Set up terminate handler
462 llvm::BasicBlock *TerminateHandler = createBasicBlock("terminate.handler");
463 EmitBlock(TerminateHandler);
464 llvm::Value *Exc = Builder.CreateCall(llvm_eh_exception, "exc");
465 // We are required to emit this call to satisfy LLVM, even
466 // though we don't use the result.
467 llvm::SmallVector<llvm::Value*, 8> Args;
468 Args.clear();
469 Args.push_back(Exc);
470 Args.push_back(Personality);
471 Args.push_back(llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext),
472 0));
473 Builder.CreateCall(llvm_eh_selector, Args.begin(), Args.end());
474 llvm::CallInst *TerminateCall =
475 Builder.CreateCall(getTerminateFn(*this));
476 TerminateCall->setDoesNotReturn();
477 TerminateCall->setDoesNotThrow();
478 Builder.CreateUnreachable();
479
480 // Clear the insertion point to indicate we are in unreachable code.
481 Builder.ClearInsertionPoint();
482
Mike Stump58ef18b2009-11-20 23:44:51 +0000483 // Emit the handlers
484 EmitBlock(TryHandler);
485
486 const llvm::IntegerType *Int8Ty;
487 const llvm::PointerType *PtrToInt8Ty;
488 Int8Ty = llvm::Type::getInt8Ty(VMContext);
489 // C string type. Used in lots of places.
490 PtrToInt8Ty = llvm::PointerType::getUnqual(Int8Ty);
Mike Stump54066142009-12-01 03:41:18 +0000491 llvm::Constant *Null = llvm::ConstantPointerNull::get(PtrToInt8Ty);
492 llvm::SmallVector<llvm::Value*, 8> SelectorArgs;
Mike Stump54066142009-12-01 03:41:18 +0000493 llvm::Value *llvm_eh_typeid_for =
494 CGM.getIntrinsic(llvm::Intrinsic::eh_typeid_for);
Mike Stump58ef18b2009-11-20 23:44:51 +0000495 // Exception object
Mike Stump97329152009-12-02 19:53:57 +0000496 Exc = Builder.CreateCall(llvm_eh_exception, "exc");
Mike Stump54066142009-12-01 03:41:18 +0000497 llvm::Value *RethrowPtr = CreateTempAlloca(Exc->getType(), "_rethrow");
Mike Stump58ef18b2009-11-20 23:44:51 +0000498
Mike Stump97329152009-12-02 19:53:57 +0000499 Args.clear();
Mike Stump54066142009-12-01 03:41:18 +0000500 SelectorArgs.push_back(Exc);
501 SelectorArgs.push_back(Personality);
Mike Stump58ef18b2009-11-20 23:44:51 +0000502
Mike Stump54066142009-12-01 03:41:18 +0000503 bool HasCatchAll = false;
Mike Stump58ef18b2009-11-20 23:44:51 +0000504 for (unsigned i = 0; i<S.getNumHandlers(); ++i) {
505 const CXXCatchStmt *C = S.getHandler(i);
Mike Stump54066142009-12-01 03:41:18 +0000506 VarDecl *CatchParam = C->getExceptionDecl();
507 if (CatchParam) {
Mike Stumpc01c2b82009-12-02 18:57:08 +0000508 llvm::Value *EHType
509 = CGM.GenerateRTTI(C->getCaughtType().getNonReferenceType());
Mike Stump54066142009-12-01 03:41:18 +0000510 SelectorArgs.push_back(EHType);
Mike Stump58ef18b2009-11-20 23:44:51 +0000511 } else {
512 // null indicates catch all
Mike Stump54066142009-12-01 03:41:18 +0000513 SelectorArgs.push_back(Null);
514 HasCatchAll = true;
Mike Stump58ef18b2009-11-20 23:44:51 +0000515 }
516 }
517
Mike Stump54066142009-12-01 03:41:18 +0000518 // We use a cleanup unless there was already a catch all.
519 if (!HasCatchAll) {
520 SelectorArgs.push_back(Null);
521 }
Mike Stump58ef18b2009-11-20 23:44:51 +0000522
Mike Stump54066142009-12-01 03:41:18 +0000523 // Find which handler was matched.
524 llvm::Value *Selector
525 = Builder.CreateCall(llvm_eh_selector, SelectorArgs.begin(),
526 SelectorArgs.end(), "selector");
Mike Stump58ef18b2009-11-20 23:44:51 +0000527 for (unsigned i = 0; i<S.getNumHandlers(); ++i) {
528 const CXXCatchStmt *C = S.getHandler(i);
Mike Stump54066142009-12-01 03:41:18 +0000529 VarDecl *CatchParam = C->getExceptionDecl();
530 Stmt *CatchBody = C->getHandlerBlock();
531
532 llvm::BasicBlock *Next = 0;
533
534 if (SelectorArgs[i+2] != Null) {
535 llvm::BasicBlock *Match = createBasicBlock("match");
536 Next = createBasicBlock("catch.next");
537 const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(getLLVMContext());
538 llvm::Value *Id
539 = Builder.CreateCall(llvm_eh_typeid_for,
540 Builder.CreateBitCast(SelectorArgs[i+2],
541 Int8PtrTy));
542 Builder.CreateCondBr(Builder.CreateICmpEQ(Selector, Id),
543 Match, Next);
544 EmitBlock(Match);
545 }
546
547 llvm::BasicBlock *MatchEnd = createBasicBlock("match.end");
548 llvm::BasicBlock *MatchHandler = createBasicBlock("match.handler");
549
550 PushCleanupBlock(MatchEnd);
551 setInvokeDest(MatchHandler);
552
553 llvm::Value *ExcObject = Builder.CreateCall(getBeginCatchFn(*this), Exc);
554
Mike Stump90990962009-12-02 23:37:16 +0000555 {
556 CleanupScope CatchScope(*this);
557 // Bind the catch parameter if it exists.
558 if (CatchParam) {
559 QualType CatchType = CatchParam->getType().getNonReferenceType();
560 setInvokeDest(TerminateHandler);
Mike Stump7398ff02009-12-03 22:38:15 +0000561 bool WasPointer = true;
562 if (!CatchType.getTypePtr()->isPointerType()) {
Mike Stump114ab9f2009-12-04 01:51:45 +0000563 if (!isa<ReferenceType>(CatchParam->getType()))
564 WasPointer = false;
Mike Stump90990962009-12-02 23:37:16 +0000565 CatchType = getContext().getPointerType(CatchType);
Mike Stump7398ff02009-12-03 22:38:15 +0000566 }
Mike Stump90990962009-12-02 23:37:16 +0000567 ExcObject = Builder.CreateBitCast(ExcObject, ConvertType(CatchType));
Mike Stump90990962009-12-02 23:37:16 +0000568 EmitLocalBlockVarDecl(*CatchParam);
Mike Stump2842b4c2009-12-03 03:40:14 +0000569 // FIXME: we need to do this sooner so that the EH region for the
570 // cleanup doesn't start until after the ctor completes, use a decl
571 // init?
Mike Stump90990962009-12-02 23:37:16 +0000572 CopyObject(*this, CatchParam->getType().getNonReferenceType(),
Mike Stump7398ff02009-12-03 22:38:15 +0000573 WasPointer, ExcObject, GetAddrOfLocalVar(CatchParam));
Mike Stump90990962009-12-02 23:37:16 +0000574 setInvokeDest(MatchHandler);
575 }
576
577 EmitStmt(CatchBody);
Mike Stump54066142009-12-01 03:41:18 +0000578 }
579
Mike Stump54066142009-12-01 03:41:18 +0000580 EmitBranchThroughCleanup(FinallyEnd);
581
582 EmitBlock(MatchHandler);
583
584 llvm::Value *Exc = Builder.CreateCall(llvm_eh_exception, "exc");
585 // We are required to emit this call to satisfy LLVM, even
586 // though we don't use the result.
Mike Stump97329152009-12-02 19:53:57 +0000587 Args.clear();
Mike Stump54066142009-12-01 03:41:18 +0000588 Args.push_back(Exc);
589 Args.push_back(Personality);
590 Args.push_back(llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext),
591 0));
592 Builder.CreateCall(llvm_eh_selector, Args.begin(), Args.end());
593 Builder.CreateStore(Exc, RethrowPtr);
594 EmitBranchThroughCleanup(FinallyRethrow);
595
596 CodeGenFunction::CleanupBlockInfo Info = PopCleanupBlock();
597
598 EmitBlock(MatchEnd);
599
Mike Stump33270212009-12-02 07:41:41 +0000600 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
Mike Stump54066142009-12-01 03:41:18 +0000601 Builder.CreateInvoke(getEndCatchFn(*this),
Mike Stump33270212009-12-02 07:41:41 +0000602 Cont, TerminateHandler,
Mike Stump54066142009-12-01 03:41:18 +0000603 Args.begin(), Args.begin());
Mike Stump54066142009-12-01 03:41:18 +0000604 EmitBlock(Cont);
605 if (Info.SwitchBlock)
606 EmitBlock(Info.SwitchBlock);
607 if (Info.EndBlock)
608 EmitBlock(Info.EndBlock);
609
Mike Stump54066142009-12-01 03:41:18 +0000610 Exc = Builder.CreateCall(llvm_eh_exception, "exc");
Mike Stump54066142009-12-01 03:41:18 +0000611 Builder.CreateStore(Exc, RethrowPtr);
612 EmitBranchThroughCleanup(FinallyRethrow);
613
614 if (Next)
615 EmitBlock(Next);
616 }
Mike Stump5c820752009-12-04 19:03:47 +0000617 if (!HasCatchAll) {
618 Builder.CreateStore(Exc, RethrowPtr);
Mike Stump54066142009-12-01 03:41:18 +0000619 EmitBranchThroughCleanup(FinallyRethrow);
Mike Stump5c820752009-12-04 19:03:47 +0000620 }
Mike Stump58ef18b2009-11-20 23:44:51 +0000621
622 CodeGenFunction::CleanupBlockInfo Info = PopCleanupBlock();
623
624 setInvokeDest(PrevLandingPad);
625
626 EmitBlock(FinallyBlock);
627
Mike Stump54066142009-12-01 03:41:18 +0000628 if (Info.SwitchBlock)
629 EmitBlock(Info.SwitchBlock);
630 if (Info.EndBlock)
631 EmitBlock(Info.EndBlock);
632
Mike Stump58ef18b2009-11-20 23:44:51 +0000633 // Branch around the rethrow code.
634 EmitBranch(FinallyEnd);
635
636 EmitBlock(FinallyRethrow);
Mike Stump875912a2009-12-04 19:21:57 +0000637 // FIXME: Eventually we can chain the handlers together and just do a call
638 // here.
639 if (getInvokeDest()) {
640 llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
641 Builder.CreateInvoke(getUnwindResumeOrRethrowFn(*this), Cont,
642 getInvokeDest(),
643 Builder.CreateLoad(RethrowPtr));
644 EmitBlock(Cont);
645 } else
646 Builder.CreateCall(getUnwindResumeOrRethrowFn(*this),
647 Builder.CreateLoad(RethrowPtr));
648
Mike Stump58ef18b2009-11-20 23:44:51 +0000649 Builder.CreateUnreachable();
Mike Stump58ef18b2009-11-20 23:44:51 +0000650
651 EmitBlock(FinallyEnd);
Mike Stump58ef18b2009-11-20 23:44:51 +0000652}
Mike Stumpaff69af2009-12-09 03:35:49 +0000653
654CodeGenFunction::EHCleanupBlock::~EHCleanupBlock() {
655 llvm::BasicBlock *Cont1 = CGF.createBasicBlock("cont");
656 CGF.EmitBranch(Cont1);
657 CGF.setInvokeDest(PreviousInvokeDest);
658
659
660 CGF.EmitBlock(CleanupHandler);
661
662 llvm::Constant *Personality =
663 CGF.CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::getInt32Ty
664 (CGF.VMContext),
665 true),
666 "__gxx_personality_v0");
667 Personality = llvm::ConstantExpr::getBitCast(Personality, CGF.PtrToInt8Ty);
668 llvm::Value *llvm_eh_exception =
669 CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_exception);
670 llvm::Value *llvm_eh_selector =
671 CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_selector);
672
673 llvm::Value *Exc = CGF.Builder.CreateCall(llvm_eh_exception, "exc");
674 const llvm::IntegerType *Int8Ty;
675 const llvm::PointerType *PtrToInt8Ty;
676 Int8Ty = llvm::Type::getInt8Ty(CGF.VMContext);
677 // C string type. Used in lots of places.
678 PtrToInt8Ty = llvm::PointerType::getUnqual(Int8Ty);
679 llvm::Constant *Null = llvm::ConstantPointerNull::get(PtrToInt8Ty);
680 llvm::SmallVector<llvm::Value*, 8> Args;
681 Args.clear();
682 Args.push_back(Exc);
683 Args.push_back(Personality);
684 Args.push_back(Null);
685 CGF.Builder.CreateCall(llvm_eh_selector, Args.begin(), Args.end());
686
687 CGF.EmitBlock(CleanupEntryBB);
688
689 CGF.EmitBlock(Cont1);
690
691 if (CGF.getInvokeDest()) {
692 llvm::BasicBlock *Cont = CGF.createBasicBlock("invoke.cont");
693 CGF.Builder.CreateInvoke(getUnwindResumeOrRethrowFn(CGF), Cont,
694 CGF.getInvokeDest(), Exc);
695 CGF.EmitBlock(Cont);
696 } else
697 CGF.Builder.CreateCall(getUnwindResumeOrRethrowFn(CGF), Exc);
698
699 CGF.Builder.CreateUnreachable();
700
701 CGF.EmitBlock(Cont);
702 if (CGF.Exceptions)
703 CGF.setInvokeDest(CleanupHandler);
704}