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
@@ -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.
+"""
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
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
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
@@ -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:
@@ -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,
+
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
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
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
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
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:
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
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
@@ -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
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
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
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
@@ -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
@@ -615,6 +615,14 @@
"description": "Specify where to launch the program: internal
console, integrated terminal or external terminal.",
"default": "internalConsole"
},
+ "stdio": {
+"type": "array",
+
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
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
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
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
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
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
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
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
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
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
@@ -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
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
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
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
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
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
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
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
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
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
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
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
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:
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
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
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
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
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
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
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
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
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
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
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
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
@@ -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
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
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
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
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
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
61 matches
Mail list logo