Home
last modified time | relevance | path

Searched refs:m_register_info_up (Results 1 – 17 of 17) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
HDRegisterContextPOSIX_mips64.cpp47 m_register_info_up.reset(register_info); in RegisterContextPOSIX_mips64()
80 return m_register_info_up->GetRegisterCount(); in GetRegisterCount()
84 return m_register_info_up->GetGPRSize(); in GetGPRSize()
91 return m_register_info_up->GetRegisterInfo(); in GetRegisterInfo()
103 ArchSpec target_arch = m_register_info_up->GetTargetArchitecture(); in GetRegisterSetCount()
109 m_register_info_up.get()); in GetRegisterSetCount()
113 m_register_info_up.get()); in GetRegisterSetCount()
118 m_register_info_up.get()); in GetRegisterSetCount()
126 ArchSpec target_arch = m_register_info_up->GetTargetArchitecture(); in GetRegisterSet()
132 m_register_info_up.get()); in GetRegisterSet()
[all …]
HDRegisterContextPOSIX_arm.cpp89 m_register_info_up.reset(register_info); in RegisterContextPOSIX_arm()
134 return m_register_info_up->GetGPRSize(); in GetGPRSize()
141 return m_register_info_up->GetRegisterInfo(); in GetRegisterInfo()
165 switch (m_register_info_up->m_target_arch.GetMachine()) { in GetRegisterSet()
HDRegisterContextPOSIX_arm64.cpp108 m_register_info_up.reset(register_info); in RegisterContextPOSIX_arm64()
154 return m_register_info_up->GetGPRSize(); in GetGPRSize()
162 return m_register_info_up->GetRegisterInfo(); in GetRegisterInfo()
186 switch (m_register_info_up->m_target_arch.GetMachine()) { in GetRegisterSet()
HDRegisterContextPOSIX_s390x.cpp84 m_register_info_up.reset(register_info); in RegisterContextPOSIX_s390x()
108 return m_register_info_up->GetRegisterInfo(); in GetRegisterInfo()
154 switch (m_register_info_up->m_target_arch.GetMachine()) { in GetRegisterSet()
HDRegisterContextPOSIX_powerpc.cpp96 m_register_info_up.reset(register_info); in RegisterContextPOSIX_powerpc()
121 return m_register_info_up->GetGPRSize(); in GetGPRSize()
128 return m_register_info_up->GetRegisterInfo(); in GetRegisterInfo()
HDRegisterContextPOSIX_ppc64le.cpp118 m_register_info_up.reset(register_info); in RegisterContextPOSIX_ppc64le()
139 return m_register_info_up->GetGPRSize(); in GetGPRSize()
146 return m_register_info_up->GetRegisterInfo(); in GetRegisterInfo()
HDRegisterContextPOSIX_x86.cpp321 m_register_info_up.reset(register_info); in RegisterContextPOSIX_x86()
407 return m_register_info_up->GetGPRSize(); in GetGPRSize()
418 return m_register_info_up->GetRegisterInfo(); in GetRegisterInfo()
441 switch (m_register_info_up->m_target_arch.GetMachine()) { in GetRegisterSet()
HDRegisterContextPOSIX_ppc64le.h58 std::unique_ptr<lldb_private::RegisterInfoInterface> m_register_info_up; variable
HDRegisterContextPOSIX_s390x.h61 std::unique_ptr<lldb_private::RegisterInfoInterface> m_register_info_up; variable
HDRegisterContextPOSIX_mips64.h64 m_register_info_up; // Register Info Interface (FreeBSD or Linux) variable
HDRegisterContextPOSIX_arm64.h86 m_register_info_up; // Register Info Interface (FreeBSD or Linux) variable
HDRegisterContextPOSIX_arm.h86 m_register_info_up; // Register Info Interface (FreeBSD or Linux) variable
HDRegisterContextPOSIX_powerpc.h178 m_register_info_up; // Register Info Interface (FreeBSD or Linux) variable
HDRegisterContextPOSIX_x86.h149 m_register_info_up; // Register Info Interface (FreeBSD or Linux) variable
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
HDOperatingSystemPython.cpp79 : OperatingSystem(process), m_thread_list_valobj_sp(), m_register_info_up(), in OperatingSystemPython()
119 if (m_register_info_up == nullptr) { in GetDynamicRegisterInfo()
134 m_register_info_up.reset(new DynamicRegisterInfo( in GetDynamicRegisterInfo()
136 assert(m_register_info_up->GetNumRegisters() > 0); in GetDynamicRegisterInfo()
137 assert(m_register_info_up->GetNumRegisterSets() > 0); in GetDynamicRegisterInfo()
139 return m_register_info_up.get(); in GetDynamicRegisterInfo()
HDOperatingSystemPython.h80 std::unique_ptr<DynamicRegisterInfo> m_register_info_up; variable
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
HDRegisterContextPOSIXCore_mips64.cpp55 lldb_private::ArchSpec arch = m_register_info_up->GetTargetArchitecture(); in ReadRegister()