This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 4c6993d Attempt to fix windows unit tests new b3c30a5 Hardware breakpoints for Linux on Arm/AArch64 targets
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/common/NativeBreakpointList.h | 8 + include/lldb/Host/common/NativeProcessProtocol.h | 15 +- include/lldb/Host/common/NativeRegisterContext.h | 5 + include/lldb/Host/common/NativeThreadProtocol.h | 7 + .../Makefile} | 3 +- .../TestHWBreakMultiThread.py | 114 ++++++++++++ .../main.cpp | 51 ++++++ .../test/tools/lldb-server/TestLldbGdbServer.py | 60 ++++++- .../test/tools/lldb-server/gdbremote_testcase.py | 15 +- source/Host/common/NativeProcessProtocol.cpp | 108 ++++++++++-- source/Host/common/NativeRegisterContext.cpp | 10 ++ .../Plugins/Process/Linux/NativeProcessLinux.cpp | 22 ++- source/Plugins/Process/Linux/NativeProcessLinux.h | 2 + .../Linux/NativeRegisterContextLinux_arm.cpp | 191 ++++++++++++++------- .../Process/Linux/NativeRegisterContextLinux_arm.h | 7 + .../Linux/NativeRegisterContextLinux_arm64.cpp | 152 +++++++++++----- .../Linux/NativeRegisterContextLinux_arm64.h | 7 + source/Plugins/Process/Linux/NativeThreadLinux.cpp | 44 +++++ source/Plugins/Process/Linux/NativeThreadLinux.h | 5 + .../GDBRemoteCommunicationServerLLGS.cpp | 14 +- 20 files changed, 699 insertions(+), 141 deletions(-) copy packages/Python/lldbsuite/test/functionalities/{postmortem/elf-core/gcore/mai [...] mode change 100755 => 100644 create mode 100644 packages/Python/lldbsuite/test/functionalities/breakpoint/hardw [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/breakpoint/hardw [...]