[Lldb-commits] [lldb] a2c7631 - Attempt to fix e3dea5cf0e326366ab95a49d167fde8b0816e292

2021-11-22 Thread Walter Erquinigo via lldb-commits
Author: Walter Erquinigo Date: 2021-11-22T16:33:40-08:00 New Revision: a2c76312ed0acd9cb8a1ac03c94c1464a2dbb208 URL: https://github.com/llvm/llvm-project/commit/a2c76312ed0acd9cb8a1ac03c94c1464a2dbb208 DIFF: https://github.com/llvm/llvm-project/commit/a2c76312ed0acd9cb8a1ac03c94c1464a2dbb208.di

[Lldb-commits] [PATCH] D114403: [formatters] Add a formatter for libstdc++ optional

2021-11-22 Thread Phabricator via lldb-commits
This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rGe3dea5cf0e32: [formatters] Add a formatter for libstdc++ optional (authored by Walter Erquinigo ). Repository: rG LLVM Github Mono

[Lldb-commits] [lldb] e3dea5c - [formatters] Add a formatter for libstdc++ optional

2021-11-22 Thread Walter Erquinigo via lldb-commits
Author: Walter Erquinigo Date: 2021-11-22T15:36:46-08:00 New Revision: e3dea5cf0e326366ab95a49d167fde8b0816e292 URL: https://github.com/llvm/llvm-project/commit/e3dea5cf0e326366ab95a49d167fde8b0816e292 DIFF: https://github.com/llvm/llvm-project/commit/e3dea5cf0e326366ab95a49d167fde8b0816e292.di

[Lldb-commits] [PATCH] D114403: [formatters] Add a formatter for libstdc++ optional

2021-11-22 Thread walter erquinigo via Phabricator via lldb-commits
wallace updated this revision to Diff 389058. wallace added a comment. nit Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D114403/new/ https://reviews.llvm.org/D114403 Files: lldb/bindings/interface/SBValue.i lldb/examples/synthetic/gnu_libstdcp

[Lldb-commits] [PATCH] D114403: [formatters] Add a formatter for libstdc++ optional

2021-11-22 Thread walter erquinigo via Phabricator via lldb-commits
wallace created this revision. wallace requested review of this revision. Herald added a project: LLDB. Herald added a subscriber: lldb-commits. Besides adding the formatter and the summary, this makes the libcxx tests also work for this case. This is the polished version of https://reviews.llvm.

[Lldb-commits] [PATCH] D111409: proposed support for Java interface to Scripting Bridge

2021-11-22 Thread David Millar via Phabricator via lldb-commits
d-millar updated this revision to Diff 389021. d-millar added a comment. minor fixes re unnecessary requirement and ConstString->StringRef Repository: rLLDB LLDB CHANGES SINCE LAST ACTION https://reviews.llvm.org/D111409/new/ https://reviews.llvm.org/D111409 Files: lldb/CMakeLists.txt

[Lldb-commits] [lldb] 91f78eb - Revert "[lldb] Load the fblldb module automatically"

2021-11-22 Thread Walter Erquinigo via lldb-commits
Author: Walter Erquinigo Date: 2021-11-22T13:13:43-08:00 New Revision: 91f78eb5cf93e80a0e9679b98bca81291e97e1e1 URL: https://github.com/llvm/llvm-project/commit/91f78eb5cf93e80a0e9679b98bca81291e97e1e1 DIFF: https://github.com/llvm/llvm-project/commit/91f78eb5cf93e80a0e9679b98bca81291e97e1e1.di

[Lldb-commits] [lldb] fcd288b - [formatters] Add a libstdcpp formatter for for unordered_map, unordered_set, unordered_multimap, unordered_multiset

2021-11-22 Thread Walter Erquinigo via lldb-commits
Author: Danil Stefaniuc Date: 2021-11-22T13:08:36-08:00 New Revision: fcd288b52aa708e061ad633c8efa1183a7e6b926 URL: https://github.com/llvm/llvm-project/commit/fcd288b52aa708e061ad633c8efa1183a7e6b926 DIFF: https://github.com/llvm/llvm-project/commit/fcd288b52aa708e061ad633c8efa1183a7e6b926.dif

[Lldb-commits] [PATCH] D113760: [formatters] Add a libstdcpp formatter for for unordered_map, unordered_set, unordered_multimap, unordered_multiset

