Home
last modified time | relevance | path

Searched refs:next_pc (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/LoongArch/
H A DEmulateInstructionLoongArch.cpp285 return WritePC(next_pc); in EmulateBEQZ64()
305 return WritePC(next_pc); in EmulateBNEZ64()
326 return WritePC(next_pc); in EmulateBCEQZ64()
348 return WritePC(next_pc); in EmulateBCNEZ64()
371 return WritePC(next_pc); in EmulateJIRL64()
383 return WritePC(next_pc); in EmulateB64()
399 return WritePC(next_pc); in EmulateBL64()
420 return WritePC(next_pc); in EmulateBEQ64()
443 return WritePC(next_pc); in EmulateBNE64()
468 return WritePC(next_pc); in EmulateBLT64()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DNativeProcessSoftwareSingleStep.cpp136 lldb::addr_t next_pc; in SetupSoftwareSingleStepping() local
141 next_pc = pc_it->second.GetAsUInt64(); in SetupSoftwareSingleStepping()
152 next_pc = register_context.GetPC() + emulator_up->GetOpcode().GetByteSize(); in SetupSoftwareSingleStepping()
173 error = process.SetBreakpoint(next_pc, size_hint, /*hardware=*/false); in SetupSoftwareSingleStepping()
182 m_threads_stepping_with_breakpoint.insert({thread.GetID(), next_pc}); in SetupSoftwareSingleStepping()