This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 1d80326c5 [IRMemoryMap] Shrink Allocation and make it move-only (NFC) new 401e0c6c1 Use rich mangling information in Symtab::InitNameIndexes() new a063373af Add ConstString test FromMidOfBufferStringRef
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/Core/Mangled.h | 46 +++++-- include/lldb/Core/RichManglingContext.h | 110 +++++++++++++++ include/lldb/Symbol/Symtab.h | 9 ++ include/lldb/lldb-forward.h | 11 ++ lldb.xcodeproj/project.pbxproj | 20 ++- source/Core/CMakeLists.txt | 1 + source/Core/Mangled.cpp | 175 ++++++++++++++++++------ source/Core/RichManglingContext.cpp | 178 ++++++++++++++++++++++++ source/Symbol/Symtab.cpp | 212 +++++++++++++++++------------ unittests/Core/CMakeLists.txt | 1 + unittests/Core/RichManglingContextTest.cpp | 114 ++++++++++++++++ unittests/Utility/ConstStringTest.cpp | 20 +++ 12 files changed, 750 insertions(+), 147 deletions(-) create mode 100644 include/lldb/Core/RichManglingContext.h create mode 100644 source/Core/RichManglingContext.cpp create mode 100644 unittests/Core/RichManglingContextTest.cpp