Home
last modified time | relevance | path

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

/external/libunwind_llvm/src/
DUnwind-sjlj.c109 unwind_phase1(struct _Unwind_Exception *exception_object) { in unwind_phase1() argument
120 exception_object); in unwind_phase1()
130 exception_object, c->personality); in unwind_phase1()
132 1, _UA_SEARCH_PHASE, exception_object->exception_class, in unwind_phase1()
133 exception_object, (struct _Unwind_Context *)c); in unwind_phase1()
139 exception_object->private_2 = (uintptr_t) c; in unwind_phase1()
141 "_URC_HANDLER_FOUND", exception_object); in unwind_phase1()
146 "_URC_CONTINUE_UNWIND", exception_object); in unwind_phase1()
154 exception_object); in unwind_phase1()
164 unwind_phase2(struct _Unwind_Exception *exception_object) { in unwind_phase2() argument
[all …]
DUnwindLevel1.c36 unwind_phase1(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { in unwind_phase1() argument
48 (void *)exception_object); in unwind_phase1()
53 (void *)exception_object); in unwind_phase1()
63 (void *)exception_object); in unwind_phase1()
81 (void *)exception_object, pc, frameInfo.start_ip, functionName, in unwind_phase1()
92 (void *)exception_object, (void *)(uintptr_t)p); in unwind_phase1()
94 (*p)(1, _UA_SEARCH_PHASE, exception_object->exception_class, in unwind_phase1()
95 exception_object, (struct _Unwind_Context *)(cursor)); in unwind_phase1()
102 exception_object->private_2 = (uintptr_t)sp; in unwind_phase1()
105 (void *)exception_object); in unwind_phase1()
[all …]
DUnwind-EHABI.cpp439 unwind_phase1(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { in unwind_phase1() argument
456 static_cast<void *>(exception_object)); in unwind_phase1()
474 static_cast<void *>(exception_object), pc, in unwind_phase1()
486 static_cast<void *>(exception_object), in unwind_phase1()
489 exception_object->pr_cache.fnstart = frameInfo.start_ip; in unwind_phase1()
490 exception_object->pr_cache.ehtp = in unwind_phase1()
492 exception_object->pr_cache.additional = frameInfo.flags; in unwind_phase1()
494 (*p)(_US_VIRTUAL_UNWIND_FRAME, exception_object, context); in unwind_phase1()
498 static_cast<void *>(exception_object), personalityResult, in unwind_phase1()
499 exception_object->pr_cache.fnstart, in unwind_phase1()
[all …]
DUnwindLevel1-gcc-ext.c30 _Unwind_Resume_or_Rethrow(_Unwind_Exception *exception_object) { in _Unwind_Resume_or_Rethrow() argument
33 (void *)exception_object, in _Unwind_Resume_or_Rethrow()
34 (long)exception_object->unwinder_cache.reserved1); in _Unwind_Resume_or_Rethrow()
37 (void *)exception_object, in _Unwind_Resume_or_Rethrow()
38 (long)exception_object->private_1); in _Unwind_Resume_or_Rethrow()
44 return _Unwind_RaiseException(exception_object); 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()
/external/libunwind/src/unwind/
DRaiseException.c30 _Unwind_RaiseException (struct _Unwind_Exception *exception_object) in _Unwind_RaiseException() argument
32 uint64_t exception_class = exception_object->exception_class; in _Unwind_RaiseException()
42 Debug (1, "(exception_object=%p)\n", exception_object); in _Unwind_RaiseException()
73 exception_class, exception_object, in _Unwind_RaiseException()
98 exception_object->private_1 = 0; /* clear "stop" pointer */ in _Unwind_RaiseException()
99 exception_object->private_2 = ip; /* save frame marker */ in _Unwind_RaiseException()
107 ret = _Unwind_Phase2 (exception_object, &context, &destroy_map); in _Unwind_RaiseException()
Dunwind-internal.h58 _Unwind_Phase2 (struct _Unwind_Exception *exception_object, in _Unwind_Phase2() argument
64 _Unwind_Stop_Fn stop = (_Unwind_Stop_Fn) exception_object->private_1; in _Unwind_Phase2()
65 uint64_t exception_class = exception_object->exception_class; in _Unwind_Phase2()
66 void *stop_parameter = (void *) exception_object->private_2; in _Unwind_Phase2()
101 exception_object, context, stop_parameter); in _Unwind_Phase2()
134 exception_object, context); in _Unwind_Phase2()
DResume_or_Rethrow.c29 _Unwind_Resume_or_Rethrow (struct _Unwind_Exception *exception_object) in _Unwind_Resume_or_Rethrow() argument
34 if (exception_object->private_1) in _Unwind_Resume_or_Rethrow()
45 ret = _Unwind_Phase2 (exception_object, &context, &destroy_map); in _Unwind_Resume_or_Rethrow()
54 return _Unwind_RaiseException (exception_object); in _Unwind_Resume_or_Rethrow()
DForcedUnwind.c30 _Unwind_ForcedUnwind (struct _Unwind_Exception *exception_object, in _Unwind_ForcedUnwind() argument
50 exception_object->private_1 = (unsigned long) stop; in _Unwind_ForcedUnwind()
51 exception_object->private_2 = (unsigned long) stop_parameter; in _Unwind_ForcedUnwind()
53 ret = _Unwind_Phase2 (exception_object, &context, &destroy_map); in _Unwind_ForcedUnwind()
DDeleteException.c29 _Unwind_DeleteException (struct _Unwind_Exception *exception_object) in _Unwind_DeleteException() argument
31 _Unwind_Exception_Cleanup_Fn cleanup = exception_object->exception_cleanup; in _Unwind_DeleteException()
34 (*cleanup) (_URC_FOREIGN_EXCEPTION_CAUGHT, exception_object); in _Unwind_DeleteException()
DResume.c29 _Unwind_Resume (struct _Unwind_Exception *exception_object) in _Unwind_Resume() argument
44 _Unwind_Phase2 (exception_object, &context, &destroy_map); in _Unwind_Resume()
/external/libunwind_llvm/include/
Dunwind.h162 _Unwind_SjLj_RaiseException(_Unwind_Exception *exception_object);
163 extern void _Unwind_SjLj_Resume(_Unwind_Exception *exception_object);
166 _Unwind_RaiseException(_Unwind_Exception *exception_object);
167 extern void _Unwind_Resume(_Unwind_Exception *exception_object);
169 extern void _Unwind_DeleteException(_Unwind_Exception *exception_object);
193 extern void _Unwind_Complete(_Unwind_Exception* exception_object);
265 _Unwind_SjLj_ForcedUnwind(_Unwind_Exception *exception_object,
269 _Unwind_ForcedUnwind(_Unwind_Exception *exception_object,
288 _Unwind_SjLj_Resume_or_Rethrow(_Unwind_Exception *exception_object);
291 _Unwind_Resume_or_Rethrow(_Unwind_Exception *exception_object);
/external/v8/src/
Dmessages.cc87 Object* exception_object = isolate->heap()->undefined_value(); in ReportMessage() local
89 exception_object = isolate->pending_exception(); in ReportMessage()
91 Handle<Object> exception(exception_object, isolate); in ReportMessage()