Home
last modified time | relevance | path

Searched refs:exception_object (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/libunwind/src/
H A DUnwind-sjlj.c122 unwind_phase1(struct _Unwind_Exception *exception_object) { in unwind_phase1()
134 (void *)exception_object); in unwind_phase1()
144 (void *)exception_object, in unwind_phase1()
147 1, _UA_SEARCH_PHASE, exception_object->exception_class, in unwind_phase1()
148 exception_object, (struct _Unwind_Context *)c); in unwind_phase1()
154 exception_object->private_2 = (uintptr_t) c; in unwind_phase1()
157 (void *)exception_object); in unwind_phase1()
163 (void *)exception_object); in unwind_phase1()
171 (void *)exception_object); in unwind_phase1()
181 unwind_phase2(struct _Unwind_Exception *exception_object) { in unwind_phase2()
121 unwind_phase1(struct _Unwind_Exception * exception_object) unwind_phase1() argument
180 unwind_phase2(struct _Unwind_Exception * exception_object) unwind_phase2() argument
250 unwind_phase2_forced(struct _Unwind_Exception * exception_object,_Unwind_Stop_Fn stop,void * stop_parameter) unwind_phase2_forced() argument
335 _Unwind_SjLj_RaiseException(struct _Unwind_Exception * exception_object) _Unwind_SjLj_RaiseException() argument
366 _Unwind_SjLj_Resume(struct _Unwind_Exception * exception_object) _Unwind_SjLj_Resume() argument
384 _Unwind_SjLj_Resume_or_Rethrow(struct _Unwind_Exception * exception_object) _Unwind_SjLj_Resume_or_Rethrow() argument
484 _Unwind_DeleteException(struct _Unwind_Exception * exception_object) _Unwind_DeleteException() argument
[all...]
H A DUnwindLevel1.c91 unwind_phase1(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { in unwind_phase1() argument
103 (void *)exception_object); in unwind_phase1()
109 (void *)exception_object); in unwind_phase1()
120 (void *)exception_object); in unwind_phase1()
139 (void *)exception_object, pc, frameInfo.start_ip, functionName, in unwind_phase1()
151 (void *)exception_object, (void *)(uintptr_t)p); in unwind_phase1()
153 (*p)(1, _UA_SEARCH_PHASE, exception_object->exception_class, in unwind_phase1()
154 exception_object, (struct _Unwind_Context *)(cursor)); in unwind_phase1()
160 exception_object->private_2 = (uintptr_t)sp; in unwind_phase1()
163 (void *)exception_object); in unwind_phase1()
[all …]
H A DUnwind-EHABI.cpp465 unwind_phase1(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { in unwind_phase1() argument
483 static_cast<void *>(exception_object)); in unwind_phase1()
502 static_cast<void *>(exception_object), pc, in unwind_phase1()
515 static_cast<void *>(exception_object), in unwind_phase1()
518 exception_object->pr_cache.fnstart = frameInfo.start_ip; in unwind_phase1()
519 exception_object->pr_cache.ehtp = in unwind_phase1()
521 exception_object->pr_cache.additional = frameInfo.flags; in unwind_phase1()
523 (*p)(_US_VIRTUAL_UNWIND_FRAME, exception_object, context); in unwind_phase1()
527 static_cast<void *>(exception_object), personalityResult, in unwind_phase1()
528 exception_object->pr_cache.fnstart, in unwind_phase1()
[all …]
H A DUnwind-seh.cpp239 _Unwind_Exception *exception_object, in unwind_phase2_forced() argument
252 (void *)exception_object); in unwind_phase2_forced()
269 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced()
278 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
282 (void *)exception_object, stopResult); in unwind_phase2_forced()
286 (void *)exception_object); in unwind_phase2_forced()
296 (void *)exception_object, (void *)(uintptr_t)p); in unwind_phase2_forced()
298 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
305 (void *)exception_object); in unwind_phase2_forced()
312 (void *)exception_object); in unwind_phase2_forced()
[all …]
H A DUnwind-wasm.c48 struct _Unwind_Exception *exception_object = in _Unwind_CallPersonality() local
51 (void *)exception_object); in _Unwind_CallPersonality()
59 1, _UA_SEARCH_PHASE, exception_object->exception_class, exception_object, in _Unwind_CallPersonality()
65 _Unwind_RaiseException(_Unwind_Exception *exception_object) { in _Unwind_RaiseException() argument
67 (void *)exception_object); in _Unwind_RaiseException()
69 __builtin_wasm_throw(0, exception_object); in _Unwind_RaiseException()
74 _Unwind_DeleteException(_Unwind_Exception *exception_object) { in _Unwind_DeleteException() argument
76 (void *)(exception_object)); in _Unwind_DeleteException()
77 if (exception_object->exception_cleanup != NULL) in _Unwind_DeleteException()
78 (*exception_object->exception_cleanup)(_URC_FOREIGN_EXCEPTION_CAUGHT, in _Unwind_DeleteException()
[all …]
H A DUnwindLevel1-gcc-ext.c41 _Unwind_Resume_or_Rethrow(_Unwind_Exception *exception_object) { in _Unwind_Resume_or_Rethrow() argument
44 (void *)exception_object, (intptr_t)exception_object->PRIVATE_1); in _Unwind_Resume_or_Rethrow()
49 if (exception_object->PRIVATE_1 == 0) { in _Unwind_Resume_or_Rethrow()
50 return _Unwind_RaiseException(exception_object); in _Unwind_Resume_or_Rethrow()
57 _Unwind_Resume(exception_object); in _Unwind_Resume_or_Rethrow()
/freebsd/contrib/llvm-project/libunwind/include/
H A Dunwind_itanium.h56 _Unwind_SjLj_RaiseException(_Unwind_Exception *exception_object);
57 extern void _Unwind_SjLj_Resume(_Unwind_Exception *exception_object);
60 _Unwind_RaiseException(_Unwind_Exception *exception_object);
61 extern void _Unwind_Resume(_Unwind_Exception *exception_object);
63 extern void _Unwind_DeleteException(_Unwind_Exception *exception_object);
H A Dunwind_arm_ehabi.h84 _Unwind_SjLj_RaiseException(_Unwind_Exception *exception_object);
85 extern void _Unwind_SjLj_Resume(_Unwind_Exception *exception_object);
88 _Unwind_RaiseException(_Unwind_Exception *exception_object);
89 extern void _Unwind_Resume(_Unwind_Exception *exception_object);
91 extern void _Unwind_DeleteException(_Unwind_Exception *exception_object);
115 extern void _Unwind_Complete(_Unwind_Exception* exception_object);
H A Dunwind.h81 _Unwind_SjLj_ForcedUnwind(_Unwind_Exception *exception_object,
85 _Unwind_ForcedUnwind(_Unwind_Exception *exception_object,
104 _Unwind_SjLj_Resume_or_Rethrow(_Unwind_Exception *exception_object);
107 _Unwind_Resume_or_Rethrow(_Unwind_Exception *exception_object);
/freebsd/contrib/libcxxrt/
H A Ddynamic_cast.cc50 void **exception_object, in __do_catch() argument
61 return ex_type->__do_upcast(cti, exception_object); in __do_catch()
67 void **exception_object, in __do_catch() argument
107 return __pointee->__do_catch(ptr_type->__pointee, exception_object, outer); in __do_catch()