aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGException.cpp
AgeCommit message (Expand)Author
2012-03-29Revert r153613 as it's causing large compile-time regressions on the nightly ...Chad Rosier
2012-03-28When we can't prove that the target of an aggregate copy isJohn McCall
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-02-19Remove dead code.Ahmed Charles
2012-02-08CodeGen: Move EHPersonality from CGException.h into the cpp file, it has no o...Benjamin Kramer
2012-02-07simplify a bunch of code to use the well-known LLVM IR types computed by Code...Chris Lattner
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2012-01-17When initializing a catch variable in ARC, be sure to emit retainsJohn McCall
2011-12-08Don't get the exception obj from the slot more than once.Bill Wendling
2011-12-03Switch the Alignment argument on AggValueSlot over to CharUnits, per John's r...Eli Friedman
2011-12-03Track alignment in AggValueSlot. No functional change in this patch, but I'l...Eli Friedman
2011-11-10Whenever explicitly activating or deactivating a cleanup, weJohn McCall
2011-09-22Don't remove filters.Bill Wendling
2011-09-20Don't assume that the clause is a GlobalVariable. It could be a constant.Bill Wendling
2011-09-19The eh.selector intrinsic isn't used anymore. Replace the check here with aBill Wendling
2011-09-19Throw the switch to convert clang to the new exception handling model!Bill Wendling
2011-09-15Refactor the load of the exception pointer and the exception selector from theirBill Wendling
2011-09-02Extend the ASTContext constructor to delay the initialization ofDouglas Gregor
2011-08-27Remove unused variables noticed by GCC.Benjamin Kramer
2011-08-26The allocated exception slot does not alias anything; should fix self-host.John McCall
2011-08-25Use stronger typing for the flags on AggValueSlot and requireJohn McCall
2011-08-11Simplify EH control flow by observing that EH scopes form a simpleJohn McCall
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