libc++abi Specification

来源:互联网 发布:海尔品牌价值知乎 编辑:程序博客网 时间:2024/05/14 15:38
 

void* __cxa_allocate_exception(size_t thrown_size) throw();

Effects: Allocates memory to hold the exception to be thrown.thrown_size is the size of the exception object. Can allocate additional memory to hold private data. If memory can not be allocated, callstd::terminate().

Returns: A pointer to the memory allocated for the exception object. 



void* __cxa_begin_catch(void* exceptionObject) throw();

Effects:

  • Increment's the exception's handler count.
  • Places the exception on the stack of currently-caught exceptions if it is not already there, linking the exception to the previous top of the stack.
  • Decrements the uncaught_exception count.

If the initialization of the catch parameter is trivial (e,g., there is no formal catch parameter, or the parameter has no copy constructor), the calls to__cxa_get_exception_ptr() and __cxa_begin_catch() may be combined into a single call to__cxa_begin_catch().

When the personality routine encounters a termination condition, it will call__cxa_begin_catch() to mark the exception as handled and then call terminate(), which shall not return to its caller.

Returns: The adjusted pointer to the exception object. 


void __cxa_end_catch();

Effects: Locates the most recently caught exception and decrements its handler count. Removes the exception from the caught脫exception stack, if the handler count goes to zero. Destroys the exception if the handler count goes to zero, and the exception was not re-thrown by throw. Collaboration between __cxa_rethrow() and __cxa_end_catch() is necessary to handle the last point. Though implementation-defined, one possibility is for __cxa_rethrow() to set a flag in the handlerCount member of the exception header to mark an exception being rethrown.


void __cxa_throw(void* thrown_exception, struct std::type_info * tinfo, void (*dest)(void*));
Effects:






阅读全文
0 0