Lines Matching refs:sp
381 unw_word_t sp; in UnwindStep() local
383 unw_get_reg(&c, UNW_REG_SP, &sp); in UnwindStep()
401 ip, sp); in UnwindStep()
402 if (callStack.back().ip_ == ip && callStack.back().sp_ == sp) { in UnwindStep()
406 callStack.emplace_back(ip, sp); in UnwindStep()
415 bool CallStack::GetIpSP(uint64_t &ip, uint64_t &sp, const u64 *regs, size_t regNum) const in GetIpSP() argument
418 if (!RegisterGetSPValue(sp, arch_, regs, regNum)) { in GetIpSP()
490 uint64_t sp; in UnwindCallStack() local
491 if (!GetIpSP(ip, sp, regs_, regsNum_)) { in UnwindCallStack()
496 HLOGV("unwind:%zu: ip 0x%" PRIx64 " sp 0x%" PRIx64 "", callStack.size(), ip, sp); in UnwindCallStack()
497 callStack.emplace_back(ip, sp); in UnwindCallStack()