Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxxabi/test/
H A Dforced_unwind2.pass.cpp46 exc->exception_cleanup = 0; in forced_unwind()
H A Dforced_unwind3.pass.cpp63 exc->exception_cleanup = 0; in forced_unwind()
H A Dforced_unwind1.pass.cpp58 exc->exception_cleanup = cleanup; in forced_unwind()
/llvm-project-15.0.7/clang/lib/Headers/
H A Dunwind.h114 void (*exception_cleanup)(_Unwind_Reason_Code, _Unwind_Control_Block *); member
144 _Unwind_Exception_Cleanup_Fn exception_cleanup; member
/llvm-project-15.0.7/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
/llvm-project-15.0.7/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.c520 if (exception_object->exception_cleanup != NULL) in _Unwind_DeleteException()
521 (*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()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp323 (ret->unwindException).exception_cleanup = deleteFromUnwindOurException; in createOurException()