This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from e9f4d43dd [DWARF] Guess the path style new d0a1432d3 Initial support for native debugging of x86/x64 Windows processes
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: .../tools/lldb-server/register-reading/main.cpp | 10 +- source/Plugins/Process/Utility/CMakeLists.txt | 2 + .../Utility/RegisterContextWindows_i386.cpp | 89 ++++ ...penBSD_i386.h => RegisterContextWindows_i386.h} | 12 +- .../Utility/RegisterContextWindows_x86_64.cpp | 150 ++++++ ...SD_x86_64.h => RegisterContextWindows_x86_64.h} | 14 +- .../Plugins/Process/Windows/Common/CMakeLists.txt | 6 + .../Process/Windows/Common/DebuggerThread.cpp | 7 +- .../Windows/Common/NativeProcessWindows.cpp | 573 ++++++++++++++++++++ .../Process/Windows/Common/NativeProcessWindows.h | 182 +++++++ .../Common/NativeRegisterContextWindows.cpp | 28 + .../Windows/Common/NativeRegisterContextWindows.h | 36 ++ .../Common/NativeRegisterContextWindows_WoW64.cpp | 362 +++++++++++++ .../Common/NativeRegisterContextWindows_WoW64.h} | 55 +- .../Common/NativeRegisterContextWindows_i386.cpp | 376 +++++++++++++ .../Common/NativeRegisterContextWindows_i386.h} | 57 +- .../Common/NativeRegisterContextWindows_x86_64.cpp | 579 +++++++++++++++++++++ .../Common/NativeRegisterContextWindows_x86_64.h} | 61 +-- .../Process/Windows/Common/NativeThreadWindows.cpp | 149 ++++++ .../Process/Windows/Common/NativeThreadWindows.h | 70 +++ .../Windows/Common/RegisterContextWindows.cpp | 8 +- .../Python/module/unittest2/unittest2/case.py | 2 +- unittests/tools/lldb-server/tests/LLGSTest.cpp | 4 + unittests/tools/lldb-server/tests/TestBase.h | 3 + unittests/tools/lldb-server/tests/TestClient.cpp | 4 + 25 files changed, 2700 insertions(+), 139 deletions(-) create mode 100644 source/Plugins/Process/Utility/RegisterContextWindows_i386.cpp copy source/Plugins/Process/Utility/{RegisterContextOpenBSD_i386.h => RegisterCont [...] create mode 100644 source/Plugins/Process/Utility/RegisterContextWindows_x86_64.cpp copy source/Plugins/Process/Utility/{RegisterContextOpenBSD_x86_64.h => RegisterCo [...] create mode 100644 source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp create mode 100644 source/Plugins/Process/Windows/Common/NativeProcessWindows.h create mode 100644 source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.cpp create mode 100644 source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h create mode 100644 source/Plugins/Process/Windows/Common/NativeRegisterContextWind [...] copy source/Plugins/Process/{NetBSD/NativeRegisterContextNetBSD_x86_64.h => Window [...] create mode 100644 source/Plugins/Process/Windows/Common/NativeRegisterContextWind [...] copy source/Plugins/Process/{NetBSD/NativeRegisterContextNetBSD_x86_64.h => Window [...] create mode 100644 source/Plugins/Process/Windows/Common/NativeRegisterContextWind [...] copy source/Plugins/Process/{NetBSD/NativeRegisterContextNetBSD_x86_64.h => Window [...] create mode 100644 source/Plugins/Process/Windows/Common/NativeThreadWindows.cpp create mode 100644 source/Plugins/Process/Windows/Common/NativeThreadWindows.h