Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/Process/elf-core/
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()
DRegisterContextPOSIXCore_ppc64le.h31 size_t GetFPRSize() const;
/external/llvm-project/lldb/source/Plugins/Process/Linux/
DNativeRegisterContextLinux_arm64.cpp36 #define REG_CONTEXT_SIZE (GetGPRSize() + GetFPRSize())
142 assert(offset < GetFPRSize()); in ReadRegister()
257 assert(offset < GetFPRSize()); in WriteRegister()
374 ::memcpy(dst, GetFPRBuffer(), GetFPRSize()); in ReadAllRegisterValues()
413 ::memcpy(GetFPRBuffer(), src, GetFPRSize()); in WriteAllRegisterValues()
971 ioVec.iov_len = GetFPRSize(); in ReadFPR()
973 error = ReadRegisterSet(&ioVec, GetFPRSize(), NT_FPREGSET); in ReadFPR()
988 ioVec.iov_len = GetFPRSize(); in WriteFPR()
992 return WriteRegisterSet(&ioVec, GetFPRSize(), NT_FPREGSET); in WriteFPR()
DNativeRegisterContextLinux_arm.cpp880 GetFPRSize()); in ReadFPR()
884 ioVec.iov_len = GetFPRSize(); in ReadFPR()
886 return ReadRegisterSet(&ioVec, GetFPRSize(), NT_ARM_VFP); in ReadFPR()
894 GetFPRSize()); in WriteFPR()
898 ioVec.iov_len = GetFPRSize(); in WriteFPR()
900 return WriteRegisterSet(&ioVec, GetFPRSize(), NT_ARM_VFP); in WriteFPR()
DNativeRegisterContextLinux.cpp106 GetFPRSize()); in ReadFPR()
112 GetFPRSize()); in WriteFPR()
DNativeRegisterContextLinux_ppc64le.cpp34 (GetGPRSize() + GetFPRSize() + sizeof(m_vmx_ppc64le) + sizeof(m_vsx_ppc64le))
279 assert(fpr_offset < GetFPRSize()); in WriteRegister()
376 ::memcpy(dst, &m_fpr_ppc64le, GetFPRSize()); in ReadAllRegisterValues()
377 dst += GetFPRSize(); in ReadAllRegisterValues()
420 ::memcpy(&m_fpr_ppc64le, src, GetFPRSize()); in WriteAllRegisterValues()
426 src += GetFPRSize(); in WriteAllRegisterValues()
DNativeRegisterContextLinux_s390x.cpp344 memcpy(dst, GetFPRBuffer(), GetFPRSize()); in ReadAllRegisterValues()
345 dst += GetFPRSize(); in ReadAllRegisterValues()
395 memcpy(GetFPRBuffer(), src, GetFPRSize()); in WriteAllRegisterValues()
396 src += GetFPRSize(); in WriteAllRegisterValues()
DNativeRegisterContextLinux.h88 virtual size_t GetFPRSize() = 0;
DNativeRegisterContextLinux_ppc64le.h87 size_t GetFPRSize() override { return sizeof(m_fpr_ppc64le); } in GetFPRSize() function
DNativeRegisterContextLinux_x86_64.h57 size_t GetFPRSize() override;
DNativeRegisterContextLinux_s390x.h81 size_t GetFPRSize() override { return sizeof(m_fp_regs); } in GetFPRSize() function
DNativeRegisterContextLinux_arm.h99 size_t GetFPRSize() override { return sizeof(m_fpr); } in GetFPRSize() function
DNativeRegisterContextLinux_mips64.h105 size_t GetFPRSize() override { return sizeof(FPR_linux_mips); } in GetFPRSize() function
DNativeRegisterContextLinux_arm64.h106 size_t GetFPRSize() override { return sizeof(m_fpr); } in GetFPRSize() function
DNativeRegisterContextLinux_mips64.cpp400 ::memcpy(dst, &m_fpr, GetFPRSize()); in ReadAllRegisterValues()
401 dst += GetFPRSize(); in ReadAllRegisterValues()
439 ::memcpy(&m_fpr, src, GetFPRSize()); in WriteAllRegisterValues()
440 src += GetFPRSize(); in WriteAllRegisterValues()
DNativeRegisterContextLinux_x86_64.cpp963 size_t NativeRegisterContextLinux_x86_64::GetFPRSize() { in GetFPRSize() function in NativeRegisterContextLinux_x86_64
/external/llvm-project/lldb/source/Plugins/Process/Utility/
DRegisterInfoAndSetInterface.h25 virtual size_t GetFPRSize() const = 0;
DRegisterInfoPOSIX_arm.h54 size_t GetFPRSize() const override;
DRegisterInfoPOSIX_arm64.h75 size_t GetFPRSize() const override;
DRegisterInfoPOSIX_arm.cpp162 size_t RegisterInfoPOSIX_arm::GetFPRSize() const { in GetFPRSize() function in RegisterInfoPOSIX_arm
DRegisterInfoPOSIX_arm64.cpp220 size_t RegisterInfoPOSIX_arm64::GetFPRSize() const { in GetFPRSize() function in RegisterInfoPOSIX_arm64