llvm-project/libcxxabi/src
Howard Hinnant f2ca35cd79 Add capability to demangle invocation functions for ObjC blocks.
llvm-svn: 179208
2013-04-10 19:44:03 +00:00
..
abort_message.cpp fix crash log magic 2012-03-14 01:16:14 +00:00
abort_message.h Work on restricting symbol visibility. 2012-02-02 20:47:28 +00:00
cxa_aux_runtime.cpp tabs to spaces 2011-06-07 19:56:49 +00:00
cxa_default_handlers.cpp Partially revert r152770. That commit moved the default handlers to their own file. But it also did some refactoring. It is the latter that is being reverted. The refactoring had accidentally removed the required effect that the default unexpected_handler calls std::terminate(), which is a visible effect. 2013-02-06 19:29:55 +00:00
cxa_demangle.cpp Add capability to demangle invocation functions for ObjC blocks. 2013-04-10 19:44:03 +00:00
cxa_exception.cpp Bruce Mitchener: Typo fixes. 2013-02-15 15:48:49 +00:00
cxa_exception.hpp I've moved __cxa_terminate_handler, __cxa_unexpected_handler and __cxa_new_handler from the public header cxxabi.h into the private header cxa_handlers.hpp. During this move I've also moved them from namespace __cxxabiapple into the global namespace. They are, and have always been extern C and so the namespace (or lack of it) does not affect their ABI. In general external clients should not reference these symbols. They are atomic variables and will be changing into C++11 atomic variables in the future. However for those few clients who really need access to them, their name, mangling, size, alignment and layout will remain stable. You just may need your own declaration of them. Include guards have been added to the private header cxa_exception.hpp. The private header cxa_default_handlers.hpp has been removed and the default handlers are now file-static. Include guards have been added to the private header cxa_handlers.hpp. 2012-03-19 16:20:34 +00:00
cxa_exception_storage.cpp Bruce Mitchener: Typo fixes. 2013-02-15 15:48:49 +00:00
cxa_guard.cpp Missed an underscore on the last commit. 2012-03-14 19:39:50 +00:00
cxa_handlers.cpp Make __cxa_new_handler un-mangled 2012-04-28 16:46:04 +00:00
cxa_handlers.hpp Bruce Mitchener: Typo fixes. 2013-02-15 15:48:49 +00:00
cxa_new_delete.cpp Add some needed symbols to cxa_new_delete.cpp and put the display() stuff under #DEBUG (again). 2012-01-24 21:35:18 +00:00
cxa_personality.cpp Bruce Mitchener: Typo fixes. 2013-02-15 15:48:49 +00:00
cxa_unexpected.cpp Add a descriptive name for a constant. Also I'm at least temporarily waging war on throw specs, both old and new style. Except where we have already publicly exposed the throw spec, I'm getting rid of them. They may come back later. But they seem somewhat prone to cyclic dependencies here. The throw spec implies compiler generated code that this library has to jump to during stack unwinding. I'd like to minimize the possiblity that the code used to properly make that jump is itself creating such jumps. 2012-01-30 16:07:00 +00:00
cxa_vector.cpp Bruce Mitchener: Typo fixes. 2013-02-15 15:48:49 +00:00
cxa_virtual.cpp use abort_message() 2011-08-02 01:19:07 +00:00
exception.cpp Add some needed symbols in exception.cpp and eliminate dependence upon uncaught_exception() from cxa_vector.cpp. libc++abi is very nearly a self-contained (though not complete) library now. 2012-01-24 21:48:10 +00:00
fallback_malloc.ipp Enable/silence -Wconversion. 2012-03-08 20:16:45 +00:00
private_typeinfo.cpp Bruce Mitchener: Typo fixes. 2013-02-15 15:48:49 +00:00
private_typeinfo.h Make the type_info for __shim_type_info visible. This should address some failing dynamic_casts that a few applications are doing on the type_info hierarchy. 2012-10-13 18:45:59 +00:00
stdexcept.cpp Two changes: 1) I still didn't have the ABI correct to match the gcc-4.2 std::string under the exception classes. I think the changes to stdexcept.cpp have got that down now. 2) On Apple platforms I'm seeing visibility bugs in applications with respect to type_info's being hidden. This is causing dynamic_cast to malfunction because there are multiple type_info's running around for one type within an application, making dynamic_cast believe that one type is actually multiple types. As a stop gap measure I'm trying to detect this error, print out an error message, but continue with the most likely desired result. This is all under __APPLE__. This behavior can be expanded to other platforms if desired. 2012-09-28 00:05:34 +00:00
typeinfo.cpp Work on restricting symbol visibility. 2012-02-02 20:47:28 +00:00