/openbsd/gnu/llvm/lldb/source/Plugins/Process/Linux/ |
H A D | NativeRegisterContextLinux_loongarch64.cpp | 29 #define REG_CONTEXT_SIZE (GetGPRSize() + GetFPRSize()) 116 assert(offset < GetGPRSize()); in ReadRegister() 159 assert(reg_info->byte_offset < GetGPRSize()); in WriteRegister() 195 ::memcpy(dst, GetGPRBuffer(), GetGPRSize()); in ReadAllRegisterValues() 196 dst += GetGPRSize(); in ReadAllRegisterValues() 235 src += GetRegisterInfoInterface().GetGPRSize(); in WriteAllRegisterValues() 263 ioVec.iov_len = GetGPRSize(); in ReadGPR() 265 error = ReadRegisterSet(&ioVec, GetGPRSize(), NT_PRSTATUS); in ReadGPR() 280 ioVec.iov_len = GetGPRSize(); in WriteGPR() 284 return WriteRegisterSet(&ioVec, GetGPRSize(), NT_PRSTATUS); in WriteGPR() [all …]
|
H A D | NativeRegisterContextLinux_riscv64.cpp | 30 #define REG_CONTEXT_SIZE (GetGPRSize() + GetFPRSize()) 123 assert(offset < GetGPRSize()); in ReadRegister() 171 assert(reg_info->byte_offset < GetGPRSize()); in WriteRegister() 207 ::memcpy(dst, GetGPRBuffer(), GetGPRSize()); in ReadAllRegisterValues() 208 dst += GetGPRSize(); in ReadAllRegisterValues() 247 src += GetRegisterInfoInterface().GetGPRSize(); in WriteAllRegisterValues() 275 ioVec.iov_len = GetGPRSize(); in ReadGPR() 277 error = ReadRegisterSet(&ioVec, GetGPRSize(), NT_PRSTATUS); in ReadGPR() 292 ioVec.iov_len = GetGPRSize(); in WriteGPR() 296 return WriteRegisterSet(&ioVec, GetGPRSize(), NT_PRSTATUS); in WriteGPR() [all …]
|
H A D | NativeRegisterContextLinux_arm.cpp | 26 #define REG_CONTEXT_SIZE (GetGPRSize() + sizeof(m_fpr)) 214 ::memcpy(dst, &m_gpr_arm, GetGPRSize()); in ReadAllRegisterValues() 215 dst += GetGPRSize(); in ReadAllRegisterValues() 248 ::memcpy(&m_gpr_arm, src, GetRegisterInfoInterface().GetGPRSize()); in WriteAllRegisterValues() 254 src += GetRegisterInfoInterface().GetGPRSize(); in WriteAllRegisterValues() 786 return reg_info->byte_offset - GetGPRSize(); in CalculateFprOffset() 847 ioVec.iov_len = GetGPRSize(); in ReadGPR() 849 return ReadRegisterSet(&ioVec, GetGPRSize(), NT_PRSTATUS); in ReadGPR() 859 ioVec.iov_len = GetGPRSize(); in WriteGPR() 861 return WriteRegisterSet(&ioVec, GetGPRSize(), NT_PRSTATUS); in WriteGPR()
|
H A D | NativeRegisterContextLinux_s390x.cpp | 342 memcpy(dst, GetGPRBuffer(), GetGPRSize()); in ReadAllRegisterValues() 343 dst += GetGPRSize(); in ReadAllRegisterValues() 393 memcpy(GetGPRBuffer(), src, GetGPRSize()); in WriteAllRegisterValues() 394 src += GetGPRSize(); in WriteAllRegisterValues() 449 GetGPRSize()); in ReadGPR() 454 GetGPRSize()); in WriteGPR() 459 GetGPRSize()); in ReadFPR() 464 GetGPRSize()); in WriteFPR()
|
H A D | NativeRegisterContextLinux_riscv64.h | 66 size_t GetGPRSize() const override { return GetRegisterInfo().GetGPRSize(); } in GetGPRSize() function
|
H A D | NativeRegisterContextLinux_loongarch64.h | 67 size_t GetGPRSize() const override { return GetRegisterInfo().GetGPRSize(); } in GetGPRSize() function
|
H A D | NativeRegisterContextLinux.h | 115 virtual size_t GetGPRSize() const { in GetGPRSize() function 116 return GetRegisterInfoInterface().GetGPRSize(); in GetGPRSize()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Utility/ |
H A D | RegisterContextFreeBSD_powerpc.h | 21 size_t GetGPRSize() const override; 33 size_t GetGPRSize() const override; 45 size_t GetGPRSize() const override;
|
H A D | RegisterContextPOSIX_loongarch64.cpp | 40 size_t RegisterContextPOSIX_loongarch64::GetGPRSize() { in GetGPRSize() function in RegisterContextPOSIX_loongarch64 41 return m_register_info_up->GetGPRSize(); in GetGPRSize()
|
H A D | RegisterContextPOSIX_riscv64.cpp | 40 size_t RegisterContextPOSIX_riscv64::GetGPRSize() { in GetGPRSize() function in RegisterContextPOSIX_riscv64 41 return m_register_info_up->GetGPRSize(); in GetGPRSize()
|
H A D | RegisterContextPOSIX_arm.cpp | 66 size_t RegisterContextPOSIX_arm::GetGPRSize() { in GetGPRSize() function in RegisterContextPOSIX_arm 67 return m_register_info_up->GetGPRSize(); in GetGPRSize()
|
H A D | RegisterContextPOSIX_arm64.cpp | 74 size_t RegisterContextPOSIX_arm64::GetGPRSize() { in GetGPRSize() function in RegisterContextPOSIX_arm64 75 return m_register_info_up->GetGPRSize(); in GetGPRSize()
|
H A D | RegisterContextFreeBSD_powerpc.cpp | 183 size_t RegisterContextFreeBSD_powerpc::GetGPRSize() const { in GetGPRSize() function in RegisterContextFreeBSD_powerpc 201 size_t RegisterContextFreeBSD_powerpc32::GetGPRSize() const { in GetGPRSize() function in RegisterContextFreeBSD_powerpc32 220 size_t RegisterContextFreeBSD_powerpc64::GetGPRSize() const { in GetGPRSize() function in RegisterContextFreeBSD_powerpc64
|
H A D | RegisterContextPOSIX_mips64.cpp | 81 size_t RegisterContextPOSIX_mips64::GetGPRSize() { in GetGPRSize() function in RegisterContextPOSIX_mips64 82 return m_register_info_up->GetGPRSize(); in GetGPRSize()
|
H A D | RegisterContextPOSIX_powerpc.cpp | 119 size_t RegisterContextPOSIX_powerpc::GetGPRSize() { in GetGPRSize() function in RegisterContextPOSIX_powerpc 120 return m_register_info_up->GetGPRSize(); in GetGPRSize()
|
H A D | RegisterContextNetBSD_i386.h | 18 size_t GetGPRSize() const override;
|
H A D | RegisterContextFreeBSD_i386.h | 18 size_t GetGPRSize() const override;
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/OpenBSD/ |
H A D | NativeRegisterContextOpenBSD.h | 43 virtual size_t GetGPRSize() { in GetGPRSize() function 44 return GetRegisterInfoInterface().GetGPRSize(); in GetGPRSize()
|
H A D | NativeRegisterContextOpenBSD_arm64.cpp | 39 #define REG_CONTEXT_SIZE (GetGPRSize() + GetFPRSize()) 415 ::memcpy(dst, &m_gpr, GetGPRSize()); in ReadAllRegisterValues() 416 dst += GetGPRSize(); in ReadAllRegisterValues() 455 ::memcpy(&m_gpr, src, GetGPRSize()); in WriteAllRegisterValues() 459 src += GetGPRSize(); in WriteAllRegisterValues()
|
H A D | NativeRegisterContextOpenBSD_x86_64.cpp | 134 #define REG_CONTEXT_SIZE (GetGPRSize() + GetFPRSize()) 691 ::memcpy(dst, &m_gpr, GetGPRSize()); in ReadAllRegisterValues() 692 dst += GetGPRSize(); in ReadAllRegisterValues() 731 ::memcpy(&m_gpr, src, GetGPRSize()); in WriteAllRegisterValues() 735 src += GetGPRSize(); in WriteAllRegisterValues()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/elf-core/ |
H A D | RegisterContextPOSIXCore_ppc64le.cpp | 70 offset -= GetGPRSize(); in ReadRegister() 79 offset -= GetGPRSize() + GetFPRSize(); in ReadRegister() 89 offset -= GetGPRSize() + GetFPRSize() + GetVMXSize(); in ReadRegister()
|
H A D | RegisterContextPOSIXCore_x86_64.cpp | 22 size = GetGPRSize(); in RegisterContextCorePOSIX_x86_64() 65 if (m_gpregset && reg_info->byte_offset < GetGPRSize()) { in ReadRegister()
|
H A D | RegisterContextPOSIXCore_arm64.cpp | 119 uint32_t sve_z0_offset = GetGPRSize() + 16; in CalculateSVEOffset() 133 if (offset + reg_info->byte_size <= GetGPRSize()) { in ReadRegister() 148 offset -= GetGPRSize(); in ReadRegister()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/NetBSD/ |
H A D | NativeRegisterContextNetBSD_x86_64.cpp | 243 #define REG_CONTEXT_SIZE (GetRegisterInfoInterface().GetGPRSize()) 272 assert(m_gpr.size() == GetRegisterInfoInterface().GetGPRSize()); 540 ::memcpy(dst, m_gpr.data(), GetRegisterInfoInterface().GetGPRSize()); in ReadAllRegisterValues() 541 dst += GetRegisterInfoInterface().GetGPRSize(); in ReadAllRegisterValues() 573 ::memcpy(m_gpr.data(), src, GetRegisterInfoInterface().GetGPRSize()); in WriteAllRegisterValues() 578 src += GetRegisterInfoInterface().GetGPRSize(); in WriteAllRegisterValues()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/FreeBSD/ |
H A D | NativeRegisterContextFreeBSD_x86_64.cpp | 236 #define REG_CONTEXT_SIZE (GetRegisterInfoInterface().GetGPRSize()) 265 assert(m_gpr.size() == GetRegisterInfoInterface().GetGPRSize()); 550 ::memcpy(dst, m_gpr.data(), GetRegisterInfoInterface().GetGPRSize()); in ReadAllRegisterValues() 551 dst += GetRegisterInfoInterface().GetGPRSize(); in ReadAllRegisterValues() 583 ::memcpy(m_gpr.data(), src, GetRegisterInfoInterface().GetGPRSize()); in WriteAllRegisterValues() 588 src += GetRegisterInfoInterface().GetGPRSize(); in WriteAllRegisterValues()
|