This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 42634a2a4 Improve coverage of the apple-tables test new 8a615ff8f Reland "[DWARF] Extract indexing code into a separate class h [...] new 327df732d Fix PathMappingList for relative and empty paths after recent [...]
The 2 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/PathMappingList.h | 2 +- lldb.xcodeproj/project.pbxproj | 4 + .../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 +- source/Target/PathMappingList.cpp | 98 +-- source/Target/Target.cpp | 6 +- source/Utility/FileSpec.cpp | 54 +- unittests/Target/CMakeLists.txt | 1 + unittests/Target/PathMappingListTest.cpp | 109 +++ unittests/Utility/FileSpecTest.cpp | 47 ++ 20 files changed, 1159 insertions(+), 775 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 create mode 100644 unittests/Target/PathMappingListTest.cpp