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