2021-11-22 Thread Phabricator via lldb-commits
This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rGfcd288b52aa7: [formatters] Add a libstdcpp formatter for for unordered_map, unordered_set… (authored by danilashtefan, committed by Walter Erquinig

[Lldb-commits] [lldb] 2e6a0a8 - [lldb] Load the fblldb module automatically

2021-11-22 Thread Walter Erquinigo via lldb-commits
Author: Walter Erquinigo Date: 2021-11-22T13:08:36-08:00 New Revision: 2e6a0a8b81d7be948491ce39d241695dc1385429 URL: https://github.com/llvm/llvm-project/commit/2e6a0a8b81d7be948491ce39d241695dc1385429 DIFF: https://github.com/llvm/llvm-project/commit/2e6a0a8b81d7be948491ce39d241695dc1385429.di

[Lldb-commits] [PATCH] D112147: [lldb] Fix lookup for global constants in namespaces

2021-11-22 Thread Greg Clayton via Phabricator via lldb-commits
clayborg accepted this revision. clayborg added a comment. This revision is now accepted and ready to land. LGTM! Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D112147/new/ https://reviews.llvm.org/D112147 __

[Lldb-commits] [PATCH] D112147: [lldb] Fix lookup for global constants in namespaces

2021-11-22 Thread Tonko Sabolčec via Phabricator via lldb-commits
tonkosi added inline comments. Comment at: lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp:3281-3282 if ((parent_tag == DW_TAG_compile_unit || - parent_tag == DW_TAG_partial_unit) && + parent_tag == DW_TAG_partial_unit || + parent_tag == DW_T

[Lldb-commits] [PATCH] D112147: [lldb] Fix lookup for global constants in namespaces

2021-11-22 Thread Tonko Sabolčec via Phabricator via lldb-commits
tonkosi updated this revision to Diff 388958. tonkosi added a comment. - Use scope context parent DIE instead of the direct parent - Add tests for constants in anonymous namespace Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D112147/new/ https://re

[Lldb-commits] [PATCH] D114369: [lldb] Remove 'extern "C"' from the lldb-swig-python interface

2021-11-22 Thread Pavel Labath via Phabricator via lldb-commits
labath updated this revision to Diff 388935. labath added a comment. Revert the PyInit_lldb changes. They fail on windows due to declspec(dllexport) mistmatches, and this function is kinda special anyway. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org

[Lldb-commits] [PATCH] D114369: [lldb] Remove 'extern "C"' from the lldb-swig-python interface

2021-11-22 Thread Pavel Labath via Phabricator via lldb-commits
labath created this revision. labath added reviewers: JDevlieghere, jingham. labath requested review of this revision. Herald added a project: LLDB. The LLDBSWIGPython functions had (at least) two problems: - There wasn't a single source of truth (a header file) for the prototypes of these funct

[Lldb-commits] [lldb] 7f09ab0 - [lldb] Fix [some] leaks in python bindings

2021-11-22 Thread Pavel Labath via lldb-commits
Author: Pavel Labath Date: 2021-11-22T15:14:52+01:00 New Revision: 7f09ab08de5ae8f8bd77f5c02c70b991277eb1ae URL: https://github.com/llvm/llvm-project/commit/7f09ab08de5ae8f8bd77f5c02c70b991277eb1ae DIFF: https://github.com/llvm/llvm-project/commit/7f09ab08de5ae8f8bd77f5c02c70b991277eb1ae.diff

[Lldb-commits] [PATCH] D114259: [lldb] Fix [some] leaks in python bindings

2021-11-22 Thread Pavel Labath via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG7f09ab08de5a: [lldb] Fix [some] leaks in python bindings (authored by labath). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D114259/new/ https://reviews.llv

[Lldb-commits] [lldb] 7c8ae65 - [lldb/test] Make it possible to run the mock gdb server on a single thread

2021-11-22 Thread Pavel Labath via lldb-commits
Author: Pavel Labath Date: 2021-11-22T15:14:50+01:00 New Revision: 7c8ae65f2c3d5c1a6aba2f7ee7588f9f76f94f84 URL: https://github.com/llvm/llvm-project/commit/7c8ae65f2c3d5c1a6aba2f7ee7588f9f76f94f84 DIFF: https://github.com/llvm/llvm-project/commit/7c8ae65f2c3d5c1a6aba2f7ee7588f9f76f94f84.diff

[Lldb-commits] [PATCH] D114157: [lldb/test] Make it possible to run the mock gdb server on a single thread

2021-11-22 Thread Pavel Labath via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG7c8ae65f2c3d: [lldb/test] Make it possible to run the mock gdb server on a single thread (authored by labath). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D