Home
last modified time | relevance | path

Searched refs:barrier_cache (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/cxx-stl/gabi++/src/
Dhelper_func_internal.cc367 exc->barrier_cache.sp = _Unwind_GetGR(ctx, UNWIND_STACK_REG); in saveDataToBarrierCache()
368 exc->barrier_cache.bitpattern[0] = (uint32_t)results.adjustedPtr; in saveDataToBarrierCache()
369 exc->barrier_cache.bitpattern[1] = (uint32_t)results.ttypeIndex; in saveDataToBarrierCache()
370 exc->barrier_cache.bitpattern[3] = (uint32_t)results.landingPad; in saveDataToBarrierCache()
375 results.adjustedPtr = (void*) exc->barrier_cache.bitpattern[0]; in loadDataFromBarrierCache()
376 results.ttypeIndex = (int64_t) exc->barrier_cache.bitpattern[1]; in loadDataFromBarrierCache()
377 results.landingPad = (uintptr_t) exc->barrier_cache.bitpattern[3]; in loadDataFromBarrierCache()
408 exc->barrier_cache.bitpattern[1] = n; in saveUnexpectedDataToBarrierCache()
409 exc->barrier_cache.bitpattern[3] = 4; in saveUnexpectedDataToBarrierCache()
410 exc->barrier_cache.bitpattern[4] = (uint32_t)e; in saveUnexpectedDataToBarrierCache()
Dcall_unexpected.cc204 uint32_t count = unwind_exception->barrier_cache.bitpattern[1]; in __cxa_call_unexpected()
205 uint32_t stride = unwind_exception->barrier_cache.bitpattern[3]; in __cxa_call_unexpected()
207 unwind_exception->barrier_cache.bitpattern[4]); in __cxa_call_unexpected()
Dhelper_func_internal.h111 if (unwind_exception->barrier_cache.sp == _Unwind_GetGR(context, UNWIND_STACK_REG)) { \
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_personality.cpp1069 unwind_exception->barrier_cache.bitpattern[0] = (uint32_t)results.adjustedPtr; in save_results_to_barrier_cache()
1070 unwind_exception->barrier_cache.bitpattern[1] = (uint32_t)results.actionRecord; in save_results_to_barrier_cache()
1071 unwind_exception->barrier_cache.bitpattern[2] = (uint32_t)results.languageSpecificData; in save_results_to_barrier_cache()
1072 unwind_exception->barrier_cache.bitpattern[3] = (uint32_t)results.landingPad; in save_results_to_barrier_cache()
1073 unwind_exception->barrier_cache.bitpattern[4] = (uint32_t)results.ttypeIndex; in save_results_to_barrier_cache()
1079 results.adjustedPtr = (void*)unwind_exception->barrier_cache.bitpattern[0]; in load_results_from_barrier_cache()
1080 results.actionRecord = (const uint8_t*)unwind_exception->barrier_cache.bitpattern[1]; in load_results_from_barrier_cache()
1081 results.languageSpecificData = (const uint8_t*)unwind_exception->barrier_cache.bitpattern[2]; in load_results_from_barrier_cache()
1082 results.landingPad = (uintptr_t)unwind_exception->barrier_cache.bitpattern[3]; in load_results_from_barrier_cache()
1083 results.ttypeIndex = (int64_t)(int32_t)unwind_exception->barrier_cache.bitpattern[4]; in load_results_from_barrier_cache()
[all …]
Dcxa_exception.cpp261 static_cast<_Unwind_Control_Block*>(unwind_exception)->barrier_cache.bitpattern[0]); in __cxa_get_exception_ptr()
413 return reinterpret_cast<void*>(exception_header->unwindHeader.barrier_cache.bitpattern[0]); in __cxa_begin_catch()
/ndk/sources/cxx-stl/gabi++/include/
Dunwind-arm.h74 } barrier_cache; member
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/include/
Dunwind.h86 } barrier_cache; member
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DUnwind-EHABI.cpp639 if (sp == exception_object->barrier_cache.sp) { in unwind_phase2()