/external/libunwind_llvm/src/ |
D | Registers.hpp | 112 if (regNum == UNW_REG_IP) in validRegister() 125 case UNW_REG_IP: in getRegister() 159 case UNW_REG_IP: in setRegister() 203 case UNW_REG_IP: in getRegisterName() 329 if (regNum == UNW_REG_IP) in validRegister() 342 case UNW_REG_IP: in getRegister() 384 case UNW_REG_IP: in setRegister() 444 case UNW_REG_IP: in getRegisterName() 668 if (regNum == UNW_REG_IP) in validRegister() 691 case UNW_REG_IP: in getRegister() [all …]
|
D | UnwindLevel1.c | 78 unw_get_reg(cursor, UNW_REG_IP, &pc); in unwind_phase1() 214 unw_get_reg(cursor, UNW_REG_IP, &pc); in unwind_phase2() 491 unw_get_reg(cursor, UNW_REG_IP, &result); in _Unwind_GetIP() 505 unw_set_reg(cursor, UNW_REG_IP, value); in _Unwind_SetIP()
|
D | UnwindLevel1-gcc-ext.c | 98 unw_set_reg(&cursor, UNW_REG_IP, (unw_word_t)(intptr_t) pc); in _Unwind_FindEnclosingFunction() 196 unw_set_reg(&cursor, UNW_REG_IP, (unw_word_t)(intptr_t) pc); in _Unwind_Find_FDE()
|
D | UnwindCursor.hpp | 557 _msContext.Rip = r.getRegister(UNW_REG_IP); in UnwindCursor() 623 _msContext.Pc = r.getRegister(UNW_REG_IP); in UnwindCursor() 644 if (regNum == UNW_REG_IP || regNum == UNW_REG_SP) return true; in validReg() 659 case UNW_REG_IP: return _msContext.Rip; in getReg() 694 case UNW_REG_IP: in getReg() 698 case UNW_REG_IP: return _msContext.Pc; in getReg() 709 case UNW_REG_IP: _msContext.Rip = value; break; in setReg() 744 case UNW_REG_IP: in setReg() 748 case UNW_REG_IP: _msContext.Pc = value; break; in setReg() 930 (pint_t)this->getReg(UNW_REG_IP), in stepWithDwarfFDE() [all …]
|
D | Unwind-EHABI.cpp | 467 unw_get_reg(cursor, UNW_REG_IP, &pc); in unwind_phase1() 559 unw_set_reg(cursor, UNW_REG_IP, in unwind_phase2() 625 unw_get_reg(cursor, UNW_REG_IP, &pc); in unwind_phase2() 637 unw_get_reg(cursor, UNW_REG_IP, &pc); in unwind_phase2()
|
/external/libunwind/tests/ |
D | ia64-test-sig.c | 64 if (unw_get_reg (&cursor2, UNW_REG_IP, &ip) < 0) in sighandler() 72 if (unw_set_reg (&cursor2, UNW_REG_IP, ip) < 0) in sighandler()
|
D | test-init-remote.c | 62 unw_get_reg (&cursor, UNW_REG_IP, &ip); in do_backtrace() 78 unw_get_reg (&cursor, UNW_REG_IP, &ip); in do_backtrace()
|
D | test-mem.c | 57 unw_get_reg (&cursor, UNW_REG_IP, &ip); in do_backtrace() 66 unw_get_reg (&cursor, UNW_REG_IP, &ip); in do_backtrace()
|
D | test-async-sig.c | 88 unw_get_reg (&cursor, UNW_REG_IP, &ip); in do_backtrace() 116 unw_get_reg (&cursor, UNW_REG_IP, &ip); in do_backtrace()
|
D | ppc64-test-altivec.c | 62 if ((ret = unw_get_reg (&cursor, UNW_REG_IP, &ip)) < 0) in vec_stack() 112 unw_get_reg (&cursor, UNW_REG_IP, &ip); in vec_stack()
|
D | Gia64-test-rbs.c | 112 if (unw_get_reg (&c, UNW_REG_IP, &ip) < 0 in unwind_and_resume() 113 || unw_set_reg (&c, UNW_REG_IP, (unw_word_t) &resumption_point_label) < 0 in unwind_and_resume()
|
D | test-ptrace.c | 91 if ((ret = unw_get_reg (&c, UNW_REG_IP, &ip)) < 0 in do_backtrace() 137 unw_get_reg (&c, UNW_REG_IP, &ip); in do_backtrace()
|
D | Gtest-nomalloc.c | 68 unw_get_reg (&cursor, UNW_REG_IP, &ip); in do_backtrace()
|
D | Gtest-init.cxx | 62 unw_get_reg (&cursor, UNW_REG_IP, &ip); in do_backtrace()
|
D | Gtest-bt.c | 73 unw_get_reg (&cursor, UNW_REG_IP, &ip); in do_backtrace() 108 unw_get_reg (&cursor, UNW_REG_IP, &ip); in do_backtrace()
|
D | Gtest-concurrent.c | 62 unw_get_reg (&c, UNW_REG_IP, &ip); in handler()
|
/external/libunwind/src/unwind/ |
D | SetIP.c | 31 unw_set_reg (&context->cursor, UNW_REG_IP, new_value); in _Unwind_SetIP()
|
D | GetIP.c | 33 unw_get_reg (&context->cursor, UNW_REG_IP, &val); in _Unwind_GetIP()
|
D | GetIPInfo.c | 36 unw_get_reg (&context->cursor, UNW_REG_IP, &val); in _Unwind_GetIPInfo()
|
D | RaiseException.c | 94 if (unw_get_reg (&context.cursor, UNW_REG_IP, &ip) < 0) in _Unwind_RaiseException()
|
/external/libunwind/src/mi/ |
D | Gget_reg.c | 34 if (regnum == UNW_REG_IP) in unw_get_reg()
|
D | backtrace.c | 50 if (unw_get_reg (&cursor, UNW_REG_IP, &ip) < 0) in slow_backtrace()
|
/external/honggfuzz/linux/ |
D | unwind.c | 158 ret = unw_get_reg(&c, UNW_REG_IP, &ip); in arch_unwindStack() 213 ret = unw_get_reg(&cursor, UNW_REG_IP, &pc); in arch_unwindStack()
|
/external/libunwind/src/setjmp/ |
D | longjmp.c | 89 || unw_set_reg (&c, UNW_REG_IP, in _longjmp()
|
D | siglongjmp.c | 117 || unw_set_reg (&c, UNW_REG_IP, (unw_word_t) (uintptr_t) cont)) in siglongjmp()
|