Lines Matching refs:fdeAddr
45 uintptr_t fdeAddr = ptr;
48 DFXLOGU("Fde entry addr: %{public}" PRIx64 "", (uint64_t)fdeAddr);
49 uei.unwindInfo = (void *)(fdeAddr);
117 bool DwarfSection::Step(uintptr_t pc, uintptr_t fdeAddr, std::shared_ptr<RegLocState> rs)
121 if (!ParseFde(fdeAddr, fdeAddr, fdeInfo)) {
123 lastErrorData_.SetAddrAndCode(fdeAddr, UNW_ERROR_DWARF_INVALID_FDE);
201 bool DwarfSection::ParseFde(uintptr_t fdeAddr, uintptr_t fdePtr, FrameDescEntry &fdeInfo)
203 DFXLOGU("fdeAddr: %{public}" PRIx64 "", (uint64_t)fdeAddr);
205 auto iter = fdeEntries_.find(fdeAddr);
212 if (fdeAddr == fdePtr) {
222 fdeEntries_.erase(fdeAddr);
225 fdeEntries_[fdeAddr] = fdeInfo;