Age | Commit message (Expand) | Author |
2011-02-22 | Reorganize the emission of local variables. | John McCall |
2011-02-20 | Add a LangOptions::areExceptionsEnabled and start using it. | Anders Carlsson |
2011-02-17 | Change the representation of GNU ?: expressions to use a different expression | John McCall |
2011-02-16 | Remove this FIXME; clear up an unused variable; style. | John McCall |
2011-02-16 | Save a copy expression for non-trivial copy constructions of catch variables. | John McCall |
2011-02-08 | Reorganize CodeGen{Function,Module} to eliminate the unfortunate | John McCall |
2011-01-28 | Move all the cleanups framework code into a single file. | John McCall |
2011-01-28 | Convert the exception-freeing cleanup over to the conditional cleanups code, | John McCall |
2011-01-26 | Fix some obvious bugs in the conditional-cleanup code and then make the | John McCall |
2011-01-26 | Better framework for conditional cleanups; untested as yet. | John McCall |
2011-01-24 | "Name" a bool parameter. | Anders Carlsson |
2011-01-12 | Fix a latent bug where, after emitting an expression statement, we would | John McCall |
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 |