This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 9dfc53a2a Since ABI's now hold a process WP, they should be handed out [...] new 4a245e00e Add GDB remote packet reproducer.
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/API/SBDebugger.h | 6 +- include/lldb/Core/Debugger.h | 5 + include/lldb/Host/HostInfoBase.h | 7 + include/lldb/Utility/Reproducer.h | 175 +++++++++++++++++ .../gdb-remote}/Makefile | 0 .../gdb-remote/TestGdbRemoteReproducer.py | 49 +++++ .../{format => reproducer/gdb-remote}/main.c | 8 +- scripts/interface/SBDebugger.i | 54 +++--- source/API/SBDebugger.cpp | 11 ++ source/Commands/CMakeLists.txt | 1 + source/Commands/CommandObjectReproducer.cpp | 206 +++++++++++++++++++++ ...mandObjectFrame.h => CommandObjectReproducer.h} | 16 +- source/Core/Debugger.cpp | 12 ++ source/Host/common/HostInfoBase.cpp | 33 ++++ source/Interpreter/CommandInterpreter.cpp | 5 +- source/Plugins/Process/gdb-remote/CMakeLists.txt | 2 + .../Process/gdb-remote/GDBRemoteCommunication.cpp | 143 ++++++-------- .../Process/gdb-remote/GDBRemoteCommunication.h | 85 +-------- .../gdb-remote/GDBRemoteCommunicationHistory.cpp | 143 ++++++++++++++ .../gdb-remote/GDBRemoteCommunicationHistory.h | 156 ++++++++++++++++ .../GDBRemoteCommunicationReplayServer.cpp | 204 ++++++++++++++++++++ .../GDBRemoteCommunicationReplayServer.h | 83 +++++++++ .../Process/gdb-remote/ProcessGDBRemote.cpp | 134 +++++++++++--- .../Plugins/Process/gdb-remote/ProcessGDBRemote.h | 8 + source/Utility/CMakeLists.txt | 1 + source/Utility/Reproducer.cpp | 197 ++++++++++++++++++++ tools/driver/Driver.cpp | 37 +++- .../Process/gdb-remote/GDBRemoteClientBaseTest.cpp | 3 +- .../GDBRemoteCommunicationClientTest.cpp | 3 +- .../gdb-remote/GDBRemoteCommunicationTest.cpp | 3 +- .../Process/gdb-remote/GDBRemoteTestUtils.cpp | 34 ---- unittests/Process/gdb-remote/GDBRemoteTestUtils.h | 4 - 32 files changed, 1558 insertions(+), 270 deletions(-) create mode 100644 include/lldb/Utility/Reproducer.h copy packages/Python/lldbsuite/test/functionalities/{breakpoint/breakpoint_ignore_ [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/reproducer/gdb-r [...] copy packages/Python/lldbsuite/test/functionalities/{format => reproducer/gdb-remo [...] create mode 100644 source/Commands/CommandObjectReproducer.cpp copy source/Commands/{CommandObjectFrame.h => CommandObjectReproducer.h} (60%) create mode 100644 source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp create mode 100644 source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h create mode 100644 source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayS [...] create mode 100644 source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h create mode 100644 source/Utility/Reproducer.cpp