Searched refs:GetGPRBuffer (Results 1 – 10 of 10) sorted by relevance
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/ |
| H A D | NativeRegisterContextLinux_s390x.cpp | 337 memcpy(dst, GetGPRBuffer(), GetGPRSize()); in ReadAllRegisterValues() 388 memcpy(GetGPRBuffer(), src, GetGPRSize()); in WriteAllRegisterValues() 443 return PeekUserArea(offsetof(user_regs_struct, psw), GetGPRBuffer(), in ReadGPR() 448 return PokeUserArea(offsetof(user_regs_struct, psw), GetGPRBuffer(), in WriteGPR() 453 return PeekUserArea(offsetof(user_regs_struct, fp_regs), GetGPRBuffer(), in ReadFPR() 458 return PokeUserArea(offsetof(user_regs_struct, fp_regs), GetGPRBuffer(), in WriteFPR()
|
| H A D | NativeRegisterContextLinux.cpp | 95 PTRACE_GETREGS, m_thread.GetID(), nullptr, GetGPRBuffer(), GetGPRSize()); in ReadGPR() 100 PTRACE_SETREGS, m_thread.GetID(), nullptr, GetGPRBuffer(), GetGPRSize()); in WriteGPR()
|
| H A D | NativeRegisterContextLinux_arm64.cpp | 182 src = (uint8_t *)GetGPRBuffer() + offset; in ReadRegister() 311 dst = (uint8_t *)GetGPRBuffer() + reg_info->byte_offset; in WriteRegister() 489 ::memcpy(dst, GetGPRBuffer(), GetGPRBufferSize()); in ReadAllRegisterValues() 546 ::memcpy(GetGPRBuffer(), src, GetGPRBufferSize()); in WriteAllRegisterValues() 716 ioVec.iov_base = GetGPRBuffer(); in ReadGPR() 733 ioVec.iov_base = GetGPRBuffer(); in WriteGPR()
|
| H A D | NativeRegisterContextLinux.h | 106 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 | 53 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 | 840 ioVec.iov_base = GetGPRBuffer(); in ReadGPR() 852 ioVec.iov_base = GetGPRBuffer(); in WriteGPR()
|