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.cpp112 if (new_pc == old_pc && !WritePC(old_pc + inst_size)) in EvaluateInstruction()
277 return WritePC(next_pc); in EmulateBEQZ64()
279 return WritePC(pc + 4); in EmulateBEQZ64()
300 return WritePC(next_pc); in EmulateBNEZ64()
302 return WritePC(pc + 4); in EmulateBNEZ64()
324 return WritePC(next_pc); in EmulateBCEQZ64()
326 return WritePC(pc + 4); in EmulateBCEQZ64()
349 return WritePC(next_pc); in EmulateBCNEZ64()
351 return WritePC(pc + 4); in EmulateBCNEZ64()
375 return WritePC(next_pc); in EmulateJIRL64()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.cpp381 return exit_pc == current_pc && emulator.WritePC(current_pc); in AtomicSequence()
695 m_emu.WritePC(SignExt(inst.imm) + pc); in operator ()()
704 m_emu.WritePC((SignExt(inst.imm) + rs1) & in operator ()()
716 return m_emu.WritePC(SignExt(inst.imm) + pc); in operator ()()
1627 WritePC(*old_pc + Executor::size(m_decoded.is_rvc)); in EvaluateInstruction()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DEmulateInstruction.h540 bool WritePC(lldb::addr_t addr);
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DEmulateInstruction.cpp606 bool EmulateInstruction::WritePC(lldb::addr_t addr) { in WritePC() function in EmulateInstruction