This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 7e059ae2e Add back #ifdef __APPLE__ to RegisterContextDarwin_xxx::NumSu [...] new 3e371500b [DWARF] Extract indexing code into a separate class hierarchy
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: .../Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp | 306 +++++++++ source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.h | 74 +++ source/Plugins/SymbolFile/DWARF/CMakeLists.txt | 3 + .../DWARF/DWARFAbbreviationDeclaration.cpp | 1 + .../Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp | 1 + source/Plugins/SymbolFile/DWARF/DWARFIndex.cpp | 31 + source/Plugins/SymbolFile/DWARF/DWARFIndex.h | 71 ++ source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp | 1 + .../Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp | 278 ++++++++ source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.h | 71 ++ .../Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp | 730 ++------------------- source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h | 46 +- 12 files changed, 911 insertions(+), 702 deletions(-) create mode 100644 source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp create mode 100644 source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.h create mode 100644 source/Plugins/SymbolFile/DWARF/DWARFIndex.cpp create mode 100644 source/Plugins/SymbolFile/DWARF/DWARFIndex.h create mode 100644 source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp create mode 100644 source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.h