Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DDynamicRegisterInfo.h20 class DynamicRegisterInfo {
22 DynamicRegisterInfo() = default;
24 DynamicRegisterInfo(const lldb_private::StructuredData::Dictionary &dict,
27 virtual ~DynamicRegisterInfo() = default;
29 DynamicRegisterInfo(DynamicRegisterInfo &) = delete;
30 void operator=(DynamicRegisterInfo &) = delete;
32 DynamicRegisterInfo(DynamicRegisterInfo &&info);
33 DynamicRegisterInfo &operator=(DynamicRegisterInfo &&info);
83 void MoveFrom(DynamicRegisterInfo &&info);
H A DDynamicRegisterInfo.cpp24 DynamicRegisterInfo::DynamicRegisterInfo( in DynamicRegisterInfo() function in DynamicRegisterInfo
30 DynamicRegisterInfo::DynamicRegisterInfo(DynamicRegisterInfo &&info) { in DynamicRegisterInfo() function in DynamicRegisterInfo
34 DynamicRegisterInfo &
35 DynamicRegisterInfo::operator=(DynamicRegisterInfo &&info) { in operator =()
40 void DynamicRegisterInfo::MoveFrom(DynamicRegisterInfo &&info) { in MoveFrom()
410 void DynamicRegisterInfo::AddRegister(RegisterInfo &reg_info, in AddRegister()
448 void DynamicRegisterInfo::Finalize(const ArchSpec &arch) { in Finalize()
635 size_t DynamicRegisterInfo::GetRegisterDataByteSize() const { in GetRegisterDataByteSize()
640 DynamicRegisterInfo::GetRegisterInfoAtIndex(uint32_t i) const { in GetRegisterInfoAtIndex()
685 void DynamicRegisterInfo::Clear() { in Clear()
[all …]
H A DRegisterContextMemory.h19 class DynamicRegisterInfo; variable
25 DynamicRegisterInfo &reg_info,
66 DynamicRegisterInfo &m_reg_infos;
H A DRegisterContextMemory.cpp27 DynamicRegisterInfo &reg_infos, in RegisterContextMemory()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.h18 class DynamicRegisterInfo; variable
84 DynamicRegisterInfo *GetDynamicRegisterInfo();
87 std::unique_ptr<DynamicRegisterInfo> m_register_info_ap;
H A DOperatingSystemPython.cpp116 DynamicRegisterInfo *OperatingSystemPython::GetDynamicRegisterInfo() { in GetDynamicRegisterInfo()
132 m_register_info_ap.reset(new DynamicRegisterInfo( in GetDynamicRegisterInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteRegisterContext.h32 class GDBRemoteDynamicRegisterInfo : public DynamicRegisterInfo {
34 GDBRemoteDynamicRegisterInfo() : DynamicRegisterInfo() {} in GDBRemoteDynamicRegisterInfo()
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile381 SRCS+= Plugins/Process/Utility/DynamicRegisterInfo.cpp