[Lldb-commits] [lldb] [lldb-dap] Add stdio redirection (PR #158609)

2025-09-15 Thread Walter Erquinigo via lldb-commits
https://github.com/walter-erquinigo edited https://github.com/llvm/llvm-project/pull/158609 ___ 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 stdio redirection (PR #158609)

2025-09-15 Thread Walter Erquinigo via lldb-commits
@@ -624,3 +625,23 @@ def test_no_lldbinit_flag(self): # Verify the initCommands were executed self.verify_commands("initCommands", output, initCommands) + +def test_stdio_redirection(self): +""" +Test stdio redirection. +"""

[Lldb-commits] [lldb] ec8819f - [lldb-mcp] Adding a tool to list debuggers again. (#158340)

2025-09-15 Thread via lldb-commits
Author: John Harrison Date: 2025-09-15T09:43:10-07:00 New Revision: ec8819f1858a67cff20ca47e0cbfa11e292c989f URL: https://github.com/llvm/llvm-project/commit/ec8819f1858a67cff20ca47e0cbfa11e292c989f DIFF: https://github.com/llvm/llvm-project/commit/ec8819f1858a67cff20ca47e0cbfa11e292c989f.diff

[Lldb-commits] [lldb] [lldb-mcp] Adding a tool to list debuggers again. (PR #158340)

2025-09-15 Thread John Harrison via lldb-commits
https://github.com/ashgti closed https://github.com/llvm/llvm-project/pull/158340 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [clang] [lldb] [Clang][PowerPC] Add __dmr2048 type and DMF crypto builtins (PR #157152)

2025-09-15 Thread Lei Huang via lldb-commits
https://github.com/lei137 edited https://github.com/llvm/llvm-project/pull/157152 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [clang] [lldb] [Clang][PowerPC] Add __dmr2048 type and DMF crypto builtins (PR #157152)

2025-09-15 Thread Lei Huang via lldb-commits
@@ -17,6 +17,8 @@ // are correctly defined. We also added checks on a couple of other targets to // ensure the types are target-dependent. +// CHECK: TypedefDecl {{.*}} implicit __dmr2048 '__dmr2048' +// CHECK: `-BuiltinType {{.*}} '__dmr2048' lei137 wrote:

[Lldb-commits] [clang] [lldb] [Clang][PowerPC] Add __dmr2048 type and DMF crypto builtins (PR #157152)

2025-09-15 Thread Lei Huang via lldb-commits
@@ -1123,6 +1123,13 @@ UNALIASED_CUSTOM_MMA_BUILTIN(mma_xvbf16ger2, "vW512*VV", UNALIASED_CUSTOM_MMA_BUILTIN(mma_pmxvbf16ger2, "vW512*VVi15i15i3", "mma,paired-vector-memops") +UNALIASED_CUSTOM_BUILTIN(mma_dmsha2hash, "vW1024*W1024*Ii", true, +

[Lldb-commits] [clang] [lldb] [Clang][PowerPC] Add __dmr2048 type and DMF crypto builtins (PR #157152)

2025-09-15 Thread Lei Huang via lldb-commits
https://github.com/lei137 commented: I see a lot of tests to identify when this type is not valid I think it would be good to add to the PR description where/how this new type can be used. https://github.com/llvm/llvm-project/pull/157152 ___ lldb-comm

[Lldb-commits] [clang] [clang-tools-extra] [compiler-rt] [lldb] [Clang] [Sema] Make `-Wincompatible-pointer-types` an error by default (PR #157364)

2025-09-15 Thread Alex Bradbury via lldb-commits
asb wrote: > Looks like this is causing errors in llvm-testsuite, but I’m candidly not > sure how this is usually handled: > https://lab.llvm.org/buildbot/#/builders/210/builds/2746 I think we'll want to add `-Wno-incompatible-pointer-types` to the relevant CMakeLists.txt. As an example, we c

[Lldb-commits] [clang] [clang-tools-extra] [compiler-rt] [lldb] [Clang] [Sema] Make `-Wincompatible-pointer-types` an error by default (PR #157364)

2025-09-15 Thread via lldb-commits
Sirraide wrote: > I think we'll want to add `-Wno-incompatible-pointer-types` to the relevant > CMakeLists.txt. Thanks; I’ll look into it. https://github.com/llvm/llvm-project/pull/157364 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http

[Lldb-commits] [lldb] [lldb-mcp] Launch lldb on demand, if needed. (PR #158701)

2025-09-15 Thread John Harrison via lldb-commits
https://github.com/ashgti updated https://github.com/llvm/llvm-project/pull/158701 >From 39b27ffc60fe30e88e42918f2c3382369f06f3df Mon Sep 17 00:00:00 2001 From: John Harrison Date: Mon, 15 Sep 2025 10:30:04 -0700 Subject: [PATCH 1/2] [lldb-mcp] Launch lldb on demand, if needed. Adding support

[Lldb-commits] [lldb] 9b95e10 - [LLDB] [Tests] Downgrade -Wincompatible-pointer-types to a warning in some tests (#158756)

2025-09-15 Thread via lldb-commits
Author: Sirraide Date: 2025-09-16T02:02:01+02:00 New Revision: 9b95e10d5ea6b61e0d9af0a800d63566ae32a2d0 URL: https://github.com/llvm/llvm-project/commit/9b95e10d5ea6b61e0d9af0a800d63566ae32a2d0 DIFF: https://github.com/llvm/llvm-project/commit/9b95e10d5ea6b61e0d9af0a800d63566ae32a2d0.diff LOG:

[Lldb-commits] [lldb] [LLDB] [Tests] Downgrade -Wincompatible-pointer-types to a warning in some tests (PR #158756)

2025-09-15 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. https://github.com/llvm/llvm-project/pull/158756 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb/API] Mark SBValue with error as invalid (PR #158759)

2025-09-15 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben updated https://github.com/llvm/llvm-project/pull/158759 >From b204ad16b8584a796585fb376b5258e3240fa71b Mon Sep 17 00:00:00 2001 From: Med Ismail Bennani Date: Mon, 15 Sep 2025 18:09:34 -0700 Subject: [PATCH] [lldb/API] Mark SBValue with error as invalid This pa

[Lldb-commits] [lldb] [LLDB] Fix 64 bit support for CIE and FDE handling in DWARFCallFrameInfo (PR #158350)

2025-09-15 Thread Greg Clayton via lldb-commits
@@ -147,6 +149,27 @@ GetGNUEHPointer(const DataExtractor &DE, lldb::offset_t *offset_ptr, return baseAddress + addressValue; } +// Check if the given cie_id value indicates a CIE (Common Information Entry) +// as opposed to an FDE (Frame Description Entry). +// +// For eh_f

[Lldb-commits] [lldb] [lldb][test] Fix unordered-map test. (PR #158286)

2025-09-15 Thread Ebuka Ezike via lldb-commits
https://github.com/da-viper closed https://github.com/llvm/llvm-project/pull/158286 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] 5e118ec - [lldb][test] Fix unordered-map test. (#158286)

2025-09-15 Thread via lldb-commits
Author: Ebuka Ezike Date: 2025-09-15T15:21:56+01:00 New Revision: 5e118eca93ad7591c7b904a160d4d42cd37903c5 URL: https://github.com/llvm/llvm-project/commit/5e118eca93ad7591c7b904a160d4d42cd37903c5 DIFF: https://github.com/llvm/llvm-project/commit/5e118eca93ad7591c7b904a160d4d42cd37903c5.diff L

[Lldb-commits] [lldb] [lldb] Fix unordered-map data formatter for const types (PR #156033)

2025-09-15 Thread Ebuka Ezike via lldb-commits
https://github.com/da-viper closed https://github.com/llvm/llvm-project/pull/156033 ___ 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 stdio redirection (PR #158609)

2025-09-15 Thread Walter Erquinigo via lldb-commits
@@ -177,6 +177,31 @@ llvm::Error BaseRequestHandler::LaunchProcess( launch_info.SetEnvironment(env, true); } + if (!arguments.stdio.empty() && !arguments.disableSTDIO) { walter-erquinigo wrote: Move this to a helper function because this function is al

[Lldb-commits] [lldb] [lldb-dap] Add stdio redirection (PR #158609)

2025-09-15 Thread Walter Erquinigo via lldb-commits
@@ -615,6 +615,14 @@ "description": "Specify where to launch the program: internal console, integrated terminal or external terminal.", "default": "internalConsole" }, + "stdio": { +"type": "array", +

[Lldb-commits] [lldb] [lldb-dap] Add stdio redirection (PR #158609)

2025-09-15 Thread Walter Erquinigo via lldb-commits
https://github.com/walter-erquinigo requested changes to this pull request. Thanks for working on this! https://github.com/llvm/llvm-project/pull/158609 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/li

[Lldb-commits] [lldb] [lldb][TypeSystem] Enable colored AST dump (PR #86159)

2025-09-15 Thread Adrian Prantl via lldb-commits
https://github.com/adrian-prantl approved this pull request. https://github.com/llvm/llvm-project/pull/86159 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb-mcp] Fix servers accepting more than one client. (PR #158357)

2025-09-15 Thread John Harrison via lldb-commits
https://github.com/ashgti updated https://github.com/llvm/llvm-project/pull/158357 >From 07a8a62569a41c881f721b2800086eb559da6fa8 Mon Sep 17 00:00:00 2001 From: John Harrison Date: Fri, 12 Sep 2025 13:06:30 -0700 Subject: [PATCH] [lldb-mcp] Fix servers accepting more than one client. This fixe

[Lldb-commits] [lldb] [lldb-dap] Add stdio redirection (PR #158609)

2025-09-15 Thread Druzhkov Sergei via lldb-commits
https://github.com/DrSergei created https://github.com/llvm/llvm-project/pull/158609 As far as I understand, lldb-dap does not currently support stdio redirection. I have added support for this via a new field in the launch configuration named `stdio`. It was inspired by the same named field i

[Lldb-commits] [lldb] [lldb][TypeSystemClang] Added unique builtins types for __bf16 and _Float16 (PR #157674)

2025-09-15 Thread via lldb-commits
tgs-sc wrote: @Michael137, take a look please! https://github.com/llvm/llvm-project/pull/157674 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Change directory creation logic in framework-header-fix (PR #158355)

2025-09-15 Thread Alex Langford via lldb-commits
https://github.com/bulbazord closed https://github.com/llvm/llvm-project/pull/158355 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [clang] [clang-tools-extra] [compiler-rt] [lldb] [Clang] [Sema] Make `-Wincompatible-pointer-types` an error by default (PR #157364)

2025-09-15 Thread via lldb-commits
Sirraide wrote: > > This seems to have broken several tests several tests in the LLDB test > > suite: > > https://green.lab.llvm.org/job/llvm.org/view/LLDB/job/as-lldb-cmake/33215/ > > Weird, I’m pretty sure I ran the LLDB tests locally and didn’t observe any > errors; I’m looking into it. S

[Lldb-commits] [lldb] [lldb][LoongArch] Preserve temporary symbols starting with `.L` in lldb symbol table (PR #158551)

2025-09-15 Thread via lldb-commits
github-actions[bot] wrote: :warning: C/C++ code formatter, clang-format found issues in your code. :warning: You can test this locally with the following command: ``bash git-clang-format --diff origin/main HEAD --extensions cpp -- lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF

[Lldb-commits] [lldb] [LLDB][PDB] Require Windows for for testing PDB plugin-selection again (PR #158559)

2025-09-15 Thread via lldb-commits
https://github.com/Nerixyz created https://github.com/llvm/llvm-project/pull/158559 Amends #158284 and fixes the failure on `lldb-remote-linux-win` from https://github.com/llvm/llvm-project/pull/158284#issuecomment-3290154510. That builder is configured with the DIA SDK but builds for Linux, s

[Lldb-commits] [lldb] [LLDB][PDB] Require Windows for for testing PDB plugin-selection again (PR #158559)

2025-09-15 Thread via lldb-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: nerix (Nerixyz) Changes Amends #158284 and fixes the failure on `lldb-remote-linux-win` from https://github.com/llvm/llvm-project/pull/158284#issuecomment-3290154510. That builder is configured with the DIA SDK but builds for Linux, so the

[Lldb-commits] [lldb] [lldb][LoongArch] Preserve temporary symbols starting with `.L` in lldb symbol table (PR #158551)

2025-09-15 Thread Lu Weining via lldb-commits
@@ -2119,8 +2119,12 @@ ObjectFileELF::ParseSymbols(Symtab *symtab, user_id_t start_id, // generated local labels used for internal purposes (e.g. debugging, // optimization) and are not relevant for symbol resolution or external // linkage. -if (llvm::StringRef

[Lldb-commits] [lldb] [LLDB][PDB] Require Windows for for testing PDB plugin-selection again (PR #158559)

2025-09-15 Thread via lldb-commits
https://github.com/Nerixyz closed https://github.com/llvm/llvm-project/pull/158559 ___ 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 stdio redirection (PR #158609)

2025-09-15 Thread via lldb-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: Druzhkov Sergei (DrSergei) Changes As far as I understand, lldb-dap does not currently support stdio redirection. I have added support for this via a new field in the launch configuration named `stdio`. It was inspired by the same named fi

[Lldb-commits] [lldb] [lldb][LoongArch] Preserve temporary symbols starting with `.L` in lldb symbol table (PR #158551)

2025-09-15 Thread Lu Weining via lldb-commits
SixWeining wrote: cc @barsolo2000 https://github.com/llvm/llvm-project/pull/158551 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [LLDB][PDB] Require Windows for for testing PDB plugin-selection again (PR #158559)

2025-09-15 Thread David Spickett via lldb-commits
https://github.com/DavidSpickett approved this pull request. LGTM https://github.com/llvm/llvm-project/pull/158559 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [clang] [clang-tools-extra] [compiler-rt] [lldb] [Clang] [Sema] Make `-Wincompatible-pointer-types` an error by default (PR #157364)

2025-09-15 Thread Med Ismail Bennani via lldb-commits
medismailben wrote: Thanks, feel free to merge whenever https://github.com/llvm/llvm-project/pull/157364 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [NFC][lldb-dap] Fix typo in invalidated event (PR #158338)

2025-09-15 Thread Walter Erquinigo via lldb-commits
https://github.com/walter-erquinigo approved this pull request. https://github.com/llvm/llvm-project/pull/158338 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] 4de9bee - [LLDB][PDB] Require Windows for for testing PDB plugin-selection again (#158559)

2025-09-15 Thread via lldb-commits
Author: nerix Date: 2025-09-15T11:07:42+02:00 New Revision: 4de9bee7e53eb84a22511317e26dfd656b66df8b URL: https://github.com/llvm/llvm-project/commit/4de9bee7e53eb84a22511317e26dfd656b66df8b DIFF: https://github.com/llvm/llvm-project/commit/4de9bee7e53eb84a22511317e26dfd656b66df8b.diff LOG: [L

[Lldb-commits] [clang] [clang-tools-extra] [compiler-rt] [lldb] [Clang] [Sema] Make `-Wincompatible-pointer-types` an error by default (PR #157364)

2025-09-15 Thread via lldb-commits
Sirraide wrote: Looks like this is causing errors in llvm-testsuite, but I’m candidly not sure how this is usually handled: https://lab.llvm.org/buildbot/#/builders/210/builds/2746 https://github.com/llvm/llvm-project/pull/157364 ___ lldb-commits mail

[Lldb-commits] [lldb] [LLDB] Fix 64 bit support for CIE and FDE handling in DWARFCallFrameInfo (PR #158350)

2025-09-15 Thread Greg Clayton via lldb-commits
https://github.com/clayborg approved this pull request. Looks good! https://github.com/llvm/llvm-project/pull/158350 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb][TypeSystem] Enable colored AST dump (PR #86159)

2025-09-15 Thread LLVM Continuous Integration via lldb-commits
llvm-ci wrote: LLVM Buildbot has detected a new failure on builder `lldb-x86_64-debian` running on `lldb-x86_64-debian` while building `lldb` at step 6 "test". Full details are available at: https://lab.llvm.org/buildbot/#/builders/162/builds/31135 Here is the relevant piece of the build log

[Lldb-commits] [lldb] [lldb-mcp] Launch lldb on demand, if needed. (PR #158701)

2025-09-15 Thread John Harrison via lldb-commits
https://github.com/ashgti created https://github.com/llvm/llvm-project/pull/158701 Adding support for launching lldb with `-O protocol start MCP` if a valid ~/.lldb/lldb-mcp-*.json` file is not found. >From 39b27ffc60fe30e88e42918f2c3382369f06f3df Mon Sep 17 00:00:00 2001 From: John Harrison

[Lldb-commits] [lldb] [lldb-mcp] Launch lldb on demand, if needed. (PR #158701)

2025-09-15 Thread via lldb-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: John Harrison (ashgti) Changes Adding support for launching lldb with `-O protocol start MCP` if a valid ~/.lldb/lldb-mcp-*.json` file is not found. --- Full diff: https://github.com/llvm/llvm-project/pull/158701.diff 2 Files Affected:

[Lldb-commits] [lldb] [lldb-mcp] Adding a tool to list debuggers again. (PR #158340)

2025-09-15 Thread John Harrison via lldb-commits
ashgti wrote: I filed #158676 for the index issue so we don't loose track of it. https://github.com/llvm/llvm-project/pull/158340 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb-mcp] Adding a tool to list debuggers again. (PR #158340)

2025-09-15 Thread John Harrison via lldb-commits
https://github.com/ashgti updated https://github.com/llvm/llvm-project/pull/158340 >From aab75bdd91f15a3dde3a6ac9fbf7804461fa8951 Mon Sep 17 00:00:00 2001 From: John Harrison Date: Fri, 12 Sep 2025 11:10:31 -0700 Subject: [PATCH 1/2] [lldb-mcp] Adding a tool to list debuggers again. This bring

[Lldb-commits] [clang] [clang-tools-extra] [compiler-rt] [lldb] [Clang] [Sema] Make `-Wincompatible-pointer-types` an error by default (PR #157364)

2025-09-15 Thread via lldb-commits
https://github.com/Sirraide closed https://github.com/llvm/llvm-project/pull/157364 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] 95d5d98 - [lldb][TypeSystem] Enable colored AST dump (#86159)

2025-09-15 Thread via lldb-commits
Author: Michael Buch Date: 2025-09-15T18:03:55+01:00 New Revision: 95d5d984db4092136ad4b178b765516168c31b9e URL: https://github.com/llvm/llvm-project/commit/95d5d984db4092136ad4b178b765516168c31b9e DIFF: https://github.com/llvm/llvm-project/commit/95d5d984db4092136ad4b178b765516168c31b9e.diff

[Lldb-commits] [lldb] [lldb][TypeSystem] Enable colored AST dump (PR #86159)

2025-09-15 Thread Michael Buch via lldb-commits
https://github.com/Michael137 closed https://github.com/llvm/llvm-project/pull/86159 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb][LoongArch] Preserve temporary symbols starting with `.L` in lldb symbol table (PR #158551)

2025-09-15 Thread via lldb-commits
https://github.com/zhaoqi5 updated https://github.com/llvm/llvm-project/pull/158551 >From c6679a64e9eebaf0c7a5bf96689c9a53dbe33b81 Mon Sep 17 00:00:00 2001 From: Qi Zhao Date: Mon, 15 Sep 2025 14:11:17 +0800 Subject: [PATCH 1/2] [lldb][LoongArch] Preserve temporary symbols starting with `.L` i

[Lldb-commits] [lldb] [lldb][test] Fix unordered-map test. (PR #158286)

2025-09-15 Thread Ebuka Ezike via lldb-commits
https://github.com/da-viper updated https://github.com/llvm/llvm-project/pull/158286 >From 1cd5ecd349d9b9d8054d409314862b2c0fbb694e Mon Sep 17 00:00:00 2001 From: Ebuka Ezike Date: Fri, 12 Sep 2025 13:23:47 +0100 Subject: [PATCH] [lldb][test] Fix unordered-map test. The build step is overidden

[Lldb-commits] [lldb] [lldb][LoongArch] Preserve temporary symbols starting with `.L` in lldb symbol table (PR #158551)

2025-09-15 Thread via lldb-commits
https://github.com/zhaoqi5 updated https://github.com/llvm/llvm-project/pull/158551 >From c6679a64e9eebaf0c7a5bf96689c9a53dbe33b81 Mon Sep 17 00:00:00 2001 From: Qi Zhao Date: Mon, 15 Sep 2025 14:11:17 +0800 Subject: [PATCH 1/3] [lldb][LoongArch] Preserve temporary symbols starting with `.L` i

[Lldb-commits] [clang] [clang-tools-extra] [lldb] [clang] Initialize the file system explicitly (PR #158381)

2025-09-15 Thread Jan Svoboda via lldb-commits
https://github.com/jansvoboda11 updated https://github.com/llvm/llvm-project/pull/158381 >From a9a1c7df3a529bcae6c6d33fdf93adab8d572cff Mon Sep 17 00:00:00 2001 From: Jan Svoboda Date: Fri, 12 Sep 2025 14:44:02 -0700 Subject: [PATCH 1/4] [clang] Initialize the file system explicitly --- .../i

[Lldb-commits] [clang] [clang-tools-extra] [lldb] [clang] Initialize the file system explicitly (PR #158381)

2025-09-15 Thread Jan Svoboda via lldb-commits
https://github.com/jansvoboda11 updated https://github.com/llvm/llvm-project/pull/158381 >From a9a1c7df3a529bcae6c6d33fdf93adab8d572cff Mon Sep 17 00:00:00 2001 From: Jan Svoboda Date: Fri, 12 Sep 2025 14:44:02 -0700 Subject: [PATCH 1/5] [clang] Initialize the file system explicitly --- .../i

[Lldb-commits] [lldb] [lldb-dap] Add memory event (PR #158437)

2025-09-15 Thread John Harrison via lldb-commits
https://github.com/ashgti approved this pull request. LGTM! https://github.com/llvm/llvm-project/pull/158437 ___ 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 memory event (PR #158437)

2025-09-15 Thread John Harrison via lldb-commits
https://github.com/ashgti edited https://github.com/llvm/llvm-project/pull/158437 ___ 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 memory event (PR #158437)

2025-09-15 Thread John Harrison via lldb-commits
@@ -88,6 +88,34 @@ struct InvalidatedEventBody { llvm::json::Value toJSON(const InvalidatedEventBody::Area &); llvm::json::Value toJSON(const InvalidatedEventBody &); +/// This event indicates that some memory range has been updated. It should only +/// be sent if the corresp

[Lldb-commits] [lldb] [LLDB] Fix 64 bit support for CIE and FDE handling in DWARFCallFrameInfo (PR #158350)

2025-09-15 Thread Walter Erquinigo via lldb-commits
https://github.com/walter-erquinigo auto_merge_enabled https://github.com/llvm/llvm-project/pull/158350 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [clang] [clang-tools-extra] [compiler-rt] [lldb] [Clang] [Sema] Make `-Wincompatible-pointer-types` an error by default (PR #157364)

2025-09-15 Thread via lldb-commits
Sirraide wrote: Should be fixed by https://github.com/llvm/llvm-test-suite/commit/8a20f8caaf6eb1a2a9b83363c3ab0cf8bb978b74 unless more tests start failing. https://github.com/llvm/llvm-project/pull/157364 ___ lldb-commits mailing list lldb-commits@li

[Lldb-commits] [lldb] [lldb-dap] Add memory event (PR #158437)

2025-09-15 Thread Druzhkov Sergei via lldb-commits
https://github.com/DrSergei updated https://github.com/llvm/llvm-project/pull/158437 >From 181075379693af77cfde778102b62e72a789ba2a Mon Sep 17 00:00:00 2001 From: Druzhkov Sergei Date: Sat, 13 Sep 2025 23:33:49 +0300 Subject: [PATCH 1/2] [lldb-dap] Add memory event --- .../test/tools/lldb-dap

[Lldb-commits] [lldb] [lldb/API] Mark SBValue with error as invalid (PR #158759)

2025-09-15 Thread Med Ismail Bennani via lldb-commits
medismailben wrote: I fixed the formatting most of the failures. I only need to find the right way to return the errors through DAP: prior to this change, errors were returned as part of the value object string, since the object was still considered valid but now that it's marked invalid, the

[Lldb-commits] [lldb] [lldb/API] Mark SBValue with error as invalid (PR #158759)

2025-09-15 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben updated https://github.com/llvm/llvm-project/pull/158759 >From 9744d606c8ddc03aeba105c89647af4c009dac28 Mon Sep 17 00:00:00 2001 From: Med Ismail Bennani Date: Mon, 15 Sep 2025 18:04:48 -0700 Subject: [PATCH] [lldb/API] Mark SBValue with error as invalid This pa