Home
last modified time | relevance | path

Searched refs:DynamicRegisterInfo (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DDynamicRegisterInfo.h19 class DynamicRegisterInfo {
21 DynamicRegisterInfo(DynamicRegisterInfo &) = default;
22 DynamicRegisterInfo &operator=(DynamicRegisterInfo &) = default;
25 DynamicRegisterInfo() = default;
27 DynamicRegisterInfo(const lldb_private::StructuredData::Dictionary &dict,
30 virtual ~DynamicRegisterInfo() = default;
32 DynamicRegisterInfo(DynamicRegisterInfo &&info);
33 DynamicRegisterInfo &operator=(DynamicRegisterInfo &&info);
86 void MoveFrom(DynamicRegisterInfo &&info);
H A DDynamicRegisterInfo.cpp23 DynamicRegisterInfo::DynamicRegisterInfo( in DynamicRegisterInfo() function in DynamicRegisterInfo
29 DynamicRegisterInfo::DynamicRegisterInfo(DynamicRegisterInfo &&info) { in DynamicRegisterInfo() function in DynamicRegisterInfo
33 DynamicRegisterInfo &
34 DynamicRegisterInfo::operator=(DynamicRegisterInfo &&info) { in operator =()
39 void DynamicRegisterInfo::MoveFrom(DynamicRegisterInfo &&info) { in MoveFrom()
398 void DynamicRegisterInfo::AddRegister(RegisterInfo &reg_info, in AddRegister()
433 void DynamicRegisterInfo::Finalize(const ArchSpec &arch) { in Finalize()
633 void DynamicRegisterInfo::ConfigureOffsets() { in ConfigureOffsets()
683 size_t DynamicRegisterInfo::GetRegisterDataByteSize() const { in GetRegisterDataByteSize()
741 void DynamicRegisterInfo::Clear() { in Clear()
[all …]
H A DRegisterContextMemory.h18 class DynamicRegisterInfo; variable
24 DynamicRegisterInfo &reg_info,
63 DynamicRegisterInfo &m_reg_infos;
H A DRegisterContextMemory.cpp24 DynamicRegisterInfo &reg_infos, in RegisterContextMemory()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.h19 class DynamicRegisterInfo; variable
77 DynamicRegisterInfo *GetDynamicRegisterInfo();
80 std::unique_ptr<DynamicRegisterInfo> m_register_info_up;
H A DOperatingSystemPython.cpp120 DynamicRegisterInfo *OperatingSystemPython::GetDynamicRegisterInfo() { in GetDynamicRegisterInfo()
136 m_register_info_up = std::make_unique<DynamicRegisterInfo>( in GetDynamicRegisterInfo()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteRegisterContext.h35 class GDBRemoteDynamicRegisterInfo final : public DynamicRegisterInfo {
37 GDBRemoteDynamicRegisterInfo() : DynamicRegisterInfo() {} in GDBRemoteDynamicRegisterInfo()
/freebsd-13.1/lib/clang/liblldb/
H A DMakefile436 SRCS+= Plugins/Process/Utility/DynamicRegisterInfo.cpp