This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 5f8a29224 [lldb][NFC] Relax completion tests for log command to make th [...] new 68c34339c [lldb] Decouple importing the std C++ module from the way the [...]
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/Symbol/CompileUnit.h | 8 + include/lldb/Symbol/SymbolFile.h | 3 + include/lldb/Target/Platform.h | 13 -- .../expression/import-std-module/basic/Makefile | 1 - .../import-std-module/basic/TestImportStdModule.py | 8 - .../import-std-module/conflicts/Makefile | 1 - .../conflicts/TestStdModuleWithConflicts.py | 4 - .../import-std-module/deque-basic/Makefile | 1 - .../deque-basic/TestBasicDeque.py | 4 - .../deque-dbg-info-content/Makefile | 1 - .../TestDbgInfoContentDeque.py | 4 - .../import-std-module/forward_list-basic/Makefile | 1 - .../forward_list-basic/TestBasicForwardList.py | 4 - .../forward_list-dbg-info-content/Makefile | 1 - .../TestDbgInfoContentForwardList.py | 4 - .../import-std-module/list-basic/Makefile | 1 - .../import-std-module/list-basic/TestBasicList.py | 4 - .../list-dbg-info-content/Makefile | 1 - .../TestDbgInfoContentList.py | 4 - .../import-std-module/no-std-module/Makefile | 1 - .../no-std-module/TestMissingStdModule.py | 4 - .../expression/import-std-module/queue/Makefile | 1 - .../import-std-module/queue/TestQueue.py | 4 - .../shared_ptr-dbg-info-content/Makefile | 1 - .../TestSharedPtrDbgInfoContent.py | 4 - .../import-std-module/shared_ptr/Makefile | 1 - .../import-std-module/shared_ptr/TestSharedPtr.py | 4 - .../expression/import-std-module/stack/Makefile | 1 - .../import-std-module/stack/TestStack.py | 4 - .../expression/import-std-module/sysroot/Makefile | 1 - .../sysroot/TestStdModuleSysroot.py | 4 - .../unique_ptr-dbg-info-content/Makefile | 1 - .../TestUniquePtrDbgInfoContent.py | 4 - .../import-std-module/unique_ptr/Makefile | 1 - .../import-std-module/unique_ptr/TestUniquePtr.py | 4 - .../import-std-module/vector-basic/Makefile | 1 - .../vector-basic/TestBasicVector.py | 4 - .../import-std-module/vector-bool/Makefile | 1 - .../vector-bool/TestBoolVector.py | 4 - .../vector-dbg-info-content/Makefile | 1 - .../TestDbgInfoContentVector.py | 4 - .../import-std-module/vector-of-vectors/Makefile | 1 - .../vector-of-vectors/TestVectorOfVectors.py | 4 - .../weak_ptr-dbg-info-content/Makefile | 1 - .../TestDbgInfoContentWeakPtr.py | 4 - .../expression/import-std-module/weak_ptr/Makefile | 1 - .../import-std-module/weak_ptr/TestWeakPtr.py | 4 - .../Plugins/ExpressionParser/Clang/CMakeLists.txt | 1 + .../Clang/ClangExpressionParser.cpp | 29 +--- .../ExpressionParser/Clang/ClangUserExpression.cpp | 81 ++++++---- .../ExpressionParser/Clang/ClangUserExpression.h | 1 - .../Clang/CppModuleConfiguration.cpp | 82 ++++++++++ .../Clang/CppModuleConfiguration.h | 84 +++++++++++ source/Plugins/Platform/Linux/PlatformLinux.cpp | 19 --- source/Plugins/Platform/Linux/PlatformLinux.h | 3 - .../Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp | 12 ++ source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h | 4 + .../SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp | 8 + .../SymbolFile/DWARF/SymbolFileDWARFDebugMap.h | 4 + source/Symbol/CompileUnit.cpp | 5 + unittests/Expression/CMakeLists.txt | 1 + .../Expression/CppModuleConfigurationTest.cpp | 168 +++++++++++++++++++++ 62 files changed, 437 insertions(+), 203 deletions(-) create mode 100644 source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.cpp create mode 100644 source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.h create mode 100644 unittests/Expression/CppModuleConfigurationTest.cpp