aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGException.cpp
AgeCommit message (Expand)Author
2010-12-06Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoreticalJohn McCall
2010-11-07ARM EH uses a different personality function in C.John McCall
2010-10-29Don't assert on attempts to throw 'bool'. I wonder if in the history of C++John McCall
2010-10-15Death to blocks, or at least the word "block" in one particular obnoxiouslyJohn McCall
2010-09-16Opportunistically use the C++ personality function in ObjC++John McCall
2010-09-15one piece of code is responsible for the lifetime of every aggregateJohn McCall
2010-08-21IRgen: Change Emit{Load,Store}OfScalar to take a required Alignment argument andDaniel Dunbar
2010-08-13Sketch out a framework for delaying the activation of a cleanup.John McCall
2010-08-11When re-raising an exception after a cleanup, we need to call _Unwind_Resume_...John McCall
2010-08-11Fix a bug in @finally emission in both the fragile and non-fragile EH schemesJohn McCall
2010-07-24Support catching Objective C pointers in C++ under the non-fragile NeXT runtime.John McCall
2010-07-23Revise cleanup IR generation to fix a major bug with cleanups (PR7686)John McCall
2010-07-21Rename LazyCleanup -> Cleanup. No functionality change for these last threeJohn McCall
2010-07-21Rip out EHCleanupScope.John McCall
2010-07-21Kill the CleanupBlock API.John McCall
2010-07-21Switch finally cleanups over to being lazy cleanups. We get basically nothingJohn McCall
2010-07-21Convert the end-catch call for finally blocks to a lazy cleanup. This kills offJohn McCall
2010-07-20Fix the IR generation for catching pointers by references.John McCall
2010-07-17The GNU-runtime ObjC personality function doesn't let us rethrow with URR forJohn McCall
2010-07-13Work around an obnoxious GCC warning by changing semantics in a hopefully-John McCall
2010-07-13Switch the __cxa_rethrow cleanup to be lazy.John McCall
2010-07-13Allow for the possibility that __cxa_end_catch might throw for a catch-all blockJohn McCall
2010-07-13Switch the __cxa_free_exception cleanup to be lazy.John McCall
2010-07-13Teach IR generation how to lazily emit cleanups. This has a lot of advantages,John McCall
2010-07-07Teach function-try-blocks on constructors and destructors to implicitlyJohn McCall
2010-07-06Validated by nightly-test runs on x86 and x86-64 darwin, including afterJohn McCall
2010-07-01Remove unnecessary ASTContext parameter fromDouglas Gregor
2010-06-27finally get around to doing a significant cleanup to irgen:Chris Lattner
2010-05-28Fix personality function name when using SjLj exceptions.Daniel Dunbar
2010-05-17Fix an ambiguous else warning from GCC by adding some much needed curlies.Chandler Carruth
2010-05-17Pick the correct personality function based on the language. This prevents l...David Chisnall
2010-05-16When initializing thread-safe statics, put the call toDouglas Gregor
2010-05-16Revert r103880 (thread-safe static initialization w/ exceptions),Douglas Gregor
2010-05-15When initializing thread-safe statics, put the call toDouglas Gregor
2010-04-30Fix -fno-rtti -fexceptions by forcing the emission of (non-"builtin") RTTIJohn McCall
2010-04-30Teach EHCleanupBlock to deal appropriately with the possibility that thereJohn McCall
2010-04-22Call PerformCopyInitialization to properly initialize the exception temporaryJohn McCall
2010-04-21Miscellaneous codegen cleanups. Mostly, don't create new basic blocksJohn McCall
2010-03-18Replace some SmallVectors with arrays.Benjamin Kramer
2010-02-19More refactoring around constructor/destructor code generation.John McCall
2010-02-10Switch to using -fsjlj-exceptions instead of hard-coding it. Notably, this fixesDaniel Dunbar
2010-02-07Make sure to set vtable pointers in the destructors as well.Anders Carlsson
2010-02-06Make EmitStartEHSpec and EmitEndEHSpec return early when exceptions are disab...Anders Carlsson
2010-02-05Standardize the parsing of function type attributes in a way thatJohn McCall
2010-01-01Fix last patch, catch of reference to non-pointer.Mike Stump
2010-01-01Fix catching a reference to a pointer.Mike Stump
2009-12-24Pass ReturnValueSlot to EmitCall. No functionality change yet.Anders Carlsson
2009-12-24Cleanup some dead code.Mike Stump
2009-12-23There is no such thing as typeinfo for a cv-qualified type. AssertDouglas Gregor
2009-12-17Rename GetAddrOfRTTI to GetAddrOfRTTIDescriptor. Remove the overload that tak...Anders Carlsson