This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 003d39feb Add byte counting mechanism to LLDB's Stream class. new 09a2bd256 Add support for ARM and ARM64 breakpad generated minidump files
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/Target/Target.h | 30 +- lldb.xcodeproj/project.pbxproj | 16 + .../xcshareddata/xcschemes/desktop.xcscheme | 2 +- .../postmortem/minidump-new/TestMiniDumpNew.py | 155 ++++ .../postmortem/minidump-new/arm-linux.dmp | Bin 0 -> 588 bytes .../postmortem/minidump-new/arm-macos.dmp | Bin 0 -> 588 bytes .../postmortem/minidump-new/arm64-macos.dmp | Bin 0 -> 1016 bytes source/Plugins/Process/minidump/MinidumpParser.cpp | 140 ++-- source/Plugins/Process/minidump/MinidumpParser.h | 1 + .../Plugins/Process/minidump/ProcessMinidump.cpp | 14 +- .../minidump/RegisterContextMinidump_ARM.cpp | 532 +++++++++++++ .../Process/minidump/RegisterContextMinidump_ARM.h | 95 +++ .../minidump/RegisterContextMinidump_ARM64.cpp | 836 +++++++++++++++++++++ .../minidump/RegisterContextMinidump_ARM64.h | 85 +++ source/Plugins/Process/minidump/ThreadMinidump.cpp | 23 +- source/Target/Target.cpp | 22 +- 16 files changed, 1860 insertions(+), 91 deletions(-) create mode 100644 packages/Python/lldbsuite/test/functionalities/postmortem/minid [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/postmortem/minid [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/postmortem/minid [...] create mode 100644 source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp create mode 100644 source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h create mode 100644 source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp create mode 100644 source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.h