Lines Matching refs:unwindHeader
148 (void) __cxa_begin_catch(&exception_header->unwindHeader); in failed_throw()
232 setExceptionClass(&exception_header->unwindHeader); in __cxa_throw()
236 exception_header->unwindHeader.exception_cleanup = exception_cleanup_func; in __cxa_throw()
238 _Unwind_SjLj_RaiseException(&exception_header->unwindHeader); in __cxa_throw()
240 _Unwind_RaiseException(&exception_header->unwindHeader); in __cxa_throw()
324 if (isOurExceptionClass(&exception_header->unwindHeader)) in __cxa_end_cleanup_impl()
337 return &exception_header->unwindHeader; in __cxa_end_cleanup_impl()
413 return reinterpret_cast<void*>(exception_header->unwindHeader.barrier_cache.bitpattern[0]); in __cxa_begin_catch()
466 bool native_exception = isOurExceptionClass(&exception_header->unwindHeader); in __cxa_end_catch()
492 if (isDependentException(&exception_header->unwindHeader)) in __cxa_end_catch()
514 _Unwind_DeleteException(&globals->caughtExceptions->unwindHeader); in __cxa_end_catch()
531 if (!isOurExceptionClass(&exception_header->unwindHeader)) in __cxa_current_exception_type()
556 bool native_exception = isOurExceptionClass(&exception_header->unwindHeader); in __cxa_rethrow()
573 _Unwind_SjLj_RaiseException(&exception_header->unwindHeader); in __cxa_rethrow()
575 _Unwind_RaiseException(&exception_header->unwindHeader); in __cxa_rethrow()
582 __cxa_begin_catch(&exception_header->unwindHeader); in __cxa_rethrow()
649 if (!isOurExceptionClass(&exception_header->unwindHeader)) in __cxa_current_primary_exception()
651 if (isDependentException(&exception_header->unwindHeader)) { in __cxa_current_primary_exception()
698 setDependentExceptionClass(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
700 dep_exception_header->unwindHeader.exception_cleanup = dependent_exception_cleanup; in __cxa_rethrow_primary_exception()
702 _Unwind_SjLj_RaiseException(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
704 _Unwind_RaiseException(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
707 __cxa_begin_catch(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()