| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Linux/ |
| H A D | NativeRegisterContextLinux_loongarch64.cpp | 29 #define REG_CONTEXT_SIZE (GetGPRSize() + GetFPRSize()) 125 assert(offset < GetFPRSize()); in ReadRegister() 170 assert(offset < GetFPRSize()); in WriteRegister() 197 ::memcpy(dst, GetFPRBuffer(), GetFPRSize()); in ReadAllRegisterValues() 236 ::memcpy(GetFPRBuffer(), src, GetFPRSize()); in WriteAllRegisterValues() 295 ioVec.iov_len = GetFPRSize(); in ReadFPR() 297 error = ReadRegisterSet(&ioVec, GetFPRSize(), NT_FPREGSET); in ReadFPR() 312 ioVec.iov_len = GetFPRSize(); in WriteFPR() 316 return WriteRegisterSet(&ioVec, GetFPRSize(), NT_FPREGSET); in WriteFPR()
|
| H A D | NativeRegisterContextLinux_riscv64.cpp | 30 #define REG_CONTEXT_SIZE (GetGPRSize() + GetFPRSize()) 132 assert(offset < GetFPRSize()); in ReadRegister() 182 assert(offset < GetFPRSize()); in WriteRegister() 209 ::memcpy(dst, GetFPRBuffer(), GetFPRSize()); in ReadAllRegisterValues() 248 ::memcpy(GetFPRBuffer(), src, GetFPRSize()); in WriteAllRegisterValues() 307 ioVec.iov_len = GetFPRSize(); in ReadFPR() 309 error = ReadRegisterSet(&ioVec, GetFPRSize(), NT_FPREGSET); in ReadFPR() 324 ioVec.iov_len = GetFPRSize(); in WriteFPR() 328 return WriteRegisterSet(&ioVec, GetFPRSize(), NT_FPREGSET); in WriteFPR()
|
| H A D | NativeRegisterContextLinux_arm64.cpp | 199 assert(offset < GetFPRSize()); in ReadRegister() 330 assert(offset < GetFPRSize()); in WriteRegister() 480 reg_data_byte_size += GetFPRSize(); in ReadAllRegisterValues() 503 ::memcpy(dst, GetFPRBuffer(), GetFPRSize()); in ReadAllRegisterValues() 504 dst += GetFPRSize(); in ReadAllRegisterValues() 543 uint64_t reg_data_min_size = GetGPRBufferSize() + GetFPRSize(); in WriteAllRegisterValues() 599 ::memcpy(GetFPRBuffer(), src, GetFPRSize()); in WriteAllRegisterValues() 602 src += GetFPRSize(); in WriteAllRegisterValues() 756 ioVec.iov_len = GetFPRSize(); in ReadFPR() 758 error = ReadRegisterSet(&ioVec, GetFPRSize(), NT_FPREGSET); in ReadFPR() [all …]
|
| H A D | NativeRegisterContextLinux_loongarch64.h | 69 size_t GetFPRSize() override { return GetRegisterInfo().GetFPRSize(); } in GetFPRSize() function
|
| H A D | NativeRegisterContextLinux_riscv64.h | 68 size_t GetFPRSize() override { return GetRegisterInfo().GetFPRSize(); } in GetFPRSize() function
|
| H A D | NativeRegisterContextLinux_arm.cpp | 869 GetFPRSize()); in ReadFPR() 873 ioVec.iov_len = GetFPRSize(); in ReadFPR() 875 return ReadRegisterSet(&ioVec, GetFPRSize(), NT_ARM_VFP); in ReadFPR() 883 GetFPRSize()); in WriteFPR() 887 ioVec.iov_len = GetFPRSize(); in WriteFPR() 889 return WriteRegisterSet(&ioVec, GetFPRSize(), NT_ARM_VFP); in WriteFPR()
|
| H A D | NativeRegisterContextLinux_ppc64le.cpp | 35 (GetGPRSize() + GetFPRSize() + sizeof(m_vmx_ppc64le) + sizeof(m_vsx_ppc64le)) 284 assert(fpr_offset < GetFPRSize()); in WriteRegister() 381 ::memcpy(dst, &m_fpr_ppc64le, GetFPRSize()); in ReadAllRegisterValues() 382 dst += GetFPRSize(); in ReadAllRegisterValues() 425 ::memcpy(&m_fpr_ppc64le, src, GetFPRSize()); in WriteAllRegisterValues() 431 src += GetFPRSize(); in WriteAllRegisterValues()
|
| H A D | NativeRegisterContextLinux.cpp | 110 GetFPRSize()); in ReadFPR() 116 GetFPRSize()); in WriteFPR()
|
| H A D | NativeRegisterContextLinux_s390x.cpp | 348 memcpy(dst, GetFPRBuffer(), GetFPRSize()); in ReadAllRegisterValues() 349 dst += GetFPRSize(); in ReadAllRegisterValues() 399 memcpy(GetFPRBuffer(), src, GetFPRSize()); in WriteAllRegisterValues() 400 src += GetFPRSize(); in WriteAllRegisterValues()
|
| H A D | NativeRegisterContextLinux.h | 121 virtual size_t GetFPRSize() = 0;
|
| H A D | NativeRegisterContextLinux_ppc64le.h | 87 size_t GetFPRSize() override { return sizeof(m_fpr_ppc64le); } in GetFPRSize() function
|
| H A D | NativeRegisterContextLinux_x86_64.h | 58 size_t GetFPRSize() override;
|
| H A D | NativeRegisterContextLinux_s390x.h | 81 size_t GetFPRSize() override { return sizeof(m_fp_regs); } in GetFPRSize() function
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/OpenBSD/ |
| H A D | NativeRegisterContextOpenBSD_arm64.cpp | 39 #define REG_CONTEXT_SIZE (GetGPRSize() + GetFPRSize()) 418 ::memcpy(dst, &m_fpr, GetFPRSize()); in ReadAllRegisterValues() 419 dst += GetFPRSize(); in ReadAllRegisterValues() 461 ::memcpy(&m_fpr, src, GetFPRSize()); in WriteAllRegisterValues() 465 src += GetFPRSize(); in WriteAllRegisterValues()
|
| H A D | NativeRegisterContextOpenBSD.h | 48 virtual size_t GetFPRSize() { return 0; } in GetFPRSize() function
|
| H A D | NativeRegisterContextOpenBSD_arm64.h | 45 size_t GetFPRSize() override { return sizeof(m_fpr); } in GetFPRSize() function
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/elf-core/ |
| H A D | RegisterContextPOSIXCore_ppc64le.cpp | 51 size_t RegisterContextCorePOSIX_ppc64le::GetFPRSize() const { in GetFPRSize() function in RegisterContextCorePOSIX_ppc64le 79 offset -= GetGPRSize() + GetFPRSize(); in ReadRegister() 89 offset -= GetGPRSize() + GetFPRSize() + GetVMXSize(); in ReadRegister()
|
| H A D | RegisterContextPOSIXCore_ppc64le.h | 31 size_t GetFPRSize() const;
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Utility/ |
| H A D | RegisterInfoAndSetInterface.h | 25 virtual size_t GetFPRSize() const = 0;
|
| H A D | RegisterInfoPOSIX_riscv64.h | 43 size_t GetFPRSize() const override;
|
| H A D | RegisterContextPOSIX_loongarch64.h | 53 size_t GetFPRSize() { return sizeof(RegisterInfoPOSIX_loongarch64::FPR); } in GetFPRSize() function
|
| H A D | RegisterContextPOSIX_riscv64.h | 53 size_t GetFPRSize() { return sizeof(RegisterInfoPOSIX_riscv64::FPR); } in GetFPRSize() function
|
| H A D | RegisterInfoPOSIX_loongarch64.h | 51 size_t GetFPRSize() const override;
|
| H A D | RegisterInfoPOSIX_arm.h | 54 size_t GetFPRSize() const override;
|
| H A D | RegisterInfoPOSIX_riscv64.cpp | 114 size_t RegisterInfoPOSIX_riscv64::GetFPRSize() const { in GetFPRSize() function in RegisterInfoPOSIX_riscv64
|