Home
last modified time | relevance | path

Searched refs:GetGPRSize (Results 1 – 25 of 76) sorted by relevance

1234

/openbsd/gnu/llvm/lldb/source/Plugins/Process/Linux/
H A DNativeRegisterContextLinux_loongarch64.cpp29 #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 DNativeRegisterContextLinux_riscv64.cpp30 #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 DNativeRegisterContextLinux_arm.cpp26 #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 DNativeRegisterContextLinux_s390x.cpp342 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 DNativeRegisterContextLinux_riscv64.h66 size_t GetGPRSize() const override { return GetRegisterInfo().GetGPRSize(); } in GetGPRSize() function
H A DNativeRegisterContextLinux_loongarch64.h67 size_t GetGPRSize() const override { return GetRegisterInfo().GetGPRSize(); } in GetGPRSize() function
H A DNativeRegisterContextLinux.h115 virtual size_t GetGPRSize() const { in GetGPRSize() function
116 return GetRegisterInfoInterface().GetGPRSize(); in GetGPRSize()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Utility/
H A DRegisterContextFreeBSD_powerpc.h21 size_t GetGPRSize() const override;
33 size_t GetGPRSize() const override;
45 size_t GetGPRSize() const override;
H A DRegisterContextPOSIX_loongarch64.cpp40 size_t RegisterContextPOSIX_loongarch64::GetGPRSize() { in GetGPRSize() function in RegisterContextPOSIX_loongarch64
41 return m_register_info_up->GetGPRSize(); in GetGPRSize()
H A DRegisterContextPOSIX_riscv64.cpp40 size_t RegisterContextPOSIX_riscv64::GetGPRSize() { in GetGPRSize() function in RegisterContextPOSIX_riscv64
41 return m_register_info_up->GetGPRSize(); in GetGPRSize()
H A DRegisterContextPOSIX_arm.cpp66 size_t RegisterContextPOSIX_arm::GetGPRSize() { in GetGPRSize() function in RegisterContextPOSIX_arm
67 return m_register_info_up->GetGPRSize(); in GetGPRSize()
H A DRegisterContextPOSIX_arm64.cpp74 size_t RegisterContextPOSIX_arm64::GetGPRSize() { in GetGPRSize() function in RegisterContextPOSIX_arm64
75 return m_register_info_up->GetGPRSize(); in GetGPRSize()
H A DRegisterContextFreeBSD_powerpc.cpp183 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 DRegisterContextPOSIX_mips64.cpp81 size_t RegisterContextPOSIX_mips64::GetGPRSize() { in GetGPRSize() function in RegisterContextPOSIX_mips64
82 return m_register_info_up->GetGPRSize(); in GetGPRSize()
H A DRegisterContextPOSIX_powerpc.cpp119 size_t RegisterContextPOSIX_powerpc::GetGPRSize() { in GetGPRSize() function in RegisterContextPOSIX_powerpc
120 return m_register_info_up->GetGPRSize(); in GetGPRSize()
H A DRegisterContextNetBSD_i386.h18 size_t GetGPRSize() const override;
H A DRegisterContextFreeBSD_i386.h18 size_t GetGPRSize() const override;
/openbsd/gnu/llvm/lldb/source/Plugins/Process/OpenBSD/
H A DNativeRegisterContextOpenBSD.h43 virtual size_t GetGPRSize() { in GetGPRSize() function
44 return GetRegisterInfoInterface().GetGPRSize(); in GetGPRSize()
H A DNativeRegisterContextOpenBSD_arm64.cpp39 #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 DNativeRegisterContextOpenBSD_x86_64.cpp134 #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 DRegisterContextPOSIXCore_ppc64le.cpp70 offset -= GetGPRSize(); in ReadRegister()
79 offset -= GetGPRSize() + GetFPRSize(); in ReadRegister()
89 offset -= GetGPRSize() + GetFPRSize() + GetVMXSize(); in ReadRegister()
H A DRegisterContextPOSIXCore_x86_64.cpp22 size = GetGPRSize(); in RegisterContextCorePOSIX_x86_64()
65 if (m_gpregset && reg_info->byte_offset < GetGPRSize()) { in ReadRegister()
H A DRegisterContextPOSIXCore_arm64.cpp119 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 DNativeRegisterContextNetBSD_x86_64.cpp243 #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 DNativeRegisterContextFreeBSD_x86_64.cpp236 #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()

1234