Home
last modified time | relevance | path

Searched refs:WritePC (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/LoongArch/
H A DEmulateInstructionLoongArch.cpp111 if (new_pc == old_pc && !WritePC(old_pc + inst_size)) in EvaluateInstruction()
139 bool EmulateInstructionLoongArch::WritePC(lldb::addr_t pc) { in WritePC() function in lldb_private::EmulateInstructionLoongArch
285 return WritePC(next_pc); in EmulateBEQZ64()
287 return WritePC(pc + 4); in EmulateBEQZ64()
305 return WritePC(next_pc); in EmulateBNEZ64()
307 return WritePC(pc + 4); in EmulateBNEZ64()
326 return WritePC(next_pc); in EmulateBCEQZ64()
328 return WritePC(pc + 4); in EmulateBCEQZ64()
348 return WritePC(next_pc); in EmulateBCNEZ64()
350 return WritePC(pc + 4); in EmulateBCNEZ64()
[all …]
H A DEmulateInstructionLoongArch.h61 bool WritePC(lldb::addr_t pc);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.h71 bool WritePC(lldb::addr_t pc);
H A DEmulateInstructionRISCV.cpp381 return exit_pc == current_pc && emulator.WritePC(current_pc); in AtomicSequence()
694 m_emu.WritePC(SignExt(inst.imm) + pc); in operator ()()
703 m_emu.WritePC((SignExt(inst.imm) + rs1) & in operator ()()
715 return m_emu.WritePC(SignExt(inst.imm) + pc); in operator ()()
1626 WritePC(*old_pc + Executor::size(m_decoded.is_rvc)); in EvaluateInstruction()
1659 bool EmulateInstructionRISCV::WritePC(addr_t pc) { in WritePC() function in lldb_private::EmulateInstructionRISCV