[Lldb-commits] [lldb] [LLDB] Unify DWARF section name matching (PR #141344)

2025-05-24 Thread via lldb-commits
https://github.com/Nerixyz created https://github.com/llvm/llvm-project/pull/141344 Different object file formats support DWARF sections (COFF, ELF, MachO, PE/COFF, WASM). COFF and PE/COFF only matched a subset. This caused some GCC executables produced on MinGW to have issue later on when deb

[Lldb-commits] [lldb] [LLDB] Unify DWARF section name matching (PR #141344)

2025-05-24 Thread via lldb-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: nerix (Nerixyz) Changes Different object file formats support DWARF sections (COFF, ELF, MachO, PE/COFF, WASM). COFF and PE/COFF only matched a subset. This caused some GCC executables produced on MinGW to have issue later on when debuggin

[Lldb-commits] [lldb] 4788d5f - [lldb] Use llvm::stable_sort (NFC) (#141352)

2025-05-24 Thread via lldb-commits
Author: Kazu Hirata Date: 2025-05-24T09:37:29-07:00 New Revision: 4788d5fabc54ec5f6e95d3b00a9811f90c5f94ae URL: https://github.com/llvm/llvm-project/commit/4788d5fabc54ec5f6e95d3b00a9811f90c5f94ae DIFF: https://github.com/llvm/llvm-project/commit/4788d5fabc54ec5f6e95d3b00a9811f90c5f94ae.diff L

[Lldb-commits] [lldb] [lldb] Use llvm::stable_sort (NFC) (PR #141352)

2025-05-24 Thread Kazu Hirata via lldb-commits
https://github.com/kazutakahirata closed https://github.com/llvm/llvm-project/pull/141352 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [LLDB] Fix std::shared_ptr formatter crash on windows (PR #141348)

2025-05-24 Thread Emanuel Berggren via lldb-commits
MrBoboGet wrote: Ah, it does, didn't think about double checking if it had been solved outside of main. Then this pull request is completely redundant https://github.com/llvm/llvm-project/pull/141348 ___ lldb-commits mailing list lldb-commits@lists.ll

[Lldb-commits] [lldb] [LLDB] Fix std::shared_ptr formatter crash on windows (PR #141348)

2025-05-24 Thread Emanuel Berggren via lldb-commits
https://github.com/MrBoboGet created https://github.com/llvm/llvm-project/pull/141348 lldb-dap crashes when requesting variables if the scope includes a std::shared_ptr, as it assumes that m_ptr_obj is not null after Update. This is however only true if Update doesn't fail for any reason, and

[Lldb-commits] [lldb] [LLDB] Fix std::shared_ptr formatter crash on windows (PR #141348)

2025-05-24 Thread Michael Buch via lldb-commits
Michael137 wrote: Thanks for the patch I believe https://github.com/llvm/llvm-project/pull/140761 addresses this issue (and another). There's some discussion around testing too https://github.com/llvm/llvm-project/pull/141348 ___ lldb-commits mailing

[Lldb-commits] [lldb] [LLDB] Fix std::shared_ptr formatter crash on windows (PR #141348)

2025-05-24 Thread via lldb-commits
github-actions[bot] wrote: Thank you for submitting a Pull Request (PR) to the LLVM Project! This PR will be automatically labeled and the relevant teams will be notified. If you wish to, you can add reviewers by using the "Reviewers" section on this page. If this is not working for you, it

[Lldb-commits] [lldb] [LLDB] Fix std::shared_ptr formatter crash on windows (PR #141348)

2025-05-24 Thread via lldb-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: Emanuel Berggren (MrBoboGet) Changes lldb-dap crashes when requesting variables if the scope includes a std::shared_ptr, as it assumes that m_ptr_obj is not null after Update. This is however only true if Update doesn't fail for any reason

[Lldb-commits] [lldb] [lldb] Use llvm::stable_sort (NFC) (PR #141352)

2025-05-24 Thread Kazu Hirata via lldb-commits
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/141352 None >From e7fb3d02c3a27a77a234c3ca485a7c6ca3a7b6a7 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Fri, 23 May 2025 20:01:29 -0700 Subject: [PATCH] [lldb] Use llvm::stable_sort (NFC) --- lldb/include

[Lldb-commits] [lldb] [LLDB] Fix std::shared_ptr formatter crash on windows (PR #141348)

2025-05-24 Thread Emanuel Berggren via lldb-commits
https://github.com/MrBoboGet closed https://github.com/llvm/llvm-project/pull/141348 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Use llvm::stable_sort (NFC) (PR #141352)

2025-05-24 Thread Tim Gymnich via lldb-commits
https://github.com/tgymnich approved this pull request. https://github.com/llvm/llvm-project/pull/141352 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Use llvm::stable_sort (NFC) (PR #141352)

2025-05-24 Thread via lldb-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: Kazu Hirata (kazutakahirata) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/141352.diff 6 Files Affected: - (modified) lldb/include/lldb/Utility/RangeMap.h (+9-9) - (modified) lldb/source/Plugins/ObjectFile/PECOFF/Obj

[Lldb-commits] [lldb] [lldb] Use llvm::find_if (NFC) (PR #141385)

2025-05-24 Thread Kazu Hirata via lldb-commits
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/141385 None >From ac77c0122b5f698017ef2c937e6f8bdc9397930d Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Sat, 24 May 2025 16:51:58 -0700 Subject: [PATCH] [lldb] Use llvm::find_if (NFC) --- .../lldb/Breakpo

[Lldb-commits] [lldb] [lldb] Fix a typo in documentation (PR #141384)

2025-05-24 Thread Kazu Hirata via lldb-commits
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/141384 None >From 47d8abfbc263505f34a5cef8214127748b95fae5 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Sat, 24 May 2025 15:04:00 -0700 Subject: [PATCH] [lldb] Fix a typo in documentation --- lldb/docs/us

[Lldb-commits] [lldb] [lldb] Use llvm::find_if (NFC) (PR #141385)

2025-05-24 Thread via lldb-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: Kazu Hirata (kazutakahirata) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/141385.diff 8 Files Affected: - (modified) lldb/include/lldb/Breakpoint/StopPointSiteList.h (+4-6) - (modified) lldb/source/Breakpoint/Breakp

[Lldb-commits] [lldb] [lldb] Fix a typo in documentation (PR #141384)

2025-05-24 Thread via lldb-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: Kazu Hirata (kazutakahirata) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/141384.diff 1 Files Affected: - (modified) lldb/docs/use/python-reference.rst (+1-1) ``diff diff --git a/lldb/docs/use/python-refer