1 //===--- 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 
14 #include "CodeGenFunction.h"
15 #include "CGCleanup.h"
16 #include "CGObjCRuntime.h"
17 #include "TargetInfo.h"
18 #include "clang/AST/StmtCXX.h"
19 #include "clang/AST/StmtObjC.h"
20 #include "llvm/IR/CallSite.h"
21 #include "llvm/IR/Intrinsics.h"
22 
23 using namespace clang;
24 using namespace CodeGen;
25 
26 static llvm::Constant *getAllocateExceptionFn(CodeGenModule &CGM) {
27   // void *__cxa_allocate_exception(size_t thrown_size);
28 
29   llvm::FunctionType *FTy =
30     llvm::FunctionType::get(CGM.Int8PtrTy, CGM.SizeTy, /*IsVarArgs=*/false);
31 
32   return CGM.CreateRuntimeFunction(FTy, "__cxa_allocate_exception");
33 }
34 
35 static llvm::Constant *getFreeExceptionFn(CodeGenModule &CGM) {
36   // void __cxa_free_exception(void *thrown_exception);
37 
38   llvm::FunctionType *FTy =
39     llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
40 
41   return CGM.CreateRuntimeFunction(FTy, "__cxa_free_exception");
42 }
43 
44 static llvm::Constant *getThrowFn(CodeGenModule &CGM) {
45   // void __cxa_throw(void *thrown_exception, std::type_info *tinfo,
46   //                  void (*dest) (void *));
47 
48   llvm::Type *Args[3] = { CGM.Int8PtrTy, CGM.Int8PtrTy, CGM.Int8PtrTy };
49   llvm::FunctionType *FTy =
50     llvm::FunctionType::get(CGM.VoidTy, Args, /*IsVarArgs=*/false);
51 
52   return CGM.CreateRuntimeFunction(FTy, "__cxa_throw");
53 }
54 
55 static llvm::Constant *getReThrowFn(CodeGenModule &CGM) {
56   // void __cxa_rethrow();
57 
58   llvm::FunctionType *FTy =
59     llvm::FunctionType::get(CGM.VoidTy, /*IsVarArgs=*/false);
60 
61   return CGM.CreateRuntimeFunction(FTy, "__cxa_rethrow");
62 }
63 
64 static llvm::Constant *getGetExceptionPtrFn(CodeGenModule &CGM) {
65   // void *__cxa_get_exception_ptr(void*);
66 
67   llvm::FunctionType *FTy =
68     llvm::FunctionType::get(CGM.Int8PtrTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
69 
70   return CGM.CreateRuntimeFunction(FTy, "__cxa_get_exception_ptr");
71 }
72 
73 static llvm::Constant *getBeginCatchFn(CodeGenModule &CGM) {
74   // void *__cxa_begin_catch(void*);
75 
76   llvm::FunctionType *FTy =
77     llvm::FunctionType::get(CGM.Int8PtrTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
78 
79   return CGM.CreateRuntimeFunction(FTy, "__cxa_begin_catch");
80 }
81 
82 static llvm::Constant *getEndCatchFn(CodeGenModule &CGM) {
83   // void __cxa_end_catch();
84 
85   llvm::FunctionType *FTy =
86     llvm::FunctionType::get(CGM.VoidTy, /*IsVarArgs=*/false);
87 
88   return CGM.CreateRuntimeFunction(FTy, "__cxa_end_catch");
89 }
90 
91 static llvm::Constant *getUnexpectedFn(CodeGenModule &CGM) {
92   // void __cxa_call_unexpected(void *thrown_exception);
93 
94   llvm::FunctionType *FTy =
95     llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
96 
97   return CGM.CreateRuntimeFunction(FTy, "__cxa_call_unexpected");
98 }
99 
100 llvm::Constant *CodeGenFunction::getUnwindResumeFn() {
101   llvm::FunctionType *FTy =
102     llvm::FunctionType::get(VoidTy, Int8PtrTy, /*IsVarArgs=*/false);
103 
104   if (CGM.getLangOpts().SjLjExceptions)
105     return CGM.CreateRuntimeFunction(FTy, "_Unwind_SjLj_Resume");
106   return CGM.CreateRuntimeFunction(FTy, "_Unwind_Resume");
107 }
108 
109 llvm::Constant *CodeGenFunction::getUnwindResumeOrRethrowFn() {
110   llvm::FunctionType *FTy =
111     llvm::FunctionType::get(VoidTy, Int8PtrTy, /*IsVarArgs=*/false);
112 
113   if (CGM.getLangOpts().SjLjExceptions)
114     return CGM.CreateRuntimeFunction(FTy, "_Unwind_SjLj_Resume_or_Rethrow");
115   return CGM.CreateRuntimeFunction(FTy, "_Unwind_Resume_or_Rethrow");
116 }
117 
118 static llvm::Constant *getTerminateFn(CodeGenModule &CGM) {
119   // void __terminate();
120 
121   llvm::FunctionType *FTy =
122     llvm::FunctionType::get(CGM.VoidTy, /*IsVarArgs=*/false);
123 
124   StringRef name;
125 
126   // In C++, use std::terminate().
127   if (CGM.getLangOpts().CPlusPlus)
128     name = "_ZSt9terminatev"; // FIXME: mangling!
129   else if (CGM.getLangOpts().ObjC1 &&
130            CGM.getLangOpts().ObjCRuntime.hasTerminate())
131     name = "objc_terminate";
132   else
133     name = "abort";
134   return CGM.CreateRuntimeFunction(FTy, name);
135 }
136 
137 static llvm::Constant *getCatchallRethrowFn(CodeGenModule &CGM,
138                                             StringRef Name) {
139   llvm::FunctionType *FTy =
140     llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
141 
142   return CGM.CreateRuntimeFunction(FTy, Name);
143 }
144 
145 namespace {
146   /// The exceptions personality for a function.
147   struct EHPersonality {
148     const char *PersonalityFn;
149 
150     // If this is non-null, this personality requires a non-standard
151     // function for rethrowing an exception after a catchall cleanup.
152     // This function must have prototype void(void*).
153     const char *CatchallRethrowFn;
154 
155     static const EHPersonality &get(const LangOptions &Lang);
156     static const EHPersonality GNU_C;
157     static const EHPersonality GNU_C_SJLJ;
158     static const EHPersonality GNU_ObjC;
159     static const EHPersonality GNUstep_ObjC;
160     static const EHPersonality GNU_ObjCXX;
161     static const EHPersonality NeXT_ObjC;
162     static const EHPersonality GNU_CPlusPlus;
163     static const EHPersonality GNU_CPlusPlus_SJLJ;
164   };
165 }
166 
167 const EHPersonality EHPersonality::GNU_C = { "__gcc_personality_v0", 0 };
168 const EHPersonality EHPersonality::GNU_C_SJLJ = { "__gcc_personality_sj0", 0 };
169 const EHPersonality EHPersonality::NeXT_ObjC = { "__objc_personality_v0", 0 };
170 const EHPersonality EHPersonality::GNU_CPlusPlus = { "__gxx_personality_v0", 0};
171 const EHPersonality
172 EHPersonality::GNU_CPlusPlus_SJLJ = { "__gxx_personality_sj0", 0 };
173 const EHPersonality
174 EHPersonality::GNU_ObjC = {"__gnu_objc_personality_v0", "objc_exception_throw"};
175 const EHPersonality
176 EHPersonality::GNU_ObjCXX = { "__gnustep_objcxx_personality_v0", 0 };
177 const EHPersonality
178 EHPersonality::GNUstep_ObjC = { "__gnustep_objc_personality_v0", 0 };
179 
180 static const EHPersonality &getCPersonality(const LangOptions &L) {
181   if (L.SjLjExceptions)
182     return EHPersonality::GNU_C_SJLJ;
183   return EHPersonality::GNU_C;
184 }
185 
186 static const EHPersonality &getObjCPersonality(const LangOptions &L) {
187   switch (L.ObjCRuntime.getKind()) {
188   case ObjCRuntime::FragileMacOSX:
189     return getCPersonality(L);
190   case ObjCRuntime::MacOSX:
191   case ObjCRuntime::iOS:
192     return EHPersonality::NeXT_ObjC;
193   case ObjCRuntime::GNUstep:
194     if (L.ObjCRuntime.getVersion() >= VersionTuple(1, 7))
195       return EHPersonality::GNUstep_ObjC;
196     // fallthrough
197   case ObjCRuntime::GCC:
198   case ObjCRuntime::ObjFW:
199     return EHPersonality::GNU_ObjC;
200   }
201   llvm_unreachable("bad runtime kind");
202 }
203 
204 static const EHPersonality &getCXXPersonality(const LangOptions &L) {
205   if (L.SjLjExceptions)
206     return EHPersonality::GNU_CPlusPlus_SJLJ;
207   else
208     return EHPersonality::GNU_CPlusPlus;
209 }
210 
211 /// Determines the personality function to use when both C++
212 /// and Objective-C exceptions are being caught.
213 static const EHPersonality &getObjCXXPersonality(const LangOptions &L) {
214   switch (L.ObjCRuntime.getKind()) {
215   // The ObjC personality defers to the C++ personality for non-ObjC
216   // handlers.  Unlike the C++ case, we use the same personality
217   // function on targets using (backend-driven) SJLJ EH.
218   case ObjCRuntime::MacOSX:
219   case ObjCRuntime::iOS:
220     return EHPersonality::NeXT_ObjC;
221 
222   // In the fragile ABI, just use C++ exception handling and hope
223   // they're not doing crazy exception mixing.
224   case ObjCRuntime::FragileMacOSX:
225     return getCXXPersonality(L);
226 
227   // The GCC runtime's personality function inherently doesn't support
228   // mixed EH.  Use the C++ personality just to avoid returning null.
229   case ObjCRuntime::GCC:
230   case ObjCRuntime::ObjFW: // XXX: this will change soon
231     return EHPersonality::GNU_ObjC;
232   case ObjCRuntime::GNUstep:
233     return EHPersonality::GNU_ObjCXX;
234   }
235   llvm_unreachable("bad runtime kind");
236 }
237 
238 const EHPersonality &EHPersonality::get(const LangOptions &L) {
239   if (L.CPlusPlus && L.ObjC1)
240     return getObjCXXPersonality(L);
241   else if (L.CPlusPlus)
242     return getCXXPersonality(L);
243   else if (L.ObjC1)
244     return getObjCPersonality(L);
245   else
246     return getCPersonality(L);
247 }
248 
249 static llvm::Constant *getPersonalityFn(CodeGenModule &CGM,
250                                         const EHPersonality &Personality) {
251   llvm::Constant *Fn =
252     CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.Int32Ty, true),
253                               Personality.PersonalityFn);
254   return Fn;
255 }
256 
257 static llvm::Constant *getOpaquePersonalityFn(CodeGenModule &CGM,
258                                         const EHPersonality &Personality) {
259   llvm::Constant *Fn = getPersonalityFn(CGM, Personality);
260   return llvm::ConstantExpr::getBitCast(Fn, CGM.Int8PtrTy);
261 }
262 
263 /// Check whether a personality function could reasonably be swapped
264 /// for a C++ personality function.
265 static bool PersonalityHasOnlyCXXUses(llvm::Constant *Fn) {
266   for (llvm::User *U : Fn->users()) {
267     // Conditionally white-list bitcasts.
268     if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(U)) {
269       if (CE->getOpcode() != llvm::Instruction::BitCast) return false;
270       if (!PersonalityHasOnlyCXXUses(CE))
271         return false;
272       continue;
273     }
274 
275     // Otherwise, it has to be a landingpad instruction.
276     llvm::LandingPadInst *LPI = dyn_cast<llvm::LandingPadInst>(U);
277     if (!LPI) return false;
278 
279     for (unsigned I = 0, E = LPI->getNumClauses(); I != E; ++I) {
280       // Look for something that would've been returned by the ObjC
281       // runtime's GetEHType() method.
282       llvm::Value *Val = LPI->getClause(I)->stripPointerCasts();
283       if (LPI->isCatch(I)) {
284         // Check if the catch value has the ObjC prefix.
285         if (llvm::GlobalVariable *GV = dyn_cast<llvm::GlobalVariable>(Val))
286           // ObjC EH selector entries are always global variables with
287           // names starting like this.
288           if (GV->getName().startswith("OBJC_EHTYPE"))
289             return false;
290       } else {
291         // Check if any of the filter values have the ObjC prefix.
292         llvm::Constant *CVal = cast<llvm::Constant>(Val);
293         for (llvm::User::op_iterator
294                II = CVal->op_begin(), IE = CVal->op_end(); II != IE; ++II) {
295           if (llvm::GlobalVariable *GV =
296               cast<llvm::GlobalVariable>((*II)->stripPointerCasts()))
297             // ObjC EH selector entries are always global variables with
298             // names starting like this.
299             if (GV->getName().startswith("OBJC_EHTYPE"))
300               return false;
301         }
302       }
303     }
304   }
305 
306   return true;
307 }
308 
309 /// Try to use the C++ personality function in ObjC++.  Not doing this
310 /// can cause some incompatibilities with gcc, which is more
311 /// aggressive about only using the ObjC++ personality in a function
312 /// when it really needs it.
313 void CodeGenModule::SimplifyPersonality() {
314   // If we're not in ObjC++ -fexceptions, there's nothing to do.
315   if (!LangOpts.CPlusPlus || !LangOpts.ObjC1 || !LangOpts.Exceptions)
316     return;
317 
318   // Both the problem this endeavors to fix and the way the logic
319   // above works is specific to the NeXT runtime.
320   if (!LangOpts.ObjCRuntime.isNeXTFamily())
321     return;
322 
323   const EHPersonality &ObjCXX = EHPersonality::get(LangOpts);
324   const EHPersonality &CXX = getCXXPersonality(LangOpts);
325   if (&ObjCXX == &CXX)
326     return;
327 
328   assert(std::strcmp(ObjCXX.PersonalityFn, CXX.PersonalityFn) != 0 &&
329          "Different EHPersonalities using the same personality function.");
330 
331   llvm::Function *Fn = getModule().getFunction(ObjCXX.PersonalityFn);
332 
333   // Nothing to do if it's unused.
334   if (!Fn || Fn->use_empty()) return;
335 
336   // Can't do the optimization if it has non-C++ uses.
337   if (!PersonalityHasOnlyCXXUses(Fn)) return;
338 
339   // Create the C++ personality function and kill off the old
340   // function.
341   llvm::Constant *CXXFn = getPersonalityFn(*this, CXX);
342 
343   // This can happen if the user is screwing with us.
344   if (Fn->getType() != CXXFn->getType()) return;
345 
346   Fn->replaceAllUsesWith(CXXFn);
347   Fn->eraseFromParent();
348 }
349 
350 /// Returns the value to inject into a selector to indicate the
351 /// presence of a catch-all.
352 static llvm::Constant *getCatchAllValue(CodeGenFunction &CGF) {
353   // Possibly we should use @llvm.eh.catch.all.value here.
354   return llvm::ConstantPointerNull::get(CGF.Int8PtrTy);
355 }
356 
357 namespace {
358   /// A cleanup to free the exception object if its initialization
359   /// throws.
360   struct FreeException : EHScopeStack::Cleanup {
361     llvm::Value *exn;
362     FreeException(llvm::Value *exn) : exn(exn) {}
363     void Emit(CodeGenFunction &CGF, Flags flags) override {
364       CGF.EmitNounwindRuntimeCall(getFreeExceptionFn(CGF.CGM), exn);
365     }
366   };
367 }
368 
369 // Emits an exception expression into the given location.  This
370 // differs from EmitAnyExprToMem only in that, if a final copy-ctor
371 // call is required, an exception within that copy ctor causes
372 // std::terminate to be invoked.
373 static void EmitAnyExprToExn(CodeGenFunction &CGF, const Expr *e,
374                              llvm::Value *addr) {
375   // Make sure the exception object is cleaned up if there's an
376   // exception during initialization.
377   CGF.pushFullExprCleanup<FreeException>(EHCleanup, addr);
378   EHScopeStack::stable_iterator cleanup = CGF.EHStack.stable_begin();
379 
380   // __cxa_allocate_exception returns a void*;  we need to cast this
381   // to the appropriate type for the object.
382   llvm::Type *ty = CGF.ConvertTypeForMem(e->getType())->getPointerTo();
383   llvm::Value *typedAddr = CGF.Builder.CreateBitCast(addr, ty);
384 
385   // FIXME: this isn't quite right!  If there's a final unelided call
386   // to a copy constructor, then according to [except.terminate]p1 we
387   // must call std::terminate() if that constructor throws, because
388   // technically that copy occurs after the exception expression is
389   // evaluated but before the exception is caught.  But the best way
390   // to handle that is to teach EmitAggExpr to do the final copy
391   // differently if it can't be elided.
392   CGF.EmitAnyExprToMem(e, typedAddr, e->getType().getQualifiers(),
393                        /*IsInit*/ true);
394 
395   // Deactivate the cleanup block.
396   CGF.DeactivateCleanupBlock(cleanup, cast<llvm::Instruction>(typedAddr));
397 }
398 
399 llvm::Value *CodeGenFunction::getExceptionSlot() {
400   if (!ExceptionSlot)
401     ExceptionSlot = CreateTempAlloca(Int8PtrTy, "exn.slot");
402   return ExceptionSlot;
403 }
404 
405 llvm::Value *CodeGenFunction::getEHSelectorSlot() {
406   if (!EHSelectorSlot)
407     EHSelectorSlot = CreateTempAlloca(Int32Ty, "ehselector.slot");
408   return EHSelectorSlot;
409 }
410 
411 llvm::Value *CodeGenFunction::getExceptionFromSlot() {
412   return Builder.CreateLoad(getExceptionSlot(), "exn");
413 }
414 
415 llvm::Value *CodeGenFunction::getSelectorFromSlot() {
416   return Builder.CreateLoad(getEHSelectorSlot(), "sel");
417 }
418 
419 void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E,
420                                        bool KeepInsertionPoint) {
421   if (!E->getSubExpr()) {
422     EmitNoreturnRuntimeCallOrInvoke(getReThrowFn(CGM),
423                                     ArrayRef<llvm::Value*>());
424 
425     // throw is an expression, and the expression emitters expect us
426     // to leave ourselves at a valid insertion point.
427     if (KeepInsertionPoint)
428       EmitBlock(createBasicBlock("throw.cont"));
429 
430     return;
431   }
432 
433   QualType ThrowType = E->getSubExpr()->getType();
434 
435   if (ThrowType->isObjCObjectPointerType()) {
436     const Stmt *ThrowStmt = E->getSubExpr();
437     const ObjCAtThrowStmt S(E->getExprLoc(),
438                             const_cast<Stmt *>(ThrowStmt));
439     CGM.getObjCRuntime().EmitThrowStmt(*this, S, false);
440     // This will clear insertion point which was not cleared in
441     // call to EmitThrowStmt.
442     if (KeepInsertionPoint)
443       EmitBlock(createBasicBlock("throw.cont"));
444     return;
445   }
446 
447   // Now allocate the exception object.
448   llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
449   uint64_t TypeSize = getContext().getTypeSizeInChars(ThrowType).getQuantity();
450 
451   llvm::Constant *AllocExceptionFn = getAllocateExceptionFn(CGM);
452   llvm::CallInst *ExceptionPtr =
453     EmitNounwindRuntimeCall(AllocExceptionFn,
454                             llvm::ConstantInt::get(SizeTy, TypeSize),
455                             "exception");
456 
457   EmitAnyExprToExn(*this, E->getSubExpr(), ExceptionPtr);
458 
459   // Now throw the exception.
460   llvm::Constant *TypeInfo = CGM.GetAddrOfRTTIDescriptor(ThrowType,
461                                                          /*ForEH=*/true);
462 
463   // The address of the destructor.  If the exception type has a
464   // trivial destructor (or isn't a record), we just pass null.
465   llvm::Constant *Dtor = 0;
466   if (const RecordType *RecordTy = ThrowType->getAs<RecordType>()) {
467     CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
468     if (!Record->hasTrivialDestructor()) {
469       CXXDestructorDecl *DtorD = Record->getDestructor();
470       Dtor = CGM.GetAddrOfCXXDestructor(DtorD, Dtor_Complete);
471       Dtor = llvm::ConstantExpr::getBitCast(Dtor, Int8PtrTy);
472     }
473   }
474   if (!Dtor) Dtor = llvm::Constant::getNullValue(Int8PtrTy);
475 
476   llvm::Value *args[] = { ExceptionPtr, TypeInfo, Dtor };
477   EmitNoreturnRuntimeCallOrInvoke(getThrowFn(CGM), args);
478 
479   // throw is an expression, and the expression emitters expect us
480   // to leave ourselves at a valid insertion point.
481   if (KeepInsertionPoint)
482     EmitBlock(createBasicBlock("throw.cont"));
483 }
484 
485 void CodeGenFunction::EmitStartEHSpec(const Decl *D) {
486   if (!CGM.getLangOpts().CXXExceptions)
487     return;
488 
489   const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
490   if (FD == 0)
491     return;
492   const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
493   if (Proto == 0)
494     return;
495 
496   ExceptionSpecificationType EST = Proto->getExceptionSpecType();
497   if (isNoexceptExceptionSpec(EST)) {
498     if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) {
499       // noexcept functions are simple terminate scopes.
500       EHStack.pushTerminate();
501     }
502   } else if (EST == EST_Dynamic || EST == EST_DynamicNone) {
503     unsigned NumExceptions = Proto->getNumExceptions();
504     EHFilterScope *Filter = EHStack.pushFilter(NumExceptions);
505 
506     for (unsigned I = 0; I != NumExceptions; ++I) {
507       QualType Ty = Proto->getExceptionType(I);
508       QualType ExceptType = Ty.getNonReferenceType().getUnqualifiedType();
509       llvm::Value *EHType = CGM.GetAddrOfRTTIDescriptor(ExceptType,
510                                                         /*ForEH=*/true);
511       Filter->setFilter(I, EHType);
512     }
513   }
514 }
515 
516 /// Emit the dispatch block for a filter scope if necessary.
517 static void emitFilterDispatchBlock(CodeGenFunction &CGF,
518                                     EHFilterScope &filterScope) {
519   llvm::BasicBlock *dispatchBlock = filterScope.getCachedEHDispatchBlock();
520   if (!dispatchBlock) return;
521   if (dispatchBlock->use_empty()) {
522     delete dispatchBlock;
523     return;
524   }
525 
526   CGF.EmitBlockAfterUses(dispatchBlock);
527 
528   // If this isn't a catch-all filter, we need to check whether we got
529   // here because the filter triggered.
530   if (filterScope.getNumFilters()) {
531     // Load the selector value.
532     llvm::Value *selector = CGF.getSelectorFromSlot();
533     llvm::BasicBlock *unexpectedBB = CGF.createBasicBlock("ehspec.unexpected");
534 
535     llvm::Value *zero = CGF.Builder.getInt32(0);
536     llvm::Value *failsFilter =
537       CGF.Builder.CreateICmpSLT(selector, zero, "ehspec.fails");
538     CGF.Builder.CreateCondBr(failsFilter, unexpectedBB, CGF.getEHResumeBlock(false));
539 
540     CGF.EmitBlock(unexpectedBB);
541   }
542 
543   // Call __cxa_call_unexpected.  This doesn't need to be an invoke
544   // because __cxa_call_unexpected magically filters exceptions
545   // according to the last landing pad the exception was thrown
546   // into.  Seriously.
547   llvm::Value *exn = CGF.getExceptionFromSlot();
548   CGF.EmitRuntimeCall(getUnexpectedFn(CGF.CGM), exn)
549     ->setDoesNotReturn();
550   CGF.Builder.CreateUnreachable();
551 }
552 
553 void CodeGenFunction::EmitEndEHSpec(const Decl *D) {
554   if (!CGM.getLangOpts().CXXExceptions)
555     return;
556 
557   const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
558   if (FD == 0)
559     return;
560   const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
561   if (Proto == 0)
562     return;
563 
564   ExceptionSpecificationType EST = Proto->getExceptionSpecType();
565   if (isNoexceptExceptionSpec(EST)) {
566     if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) {
567       EHStack.popTerminate();
568     }
569   } else if (EST == EST_Dynamic || EST == EST_DynamicNone) {
570     EHFilterScope &filterScope = cast<EHFilterScope>(*EHStack.begin());
571     emitFilterDispatchBlock(*this, filterScope);
572     EHStack.popFilter();
573   }
574 }
575 
576 void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) {
577   EnterCXXTryStmt(S);
578   EmitStmt(S.getTryBlock());
579   ExitCXXTryStmt(S);
580 }
581 
582 void CodeGenFunction::EnterCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) {
583   unsigned NumHandlers = S.getNumHandlers();
584   EHCatchScope *CatchScope = EHStack.pushCatch(NumHandlers);
585 
586   for (unsigned I = 0; I != NumHandlers; ++I) {
587     const CXXCatchStmt *C = S.getHandler(I);
588 
589     llvm::BasicBlock *Handler = createBasicBlock("catch");
590     if (C->getExceptionDecl()) {
591       // FIXME: Dropping the reference type on the type into makes it
592       // impossible to correctly implement catch-by-reference
593       // semantics for pointers.  Unfortunately, this is what all
594       // existing compilers do, and it's not clear that the standard
595       // personality routine is capable of doing this right.  See C++ DR 388:
596       //   http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#388
597       QualType CaughtType = C->getCaughtType();
598       CaughtType = CaughtType.getNonReferenceType().getUnqualifiedType();
599 
600       llvm::Value *TypeInfo = 0;
601       if (CaughtType->isObjCObjectPointerType())
602         TypeInfo = CGM.getObjCRuntime().GetEHType(CaughtType);
603       else
604         TypeInfo = CGM.GetAddrOfRTTIDescriptor(CaughtType, /*ForEH=*/true);
605       CatchScope->setHandler(I, TypeInfo, Handler);
606     } else {
607       // No exception decl indicates '...', a catch-all.
608       CatchScope->setCatchAllHandler(I, Handler);
609     }
610   }
611 }
612 
613 llvm::BasicBlock *
614 CodeGenFunction::getEHDispatchBlock(EHScopeStack::stable_iterator si) {
615   // The dispatch block for the end of the scope chain is a block that
616   // just resumes unwinding.
617   if (si == EHStack.stable_end())
618     return getEHResumeBlock(true);
619 
620   // Otherwise, we should look at the actual scope.
621   EHScope &scope = *EHStack.find(si);
622 
623   llvm::BasicBlock *dispatchBlock = scope.getCachedEHDispatchBlock();
624   if (!dispatchBlock) {
625     switch (scope.getKind()) {
626     case EHScope::Catch: {
627       // Apply a special case to a single catch-all.
628       EHCatchScope &catchScope = cast<EHCatchScope>(scope);
629       if (catchScope.getNumHandlers() == 1 &&
630           catchScope.getHandler(0).isCatchAll()) {
631         dispatchBlock = catchScope.getHandler(0).Block;
632 
633       // Otherwise, make a dispatch block.
634       } else {
635         dispatchBlock = createBasicBlock("catch.dispatch");
636       }
637       break;
638     }
639 
640     case EHScope::Cleanup:
641       dispatchBlock = createBasicBlock("ehcleanup");
642       break;
643 
644     case EHScope::Filter:
645       dispatchBlock = createBasicBlock("filter.dispatch");
646       break;
647 
648     case EHScope::Terminate:
649       dispatchBlock = getTerminateHandler();
650       break;
651     }
652     scope.setCachedEHDispatchBlock(dispatchBlock);
653   }
654   return dispatchBlock;
655 }
656 
657 /// Check whether this is a non-EH scope, i.e. a scope which doesn't
658 /// affect exception handling.  Currently, the only non-EH scopes are
659 /// normal-only cleanup scopes.
660 static bool isNonEHScope(const EHScope &S) {
661   switch (S.getKind()) {
662   case EHScope::Cleanup:
663     return !cast<EHCleanupScope>(S).isEHCleanup();
664   case EHScope::Filter:
665   case EHScope::Catch:
666   case EHScope::Terminate:
667     return false;
668   }
669 
670   llvm_unreachable("Invalid EHScope Kind!");
671 }
672 
673 llvm::BasicBlock *CodeGenFunction::getInvokeDestImpl() {
674   assert(EHStack.requiresLandingPad());
675   assert(!EHStack.empty());
676 
677   if (!CGM.getLangOpts().Exceptions)
678     return 0;
679 
680   // Check the innermost scope for a cached landing pad.  If this is
681   // a non-EH cleanup, we'll check enclosing scopes in EmitLandingPad.
682   llvm::BasicBlock *LP = EHStack.begin()->getCachedLandingPad();
683   if (LP) return LP;
684 
685   // Build the landing pad for this scope.
686   LP = EmitLandingPad();
687   assert(LP);
688 
689   // Cache the landing pad on the innermost scope.  If this is a
690   // non-EH scope, cache the landing pad on the enclosing scope, too.
691   for (EHScopeStack::iterator ir = EHStack.begin(); true; ++ir) {
692     ir->setCachedLandingPad(LP);
693     if (!isNonEHScope(*ir)) break;
694   }
695 
696   return LP;
697 }
698 
699 // This code contains a hack to work around a design flaw in
700 // LLVM's EH IR which breaks semantics after inlining.  This same
701 // hack is implemented in llvm-gcc.
702 //
703 // The LLVM EH abstraction is basically a thin veneer over the
704 // traditional GCC zero-cost design: for each range of instructions
705 // in the function, there is (at most) one "landing pad" with an
706 // associated chain of EH actions.  A language-specific personality
707 // function interprets this chain of actions and (1) decides whether
708 // or not to resume execution at the landing pad and (2) if so,
709 // provides an integer indicating why it's stopping.  In LLVM IR,
710 // the association of a landing pad with a range of instructions is
711 // achieved via an invoke instruction, the chain of actions becomes
712 // the arguments to the @llvm.eh.selector call, and the selector
713 // call returns the integer indicator.  Other than the required
714 // presence of two intrinsic function calls in the landing pad,
715 // the IR exactly describes the layout of the output code.
716 //
717 // A principal advantage of this design is that it is completely
718 // language-agnostic; in theory, the LLVM optimizers can treat
719 // landing pads neutrally, and targets need only know how to lower
720 // the intrinsics to have a functioning exceptions system (assuming
721 // that platform exceptions follow something approximately like the
722 // GCC design).  Unfortunately, landing pads cannot be combined in a
723 // language-agnostic way: given selectors A and B, there is no way
724 // to make a single landing pad which faithfully represents the
725 // semantics of propagating an exception first through A, then
726 // through B, without knowing how the personality will interpret the
727 // (lowered form of the) selectors.  This means that inlining has no
728 // choice but to crudely chain invokes (i.e., to ignore invokes in
729 // the inlined function, but to turn all unwindable calls into
730 // invokes), which is only semantically valid if every unwind stops
731 // at every landing pad.
732 //
733 // Therefore, the invoke-inline hack is to guarantee that every
734 // landing pad has a catch-all.
735 enum CleanupHackLevel_t {
736   /// A level of hack that requires that all landing pads have
737   /// catch-alls.
738   CHL_MandatoryCatchall,
739 
740   /// A level of hack that requires that all landing pads handle
741   /// cleanups.
742   CHL_MandatoryCleanup,
743 
744   /// No hacks at all;  ideal IR generation.
745   CHL_Ideal
746 };
747 const CleanupHackLevel_t CleanupHackLevel = CHL_MandatoryCleanup;
748 
749 llvm::BasicBlock *CodeGenFunction::EmitLandingPad() {
750   assert(EHStack.requiresLandingPad());
751 
752   EHScope &innermostEHScope = *EHStack.find(EHStack.getInnermostEHScope());
753   switch (innermostEHScope.getKind()) {
754   case EHScope::Terminate:
755     return getTerminateLandingPad();
756 
757   case EHScope::Catch:
758   case EHScope::Cleanup:
759   case EHScope::Filter:
760     if (llvm::BasicBlock *lpad = innermostEHScope.getCachedLandingPad())
761       return lpad;
762   }
763 
764   // Save the current IR generation state.
765   CGBuilderTy::InsertPoint savedIP = Builder.saveAndClearIP();
766   SaveAndRestoreLocation AutoRestoreLocation(*this, Builder);
767   if (CGDebugInfo *DI = getDebugInfo())
768     DI->EmitLocation(Builder, CurEHLocation);
769 
770   const EHPersonality &personality = EHPersonality::get(getLangOpts());
771 
772   // Create and configure the landing pad.
773   llvm::BasicBlock *lpad = createBasicBlock("lpad");
774   EmitBlock(lpad);
775 
776   llvm::LandingPadInst *LPadInst =
777     Builder.CreateLandingPad(llvm::StructType::get(Int8PtrTy, Int32Ty, NULL),
778                              getOpaquePersonalityFn(CGM, personality), 0);
779 
780   llvm::Value *LPadExn = Builder.CreateExtractValue(LPadInst, 0);
781   Builder.CreateStore(LPadExn, getExceptionSlot());
782   llvm::Value *LPadSel = Builder.CreateExtractValue(LPadInst, 1);
783   Builder.CreateStore(LPadSel, getEHSelectorSlot());
784 
785   // Save the exception pointer.  It's safe to use a single exception
786   // pointer per function because EH cleanups can never have nested
787   // try/catches.
788   // Build the landingpad instruction.
789 
790   // Accumulate all the handlers in scope.
791   bool hasCatchAll = false;
792   bool hasCleanup = false;
793   bool hasFilter = false;
794   SmallVector<llvm::Value*, 4> filterTypes;
795   llvm::SmallPtrSet<llvm::Value*, 4> catchTypes;
796   for (EHScopeStack::iterator I = EHStack.begin(), E = EHStack.end();
797          I != E; ++I) {
798 
799     switch (I->getKind()) {
800     case EHScope::Cleanup:
801       // If we have a cleanup, remember that.
802       hasCleanup = (hasCleanup || cast<EHCleanupScope>(*I).isEHCleanup());
803       continue;
804 
805     case EHScope::Filter: {
806       assert(I.next() == EHStack.end() && "EH filter is not end of EH stack");
807       assert(!hasCatchAll && "EH filter reached after catch-all");
808 
809       // Filter scopes get added to the landingpad in weird ways.
810       EHFilterScope &filter = cast<EHFilterScope>(*I);
811       hasFilter = true;
812 
813       // Add all the filter values.
814       for (unsigned i = 0, e = filter.getNumFilters(); i != e; ++i)
815         filterTypes.push_back(filter.getFilter(i));
816       goto done;
817     }
818 
819     case EHScope::Terminate:
820       // Terminate scopes are basically catch-alls.
821       assert(!hasCatchAll);
822       hasCatchAll = true;
823       goto done;
824 
825     case EHScope::Catch:
826       break;
827     }
828 
829     EHCatchScope &catchScope = cast<EHCatchScope>(*I);
830     for (unsigned hi = 0, he = catchScope.getNumHandlers(); hi != he; ++hi) {
831       EHCatchScope::Handler handler = catchScope.getHandler(hi);
832 
833       // If this is a catch-all, register that and abort.
834       if (!handler.Type) {
835         assert(!hasCatchAll);
836         hasCatchAll = true;
837         goto done;
838       }
839 
840       // Check whether we already have a handler for this type.
841       if (catchTypes.insert(handler.Type))
842         // If not, add it directly to the landingpad.
843         LPadInst->addClause(handler.Type);
844     }
845   }
846 
847  done:
848   // If we have a catch-all, add null to the landingpad.
849   assert(!(hasCatchAll && hasFilter));
850   if (hasCatchAll) {
851     LPadInst->addClause(getCatchAllValue(*this));
852 
853   // If we have an EH filter, we need to add those handlers in the
854   // right place in the landingpad, which is to say, at the end.
855   } else if (hasFilter) {
856     // Create a filter expression: a constant array indicating which filter
857     // types there are. The personality routine only lands here if the filter
858     // doesn't match.
859     SmallVector<llvm::Constant*, 8> Filters;
860     llvm::ArrayType *AType =
861       llvm::ArrayType::get(!filterTypes.empty() ?
862                              filterTypes[0]->getType() : Int8PtrTy,
863                            filterTypes.size());
864 
865     for (unsigned i = 0, e = filterTypes.size(); i != e; ++i)
866       Filters.push_back(cast<llvm::Constant>(filterTypes[i]));
867     llvm::Constant *FilterArray = llvm::ConstantArray::get(AType, Filters);
868     LPadInst->addClause(FilterArray);
869 
870     // Also check whether we need a cleanup.
871     if (hasCleanup)
872       LPadInst->setCleanup(true);
873 
874   // Otherwise, signal that we at least have cleanups.
875   } else if (CleanupHackLevel == CHL_MandatoryCatchall || hasCleanup) {
876     if (CleanupHackLevel == CHL_MandatoryCatchall)
877       LPadInst->addClause(getCatchAllValue(*this));
878     else
879       LPadInst->setCleanup(true);
880   }
881 
882   assert((LPadInst->getNumClauses() > 0 || LPadInst->isCleanup()) &&
883          "landingpad instruction has no clauses!");
884 
885   // Tell the backend how to generate the landing pad.
886   Builder.CreateBr(getEHDispatchBlock(EHStack.getInnermostEHScope()));
887 
888   // Restore the old IR generation state.
889   Builder.restoreIP(savedIP);
890 
891   return lpad;
892 }
893 
894 namespace {
895   /// A cleanup to call __cxa_end_catch.  In many cases, the caught
896   /// exception type lets us state definitively that the thrown exception
897   /// type does not have a destructor.  In particular:
898   ///   - Catch-alls tell us nothing, so we have to conservatively
899   ///     assume that the thrown exception might have a destructor.
900   ///   - Catches by reference behave according to their base types.
901   ///   - Catches of non-record types will only trigger for exceptions
902   ///     of non-record types, which never have destructors.
903   ///   - Catches of record types can trigger for arbitrary subclasses
904   ///     of the caught type, so we have to assume the actual thrown
905   ///     exception type might have a throwing destructor, even if the
906   ///     caught type's destructor is trivial or nothrow.
907   struct CallEndCatch : EHScopeStack::Cleanup {
908     CallEndCatch(bool MightThrow) : MightThrow(MightThrow) {}
909     bool MightThrow;
910 
911     void Emit(CodeGenFunction &CGF, Flags flags) override {
912       if (!MightThrow) {
913         CGF.EmitNounwindRuntimeCall(getEndCatchFn(CGF.CGM));
914         return;
915       }
916 
917       CGF.EmitRuntimeCallOrInvoke(getEndCatchFn(CGF.CGM));
918     }
919   };
920 }
921 
922 /// Emits a call to __cxa_begin_catch and enters a cleanup to call
923 /// __cxa_end_catch.
924 ///
925 /// \param EndMightThrow - true if __cxa_end_catch might throw
926 static llvm::Value *CallBeginCatch(CodeGenFunction &CGF,
927                                    llvm::Value *Exn,
928                                    bool EndMightThrow) {
929   llvm::CallInst *call =
930     CGF.EmitNounwindRuntimeCall(getBeginCatchFn(CGF.CGM), Exn);
931 
932   CGF.EHStack.pushCleanup<CallEndCatch>(NormalAndEHCleanup, EndMightThrow);
933 
934   return call;
935 }
936 
937 /// A "special initializer" callback for initializing a catch
938 /// parameter during catch initialization.
939 static void InitCatchParam(CodeGenFunction &CGF,
940                            const VarDecl &CatchParam,
941                            llvm::Value *ParamAddr,
942                            SourceLocation Loc) {
943   // Load the exception from where the landing pad saved it.
944   llvm::Value *Exn = CGF.getExceptionFromSlot();
945 
946   CanQualType CatchType =
947     CGF.CGM.getContext().getCanonicalType(CatchParam.getType());
948   llvm::Type *LLVMCatchTy = CGF.ConvertTypeForMem(CatchType);
949 
950   // If we're catching by reference, we can just cast the object
951   // pointer to the appropriate pointer.
952   if (isa<ReferenceType>(CatchType)) {
953     QualType CaughtType = cast<ReferenceType>(CatchType)->getPointeeType();
954     bool EndCatchMightThrow = CaughtType->isRecordType();
955 
956     // __cxa_begin_catch returns the adjusted object pointer.
957     llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, EndCatchMightThrow);
958 
959     // We have no way to tell the personality function that we're
960     // catching by reference, so if we're catching a pointer,
961     // __cxa_begin_catch will actually return that pointer by value.
962     if (const PointerType *PT = dyn_cast<PointerType>(CaughtType)) {
963       QualType PointeeType = PT->getPointeeType();
964 
965       // When catching by reference, generally we should just ignore
966       // this by-value pointer and use the exception object instead.
967       if (!PointeeType->isRecordType()) {
968 
969         // Exn points to the struct _Unwind_Exception header, which
970         // we have to skip past in order to reach the exception data.
971         unsigned HeaderSize =
972           CGF.CGM.getTargetCodeGenInfo().getSizeOfUnwindException();
973         AdjustedExn = CGF.Builder.CreateConstGEP1_32(Exn, HeaderSize);
974 
975       // However, if we're catching a pointer-to-record type that won't
976       // work, because the personality function might have adjusted
977       // the pointer.  There's actually no way for us to fully satisfy
978       // the language/ABI contract here:  we can't use Exn because it
979       // might have the wrong adjustment, but we can't use the by-value
980       // pointer because it's off by a level of abstraction.
981       //
982       // The current solution is to dump the adjusted pointer into an
983       // alloca, which breaks language semantics (because changing the
984       // pointer doesn't change the exception) but at least works.
985       // The better solution would be to filter out non-exact matches
986       // and rethrow them, but this is tricky because the rethrow
987       // really needs to be catchable by other sites at this landing
988       // pad.  The best solution is to fix the personality function.
989       } else {
990         // Pull the pointer for the reference type off.
991         llvm::Type *PtrTy =
992           cast<llvm::PointerType>(LLVMCatchTy)->getElementType();
993 
994         // Create the temporary and write the adjusted pointer into it.
995         llvm::Value *ExnPtrTmp = CGF.CreateTempAlloca(PtrTy, "exn.byref.tmp");
996         llvm::Value *Casted = CGF.Builder.CreateBitCast(AdjustedExn, PtrTy);
997         CGF.Builder.CreateStore(Casted, ExnPtrTmp);
998 
999         // Bind the reference to the temporary.
1000         AdjustedExn = ExnPtrTmp;
1001       }
1002     }
1003 
1004     llvm::Value *ExnCast =
1005       CGF.Builder.CreateBitCast(AdjustedExn, LLVMCatchTy, "exn.byref");
1006     CGF.Builder.CreateStore(ExnCast, ParamAddr);
1007     return;
1008   }
1009 
1010   // Scalars and complexes.
1011   TypeEvaluationKind TEK = CGF.getEvaluationKind(CatchType);
1012   if (TEK != TEK_Aggregate) {
1013     llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, false);
1014 
1015     // If the catch type is a pointer type, __cxa_begin_catch returns
1016     // the pointer by value.
1017     if (CatchType->hasPointerRepresentation()) {
1018       llvm::Value *CastExn =
1019         CGF.Builder.CreateBitCast(AdjustedExn, LLVMCatchTy, "exn.casted");
1020 
1021       switch (CatchType.getQualifiers().getObjCLifetime()) {
1022       case Qualifiers::OCL_Strong:
1023         CastExn = CGF.EmitARCRetainNonBlock(CastExn);
1024         // fallthrough
1025 
1026       case Qualifiers::OCL_None:
1027       case Qualifiers::OCL_ExplicitNone:
1028       case Qualifiers::OCL_Autoreleasing:
1029         CGF.Builder.CreateStore(CastExn, ParamAddr);
1030         return;
1031 
1032       case Qualifiers::OCL_Weak:
1033         CGF.EmitARCInitWeak(ParamAddr, CastExn);
1034         return;
1035       }
1036       llvm_unreachable("bad ownership qualifier!");
1037     }
1038 
1039     // Otherwise, it returns a pointer into the exception object.
1040 
1041     llvm::Type *PtrTy = LLVMCatchTy->getPointerTo(0); // addrspace 0 ok
1042     llvm::Value *Cast = CGF.Builder.CreateBitCast(AdjustedExn, PtrTy);
1043 
1044     LValue srcLV = CGF.MakeNaturalAlignAddrLValue(Cast, CatchType);
1045     LValue destLV = CGF.MakeAddrLValue(ParamAddr, CatchType,
1046                                   CGF.getContext().getDeclAlign(&CatchParam));
1047     switch (TEK) {
1048     case TEK_Complex:
1049       CGF.EmitStoreOfComplex(CGF.EmitLoadOfComplex(srcLV, Loc), destLV,
1050                              /*init*/ true);
1051       return;
1052     case TEK_Scalar: {
1053       llvm::Value *ExnLoad = CGF.EmitLoadOfScalar(srcLV, Loc);
1054       CGF.EmitStoreOfScalar(ExnLoad, destLV, /*init*/ true);
1055       return;
1056     }
1057     case TEK_Aggregate:
1058       llvm_unreachable("evaluation kind filtered out!");
1059     }
1060     llvm_unreachable("bad evaluation kind");
1061   }
1062 
1063   assert(isa<RecordType>(CatchType) && "unexpected catch type!");
1064 
1065   llvm::Type *PtrTy = LLVMCatchTy->getPointerTo(0); // addrspace 0 ok
1066 
1067   // Check for a copy expression.  If we don't have a copy expression,
1068   // that means a trivial copy is okay.
1069   const Expr *copyExpr = CatchParam.getInit();
1070   if (!copyExpr) {
1071     llvm::Value *rawAdjustedExn = CallBeginCatch(CGF, Exn, true);
1072     llvm::Value *adjustedExn = CGF.Builder.CreateBitCast(rawAdjustedExn, PtrTy);
1073     CGF.EmitAggregateCopy(ParamAddr, adjustedExn, CatchType);
1074     return;
1075   }
1076 
1077   // We have to call __cxa_get_exception_ptr to get the adjusted
1078   // pointer before copying.
1079   llvm::CallInst *rawAdjustedExn =
1080     CGF.EmitNounwindRuntimeCall(getGetExceptionPtrFn(CGF.CGM), Exn);
1081 
1082   // Cast that to the appropriate type.
1083   llvm::Value *adjustedExn = CGF.Builder.CreateBitCast(rawAdjustedExn, PtrTy);
1084 
1085   // The copy expression is defined in terms of an OpaqueValueExpr.
1086   // Find it and map it to the adjusted expression.
1087   CodeGenFunction::OpaqueValueMapping
1088     opaque(CGF, OpaqueValueExpr::findInCopyConstruct(copyExpr),
1089            CGF.MakeAddrLValue(adjustedExn, CatchParam.getType()));
1090 
1091   // Call the copy ctor in a terminate scope.
1092   CGF.EHStack.pushTerminate();
1093 
1094   // Perform the copy construction.
1095   CharUnits Alignment = CGF.getContext().getDeclAlign(&CatchParam);
1096   CGF.EmitAggExpr(copyExpr,
1097                   AggValueSlot::forAddr(ParamAddr, Alignment, Qualifiers(),
1098                                         AggValueSlot::IsNotDestructed,
1099                                         AggValueSlot::DoesNotNeedGCBarriers,
1100                                         AggValueSlot::IsNotAliased));
1101 
1102   // Leave the terminate scope.
1103   CGF.EHStack.popTerminate();
1104 
1105   // Undo the opaque value mapping.
1106   opaque.pop();
1107 
1108   // Finally we can call __cxa_begin_catch.
1109   CallBeginCatch(CGF, Exn, true);
1110 }
1111 
1112 /// Begins a catch statement by initializing the catch variable and
1113 /// calling __cxa_begin_catch.
1114 static void BeginCatch(CodeGenFunction &CGF, const CXXCatchStmt *S) {
1115   // We have to be very careful with the ordering of cleanups here:
1116   //   C++ [except.throw]p4:
1117   //     The destruction [of the exception temporary] occurs
1118   //     immediately after the destruction of the object declared in
1119   //     the exception-declaration in the handler.
1120   //
1121   // So the precise ordering is:
1122   //   1.  Construct catch variable.
1123   //   2.  __cxa_begin_catch
1124   //   3.  Enter __cxa_end_catch cleanup
1125   //   4.  Enter dtor cleanup
1126   //
1127   // We do this by using a slightly abnormal initialization process.
1128   // Delegation sequence:
1129   //   - ExitCXXTryStmt opens a RunCleanupsScope
1130   //     - EmitAutoVarAlloca creates the variable and debug info
1131   //       - InitCatchParam initializes the variable from the exception
1132   //       - CallBeginCatch calls __cxa_begin_catch
1133   //       - CallBeginCatch enters the __cxa_end_catch cleanup
1134   //     - EmitAutoVarCleanups enters the variable destructor cleanup
1135   //   - EmitCXXTryStmt emits the code for the catch body
1136   //   - EmitCXXTryStmt close the RunCleanupsScope
1137 
1138   VarDecl *CatchParam = S->getExceptionDecl();
1139   if (!CatchParam) {
1140     llvm::Value *Exn = CGF.getExceptionFromSlot();
1141     CallBeginCatch(CGF, Exn, true);
1142     return;
1143   }
1144 
1145   // Emit the local.
1146   CodeGenFunction::AutoVarEmission var = CGF.EmitAutoVarAlloca(*CatchParam);
1147   InitCatchParam(CGF, *CatchParam, var.getObjectAddress(CGF), S->getLocStart());
1148   CGF.EmitAutoVarCleanups(var);
1149 }
1150 
1151 /// Emit the structure of the dispatch block for the given catch scope.
1152 /// It is an invariant that the dispatch block already exists.
1153 static void emitCatchDispatchBlock(CodeGenFunction &CGF,
1154                                    EHCatchScope &catchScope) {
1155   llvm::BasicBlock *dispatchBlock = catchScope.getCachedEHDispatchBlock();
1156   assert(dispatchBlock);
1157 
1158   // If there's only a single catch-all, getEHDispatchBlock returned
1159   // that catch-all as the dispatch block.
1160   if (catchScope.getNumHandlers() == 1 &&
1161       catchScope.getHandler(0).isCatchAll()) {
1162     assert(dispatchBlock == catchScope.getHandler(0).Block);
1163     return;
1164   }
1165 
1166   CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveIP();
1167   CGF.EmitBlockAfterUses(dispatchBlock);
1168 
1169   // Select the right handler.
1170   llvm::Value *llvm_eh_typeid_for =
1171     CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_typeid_for);
1172 
1173   // Load the selector value.
1174   llvm::Value *selector = CGF.getSelectorFromSlot();
1175 
1176   // Test against each of the exception types we claim to catch.
1177   for (unsigned i = 0, e = catchScope.getNumHandlers(); ; ++i) {
1178     assert(i < e && "ran off end of handlers!");
1179     const EHCatchScope::Handler &handler = catchScope.getHandler(i);
1180 
1181     llvm::Value *typeValue = handler.Type;
1182     assert(typeValue && "fell into catch-all case!");
1183     typeValue = CGF.Builder.CreateBitCast(typeValue, CGF.Int8PtrTy);
1184 
1185     // Figure out the next block.
1186     bool nextIsEnd;
1187     llvm::BasicBlock *nextBlock;
1188 
1189     // If this is the last handler, we're at the end, and the next
1190     // block is the block for the enclosing EH scope.
1191     if (i + 1 == e) {
1192       nextBlock = CGF.getEHDispatchBlock(catchScope.getEnclosingEHScope());
1193       nextIsEnd = true;
1194 
1195     // If the next handler is a catch-all, we're at the end, and the
1196     // next block is that handler.
1197     } else if (catchScope.getHandler(i+1).isCatchAll()) {
1198       nextBlock = catchScope.getHandler(i+1).Block;
1199       nextIsEnd = true;
1200 
1201     // Otherwise, we're not at the end and we need a new block.
1202     } else {
1203       nextBlock = CGF.createBasicBlock("catch.fallthrough");
1204       nextIsEnd = false;
1205     }
1206 
1207     // Figure out the catch type's index in the LSDA's type table.
1208     llvm::CallInst *typeIndex =
1209       CGF.Builder.CreateCall(llvm_eh_typeid_for, typeValue);
1210     typeIndex->setDoesNotThrow();
1211 
1212     llvm::Value *matchesTypeIndex =
1213       CGF.Builder.CreateICmpEQ(selector, typeIndex, "matches");
1214     CGF.Builder.CreateCondBr(matchesTypeIndex, handler.Block, nextBlock);
1215 
1216     // If the next handler is a catch-all, we're completely done.
1217     if (nextIsEnd) {
1218       CGF.Builder.restoreIP(savedIP);
1219       return;
1220     }
1221     // Otherwise we need to emit and continue at that block.
1222     CGF.EmitBlock(nextBlock);
1223   }
1224 }
1225 
1226 void CodeGenFunction::popCatchScope() {
1227   EHCatchScope &catchScope = cast<EHCatchScope>(*EHStack.begin());
1228   if (catchScope.hasEHBranches())
1229     emitCatchDispatchBlock(*this, catchScope);
1230   EHStack.popCatch();
1231 }
1232 
1233 void CodeGenFunction::ExitCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) {
1234   unsigned NumHandlers = S.getNumHandlers();
1235   EHCatchScope &CatchScope = cast<EHCatchScope>(*EHStack.begin());
1236   assert(CatchScope.getNumHandlers() == NumHandlers);
1237 
1238   // If the catch was not required, bail out now.
1239   if (!CatchScope.hasEHBranches()) {
1240     CatchScope.clearHandlerBlocks();
1241     EHStack.popCatch();
1242     return;
1243   }
1244 
1245   // Emit the structure of the EH dispatch for this catch.
1246   emitCatchDispatchBlock(*this, CatchScope);
1247 
1248   // Copy the handler blocks off before we pop the EH stack.  Emitting
1249   // the handlers might scribble on this memory.
1250   SmallVector<EHCatchScope::Handler, 8> Handlers(NumHandlers);
1251   memcpy(Handlers.data(), CatchScope.begin(),
1252          NumHandlers * sizeof(EHCatchScope::Handler));
1253 
1254   EHStack.popCatch();
1255 
1256   // The fall-through block.
1257   llvm::BasicBlock *ContBB = createBasicBlock("try.cont");
1258 
1259   // We just emitted the body of the try; jump to the continue block.
1260   if (HaveInsertPoint())
1261     Builder.CreateBr(ContBB);
1262 
1263   // Determine if we need an implicit rethrow for all these catch handlers;
1264   // see the comment below.
1265   bool doImplicitRethrow = false;
1266   if (IsFnTryBlock)
1267     doImplicitRethrow = isa<CXXDestructorDecl>(CurCodeDecl) ||
1268                         isa<CXXConstructorDecl>(CurCodeDecl);
1269 
1270   // Perversely, we emit the handlers backwards precisely because we
1271   // want them to appear in source order.  In all of these cases, the
1272   // catch block will have exactly one predecessor, which will be a
1273   // particular block in the catch dispatch.  However, in the case of
1274   // a catch-all, one of the dispatch blocks will branch to two
1275   // different handlers, and EmitBlockAfterUses will cause the second
1276   // handler to be moved before the first.
1277   for (unsigned I = NumHandlers; I != 0; --I) {
1278     llvm::BasicBlock *CatchBlock = Handlers[I-1].Block;
1279     EmitBlockAfterUses(CatchBlock);
1280 
1281     // Catch the exception if this isn't a catch-all.
1282     const CXXCatchStmt *C = S.getHandler(I-1);
1283 
1284     // Enter a cleanup scope, including the catch variable and the
1285     // end-catch.
1286     RunCleanupsScope CatchScope(*this);
1287 
1288     // Initialize the catch variable and set up the cleanups.
1289     BeginCatch(*this, C);
1290 
1291     // Emit the PGO counter increment.
1292     RegionCounter CatchCnt = getPGORegionCounter(C);
1293     CatchCnt.beginRegion(Builder);
1294 
1295     // Perform the body of the catch.
1296     EmitStmt(C->getHandlerBlock());
1297 
1298     // [except.handle]p11:
1299     //   The currently handled exception is rethrown if control
1300     //   reaches the end of a handler of the function-try-block of a
1301     //   constructor or destructor.
1302 
1303     // It is important that we only do this on fallthrough and not on
1304     // return.  Note that it's illegal to put a return in a
1305     // constructor function-try-block's catch handler (p14), so this
1306     // really only applies to destructors.
1307     if (doImplicitRethrow && HaveInsertPoint()) {
1308       EmitRuntimeCallOrInvoke(getReThrowFn(CGM));
1309       Builder.CreateUnreachable();
1310       Builder.ClearInsertionPoint();
1311     }
1312 
1313     // Fall out through the catch cleanups.
1314     CatchScope.ForceCleanup();
1315 
1316     // Branch out of the try.
1317     if (HaveInsertPoint())
1318       Builder.CreateBr(ContBB);
1319   }
1320 
1321   RegionCounter ContCnt = getPGORegionCounter(&S);
1322   EmitBlock(ContBB);
1323   ContCnt.beginRegion(Builder);
1324 }
1325 
1326 namespace {
1327   struct CallEndCatchForFinally : EHScopeStack::Cleanup {
1328     llvm::Value *ForEHVar;
1329     llvm::Value *EndCatchFn;
1330     CallEndCatchForFinally(llvm::Value *ForEHVar, llvm::Value *EndCatchFn)
1331       : ForEHVar(ForEHVar), EndCatchFn(EndCatchFn) {}
1332 
1333     void Emit(CodeGenFunction &CGF, Flags flags) override {
1334       llvm::BasicBlock *EndCatchBB = CGF.createBasicBlock("finally.endcatch");
1335       llvm::BasicBlock *CleanupContBB =
1336         CGF.createBasicBlock("finally.cleanup.cont");
1337 
1338       llvm::Value *ShouldEndCatch =
1339         CGF.Builder.CreateLoad(ForEHVar, "finally.endcatch");
1340       CGF.Builder.CreateCondBr(ShouldEndCatch, EndCatchBB, CleanupContBB);
1341       CGF.EmitBlock(EndCatchBB);
1342       CGF.EmitRuntimeCallOrInvoke(EndCatchFn); // catch-all, so might throw
1343       CGF.EmitBlock(CleanupContBB);
1344     }
1345   };
1346 
1347   struct PerformFinally : EHScopeStack::Cleanup {
1348     const Stmt *Body;
1349     llvm::Value *ForEHVar;
1350     llvm::Value *EndCatchFn;
1351     llvm::Value *RethrowFn;
1352     llvm::Value *SavedExnVar;
1353 
1354     PerformFinally(const Stmt *Body, llvm::Value *ForEHVar,
1355                    llvm::Value *EndCatchFn,
1356                    llvm::Value *RethrowFn, llvm::Value *SavedExnVar)
1357       : Body(Body), ForEHVar(ForEHVar), EndCatchFn(EndCatchFn),
1358         RethrowFn(RethrowFn), SavedExnVar(SavedExnVar) {}
1359 
1360     void Emit(CodeGenFunction &CGF, Flags flags) override {
1361       // Enter a cleanup to call the end-catch function if one was provided.
1362       if (EndCatchFn)
1363         CGF.EHStack.pushCleanup<CallEndCatchForFinally>(NormalAndEHCleanup,
1364                                                         ForEHVar, EndCatchFn);
1365 
1366       // Save the current cleanup destination in case there are
1367       // cleanups in the finally block.
1368       llvm::Value *SavedCleanupDest =
1369         CGF.Builder.CreateLoad(CGF.getNormalCleanupDestSlot(),
1370                                "cleanup.dest.saved");
1371 
1372       // Emit the finally block.
1373       CGF.EmitStmt(Body);
1374 
1375       // If the end of the finally is reachable, check whether this was
1376       // for EH.  If so, rethrow.
1377       if (CGF.HaveInsertPoint()) {
1378         llvm::BasicBlock *RethrowBB = CGF.createBasicBlock("finally.rethrow");
1379         llvm::BasicBlock *ContBB = CGF.createBasicBlock("finally.cont");
1380 
1381         llvm::Value *ShouldRethrow =
1382           CGF.Builder.CreateLoad(ForEHVar, "finally.shouldthrow");
1383         CGF.Builder.CreateCondBr(ShouldRethrow, RethrowBB, ContBB);
1384 
1385         CGF.EmitBlock(RethrowBB);
1386         if (SavedExnVar) {
1387           CGF.EmitRuntimeCallOrInvoke(RethrowFn,
1388                                       CGF.Builder.CreateLoad(SavedExnVar));
1389         } else {
1390           CGF.EmitRuntimeCallOrInvoke(RethrowFn);
1391         }
1392         CGF.Builder.CreateUnreachable();
1393 
1394         CGF.EmitBlock(ContBB);
1395 
1396         // Restore the cleanup destination.
1397         CGF.Builder.CreateStore(SavedCleanupDest,
1398                                 CGF.getNormalCleanupDestSlot());
1399       }
1400 
1401       // Leave the end-catch cleanup.  As an optimization, pretend that
1402       // the fallthrough path was inaccessible; we've dynamically proven
1403       // that we're not in the EH case along that path.
1404       if (EndCatchFn) {
1405         CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
1406         CGF.PopCleanupBlock();
1407         CGF.Builder.restoreIP(SavedIP);
1408       }
1409 
1410       // Now make sure we actually have an insertion point or the
1411       // cleanup gods will hate us.
1412       CGF.EnsureInsertPoint();
1413     }
1414   };
1415 }
1416 
1417 /// Enters a finally block for an implementation using zero-cost
1418 /// exceptions.  This is mostly general, but hard-codes some
1419 /// language/ABI-specific behavior in the catch-all sections.
1420 void CodeGenFunction::FinallyInfo::enter(CodeGenFunction &CGF,
1421                                          const Stmt *body,
1422                                          llvm::Constant *beginCatchFn,
1423                                          llvm::Constant *endCatchFn,
1424                                          llvm::Constant *rethrowFn) {
1425   assert((beginCatchFn != 0) == (endCatchFn != 0) &&
1426          "begin/end catch functions not paired");
1427   assert(rethrowFn && "rethrow function is required");
1428 
1429   BeginCatchFn = beginCatchFn;
1430 
1431   // The rethrow function has one of the following two types:
1432   //   void (*)()
1433   //   void (*)(void*)
1434   // In the latter case we need to pass it the exception object.
1435   // But we can't use the exception slot because the @finally might
1436   // have a landing pad (which would overwrite the exception slot).
1437   llvm::FunctionType *rethrowFnTy =
1438     cast<llvm::FunctionType>(
1439       cast<llvm::PointerType>(rethrowFn->getType())->getElementType());
1440   SavedExnVar = 0;
1441   if (rethrowFnTy->getNumParams())
1442     SavedExnVar = CGF.CreateTempAlloca(CGF.Int8PtrTy, "finally.exn");
1443 
1444   // A finally block is a statement which must be executed on any edge
1445   // out of a given scope.  Unlike a cleanup, the finally block may
1446   // contain arbitrary control flow leading out of itself.  In
1447   // addition, finally blocks should always be executed, even if there
1448   // are no catch handlers higher on the stack.  Therefore, we
1449   // surround the protected scope with a combination of a normal
1450   // cleanup (to catch attempts to break out of the block via normal
1451   // control flow) and an EH catch-all (semantically "outside" any try
1452   // statement to which the finally block might have been attached).
1453   // The finally block itself is generated in the context of a cleanup
1454   // which conditionally leaves the catch-all.
1455 
1456   // Jump destination for performing the finally block on an exception
1457   // edge.  We'll never actually reach this block, so unreachable is
1458   // fine.
1459   RethrowDest = CGF.getJumpDestInCurrentScope(CGF.getUnreachableBlock());
1460 
1461   // Whether the finally block is being executed for EH purposes.
1462   ForEHVar = CGF.CreateTempAlloca(CGF.Builder.getInt1Ty(), "finally.for-eh");
1463   CGF.Builder.CreateStore(CGF.Builder.getFalse(), ForEHVar);
1464 
1465   // Enter a normal cleanup which will perform the @finally block.
1466   CGF.EHStack.pushCleanup<PerformFinally>(NormalCleanup, body,
1467                                           ForEHVar, endCatchFn,
1468                                           rethrowFn, SavedExnVar);
1469 
1470   // Enter a catch-all scope.
1471   llvm::BasicBlock *catchBB = CGF.createBasicBlock("finally.catchall");
1472   EHCatchScope *catchScope = CGF.EHStack.pushCatch(1);
1473   catchScope->setCatchAllHandler(0, catchBB);
1474 }
1475 
1476 void CodeGenFunction::FinallyInfo::exit(CodeGenFunction &CGF) {
1477   // Leave the finally catch-all.
1478   EHCatchScope &catchScope = cast<EHCatchScope>(*CGF.EHStack.begin());
1479   llvm::BasicBlock *catchBB = catchScope.getHandler(0).Block;
1480 
1481   CGF.popCatchScope();
1482 
1483   // If there are any references to the catch-all block, emit it.
1484   if (catchBB->use_empty()) {
1485     delete catchBB;
1486   } else {
1487     CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveAndClearIP();
1488     CGF.EmitBlock(catchBB);
1489 
1490     llvm::Value *exn = 0;
1491 
1492     // If there's a begin-catch function, call it.
1493     if (BeginCatchFn) {
1494       exn = CGF.getExceptionFromSlot();
1495       CGF.EmitNounwindRuntimeCall(BeginCatchFn, exn);
1496     }
1497 
1498     // If we need to remember the exception pointer to rethrow later, do so.
1499     if (SavedExnVar) {
1500       if (!exn) exn = CGF.getExceptionFromSlot();
1501       CGF.Builder.CreateStore(exn, SavedExnVar);
1502     }
1503 
1504     // Tell the cleanups in the finally block that we're do this for EH.
1505     CGF.Builder.CreateStore(CGF.Builder.getTrue(), ForEHVar);
1506 
1507     // Thread a jump through the finally cleanup.
1508     CGF.EmitBranchThroughCleanup(RethrowDest);
1509 
1510     CGF.Builder.restoreIP(savedIP);
1511   }
1512 
1513   // Finally, leave the @finally cleanup.
1514   CGF.PopCleanupBlock();
1515 }
1516 
1517 /// In a terminate landing pad, should we use __clang__call_terminate
1518 /// or just a naked call to std::terminate?
1519 ///
1520 /// __clang_call_terminate calls __cxa_begin_catch, which then allows
1521 /// std::terminate to usefully report something about the
1522 /// violating exception.
1523 static bool useClangCallTerminate(CodeGenModule &CGM) {
1524   // Only do this for Itanium-family ABIs in C++ mode.
1525   return (CGM.getLangOpts().CPlusPlus &&
1526           CGM.getTarget().getCXXABI().isItaniumFamily());
1527 }
1528 
1529 /// Get or define the following function:
1530 ///   void @__clang_call_terminate(i8* %exn) nounwind noreturn
1531 /// This code is used only in C++.
1532 static llvm::Constant *getClangCallTerminateFn(CodeGenModule &CGM) {
1533   llvm::FunctionType *fnTy =
1534     llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
1535   llvm::Constant *fnRef =
1536     CGM.CreateRuntimeFunction(fnTy, "__clang_call_terminate");
1537 
1538   llvm::Function *fn = dyn_cast<llvm::Function>(fnRef);
1539   if (fn && fn->empty()) {
1540     fn->setDoesNotThrow();
1541     fn->setDoesNotReturn();
1542 
1543     // What we really want is to massively penalize inlining without
1544     // forbidding it completely.  The difference between that and
1545     // 'noinline' is negligible.
1546     fn->addFnAttr(llvm::Attribute::NoInline);
1547 
1548     // Allow this function to be shared across translation units, but
1549     // we don't want it to turn into an exported symbol.
1550     fn->setLinkage(llvm::Function::LinkOnceODRLinkage);
1551     fn->setVisibility(llvm::Function::HiddenVisibility);
1552 
1553     // Set up the function.
1554     llvm::BasicBlock *entry =
1555       llvm::BasicBlock::Create(CGM.getLLVMContext(), "", fn);
1556     CGBuilderTy builder(entry);
1557 
1558     // Pull the exception pointer out of the parameter list.
1559     llvm::Value *exn = &*fn->arg_begin();
1560 
1561     // Call __cxa_begin_catch(exn).
1562     llvm::CallInst *catchCall = builder.CreateCall(getBeginCatchFn(CGM), exn);
1563     catchCall->setDoesNotThrow();
1564     catchCall->setCallingConv(CGM.getRuntimeCC());
1565 
1566     // Call std::terminate().
1567     llvm::CallInst *termCall = builder.CreateCall(getTerminateFn(CGM));
1568     termCall->setDoesNotThrow();
1569     termCall->setDoesNotReturn();
1570     termCall->setCallingConv(CGM.getRuntimeCC());
1571 
1572     // std::terminate cannot return.
1573     builder.CreateUnreachable();
1574   }
1575 
1576   return fnRef;
1577 }
1578 
1579 llvm::BasicBlock *CodeGenFunction::getTerminateLandingPad() {
1580   if (TerminateLandingPad)
1581     return TerminateLandingPad;
1582 
1583   CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP();
1584 
1585   // This will get inserted at the end of the function.
1586   TerminateLandingPad = createBasicBlock("terminate.lpad");
1587   Builder.SetInsertPoint(TerminateLandingPad);
1588 
1589   // Tell the backend that this is a landing pad.
1590   const EHPersonality &Personality = EHPersonality::get(CGM.getLangOpts());
1591   llvm::LandingPadInst *LPadInst =
1592     Builder.CreateLandingPad(llvm::StructType::get(Int8PtrTy, Int32Ty, NULL),
1593                              getOpaquePersonalityFn(CGM, Personality), 0);
1594   LPadInst->addClause(getCatchAllValue(*this));
1595 
1596   llvm::CallInst *terminateCall;
1597   if (useClangCallTerminate(CGM)) {
1598     // Extract out the exception pointer.
1599     llvm::Value *exn = Builder.CreateExtractValue(LPadInst, 0);
1600     terminateCall = EmitNounwindRuntimeCall(getClangCallTerminateFn(CGM), exn);
1601   } else {
1602     terminateCall = EmitNounwindRuntimeCall(getTerminateFn(CGM));
1603   }
1604   terminateCall->setDoesNotReturn();
1605   Builder.CreateUnreachable();
1606 
1607   // Restore the saved insertion state.
1608   Builder.restoreIP(SavedIP);
1609 
1610   return TerminateLandingPad;
1611 }
1612 
1613 llvm::BasicBlock *CodeGenFunction::getTerminateHandler() {
1614   if (TerminateHandler)
1615     return TerminateHandler;
1616 
1617   CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP();
1618 
1619   // Set up the terminate handler.  This block is inserted at the very
1620   // end of the function by FinishFunction.
1621   TerminateHandler = createBasicBlock("terminate.handler");
1622   Builder.SetInsertPoint(TerminateHandler);
1623   llvm::CallInst *terminateCall;
1624   if (useClangCallTerminate(CGM)) {
1625     // Load the exception pointer.
1626     llvm::Value *exn = getExceptionFromSlot();
1627     terminateCall = EmitNounwindRuntimeCall(getClangCallTerminateFn(CGM), exn);
1628   } else {
1629     terminateCall = EmitNounwindRuntimeCall(getTerminateFn(CGM));
1630   }
1631   terminateCall->setDoesNotReturn();
1632   Builder.CreateUnreachable();
1633 
1634   // Restore the saved insertion state.
1635   Builder.restoreIP(SavedIP);
1636 
1637   return TerminateHandler;
1638 }
1639 
1640 llvm::BasicBlock *CodeGenFunction::getEHResumeBlock(bool isCleanup) {
1641   if (EHResumeBlock) return EHResumeBlock;
1642 
1643   CGBuilderTy::InsertPoint SavedIP = Builder.saveIP();
1644 
1645   // We emit a jump to a notional label at the outermost unwind state.
1646   EHResumeBlock = createBasicBlock("eh.resume");
1647   Builder.SetInsertPoint(EHResumeBlock);
1648 
1649   const EHPersonality &Personality = EHPersonality::get(CGM.getLangOpts());
1650 
1651   // This can always be a call because we necessarily didn't find
1652   // anything on the EH stack which needs our help.
1653   const char *RethrowName = Personality.CatchallRethrowFn;
1654   if (RethrowName != 0 && !isCleanup) {
1655     EmitRuntimeCall(getCatchallRethrowFn(CGM, RethrowName),
1656                       getExceptionFromSlot())
1657       ->setDoesNotReturn();
1658   } else {
1659     switch (CleanupHackLevel) {
1660     case CHL_MandatoryCatchall:
1661       // In mandatory-catchall mode, we need to use
1662       // _Unwind_Resume_or_Rethrow, or whatever the personality's
1663       // equivalent is.
1664       EmitRuntimeCall(getUnwindResumeOrRethrowFn(),
1665                         getExceptionFromSlot())
1666         ->setDoesNotReturn();
1667       break;
1668     case CHL_MandatoryCleanup: {
1669       // In mandatory-cleanup mode, we should use 'resume'.
1670 
1671       // Recreate the landingpad's return value for the 'resume' instruction.
1672       llvm::Value *Exn = getExceptionFromSlot();
1673       llvm::Value *Sel = getSelectorFromSlot();
1674 
1675       llvm::Type *LPadType = llvm::StructType::get(Exn->getType(),
1676                                                    Sel->getType(), NULL);
1677       llvm::Value *LPadVal = llvm::UndefValue::get(LPadType);
1678       LPadVal = Builder.CreateInsertValue(LPadVal, Exn, 0, "lpad.val");
1679       LPadVal = Builder.CreateInsertValue(LPadVal, Sel, 1, "lpad.val");
1680 
1681       Builder.CreateResume(LPadVal);
1682       Builder.restoreIP(SavedIP);
1683       return EHResumeBlock;
1684     }
1685     case CHL_Ideal:
1686       // In an idealized mode where we don't have to worry about the
1687       // optimizer combining landing pads, we should just use
1688       // _Unwind_Resume (or the personality's equivalent).
1689       EmitRuntimeCall(getUnwindResumeFn(), getExceptionFromSlot())
1690         ->setDoesNotReturn();
1691       break;
1692     }
1693   }
1694 
1695   Builder.CreateUnreachable();
1696 
1697   Builder.restoreIP(SavedIP);
1698 
1699   return EHResumeBlock;
1700 }
1701 
1702 void CodeGenFunction::EmitSEHTryStmt(const SEHTryStmt &S) {
1703   CGM.ErrorUnsupported(&S, "SEH __try");
1704 }
1705