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()
326 if (isOurExceptionClass(&exception_header->unwindHeader)) in __cxa_end_cleanup_impl()
339 return &exception_header->unwindHeader; in __cxa_end_cleanup_impl()
415 return reinterpret_cast<void*>(exception_header->unwindHeader.barrier_cache.bitpattern[0]); in __cxa_begin_catch()
463 bool native_exception = isOurExceptionClass(&exception_header->unwindHeader); in __cxa_end_catch()
489 if (isDependentException(&exception_header->unwindHeader)) in __cxa_end_catch()
511 _Unwind_DeleteException(&globals->caughtExceptions->unwindHeader); in __cxa_end_catch()
528 if (!isOurExceptionClass(&exception_header->unwindHeader)) in __cxa_current_exception_type()
553 bool native_exception = isOurExceptionClass(&exception_header->unwindHeader); in __cxa_rethrow()
570 _Unwind_SjLj_RaiseException(&exception_header->unwindHeader); in __cxa_rethrow()
572 _Unwind_RaiseException(&exception_header->unwindHeader); in __cxa_rethrow()
579 __cxa_begin_catch(&exception_header->unwindHeader); in __cxa_rethrow()
646 if (!isOurExceptionClass(&exception_header->unwindHeader)) in __cxa_current_primary_exception()
648 if (isDependentException(&exception_header->unwindHeader)) { in __cxa_current_primary_exception()
695 setDependentExceptionClass(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
697 dep_exception_header->unwindHeader.exception_cleanup = dependent_exception_cleanup; in __cxa_rethrow_primary_exception()
699 _Unwind_SjLj_RaiseException(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
701 _Unwind_RaiseException(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
704 __cxa_begin_catch(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()