Home
last modified time | relevance | path

Searched refs:exception_cleanup (Results 1 – 23 of 23) sorted by relevance

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/eh/
H A Dforced2.C33 exc->exception_cleanup = force_unwind_cleanup; in force_unwind()
H A Dforced4.C27 exc->exception_cleanup = 0; in force_unwind()
H A Dforced3.C28 exc->exception_cleanup = 0; in force_unwind()
H A Dforced1.C39 exc->exception_cleanup = force_unwind_cleanup; in force_unwind()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Dcleanup-5.c24 exc->exception_cleanup = 0; in force_unwind()
/openbsd-src/gnu/llvm/clang/lib/Headers/
H A Dunwind.h115 void (*exception_cleanup)(_Unwind_Reason_Code, _Unwind_Control_Block *); member
145 _Unwind_Exception_Cleanup_Fn exception_cleanup; member
/openbsd-src/gnu/llvm/libunwind/include/
H A Dunwind_itanium.h23 void (*exception_cleanup)(_Unwind_Reason_Code reason, member
H A Dunwind_arm_ehabi.h34 void (*exception_cleanup)(_Unwind_Reason_Code, _Unwind_Control_Block*); member
/openbsd-src/gnu/lib/libstdc++/libstdc++/libsupc++/
H A Deh_throw.cc67 header->unwindHeader.exception_cleanup = __gxx_exception_cleanup; in __cxa_throw()
/openbsd-src/gnu/gcc/libstdc++-v3/libsupc++/
H A Deh_throw.cc66 header->unwindHeader.exception_cleanup = __gxx_exception_cleanup; in __cxa_throw()
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dunwind.inc262 /* A convenience function that calls the exception_cleanup field. */
267 if (exc->exception_cleanup)
268 (*exc->exception_cleanup) (_URC_FOREIGN_EXCEPTION_CAUGHT, exc);
H A Dunwind.h84 _Unwind_Exception_Cleanup_Fn exception_cleanup; member
H A DChangeLog4445 exception_cleanup.
/openbsd-src/gnu/llvm/libunwind/src/
H A DUnwind-sjlj.c487 if (exception_object->exception_cleanup != NULL) in _Unwind_DeleteException()
488 (*exception_object->exception_cleanup)(_URC_FOREIGN_EXCEPTION_CAUGHT, in _Unwind_DeleteException()
H A DUnwindLevel1.c540 if (exception_object->exception_cleanup != NULL) in _Unwind_DeleteException()
541 (*exception_object->exception_cleanup)(_URC_FOREIGN_EXCEPTION_CAUGHT, in _Unwind_DeleteException()
H A DUnwind-EHABI.cpp1188 if (exception_object->exception_cleanup != NULL) in _Unwind_DeleteException()
1189 (*exception_object->exception_cleanup)(_URC_FOREIGN_EXCEPTION_CAUGHT, in _Unwind_DeleteException()
/openbsd-src/gnu/gcc/gcc/
H A Dunwind.inc269 /* A convenience function that calls the exception_cleanup field. */
274 if (exc->exception_cleanup)
275 (*exc->exception_cleanup) (_URC_FOREIGN_EXCEPTION_CAUGHT, exc);
H A Dunwind-generic.h91 _Unwind_Exception_Cleanup_Fn exception_cleanup; member
/openbsd-src/gnu/llvm/libcxxabi/src/
H A Dcxa_exception.cpp269 exception_header->unwindHeader.exception_cleanup = exception_cleanup_func; in __cxa_throw()
749 dep_exception_header->unwindHeader.exception_cleanup = dependent_exception_cleanup; in __cxa_rethrow_primary_exception()
/openbsd-src/gnu/gcc/gcc/config/arm/
H A Dunwind-arm.h91 void (*exception_cleanup)(_Unwind_Reason_Code, _Unwind_Control_Block *); member
H A Dunwind-arm.c745 if (exc->exception_cleanup) in _Unwind_DeleteException()
746 (*exc->exception_cleanup) (_URC_FOREIGN_EXCEPTION_CAUGHT, exc); in _Unwind_DeleteException()
/openbsd-src/gnu/llvm/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp323 (ret->unwindException).exception_cleanup = deleteFromUnwindOurException; in createOurException()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/
H A DChangeLog1244 Verify exception_cleanup not called for rethrows.
1245 * g++.dg/eh/forced2.C: Test that exception_cleanup is called