This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 841b2b2 PluginUnwindAssemblyX86: add missing linkage to MCDisasm new b9e38e4 [LLDB] OpenBSD support
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/lldb/Host/Config.h | 7 +- include/lldb/Host/Editline.h | 3 +- include/lldb/Host/Host.h | 2 +- include/lldb/Host/HostInfo.h | 3 + include/lldb/Host/{freebsd => openbsd}/Config.h | 0 .../HostInfoNetBSD.h => openbsd/HostInfoOpenBSD.h} | 8 +- source/API/SystemInitializerFull.cpp | 3 + source/CMakeLists.txt | 5 + source/Host/CMakeLists.txt | 6 + source/Host/common/Host.cpp | 5 +- source/Host/{freebsd => openbsd}/Host.cpp | 77 +++---- .../HostInfoOpenBSD.cpp} | 24 +-- source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | 11 +- source/Plugins/Platform/CMakeLists.txt | 2 + .../Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp | 2 +- .../Platform/{Windows => OpenBSD}/CMakeLists.txt | 4 +- .../Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp | 223 +++++++++++++++++++++ .../PlatformLinux.h => OpenBSD/PlatformOpenBSD.h} | 26 +-- source/Plugins/Process/Utility/CMakeLists.txt | 2 + ...SD_i386.cpp => RegisterContextOpenBSD_i386.cpp} | 39 ++-- ...reeBSD_i386.h => RegisterContextOpenBSD_i386.h} | 10 +- ...86_64.cpp => RegisterContextOpenBSD_x86_64.cpp} | 82 +++----- ...SD_x86_64.h => RegisterContextOpenBSD_x86_64.h} | 10 +- source/Plugins/Process/elf-core/ProcessElfCore.cpp | 34 ++++ source/Plugins/Process/elf-core/ThreadElfCore.cpp | 22 ++ 25 files changed, 422 insertions(+), 188 deletions(-) copy include/lldb/Host/{freebsd => openbsd}/Config.h (100%) copy include/lldb/Host/{netbsd/HostInfoNetBSD.h => openbsd/HostInfoOpenBSD.h} (75%) copy source/Host/{freebsd => openbsd}/Host.cpp (71%) copy source/Host/{freebsd/HostInfoFreeBSD.cpp => openbsd/HostInfoOpenBSD.cpp} (61%) copy source/Plugins/Platform/{Windows => OpenBSD}/CMakeLists.txt (52%) create mode 100644 source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp copy source/Plugins/Platform/{Linux/PlatformLinux.h => OpenBSD/PlatformOpenBSD.h} (70%) copy source/Plugins/Process/Utility/{RegisterContextFreeBSD_i386.cpp => RegisterCo [...] copy source/Plugins/Process/Utility/{RegisterContextFreeBSD_i386.h => RegisterCont [...] copy source/Plugins/Process/Utility/{RegisterContextFreeBSD_x86_64.cpp => Register [...] copy source/Plugins/Process/Utility/{RegisterContextFreeBSD_x86_64.h => RegisterCo [...]