darling-libobjc2/objcxx_eh.h

48 lines
1.5 KiB
C
Raw Normal View History

#ifdef __cplusplus
extern "C" {
#endif
2011-03-22 00:08:45 +00:00
/**
* Allocates a C++ exception. This function is part of the Itanium C++ ABI and
* is provided externally.
*/
__attribute__((weak))
void *__cxa_allocate_exception(size_t thrown_size);
2011-03-22 00:08:45 +00:00
/**
* Initialises an exception object returned by __cxa_allocate_exception() for
* storing an Objective-C object. The return value is the location of the
* _Unwind_Exception structure within this structure, and should be passed to
* the C++ personality function.
*/
__attribute__((weak))
struct _Unwind_Exception *objc_init_cxx_exception(void *thrown_exception);
2011-03-22 00:08:45 +00:00
/**
* The GNU C++ exception personality function, provided by libsupc++ (GNU) or
* libcxxrt (PathScale).
*/
__attribute__((weak)) DECLARE_PERSONALITY_FUNCTION(__gxx_personality_v0);
2011-03-22 00:08:45 +00:00
/**
* Frees an exception object allocated by __cxa_allocate_exception(). Part of
* the Itanium C++ ABI.
*/
__attribute__((weak))
void __cxa_free_exception(void *thrown_exception);
2011-03-22 00:08:45 +00:00
/**
* Tests whether a C++ exception contains an Objective-C object, and returns if
* if it does. Returns -1 if it doesn't. -1 is used instead of 0, because
* throwing nil is allowed, but throwing non-nil, invalid objects is not.
*/
__attribute__((weak))
void *objc_object_for_cxx_exception(void *thrown_exception);
2011-03-22 00:08:45 +00:00
/**
* Prints the type info associated with an exception. Used only when
* debugging, not compiled in the normal build.
*/
__attribute__((weak))
void print_type_info(void *thrown_exception);
#ifdef __cplusplus
}
#endif