Home
last modified time | relevance | path

Searched refs:GetRegisterSet (Results 1 – 25 of 110) sorted by relevance

12345

/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Utility/
DRegisterContextPOSIX_mips64.cpp51 reg_set_ptr = GetRegisterSet(i); in RegisterContextPOSIX_mips64()
112 const RegisterSet *RegisterContextPOSIX_mips64::GetRegisterSet(size_t set) { in GetRegisterSet() function in RegisterContextPOSIX_mips64
118 return context->GetRegisterSet(set); in GetRegisterSet()
DRegisterContextPOSIX_riscv64.cpp65 RegisterContextPOSIX_riscv64::GetRegisterSet(size_t set) { in GetRegisterSet() function in RegisterContextPOSIX_riscv64
66 return m_register_info_up->GetRegisterSet(set); in GetRegisterSet()
DRegisterContextPOSIX_loongarch64.cpp65 RegisterContextPOSIX_loongarch64::GetRegisterSet(size_t set) { in GetRegisterSet() function in RegisterContextPOSIX_loongarch64
66 return m_register_info_up->GetRegisterSet(set); in GetRegisterSet()
DRegisterContextPOSIX_arm.cpp90 RegisterContextPOSIX_arm::GetRegisterSet(size_t set) { in GetRegisterSet() function in RegisterContextPOSIX_arm
91 return m_register_info_up->GetRegisterSet(set); in GetRegisterSet()
DRegisterContextPOSIX_arm64.cpp99 RegisterContextPOSIX_arm64::GetRegisterSet(size_t set) { in GetRegisterSet() function in RegisterContextPOSIX_arm64
100 return m_register_info_up->GetRegisterSet(set); in GetRegisterSet()
DRegisterContextMemory.cpp66 const RegisterSet *RegisterContextMemory::GetRegisterSet(size_t reg_set) { in GetRegisterSet() function in RegisterContextMemory
67 return m_reg_infos.GetRegisterSet(reg_set); in GetRegisterSet()
DRegisterContextThreadMemory.cpp86 const RegisterSet *RegisterContextThreadMemory::GetRegisterSet(size_t reg_set) { in GetRegisterSet() function in RegisterContextThreadMemory
89 return m_reg_ctx_sp->GetRegisterSet(reg_set); in GetRegisterSet()
DRegisterContextFreeBSD_mips64.h21 const lldb_private::RegisterSet *GetRegisterSet(size_t set) const;
DRegisterInfoAndSetInterface.h28 GetRegisterSet(size_t reg_set) const = 0;
DRegisterInfoPOSIX_riscv64.h50 GetRegisterSet(size_t reg_set) const override;
DRegisterContextPOSIX_arm.h41 const lldb_private::RegisterSet *GetRegisterSet(size_t set) override;
DRegisterContextPOSIX_loongarch64.h42 const lldb_private::RegisterSet *GetRegisterSet(size_t set) override;
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/FreeBSD/
DNativeRegisterContextFreeBSD_arm.cpp51 NativeRegisterContextFreeBSD_arm::GetRegisterSet(uint32_t set_index) const { in GetRegisterSet() function in NativeRegisterContextFreeBSD_arm
52 return GetRegisterInfo().GetRegisterSet(set_index); in GetRegisterSet()
58 count += GetRegisterSet(set_index)->num_registers; in GetUserRegisterCount()
DNativeRegisterContextFreeBSD_mips64.cpp53 NativeRegisterContextFreeBSD_mips64::GetRegisterSet(uint32_t set_index) const { in GetRegisterSet() function in NativeRegisterContextFreeBSD_mips64
54 return GetRegisterInfo().GetRegisterSet(set_index); in GetRegisterSet()
60 count += GetRegisterSet(set_index)->num_registers; in GetUserRegisterCount()
DNativeRegisterContextFreeBSD_arm64.cpp60 NativeRegisterContextFreeBSD_arm64::GetRegisterSet(uint32_t set_index) const { in GetRegisterSet() function in NativeRegisterContextFreeBSD_arm64
61 return GetRegisterInfo().GetRegisterSet(set_index); in GetRegisterSet()
67 count += GetRegisterSet(set_index)->num_registers; in GetUserRegisterCount()
DNativeRegisterContextFreeBSD_arm.h39 const RegisterSet *GetRegisterSet(uint32_t set_index) const override;
/openbsd/src/gnu/llvm/lldb/source/Host/common/
DNativeRegisterContext.cpp103 const RegisterSet *const reg_set = GetRegisterSet(set_index); in GetRegisterSetNameForRegisterAtIndex()
463 return std::vector<uint32_t>(GetRegisterSet(0)->registers, in GetExpeditedRegisters()
464 GetRegisterSet(0)->registers + in GetExpeditedRegisters()
465 GetRegisterSet(0)->num_registers); in GetExpeditedRegisters()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Linux/
DNativeRegisterContextLinux_loongarch64.cpp79 const RegisterSet *NativeRegisterContextLinux_loongarch64::GetRegisterSet( in GetRegisterSet() function in NativeRegisterContextLinux_loongarch64
81 return GetRegisterInfo().GetRegisterSet(set_index); in GetRegisterSet()
87 count += GetRegisterSet(set_index)->num_registers; in GetUserRegisterCount()
DNativeRegisterContextLinux_riscv64.cpp81 NativeRegisterContextLinux_riscv64::GetRegisterSet(uint32_t set_index) const { in GetRegisterSet() function in NativeRegisterContextLinux_riscv64
82 return GetRegisterInfo().GetRegisterSet(set_index); in GetRegisterSet()
88 count += GetRegisterSet(set_index)->num_registers; in GetUserRegisterCount()
/openbsd/src/gnu/llvm/lldb/source/Core/
DValueObjectRegister.cpp59 m_reg_set = reg_ctx->GetRegisterSet(m_reg_set_idx); in ValueObjectRegisterSet()
78 const RegisterSet *reg_set = m_reg_ctx_sp->GetRegisterSet(m_reg_set_idx); in CalculateNumChildren()
98 const RegisterSet *reg_set = m_reg_ctx_sp->GetRegisterSet(m_reg_set_idx); in UpdateValue()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/OpenBSD/
DNativeRegisterContextOpenBSD_arm64.cpp90 NativeRegisterContextOpenBSD_arm64::GetRegisterSet(uint32_t set_index) const { in GetRegisterSet() function in NativeRegisterContextOpenBSD_arm64
91 return GetRegisterInfo().GetRegisterSet(set_index); in GetRegisterSet()
97 count += GetRegisterSet(set_index)->num_registers; in GetUserRegisterCount()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/x64/
DRegisterContextWindows_x64.h35 const RegisterSet *GetRegisterSet(size_t reg_set) override;
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/arm/
DRegisterContextWindows_arm.h35 const RegisterSet *GetRegisterSet(size_t reg_set) override;
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/arm64/
DRegisterContextWindows_arm64.h35 const RegisterSet *GetRegisterSet(size_t reg_set) override;
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/x86/
DRegisterContextWindows_x86.h35 const RegisterSet *GetRegisterSet(size_t reg_set) override;

12345