Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/LoongArch/
H A DEmulateInstructionLoongArch.cpp276 uint64_t next_pc = pc + llvm::SignExtend64<23>(offs21 << 2); in EmulateBEQZ64() local
277 return WritePC(next_pc); in EmulateBEQZ64()
299 uint64_t next_pc = pc + llvm::SignExtend64<23>(offs21 << 2); in EmulateBNEZ64() local
300 return WritePC(next_pc); in EmulateBNEZ64()
323 uint64_t next_pc = pc + llvm::SignExtend64<23>(offs21 << 2); in EmulateBCEQZ64() local
324 return WritePC(next_pc); in EmulateBCEQZ64()
348 uint64_t next_pc = pc + llvm::SignExtend64<23>(offs21 << 2); in EmulateBCNEZ64() local
349 return WritePC(next_pc); in EmulateBCNEZ64()
374 uint64_t next_pc = rj_val + llvm::SignExtend64<18>(Bits32(inst, 25, 10) << 2); in EmulateJIRL64() local
375 return WritePC(next_pc); in EmulateJIRL64()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DEmulateInstruction.cpp623 lldb::addr_t next_pc = GetNextInstructionAddress(status); in GetBreakpointLocations() local
624 return BreakpointLocations{next_pc}; in GetBreakpointLocations()
636 lldb::addr_t next_pc = GetBreakpointLocationAddress(*entry_pc, status); in GetBreakpointLocations() local
637 return BreakpointLocations{next_pc}; in GetBreakpointLocations()
654 lldb::addr_t next_pc = *pc + *instr_size; in GetNextInstructionAddress() local
655 return next_pc; in GetNextInstructionAddress()