/openbsd/gnu/llvm/lldb/source/Plugins/Process/Linux/ |
H A D | NativeRegisterContextLinux_loongarch64.cpp | 117 src = (uint8_t *)GetGPRBuffer() + offset; in ReadRegister() 160 dst = (uint8_t *)GetGPRBuffer() + reg_info->byte_offset; in WriteRegister() 195 ::memcpy(dst, GetGPRBuffer(), GetGPRSize()); in ReadAllRegisterValues() 229 ::memcpy(GetGPRBuffer(), src, GetRegisterInfoInterface().GetGPRSize()); in WriteAllRegisterValues() 262 ioVec.iov_base = GetGPRBuffer(); in ReadGPR() 279 ioVec.iov_base = GetGPRBuffer(); in WriteGPR()
|
H A D | NativeRegisterContextLinux_riscv64.cpp | 124 src = (uint8_t *)GetGPRBuffer() + offset; in ReadRegister() 172 dst = (uint8_t *)GetGPRBuffer() + reg_info->byte_offset; in WriteRegister() 207 ::memcpy(dst, GetGPRBuffer(), GetGPRSize()); in ReadAllRegisterValues() 241 ::memcpy(GetGPRBuffer(), src, GetRegisterInfoInterface().GetGPRSize()); in WriteAllRegisterValues() 274 ioVec.iov_base = GetGPRBuffer(); in ReadGPR() 291 ioVec.iov_base = GetGPRBuffer(); in WriteGPR()
|
H A D | NativeRegisterContextLinux_s390x.cpp | 342 memcpy(dst, GetGPRBuffer(), GetGPRSize()); in ReadAllRegisterValues() 393 memcpy(GetGPRBuffer(), src, GetGPRSize()); in WriteAllRegisterValues() 448 return PeekUserArea(offsetof(user_regs_struct, psw), GetGPRBuffer(), in ReadGPR() 453 return PokeUserArea(offsetof(user_regs_struct, psw), GetGPRBuffer(), in WriteGPR() 458 return PeekUserArea(offsetof(user_regs_struct, fp_regs), GetGPRBuffer(), in ReadFPR() 463 return PokeUserArea(offsetof(user_regs_struct, fp_regs), GetGPRBuffer(), in WriteFPR()
|
H A D | NativeRegisterContextLinux.cpp | 99 PTRACE_GETREGS, m_thread.GetID(), nullptr, GetGPRBuffer(), GetGPRSize()); in ReadGPR() 104 PTRACE_SETREGS, m_thread.GetID(), nullptr, GetGPRBuffer(), GetGPRSize()); in WriteGPR()
|
H A D | NativeRegisterContextLinux_arm64.cpp | 189 src = (uint8_t *)GetGPRBuffer() + offset; in ReadRegister() 318 dst = (uint8_t *)GetGPRBuffer() + reg_info->byte_offset; in WriteRegister() 496 ::memcpy(dst, GetGPRBuffer(), GetGPRBufferSize()); in ReadAllRegisterValues() 553 ::memcpy(GetGPRBuffer(), src, GetGPRBufferSize()); in WriteAllRegisterValues() 723 ioVec.iov_base = GetGPRBuffer(); in ReadGPR() 740 ioVec.iov_base = GetGPRBuffer(); in WriteGPR()
|
H A D | NativeRegisterContextLinux_riscv64.h | 62 void *GetGPRBuffer() override { return &m_gpr; } in GetGPRBuffer() function
|
H A D | NativeRegisterContextLinux_loongarch64.h | 63 void *GetGPRBuffer() override { return &m_gpr; } in GetGPRBuffer() function
|
H A D | NativeRegisterContextLinux.h | 113 virtual void *GetGPRBuffer() = 0;
|
H A D | NativeRegisterContextLinux_ppc64le.h | 83 void *GetGPRBuffer() override { return &m_gpr_ppc64le; } in GetGPRBuffer() function
|
H A D | NativeRegisterContextLinux_s390x.h | 78 void *GetGPRBuffer() override { return &m_regs; } in GetGPRBuffer() function
|
H A D | NativeRegisterContextLinux_x86_64.h | 54 void *GetGPRBuffer() override { return &m_gpr_x86_64; } in GetGPRBuffer() function
|
H A D | NativeRegisterContextLinux_arm64.h | 69 void *GetGPRBuffer() override { return &m_gpr_arm64; } in GetGPRBuffer() function
|
H A D | NativeRegisterContextLinux_arm.h | 95 void *GetGPRBuffer() override { return &m_gpr_arm; } in GetGPRBuffer() function
|
H A D | NativeRegisterContextLinux_arm.cpp | 846 ioVec.iov_base = GetGPRBuffer(); in ReadGPR() 858 ioVec.iov_base = GetGPRBuffer(); in WriteGPR()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/OpenBSD/ |
H A D | NativeRegisterContextOpenBSD.cpp | 29 void *buf = GetGPRBuffer(); in ReadGPR() 37 void *buf = GetGPRBuffer(); in WriteGPR()
|
H A D | NativeRegisterContextOpenBSD.h | 42 virtual void *GetGPRBuffer() { return nullptr; } in GetGPRBuffer() function
|
H A D | NativeRegisterContextOpenBSD_arm64.h | 64 void *GetGPRBuffer() override { return &m_gpr; } in GetGPRBuffer() function
|
H A D | NativeRegisterContextOpenBSD_x86_64.h | 53 void *GetGPRBuffer() override { return &m_gpr; } in GetGPRBuffer() function
|