Home
last modified time | relevance | path

Searched refs:new_pc (Results 1 – 3 of 3) sorted by relevance

/system/core/libunwindstack/
DRegsX86.cpp62 uint32_t new_pc; in SetPcFromReturnAddress() local
63 if (!process_memory->ReadFully(regs_[X86_REG_SP], &new_pc, sizeof(new_pc)) || in SetPcFromReturnAddress()
64 new_pc == regs_[X86_REG_PC]) { in SetPcFromReturnAddress()
68 regs_[X86_REG_PC] = new_pc; in SetPcFromReturnAddress()
DRegsX86_64.cpp63 uint64_t new_pc; in SetPcFromReturnAddress() local
64 if (!process_memory->ReadFully(regs_[X86_64_REG_SP], &new_pc, sizeof(new_pc)) || in SetPcFromReturnAddress()
65 new_pc == regs_[X86_64_REG_PC]) { in SetPcFromReturnAddress()
69 regs_[X86_64_REG_PC] = new_pc; in SetPcFromReturnAddress()
DDwarfCfa.cpp324 AddressType new_pc = operands_[0]; in cfa_set_loc() local
325 if (new_pc < cur_pc) { in cfa_set_loc()
327 log(0, "Warning: PC is moving backwards: old 0x%" PRIx32 " new 0x%" PRIx32, cur_pc, new_pc); in cfa_set_loc()
329 log(0, "Warning: PC is moving backwards: old 0x%" PRIx64 " new 0x%" PRIx64, cur_pc, new_pc); in cfa_set_loc()
332 cur_pc_ = new_pc; in cfa_set_loc()