This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 6413d1409 Allow use of self.filecheck in LLDB tests (c.f self.expect) new 33356d6e2 [DataFormatters] Add formatter for C++17 std::variant new cae2d34a1 [NFC] Turn "load dependent files" boolean into an enum new a9030db54 [target] Change target create's behavior wrt loading dependen [...] new d930bed03 Refactor FindVariable() core functionality into StackFrame ou [...] new a0cb776b0 Replace boolean parameter with enum value according r342633
The 5 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/StackFrame.h | 15 ++ include/lldb/Target/Target.h | 19 +- include/lldb/Target/TargetList.h | 11 +- lldb.xcodeproj/project.pbxproj | 8 + .../libcxx/{iterator => variant}/Makefile | 2 +- .../variant/TestDataFormatterLibcxxVariant.py | 81 +++++++ .../data-formatter-stl/libcxx/variant/main.cpp | 60 +++++ .../functionalities/target_create_deps/Makefile | 16 ++ .../target_create_deps/TestTargetCreateDeps.py | 96 ++++++++ .../b.cpp => target_create_deps/a.cpp} | 10 +- .../target_create_deps}/a.mk | 6 +- .../main.cpp | 7 +- source/API/SBDebugger.cpp | 13 +- source/API/SBFrame.cpp | 22 +- source/Commands/CommandObjectProcess.cpp | 2 +- source/Commands/CommandObjectTarget.cpp | 86 ++++++- source/Core/DynamicLoader.cpp | 3 +- .../Darwin-Kernel/DynamicLoaderDarwinKernel.cpp | 2 +- .../Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp | 3 +- .../MacOSX-DYLD/DynamicLoaderDarwin.cpp | 3 +- .../MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp | 3 +- .../POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp | 2 +- source/Plugins/Language/CPlusPlus/CMakeLists.txt | 1 + .../Language/CPlusPlus/CPlusPlusLanguage.cpp | 10 + source/Plugins/Language/CPlusPlus/LibCxx.h | 4 + .../Plugins/Language/CPlusPlus/LibCxxVariant.cpp | 256 +++++++++++++++++++++ .../CPlusPlus/{LibCxxAtomic.h => LibCxxVariant.h} | 18 +- .../Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp | 6 +- source/Plugins/Platform/Linux/PlatformLinux.cpp | 4 +- source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp | 4 +- source/Plugins/Platform/POSIX/PlatformPOSIX.cpp | 4 +- .../Plugins/Platform/Windows/PlatformWindows.cpp | 4 +- .../gdb-server/PlatformRemoteGDBServer.cpp | 8 +- .../Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp | 2 +- .../Process/Windows/Common/ProcessWindows.cpp | 2 +- source/Plugins/Process/elf-core/ProcessElfCore.cpp | 2 +- .../Process/gdb-remote/ProcessGDBRemote.cpp | 2 +- source/Target/Platform.cpp | 4 +- source/Target/Process.cpp | 3 +- source/Target/StackFrame.cpp | 35 +++ source/Target/Target.cpp | 20 +- source/Target/TargetList.cpp | 18 +- tools/lldb-test/lldb-test.cpp | 7 +- 43 files changed, 764 insertions(+), 120 deletions(-) copy packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter- [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/data-formatter/d [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/data-formatter/d [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/target_create_de [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/target_create_de [...] copy packages/Python/lldbsuite/test/functionalities/{load_unload/b.cpp => target_c [...] copy packages/Python/lldbsuite/test/{lang/cpp/namespace_definitions => functionali [...] copy packages/Python/lldbsuite/test/functionalities/{load_using_paths => target_cr [...] create mode 100644 source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp copy source/Plugins/Language/CPlusPlus/{LibCxxAtomic.h => LibCxxVariant.h} (53%)