aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGException.cpp
AgeCommit message (Expand)Author
2011-07-29Remove some unnecessary single element array temporaries.Jay Foad
2011-07-23remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner
2011-07-18de-constify llvm::Type, patch by David Blaikie!Chris Lattner
2011-07-15Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad
2011-07-12Generalize Cleanup::Emit's "isForEH" parameter into a setJohn McCall
2011-07-12Do full-expression cleanups in a much more sensible way that still letsJohn McCall
2011-07-10Use cached types; no functionality change.John McCall
2011-07-09clang side to match the LLVM IR type system rewrite patch.Chris Lattner
2011-07-06Call objc_terminate() instead of abort() when a cleanup throws anJohn McCall
2011-06-23Support for catching objc pointer objects in c++ catch-statementFariborz Jahanian
2011-06-22Alloa catching Objective-C id's being thrown with C++ throwFariborz Jahanian
2011-06-22Emit @finally blocks completely lazily instead of forcing theirJohn McCall
2011-06-15Automatic Reference Counting.John McCall
2011-05-28Convert Clang over to resuming from landing pads with llvm.eh.resume.John McCall
2011-05-27Back out r132209; it's breaking nightly tests.Eli Friedman
2011-05-27Implement a new, much improved version of the cleanup hack. We just needJohn McCall
2011-04-26IRgen/Darwin: Fix refacto introduced in Triple changes.Daniel Dunbar
2011-04-19ADT/Triple: Switch to using .isOSDarwin() predicate.Daniel Dunbar
2011-04-18Get rid of std::vector usage when getting function types in CGException.cppAnders Carlsson
2011-04-15fix a bunch of comment typos found by codespell. Patch byChris Lattner
2011-03-20Fix Objective-C++ exceptions (GNU runtime).David Chisnall
2011-03-15Reintroduce r127617: "Code generation for noexcept." with fixes.Sebastian Redl
2011-03-15Revert r127617: "Code generation for noexcept."Jakob Stoklund Olesen
2011-03-14Code generation for noexcept.Sebastian Redl
2011-03-12Propagate the new exception information to FunctionProtoType.Sebastian Redl
2011-02-28Add a -fcxx-exceptions flag to the frontend, which can be used to enableAnders Carlsson
2011-02-28Get rid of the areExceptionsEnabled() getter from LangOptions.Anders Carlsson
2011-02-22Reorganize the emission of local variables.John McCall
2011-02-20Add a LangOptions::areExceptionsEnabled and start using it.Anders Carlsson
2011-02-17Change the representation of GNU ?: expressions to use a different expressionJohn McCall
2011-02-16Remove this FIXME; clear up an unused variable; style.John McCall
2011-02-16Save a copy expression for non-trivial copy constructions of catch variables.John McCall
2011-02-08Reorganize CodeGen{Function,Module} to eliminate the unfortunateJohn McCall
2011-01-28Move all the cleanups framework code into a single file.John McCall
2011-01-28Convert the exception-freeing cleanup over to the conditional cleanups code,John McCall
2011-01-26Fix some obvious bugs in the conditional-cleanup code and then make theJohn McCall
2011-01-26Better framework for conditional cleanups; untested as yet.John McCall
2011-01-24"Name" a bool parameter.Anders Carlsson
2011-01-12Fix a latent bug where, after emitting an expression statement, we wouldJohn McCall
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