Lines Matching refs:ip
187 UnwindInfo *unwindInfoPtr, unw_addr_space_t as, unw_word_t ip,
241 tdep_search_unwind_table(as, ip, &di, pi, need_unwind_info, arg));
260 int CallStack::FindProcInfo(unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi,
265 HLOGM("need_unwind_info ret %d ip %" UNW_WORD_PFLAG "", need_unwind_info, ip);
266 auto map = unwindInfoPtr->thread.FindMapByAddr(ip);
270 return FindUnwindTable(symbolsFile, map, unwindInfoPtr, as, ip, pi, need_unwind_info, arg);
276 HLOGE("ip 0x%016" UNW_WORD_PFLAG " not found in thread %d:%s", ip,
384 unw_word_t ip;
386 unw_get_reg(&c, UNW_REG_IP, &ip);
389 if (ip == 0) {
390 HLOGD("ip == 0 something is wrong. break");
402 --ip;
404 HLOGV("unwind:%zu: ip 0x%" UNW_WORD_PFLAG " sp 0x%" UNW_WORD_PFLAG "", callStack.size(),
405 ip, sp);
406 if (callStack.back().pc == ip && callStack.back().sp == sp) {
410 callStack.emplace_back(ip, sp);
419 bool CallStack::GetIpSP(uint64_t &ip, uint64_t &sp, const u64 *regs, size_t regNum) const
423 CHECK_TRUE(!RegisterGetIPValue(ip, arch_, regs, regNum), false, 1, "unable get ip");
424 if (ip != 0) {
486 uint64_t ip;
488 if (!GetIpSP(ip, sp, regs_, regsNum_)) {
492 if (ip != 0) {
493 HLOGV("unwind:%zu: ip 0x%" PRIx64 " sp 0x%" PRIx64 "", callStack.size(), ip, sp);
494 callStack.emplace_back(ip, sp);