Lines Matching defs:regs
419 bool CallStack::GetIpSP(uint64_t &ip, uint64_t &sp, const u64 *regs, size_t regNum) const
422 CHECK_TRUE(!RegisterGetSPValue(sp, arch_, regs, regNum), false, 1, "unable get sp");
423 CHECK_TRUE(!RegisterGetIPValue(ip, arch_, regs, regNum), false, 1, "unable get ip");
468 bool CallStack::UnwindCallStack(const VirtualThread &thread, bool abi32, u64 *regs, u64 regsNum,
472 regs_ = regs;
671 static std::shared_ptr<DfxRegs> regs = std::make_shared<DfxRegsArm>();
676 regs->SetRegsData(tempRegs);
678 static std::shared_ptr<DfxRegs> regs = std::make_shared<DfxRegsArm64>();
679 regs->SetRegsData(reinterpret_cast<uintptr_t*>(regs_), regsNum_);
682 unwinder->SetRegs(regs);