This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from bdcdf8e Update FileSpec's interface to use StringRefs. new e767031 Refactor the x86 UnwindAssembly class into a separate class c [...]
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: lldb.xcodeproj/project.pbxproj | 36 + source/Plugins/UnwindAssembly/x86/CMakeLists.txt | 1 + .../UnwindAssembly/x86/UnwindAssembly-x86.cpp | 1263 ++------------------ .../UnwindAssembly/x86/UnwindAssembly-x86.h | 7 +- ...bly-x86.cpp => x86AssemblyInspectionEngine.cpp} | 933 +++++---------- .../x86/x86AssemblyInspectionEngine.h | 178 +++ unittests/CMakeLists.txt | 1 + unittests/UnwindAssembly/CMakeLists.txt | 1 + unittests/UnwindAssembly/x86/CMakeLists.txt | 3 + .../x86/Testx86AssemblyInspectionEngine.cpp | 281 +++++ 10 files changed, 897 insertions(+), 1807 deletions(-) copy source/Plugins/UnwindAssembly/x86/{UnwindAssembly-x86.cpp => x86AssemblyInspe [...] create mode 100644 source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.h create mode 100644 unittests/UnwindAssembly/CMakeLists.txt create mode 100644 unittests/UnwindAssembly/x86/CMakeLists.txt create mode 100644 unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp