Home
last modified time | relevance | path

Searched refs:GetFPRSize (Results 1 – 25 of 29) sorted by relevance

12

/llvm-project/lldb/source/Plugins/Process/Linux/
H A DNativeRegisterContextLinux_loongarch64.cpp40 (GetGPRSize() + GetFPRSize() + sizeof(m_lsx) + sizeof(m_lasx)) in CreateHostNativeRegisterContextLinux()
150 assert(offset < GetFPRSize()); in WriteRegister()
212 assert(offset < GetFPRSize()); in WriteAllRegisterValues()
269 ::memcpy(dst, GetFPRBuffer(), GetFPRSize()); in ReadGPR()
270 dst += GetFPRSize(); in ReadGPR()
313 ::memcpy(GetFPRBuffer(), src, GetFPRSize()); in WriteFPR()
321 src += GetFPRSize(); in InvalidateAllRegisters()
398 ioVec.iov_len = GetFPRSize();
400 error = ReadRegisterSet(&ioVec, GetFPRSize(), NT_FPREGSET);
415 ioVec.iov_len = GetFPRSize();
[all...]
H A DNativeRegisterContextLinux_riscv64.cpp145 assert(offset < GetFPRSize()); in WriteRegister()
196 assert(offset < GetFPRSize()); in ReadAllRegisterValues()
226 ::memcpy(dst, GetFPRBuffer(), GetFPRSize()); in WriteAllRegisterValues()
268 ::memcpy(GetFPRBuffer(), src, GetFPRSize()); in ReadGPR()
281 size += GetFPRSize(); in ReadGPR()
334 ioVec.iov_len = GetFPRSize(); in InvalidateAllRegisters()
336 error = ReadRegisterSet(&ioVec, GetFPRSize(), NT_FPREGSET); in CalculateFprOffset()
351 ioVec.iov_len = GetFPRSize();
355 return WriteRegisterSet(&ioVec, GetFPRSize(), NT_FPREGSET);
H A DNativeRegisterContextLinux_loongarch64.h79 size_t GetFPRSize() override { return GetRegisterInfo().GetFPRSize(); }
69 size_t GetFPRSize() override { return GetRegisterInfo().GetFPRSize(); } GetFPRSize() function
H A DNativeRegisterContextLinux_riscv64.h68 size_t GetFPRSize() override { return GetRegisterInfo().GetFPRSize(); } in GetFPRSize() function
H A DNativeRegisterContextLinux_arm.cpp873 GetFPRSize()); in ReadFPR()
877 ioVec.iov_len = GetFPRSize(); in ReadFPR()
879 return ReadRegisterSet(&ioVec, GetFPRSize(), NT_ARM_VFP); in WriteFPR()
887 GetFPRSize()); in WriteFPR()
891 ioVec.iov_len = GetFPRSize(); in WriteFPR()
893 return WriteRegisterSet(&ioVec, GetFPRSize(), NT_ARM_VFP);
H A DNativeRegisterContextLinux_arm64.cpp297 assert(offset < GetFPRSize()); in ReadRegister()
501 assert(offset < GetFPRSize()); in WriteRegister()
772 cached_size += sizeof(RegisterSetType) + GetFPRSize(); in ReadAllRegisterValues()
875 GetFPRSize()); in WriteAllRegisterValues()
958 GetGPRBufferSize() + GetFPRSize() + 2 * (sizeof(RegisterSetType)); in WriteAllRegisterValues()
1012 GetFPRBuffer(), &src, GetFPRSize(), m_fpu_is_valid, in ReadHardwareDebugInfo()
1251 ioVec.iov_len = GetFPRSize(); in WriteAllSVE()
1253 error = ReadRegisterSet(&ioVec, GetFPRSize(), NT_FPREGSET); in WriteAllSVE()
1268 ioVec.iov_len = GetFPRSize(); in ReadSMEControl()
1272 return WriteRegisterSet(&ioVec, GetFPRSize(), NT_FPREGSE in ReadSMEControl()
[all...]
H A DNativeRegisterContextLinux_ppc64le.cpp35 (GetGPRSize() + GetFPRSize() + sizeof(m_vmx_ppc64le) + sizeof(m_vsx_ppc64le))
285 assert(fpr_offset < GetFPRSize()); in WriteRegister()
383 ::memcpy(dst, &m_fpr_ppc64le, GetFPRSize()); in ReadAllRegisterValues()
384 dst += GetFPRSize(); in ReadAllRegisterValues()
428 ::memcpy(&m_fpr_ppc64le, src, GetFPRSize()); in WriteAllRegisterValues()
434 src += GetFPRSize(); in WriteAllRegisterValues()
H A DNativeRegisterContextLinux_s390x.cpp354 memcpy(dst, GetFPRBuffer(), GetFPRSize()); in ReadAllRegisterValues()
355 dst += GetFPRSize(); in ReadAllRegisterValues()
406 memcpy(GetFPRBuffer(), src, GetFPRSize()); in WriteAllRegisterValues()
407 src += GetFPRSize(); in WriteAllRegisterValues()
H A DNativeRegisterContextLinux.cpp114 GetFPRSize());
120 GetFPRSize());
H A DNativeRegisterContextLinux.h121 virtual size_t GetFPRSize() = 0;
H A DNativeRegisterContextLinux_ppc64le.h87 size_t GetFPRSize() override { return sizeof(m_fpr_ppc64le); } in GetFPRSize() function
H A DNativeRegisterContextLinux_s390x.h81 size_t GetFPRSize() override { return sizeof(m_fp_regs); } in GetFPRSize() function
H A DNativeRegisterContextLinux_x86_64.h61 size_t GetFPRSize() override;
H A DNativeRegisterContextLinux_arm.h99 size_t GetFPRSize() override { return sizeof(m_fpr); } in GetFPRSize() function
/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_ppc64le.cpp51 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 DRegisterContextPOSIXCore_ppc64le.h31 size_t GetFPRSize() const;
/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterInfoAndSetInterface.h25 virtual size_t GetFPRSize() const = 0;
H A DRegisterInfoPOSIX_riscv64.h54 size_t GetFPRSize() const override;
H A DRegisterContextPOSIX_riscv64.h53 size_t GetFPRSize() { return sizeof(RegisterInfoPOSIX_riscv64::FPR); } in GetFPRSize() function
H A DRegisterContextPOSIX_loongarch64.h57 size_t GetFPRSize() { return sizeof(RegisterInfoPOSIX_loongarch64::FPR); }
53 size_t GetFPRSize() { return sizeof(RegisterInfoPOSIX_loongarch64::FPR); } GetFPRSize() function
H A DRegisterInfoPOSIX_arm.h54 size_t GetFPRSize() const override;
H A DRegisterInfoPOSIX_loongarch64.h63 size_t GetFPRSize() const override;
H A DRegisterInfoPOSIX_riscv64.cpp118 size_t RegisterInfoPOSIX_riscv64::GetFPRSize() const {
114 size_t RegisterInfoPOSIX_riscv64::GetFPRSize() const { GetFPRSize() function in RegisterInfoPOSIX_riscv64
H A DRegisterInfoPOSIX_loongarch64.cpp183 size_t RegisterInfoPOSIX_loongarch64::GetFPRSize() const {
130 size_t RegisterInfoPOSIX_loongarch64::GetFPRSize() const { GetFPRSize() function in RegisterInfoPOSIX_loongarch64
H A DRegisterInfoPOSIX_arm64.h94 size_t GetFPRSize() const override;

12