[Lldb-commits] [clang] [clang-tools-extra] [compiler-rt] [flang] [libcxx] [libcxxabi] [lld] [lldb] [llvm] [Inclusive Language] migrate "sanity" checks to "soundness" checks (PR #156995)

2025-09-06 Thread Corentin Jabot via lldb-commits
cor3ntin wrote: As @philnik777 said, regardless of outcome on the RFC, please split in multiple PR (one per subproject), once consensus is reached on the RFC. https://github.com/llvm/llvm-project/pull/156995 ___ lldb-commits mailing list lldb-commits@

[Lldb-commits] [lldb] [llvm] Add AArch64 support to the premerge tests (PR #155274)

2025-09-06 Thread Tom Stellard via lldb-commits
tstellar wrote: There is still one failing test, but the implementation is complete (including sccache setup). https://github.com/llvm/llvm-project/pull/155274 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/ma

[Lldb-commits] [lldb] [lldb-dap] Add new optional argument `time-to-live` when using `--connection` (PR #156803)

2025-09-06 Thread Roy Shi via lldb-commits
https://github.com/royitaqi edited https://github.com/llvm/llvm-project/pull/156803 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb-dap] Add new optional argument `time-to-live` when using `--connection` (PR #156803)

2025-09-06 Thread Roy Shi via lldb-commits
royitaqi wrote: @JDevlieghere: Thank you for your reply. I appreciate it a lot. I will: 1. Learn about the memory monitor in DAP. * Context: It's not failing - We are just starting to experiment with the server mode. This connection timeout feature is a precaution before we can do large sc

[Lldb-commits] [lldb] ensure that dap_symbol is always initialized (PR #156956)

2025-09-06 Thread Walter Erquinigo via lldb-commits
walter-erquinigo wrote: This change is not ideal. Instead, just define a default constructor for the struct. Otherwise every time someone creates a new Symbol object, they'll have to initialize it manually. https://github.com/llvm/llvm-project/pull/156956 __

[Lldb-commits] [lldb] [lldb] Add some vector operations to the IRInterpreter (PR #155000)

2025-09-06 Thread Michael Buch via lldb-commits
@@ -30,9 +30,14 @@ class ArchitecturePPC64 : public Architecture { void AdjustBreakpointAddress(const Symbol &func, Address &addr) const override; + lldb::ByteOrder GetVectorElementOrder() const override; + private: static std::unique_ptr

[Lldb-commits] [lldb] f88eadd - [lldb] Call FixUpPointer in WritePointerToMemory (try 2) (#153585)

2025-09-06 Thread via lldb-commits
Author: Felipe de Azevedo Piovezan Date: 2025-09-04T13:05:10-07:00 New Revision: f88eadda357b0429b390ec0bcf64c361ad1a8f28 URL: https://github.com/llvm/llvm-project/commit/f88eadda357b0429b390ec0bcf64c361ad1a8f28 DIFF: https://github.com/llvm/llvm-project/commit/f88eadda357b0429b390ec0bcf64c361a

[Lldb-commits] [clang] [clang-tools-extra] [compiler-rt] [flang] [libcxx] [libcxxabi] [lld] [lldb] [llvm] [Inclusive Language] migrate "sanity" checks to "soundness" checks (PR #156995)

2025-09-06 Thread Nikolas Klauser via lldb-commits
philnik777 wrote: Also, please split this up. It's super hard to review, and these massive cross-project patches tend to go nowhere. https://github.com/llvm/llvm-project/pull/156995 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lis

[Lldb-commits] [lldb] [lldb-dap] Add new optional argument `time-to-live` when using `--connection` (PR #156803)

2025-09-06 Thread Roy Shi via lldb-commits
https://github.com/royitaqi edited https://github.com/llvm/llvm-project/pull/156803 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Correct style of error messages (PR #156774)

2025-09-06 Thread Med Ismail Bennani via lldb-commits
medismailben wrote: Great! May be we should do this for: - `Status::Status(std::string err_str)` - `static Status FromErrorString(const char *str)` - `static Status FromErrorStringWithFormat(const char *format, ...)` - ` template static Status FromErrorStringWithFormatv(const char *format, Arg

[Lldb-commits] [lldb] [lldb-dap] Add new optional argument `time-to-live` when using `--connection` (PR #156803)

2025-09-06 Thread Walter Erquinigo via lldb-commits
@@ -283,6 +283,21 @@ serveConnection(const Socket::SocketProtocol &protocol, const std::string &name, g_loop.AddPendingCallback( [](MainLoopBase &loop) { loop.RequestTermination(); }); }); + static MainLoopBase::TimePoint ttl_time_point; + static std::mutex ttl

[Lldb-commits] [lldb] [lldb][Expression] Reject languages not supported by TypeSystems for expression evaluation (PR #156648)

2025-09-06 Thread Michael Buch via lldb-commits
Michael137 wrote: > The other scenario is accessing an extant C global variable (maybe even one > you don't have debug info for) called "class" or "namespace". But more > importantly, having this sort of secret out that is applied inconsistently > will just make lldb more confusing. It's fine

[Lldb-commits] [lldb] [lldb-dap] Add new optional argument `time-to-live` when using `--connection` (PR #156803)

2025-09-06 Thread Walter Erquinigo via lldb-commits
walter-erquinigo wrote: connection-timeout seems to be a better name. I'll wait for the current discussions to finish before reviewing again https://github.com/llvm/llvm-project/pull/156803 ___ lldb-commits mailing list lldb-commits@lists.llvm.org htt

[Lldb-commits] [lldb] [lldb] Add more mnemonics (PR #156987)

2025-09-06 Thread via lldb-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: Jonas Devlieghere (JDevlieghere) Changes Add a few more command option mnemonics. --- Full diff: https://github.com/llvm/llvm-project/pull/156987.diff 1 Files Affected: - (modified) lldb/source/Commands/Options.td (+64-60) ``d

[Lldb-commits] [lldb] [lldb] Add utility to create Mach-O corefile from YAML desc (PR #153911)

2025-09-06 Thread Jason Molenda via lldb-commits
jasonmolenda wrote: > [lldb-remote-linux-win](https://lab.llvm.org/buildbot/#/builders/197/builds/8706) > and > [lldb-x86_64-win](https://lab.llvm.org/buildbot/#/builders/211/builds/1871) > are still broken. @slydiman @skipIfWindows fixed the lldb-x86_64-win bot, but lldb-remote-linux-win is

[Lldb-commits] [lldb] [lldb][DataFormatter] Allow std::string formatters to match against custom allocators (PR #156050)

2025-09-06 Thread Michael Buch via lldb-commits
Michael137 wrote: /cherry-pick 4b362f152e58abd6aeed5d603a6dfc10115ed1ab https://github.com/llvm/llvm-project/pull/156050 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [LLDB] Fix deterministic-build.cpp post #156931 (PR #156983)

2025-09-06 Thread Aiden Grossman via lldb-commits
https://github.com/boomanaiden154 updated https://github.com/llvm/llvm-project/pull/156983 >From aa1a12795ee11d48cf0df8c58058a3a36992e6b2 Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Thu, 4 Sep 2025 16:41:15 -0700 Subject: [PATCH 1/2] [LLDB] Fix deterministic-build.cpp post #156931 This