This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 33caf93 Re-add "demonstrate new Args API" new 59ae787 Refactor LLDB's Windows process plugin (NFC)
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: cmake/LLDBDependencies.cmake | 1 - source/API/SystemInitializerFull.cpp | 4 +- source/Plugins/Process/CMakeLists.txt | 1 - .../Plugins/Process/Windows/Common/CMakeLists.txt | 4 +- .../Windows/{Live => Common}/DebuggerThread.cpp | 2 +- .../Windows/{Live => Common}/DebuggerThread.h | 0 .../Process/Windows/{Live => Common}/ForwardDecl.h | 0 .../Windows/{Live => Common}/IDebugDelegate.h | 0 .../{Live => Common}/LocalDebugDelegate.cpp | 24 +- .../Windows/{Live => Common}/LocalDebugDelegate.h | 18 +- .../Process/Windows/Common/ProcessWindows.cpp | 1000 ++++++++++++++++++- .../Process/Windows/Common/ProcessWindows.h | 91 +- .../Process/Windows/Common/TargetThreadWindows.cpp | 44 + .../Process/Windows/Common/TargetThreadWindows.h | 7 + .../Common/x86/RegisterContextWindows_x86.cpp | 75 ++ .../Common/x86/RegisterContextWindows_x86.h | 3 + source/Plugins/Process/Windows/Live/CMakeLists.txt | 24 - .../Process/Windows/Live/ProcessWindowsLive.cpp | 1045 -------------------- .../Process/Windows/Live/ProcessWindowsLive.h | 129 --- .../Windows/Live/TargetThreadWindowsLive.cpp | 124 --- .../Process/Windows/Live/TargetThreadWindowsLive.h | 50 - .../Live/x64/RegisterContextWindowsLive_x64.cpp | 166 ---- .../Live/x64/RegisterContextWindowsLive_x64.h | 40 - .../Live/x86/RegisterContextWindowsLive_x86.cpp | 108 -- .../Live/x86/RegisterContextWindowsLive_x86.h | 34 - 25 files changed, 1230 insertions(+), 1764 deletions(-) rename source/Plugins/Process/Windows/{Live => Common}/DebuggerThread.cpp (99%) rename source/Plugins/Process/Windows/{Live => Common}/DebuggerThread.h (100%) rename source/Plugins/Process/Windows/{Live => Common}/ForwardDecl.h (100%) rename source/Plugins/Process/Windows/{Live => Common}/IDebugDelegate.h (100%) rename source/Plugins/Process/Windows/{Live => Common}/LocalDebugDelegate.cpp (73%) rename source/Plugins/Process/Windows/{Live => Common}/LocalDebugDelegate.h (85%) delete mode 100644 source/Plugins/Process/Windows/Live/CMakeLists.txt delete mode 100644 source/Plugins/Process/Windows/Live/ProcessWindowsLive.cpp delete mode 100644 source/Plugins/Process/Windows/Live/ProcessWindowsLive.h delete mode 100644 source/Plugins/Process/Windows/Live/TargetThreadWindowsLive.cpp delete mode 100644 source/Plugins/Process/Windows/Live/TargetThreadWindowsLive.h delete mode 100644 source/Plugins/Process/Windows/Live/x64/RegisterContextWindowsL [...] delete mode 100644 source/Plugins/Process/Windows/Live/x64/RegisterContextWindowsL [...] delete mode 100644 source/Plugins/Process/Windows/Live/x86/RegisterContextWindowsL [...] delete mode 100644 source/Plugins/Process/Windows/Live/x86/RegisterContextWindowsL [...]