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