Lines Matching defs:exception_object
48 struct _Unwind_Exception *exception_object =
50 _LIBUNWIND_TRACE_API("_Unwind_CallPersonality(exception_object=%p)",
51 (void *)exception_object);
59 1, _UA_SEARCH_PHASE, exception_object->exception_class, exception_object,
65 _Unwind_RaiseException(_Unwind_Exception *exception_object) {
66 _LIBUNWIND_TRACE_API("_Unwind_RaiseException(exception_object=%p)",
67 (void *)exception_object);
69 __builtin_wasm_throw(0, exception_object);
74 _Unwind_DeleteException(_Unwind_Exception *exception_object) {
76 (void *)(exception_object));
77 if (exception_object->exception_cleanup != NULL)
78 (*exception_object->exception_cleanup)(_URC_FOREIGN_EXCEPTION_CAUGHT,
79 exception_object);