Home
last modified time | relevance | path

Searched refs:__unw_get_reg (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/libunwind/src/
DUnwindLevel1.c81 __unw_get_reg(cursor, UNW_REG_IP, &pc); in unwind_phase1()
104 __unw_get_reg(cursor, UNW_REG_SP, &sp); in unwind_phase1()
161 __unw_get_reg(cursor, UNW_REG_SP, &sp); in unwind_phase2()
219 __unw_get_reg(cursor, UNW_REG_IP, &pc); in unwind_phase2()
220 __unw_get_reg(cursor, UNW_REG_SP, &sp); in unwind_phase2()
476 __unw_get_reg(cursor, index, &result); in _Unwind_GetGR()
496 __unw_get_reg(cursor, UNW_REG_IP, &result); in _Unwind_GetIP()
DUnwind-seh.cpp164 __unw_get_reg(&cursor, UNW_X86_64_RAX, &retval); in _GCC_specific_handler()
165 __unw_get_reg(&cursor, UNW_X86_64_RDX, &exc->private_[3]); in _GCC_specific_handler()
168 __unw_get_reg(&cursor, UNW_ARM_R0, &retval); in _GCC_specific_handler()
169 __unw_get_reg(&cursor, UNW_ARM_R1, &exc->private_[3]); in _GCC_specific_handler()
172 __unw_get_reg(&cursor, UNW_ARM64_X0, &retval); in _GCC_specific_handler()
173 __unw_get_reg(&cursor, UNW_ARM64_X1, &exc->private_[3]); in _GCC_specific_handler()
175 __unw_get_reg(&cursor, UNW_REG_IP, &target); in _GCC_specific_handler()
DUnwind-EHABI.cpp474 __unw_get_reg(cursor, UNW_REG_IP, &pc); in unwind_phase1()
574 __unw_get_reg(cursor, UNW_REG_SP, &sp); in unwind_phase2()
633 __unw_get_reg(cursor, UNW_REG_IP, &pc); in unwind_phase2()
634 __unw_get_reg(cursor, UNW_REG_SP, &sp); in unwind_phase2()
645 __unw_get_reg(cursor, UNW_REG_IP, &pc); in unwind_phase2()
827 return __unw_get_reg(cursor, (unw_regnum_t)(UNW_ARM_R0 + regno), in _Unwind_VRS_Get_Internal()
851 return __unw_get_reg(cursor, (unw_regnum_t)(UNW_ARM_WC0 + regno), in _Unwind_VRS_Get_Internal()
Dlibunwind_ext.h29 extern int __unw_get_reg(unw_cursor_t *, unw_regnum_t, unw_word_t *);
Dlibunwind.cpp81 _LIBUNWIND_HIDDEN int __unw_get_reg(unw_cursor_t *cursor, unw_regnum_t regNum, in _LIBUNWIND_WEAK_ALIAS()
93 _LIBUNWIND_WEAK_ALIAS(__unw_get_reg, unw_get_reg) in _LIBUNWIND_WEAK_ALIAS() argument
DUnwindLevel1-gcc-ext.c211 __unw_get_reg(cursor, UNW_REG_SP, &result); in _Unwind_GetCFA()