Lines Matching refs:sp
360 unw_word_t sp = 0; in UnwindStep() local
362 unw_get_reg(&c, UNW_REG_SP, &sp); in UnwindStep()
380 ip, sp); in UnwindStep()
381 if (callStack.back().ip_ == ip && callStack.back().sp_ == sp) { in UnwindStep()
385 callStack.emplace_back(ip, sp); in UnwindStep()
394 bool CallStack::GetIpSP(uint64_t &ip, uint64_t &sp, const u64 *regs, size_t regNum) const in GetIpSP() argument
397 CHECK_TRUE(RegisterGetSPValue(sp, arch_, regs, regNum), false, "unable get sp"); in GetIpSP()
459 uint64_t sp = 0; in UnwindCallStack() local
460 if (!GetIpSP(ip, sp, regs_, regsNum_)) { in UnwindCallStack()
465 HLOGV("unwind:%zu: ip 0x%" PRIx64 " sp 0x%" PRIx64 "", callStack.size(), ip, sp); in UnwindCallStack()
466 callStack.emplace_back(ip, sp); in UnwindCallStack()