Home
last modified time | relevance | path

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

123

/llvm-project-15.0.7/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_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
202 size_t RegisterContextFreeBSD_powerpc32::GetGPRSize() const { in GetGPRSize() function in RegisterContextFreeBSD_powerpc32
222 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 DRegisterContextFreeBSD_i386.h18 size_t GetGPRSize() const override;
H A DRegisterContextNetBSD_i386.h18 size_t GetGPRSize() const override;
H A DRegisterContextOpenBSD_i386.h18 size_t GetGPRSize() const override;
H A DRegisterContextWindows_x86_64.h19 size_t GetGPRSize() const override;
H A DRegisterContextWindows_i386.h18 size_t GetGPRSize() const override;
H A DRegisterInfoPOSIX_ppc64le.h20 size_t GetGPRSize() const override;
H A DRegisterContextFreeBSD_x86_64.h19 size_t GetGPRSize() const override;
H A DRegisterContextOpenBSD_x86_64.h19 size_t GetGPRSize() const override;
H A DRegisterContextFreeBSD_mips64.h19 size_t GetGPRSize() const override;
H A DRegisterContextNetBSD_x86_64.h19 size_t GetGPRSize() const override;
/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DNativeRegisterContextLinux_arm.cpp25 #define REG_CONTEXT_SIZE (GetGPRSize() + sizeof(m_fpr))
208 ::memcpy(dst, &m_gpr_arm, GetGPRSize()); in ReadAllRegisterValues()
209 dst += GetGPRSize(); in ReadAllRegisterValues()
242 ::memcpy(&m_gpr_arm, src, GetRegisterInfoInterface().GetGPRSize()); in WriteAllRegisterValues()
248 src += GetRegisterInfoInterface().GetGPRSize(); in WriteAllRegisterValues()
780 return reg_info->byte_offset - GetGPRSize(); in CalculateFprOffset()
841 ioVec.iov_len = GetGPRSize(); in ReadGPR()
843 return ReadRegisterSet(&ioVec, GetGPRSize(), NT_PRSTATUS); in ReadGPR()
853 ioVec.iov_len = GetGPRSize(); in WriteGPR()
855 return WriteRegisterSet(&ioVec, GetGPRSize(), NT_PRSTATUS); in WriteGPR()
H A DNativeRegisterContextLinux_s390x.cpp337 memcpy(dst, GetGPRBuffer(), GetGPRSize()); in ReadAllRegisterValues()
338 dst += GetGPRSize(); in ReadAllRegisterValues()
388 memcpy(GetGPRBuffer(), src, GetGPRSize()); in WriteAllRegisterValues()
389 src += GetGPRSize(); in WriteAllRegisterValues()
444 GetGPRSize()); in ReadGPR()
449 GetGPRSize()); in WriteGPR()
454 GetGPRSize()); in ReadFPR()
459 GetGPRSize()); in WriteFPR()
H A DNativeRegisterContextLinux.h108 virtual size_t GetGPRSize() const { in GetGPRSize() function
109 return GetRegisterInfoInterface().GetGPRSize(); in GetGPRSize()
H A DNativeRegisterContextLinux.cpp95 PTRACE_GETREGS, m_thread.GetID(), nullptr, GetGPRBuffer(), GetGPRSize()); in ReadGPR()
100 PTRACE_SETREGS, m_thread.GetID(), nullptr, GetGPRBuffer(), GetGPRSize()); in WriteGPR()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/source/Plugins/Process/FreeBSD/
H A DNativeRegisterContextFreeBSD_x86_64.cpp235 #define REG_CONTEXT_SIZE (GetRegisterInfoInterface().GetGPRSize())
264 assert(m_gpr.size() == GetRegisterInfoInterface().GetGPRSize());
549 ::memcpy(dst, m_gpr.data(), GetRegisterInfoInterface().GetGPRSize()); in ReadAllRegisterValues()
550 dst += GetRegisterInfoInterface().GetGPRSize(); in ReadAllRegisterValues()
582 ::memcpy(m_gpr.data(), src, GetRegisterInfoInterface().GetGPRSize()); in WriteAllRegisterValues()
587 src += GetRegisterInfoInterface().GetGPRSize(); in WriteAllRegisterValues()
/llvm-project-15.0.7/lldb/source/Plugins/Process/NetBSD/
H A DNativeRegisterContextNetBSD_x86_64.cpp242 #define REG_CONTEXT_SIZE (GetRegisterInfoInterface().GetGPRSize())
271 assert(m_gpr.size() == GetRegisterInfoInterface().GetGPRSize());
539 ::memcpy(dst, m_gpr.data(), GetRegisterInfoInterface().GetGPRSize()); in ReadAllRegisterValues()
540 dst += GetRegisterInfoInterface().GetGPRSize(); in ReadAllRegisterValues()
572 ::memcpy(m_gpr.data(), src, GetRegisterInfoInterface().GetGPRSize()); in WriteAllRegisterValues()
577 src += GetRegisterInfoInterface().GetGPRSize(); in WriteAllRegisterValues()

123