llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Nikolas Klauser (philnik777)
Changes
This reverts commit 72c04bb882ad70230bce309c3013d9cc2c99e9a7.
---
Patch is 45.64 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/155565.diff
16 Files Affec
https://github.com/philnik777 edited
https://github.com/llvm/llvm-project/pull/155565
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/philnik777 created
https://github.com/llvm/llvm-project/pull/155565
This reverts commit 72c04bb882ad70230bce309c3013d9cc2c99e9a7.
>From d6988b99004c3c4c53f4d0c100f6cd8b94b7fefa Mon Sep 17 00:00:00 2001
From: Nikolas Klauser
Date: Wed, 27 Aug 2025 08:57:17 +0200
Subject: [PA
https://github.com/Michael137 updated
https://github.com/llvm/llvm-project/pull/149827
>From 5d75d1679d492df1a72c4013afde052f7b6195dd Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Mon, 18 Aug 2025 15:12:45 +0100
Subject: [PATCH 1/5] [llvm][DebugInfo] Support DW_AT_linkage_names that are
di
https://github.com/Michael137 edited
https://github.com/llvm/llvm-project/pull/149827
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/ashgti created
https://github.com/llvm/llvm-project/pull/155714
This adjusts the ProtocolServer command to default to create a new connection
listening on `localhost:0` and adds a new `ServerMetadata` details to
`~/.lldb/mcp/lldb-.json` to record information about the curren
JDevlieghere wrote:
Can we solve this by handing down a weak pointer to the module? That way we can
check if the ref count has hit zero.
https://github.com/llvm/llvm-project/pull/155331
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https:
https://github.com/jasonmolenda created
https://github.com/llvm/llvm-project/pull/155733
Review of diffs from lldb's internal debugserver and llvm.org main found two
orphaned changes that should be upstreamed.
First is in MachTask::ExceptionThread where we want to confirm that a mach
exceptio
satyajanga wrote:
Looks good to me as well !
https://github.com/llvm/llvm-project/pull/154809
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: barsolo2000
Date: 2025-08-27T19:58:08-05:00
New Revision: c2be0351a725c95e3841a8d59ee432f5b205763f
URL:
https://github.com/llvm/llvm-project/commit/c2be0351a725c95e3841a8d59ee432f5b205763f
DIFF:
https://github.com/llvm/llvm-project/commit/c2be0351a725c95e3841a8d59ee432f5b205763f.diff
L
https://github.com/satyajanga closed
https://github.com/llvm/llvm-project/pull/154809
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: John Harrison
Date: 2025-08-27T16:21:04-07:00
New Revision: 71a065ed07cda66f628e1cfa7b875eeef7e9a141
URL:
https://github.com/llvm/llvm-project/commit/71a065ed07cda66f628e1cfa7b875eeef7e9a141
DIFF:
https://github.com/llvm/llvm-project/commit/71a065ed07cda66f628e1cfa7b875eeef7e9a141.diff
JDevlieghere wrote:
Thanks!
https://github.com/llvm/llvm-project/pull/155720
___
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
`sanitizer-x86_64-linux-fast` running on `sanitizer-buildbot3` while building
`clang,lldb` at step 2 "annotate".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/169/builds/14447
Here is the relevant p
https://github.com/JDevlieghere created
https://github.com/llvm/llvm-project/pull/155708
Add the scaffolding for a new tool lldb-mcp. This utility is meant to replace
netcat and acts a proxy between the LLM and one or more LLDB instances. In its
current form, the utility is a trivial MCP serve
https://github.com/piyushjaiswal98 updated
https://github.com/llvm/llvm-project/pull/155335
>From 443c2b4c983399fce0ac6805abfa7ca2fffd1322 Mon Sep 17 00:00:00 2001
From: Piyush Jaiswal
Date: Mon, 25 Aug 2025 17:31:45 -0700
Subject: [PATCH 1/3] Improving lldbdap server error diagnosability and a
Anthony-Eid wrote:
@medismailben lldb-dap is usable from Zed with my most recent commit now! Do
you have time this week to pair on getting this mergable? I'm pretty sure using
new variable ids is going to break some tests and idk if there's formatters or
anything else I have to fix to get CICD
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: John Harrison (ashgti)
Changes
Moving `lldb_protocol::mcp::MCPTransport` out of Server.h and into its own file
and simplifying the name to `Transport`.
---
Full diff: https://github.com/llvm/llvm-project/pull/155711.diff
9 Files Affected
@@ -14,11 +14,23 @@
#include "lldb/Protocol/MCP/Resource.h"
#include "lldb/Protocol/MCP/Tool.h"
#include "lldb/Protocol/MCP/Transport.h"
+#include "lldb/lldb-types.h"
#include "llvm/ADT/StringMap.h"
#include "llvm/Support/Error.h"
+#include "llvm/Support/JSON.h"
namespace
@@ -104,6 +104,43 @@ llvm::Error
ProtocolServerMCP::Start(ProtocolServer::Connection connection) {
if (llvm::Error error = handles.takeError())
return error;
+ auto listening_uris = m_listener->GetListeningConnectionURI();
+ if (listening_uris.empty())
+return cre
@@ -104,6 +104,43 @@ llvm::Error
ProtocolServerMCP::Start(ProtocolServer::Connection connection) {
if (llvm::Error error = handles.takeError())
return error;
+ auto listening_uris = m_listener->GetListeningConnectionURI();
+ if (listening_uris.empty())
+return cre
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder
`cross-project-tests-sie-ubuntu-dwarf5` running on `doug-worker-1b` while
building `lldb` at step 5 "build-unified-tree".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/163/builds/25512
Here is the r
https://github.com/JDevlieghere updated
https://github.com/llvm/llvm-project/pull/155708
>From 9c2db2349ffd5fdcbbb5ceebf2a72979dd2a2e88 Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere
Date: Wed, 27 Aug 2025 15:15:48 -0700
Subject: [PATCH 1/2] [lldb] Add lldb-mcp scaffolding
Add the scaffoldin
@@ -0,0 +1,80 @@
+//===--===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apac
medismailben wrote:
> @medismailben lldb-dap is usable from Zed with my most recent commit now! Do
> you have time this week to pair on getting this mergable? I'm pretty sure
> using new variable ids is going to break some tests and idk if there's
> formatters or anything else I have to fix to
medismailben wrote:
Looking at the logs:
- `TestDAP_variables.py` fails on [line
290](https://github.com/llvm/llvm-project/blob/47f0fb9057c0c3c3d0c294dd608df0702706d990/lldb/test/API/tools/lldb-dap/variables/TestDAP_variables.py#L290).
It looks like we call `self.set_local("argc", 123)`. I went
ashgti wrote:
Right now, I wasn't entirely sure how to make the MCP server's fully unique on
the host or what information we need to store about the servers, so I'm
currently using the lldb pid to make the files unique. That could be replaced
in the future by something else a UUID or hash.
ht
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder
`cross-project-tests-sie-ubuntu` running on `doug-worker-1a` while building
`lldb` at step 5 "build-unified-tree".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/181/builds/26803
Here is the relevant
https://github.com/ashgti created
https://github.com/llvm/llvm-project/pull/155720
Fixes lldb-mcp, aa71d95 was merged after 71a065e.
>From 6630ce4639806ea392f3ad3a1b36bf6c40b423f2 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Wed, 27 Aug 2025 16:30:14 -0700
Subject: [PATCH] [lldb] Correct
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 4 "build".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/162/builds/29889
Here is the relevant piece of the build lo
https://github.com/ashgti ready_for_review
https://github.com/llvm/llvm-project/pull/155720
___
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/155714
>From 831a505e3e8368cf2ee5cae995b8920fbc8d2365 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Wed, 27 Aug 2025 15:58:04 -0700
Subject: [PATCH] [lldb] Adjust ProtocolServer connection defaults.
This adjusts t
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Jonas Devlieghere (JDevlieghere)
Changes
Add a bunch of mnemonics to the command options now that they're highlighted in
the help output.
---
Patch is 38.39 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-pr
augusto2112 wrote:
@JDevlieghere @felipepiovezan any suggestions on this, or can I merge it as is?
The other way to do this would be to allow already freed pointers, document it,
and be careful to never dereference it. That feels weird and wasteful though.
I guess a third possibility is add a
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Jonas Devlieghere (JDevlieghere)
Changes
Add the scaffolding for a new tool lldb-mcp. This utility is meant to replace
netcat and acts a proxy between the LLM and one or more LLDB instances. In its
current form, the utility is a trivial MC
https://github.com/ashgti closed
https://github.com/llvm/llvm-project/pull/155711
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Jonas Devlieghere
Date: 2025-08-27T16:22:00-07:00
New Revision: aa71d95199df4e1ed88d382002181cc9f0fa9327
URL:
https://github.com/llvm/llvm-project/commit/aa71d95199df4e1ed88d382002181cc9f0fa9327
DIFF:
https://github.com/llvm/llvm-project/commit/aa71d95199df4e1ed88d382002181cc9f0fa9327.d
https://github.com/JDevlieghere closed
https://github.com/llvm/llvm-project/pull/155708
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/ashgti ready_for_review
https://github.com/llvm/llvm-project/pull/155714
___
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: John Harrison (ashgti)
Changes
This adjusts the ProtocolServer command to default to create a new connection
listening on `localhost:0` and adds a new `ServerMetadata` details to
`~/.lldb/mcp/lldb-.json` to record information about th
https://github.com/Anthony-Eid updated
https://github.com/llvm/llvm-project/pull/124232
>From 30658e994b18b7c0db114a297036421c8de2dea3 Mon Sep 17 00:00:00 2001
From: Anthony
Date: Wed, 27 Aug 2025 13:04:26 -0400
Subject: [PATCH 1/3] Fix variable request from reusing variable_ids
---
.../lldb-
https://github.com/Anthony-Eid updated
https://github.com/llvm/llvm-project/pull/124232
>From 30658e994b18b7c0db114a297036421c8de2dea3 Mon Sep 17 00:00:00 2001
From: Anthony
Date: Wed, 27 Aug 2025 13:04:26 -0400
Subject: [PATCH 1/5] Fix variable request from reusing variable_ids
---
.../lldb-
github-actions[bot] wrote:
:warning: Python code formatter, darker found issues in your code. :warning:
You can test this locally with the following command:
``bash
darker --check --diff -r origin/main...HEAD
lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py
https://github.com/Anthony-Eid updated
https://github.com/llvm/llvm-project/pull/124232
>From 30658e994b18b7c0db114a297036421c8de2dea3 Mon Sep 17 00:00:00 2001
From: Anthony
Date: Wed, 27 Aug 2025 13:04:26 -0400
Subject: [PATCH 1/6] Fix variable request from reusing variable_ids
---
.../lldb-
medismailben wrote:
@Anthony-Eid Almost there! Looks like all the tests are passing now you just
need to fix the formatting for the python changes (you can run `pip3 install
darker && darker -r HEAD~ $LLVM/lldb`) and mark the PR ready for review. Once
you do that I'll add some reviewer to this
https://github.com/Anthony-Eid updated
https://github.com/llvm/llvm-project/pull/124232
>From 30658e994b18b7c0db114a297036421c8de2dea3 Mon Sep 17 00:00:00 2001
From: Anthony
Date: Wed, 27 Aug 2025 13:04:26 -0400
Subject: [PATCH 1/8] Fix variable request from reusing variable_ids
---
.../lldb-
JDevlieghere wrote:
Depends on https://github.com/llvm/llvm-project/pull/155694
https://github.com/llvm/llvm-project/pull/155705
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -0,0 +1,80 @@
+//===--===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apac
@@ -0,0 +1,21 @@
+
+http://www.apple.com/DTDs/PropertyList-1.0.dtd";>
+
+
+ CFBundleDevelopmentRegion
+ English
+ CFBundleIdentifier
+ com.apple.lldb-dap
ashgti wrote:
com.apple.lldb-mcp?
https://github.com/llvm/llvm-project/pull/155708
_
@@ -0,0 +1,80 @@
+//===--===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apac
https://github.com/ashgti created
https://github.com/llvm/llvm-project/pull/155711
Moving `lldb_protocol::mcp::MCPTransport` out of Server.h and into its own file
and simplifying the name to `Transport`.
>From b10f3ffca74e08234960fc0a3d4dfb5431d901ee Mon Sep 17 00:00:00 2001
From: John Harriso
@@ -0,0 +1,21 @@
+
+http://www.apple.com/DTDs/PropertyList-1.0.dtd";>
+
+
+ CFBundleDevelopmentRegion
+ English
+ CFBundleIdentifier
+ com.apple.lldb-dap
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ lldb-dap
---
https://github.com/JDevlieghere created
https://github.com/llvm/llvm-project/pull/155705
Add a bunch of mnemonics to the command options now that they're highlighted in
the help output.
>From f4c41d2f40eb06457a7147191d88f2d32308876c Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere
Date: Wed,
https://github.com/Jlalond updated
https://github.com/llvm/llvm-project/pull/15
>From 3b6592ce5de7bc04195ec17163e788b8ff463ca1 Mon Sep 17 00:00:00 2001
From: Jacob Lalonde
Date: Tue, 19 Aug 2025 16:46:22 -0700
Subject: [PATCH 1/7] Make tpidr a generic thread pointer register on aarch
---
https://github.com/Anthony-Eid updated
https://github.com/llvm/llvm-project/pull/124232
>From 30658e994b18b7c0db114a297036421c8de2dea3 Mon Sep 17 00:00:00 2001
From: Anthony
Date: Wed, 27 Aug 2025 13:04:26 -0400
Subject: [PATCH 1/4] Fix variable request from reusing variable_ids
---
.../lldb-
@@ -0,0 +1,80 @@
+//===--===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apac
https://github.com/JDevlieghere approved this pull request.
Nice
https://github.com/llvm/llvm-project/pull/155711
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
ashgti wrote:
This is built on #155711, so I'll leave it as a draft until that is in.
https://github.com/llvm/llvm-project/pull/155714
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commit
https://github.com/ashgti approved this pull request.
https://github.com/llvm/llvm-project/pull/155708
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/Anthony-Eid updated
https://github.com/llvm/llvm-project/pull/124232
>From 30658e994b18b7c0db114a297036421c8de2dea3 Mon Sep 17 00:00:00 2001
From: Anthony
Date: Wed, 27 Aug 2025 13:04:26 -0400
Subject: [PATCH 1/3] Fix variable request from reusing variable_ids
---
.../lldb-
Author: Dave Lee
Date: 2025-08-27T09:55:48-07:00
New Revision: 90d429ca5762264ff932995a2bdce2fc2f155688
URL:
https://github.com/llvm/llvm-project/commit/90d429ca5762264ff932995a2bdce2fc2f155688
DIFF:
https://github.com/llvm/llvm-project/commit/90d429ca5762264ff932995a2bdce2fc2f155688.diff
LOG:
@@ -376,6 +382,148 @@ void Disassembler::PrintInstructions(Debugger &debugger,
const ArchSpec &arch,
}
}
+ // Add rich variable location annotations to the disassembly output.
+ //
+ // For each instruction, this block attempts to resolve in-scope variables
+ // and
@@ -154,6 +154,10 @@ Status
CommandObjectDisassemble::CommandOptions::SetOptionValue(
}
} break;
+ case 'v': //< --rich variable annotations
adrian-prantl wrote:
```suggestion
case 'v':
```
https://github.com/llvm/llvm-project/pull/152887
_
https://github.com/kastiglione closed
https://github.com/llvm/llvm-project/pull/155637
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
UltimateForce21 wrote:
> LGTM once the outstanding comments are addressed. Thanks for all the hard
> work!
Thank you for all the feedback! I'm addressing the outstanding comments right
now. Really appreciate all the guidance and support throughout the whole it's
been a great learning experien
https://github.com/Anthony-Eid updated
https://github.com/llvm/llvm-project/pull/124232
>From 30658e994b18b7c0db114a297036421c8de2dea3 Mon Sep 17 00:00:00 2001
From: Anthony
Date: Wed, 27 Aug 2025 13:04:26 -0400
Subject: [PATCH] Fix variable request from reusing variable_ids
---
.../lldb-dap/
https://github.com/walter-erquinigo approved this pull request.
well, this looks good to me. Thanks!
https://github.com/llvm/llvm-project/pull/153536
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listi
@@ -376,6 +382,148 @@ void Disassembler::PrintInstructions(Debugger &debugger,
const ArchSpec &arch,
}
}
+ // Add rich variable location annotations to the disassembly output.
+ //
+ // For each instruction, this block attempts to resolve in-scope variables
+ // and
https://github.com/kastiglione created
https://github.com/llvm/llvm-project/pull/155637
None
>From 6e8a5f3e782e30a18b6910489c1ecfce7b38d977 Mon Sep 17 00:00:00 2001
From: Dave Lee
Date: Wed, 27 Aug 2025 08:24:02 -0700
Subject: [PATCH] [lldb] Fix a typo in --one-shot description (NFC)
---
lld
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Dave Lee (kastiglione)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/155637.diff
1 Files Affected:
- (modified) lldb/source/Commands/Options.td (+1-1)
``diff
diff --git a/lldb/source/Commands/Options.td b/l
https://github.com/mizvekov closed
https://github.com/llvm/llvm-project/pull/155050
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/mizvekov closed
https://github.com/llvm/llvm-project/pull/155049
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/mizvekov edited
https://github.com/llvm/llvm-project/pull/155050
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/mizvekov edited
https://github.com/llvm/llvm-project/pull/155051
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -376,6 +382,148 @@ void Disassembler::PrintInstructions(Debugger &debugger,
const ArchSpec &arch,
}
}
+ // Add rich variable location annotations to the disassembly output.
+ //
+ // For each instruction, this block attempts to resolve in-scope variables
+ // and
https://github.com/adrian-prantl approved this pull request.
LGTM once the outstanding comments are addressed.
Thanks for all the hard work!
https://github.com/llvm/llvm-project/pull/152887
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http
Anthony-Eid wrote:
@medismailben I fixed most of extra lines being added in the PR, but it's not
100% working in the new version. I'll ping you when it's functional.
I believe I'm mainly going to need help rewriting the tests once I get this
functionality and following any llvm standards that
https://github.com/Anthony-Eid updated
https://github.com/llvm/llvm-project/pull/124232
>From 30658e994b18b7c0db114a297036421c8de2dea3 Mon Sep 17 00:00:00 2001
From: Anthony
Date: Wed, 27 Aug 2025 13:04:26 -0400
Subject: [PATCH 1/2] Fix variable request from reusing variable_ids
---
.../lldb-
delcypher wrote:
@vitalybuka Thanks for approving. I think I addressed everyone's comments so
I'm going to rebase, check everything still works, and then land.
https://github.com/llvm/llvm-project/pull/154618
___
lldb-commits mailing list
lldb-commits
medismailben wrote:
Sounds good, let me know when you're ready 🙂
https://github.com/llvm/llvm-project/pull/124232
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/clayborg approved this pull request.
https://github.com/llvm/llvm-project/pull/154809
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/kuilpd closed
https://github.com/llvm/llvm-project/pull/152308
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Ilia Kuklin
Date: 2025-08-27T17:14:44+05:00
New Revision: 241d1601b4e5a7ca495947f034b62b84de8ea0be
URL:
https://github.com/llvm/llvm-project/commit/241d1601b4e5a7ca495947f034b62b84de8ea0be
DIFF:
https://github.com/llvm/llvm-project/commit/241d1601b4e5a7ca495947f034b62b84de8ea0be.diff
L
Author: Ilia Kuklin
Date: 2025-08-27T17:49:55+05:00
New Revision: bae177241cd3d78e5a024592cf21f81c196b8001
URL:
https://github.com/llvm/llvm-project/commit/bae177241cd3d78e5a024592cf21f81c196b8001
DIFF:
https://github.com/llvm/llvm-project/commit/bae177241cd3d78e5a024592cf21f81c196b8001.diff
L
https://github.com/kuilpd closed
https://github.com/llvm/llvm-project/pull/155610
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/kuilpd closed
https://github.com/llvm/llvm-project/pull/155605
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/Michael137 closed
https://github.com/llvm/llvm-project/pull/155483
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/DavidSpickett updated
https://github.com/llvm/llvm-project/pull/152284
>From b1a421f6c94057bf7f4ca375907a6ab7081d5a33 Mon Sep 17 00:00:00 2001
From: David Spickett
Date: Mon, 16 Dec 2024 16:02:33 +
Subject: [PATCH 01/10] [lldb][ARM] Port Arm Linux to use
NativeRegisterCo
https://github.com/Michael137 updated
https://github.com/llvm/llvm-project/pull/155485
>From 4d47b8bdf579de65eb69c69381c98c85e7f5a8e5 Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Mon, 4 Aug 2025 14:20:45 +0100
Subject: [PATCH 1/2] [clang][Mangle] Inject structor type into mangled name
whe
https://github.com/Michael137 updated
https://github.com/llvm/llvm-project/pull/155485
>From 4d47b8bdf579de65eb69c69381c98c85e7f5a8e5 Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Mon, 4 Aug 2025 14:20:45 +0100
Subject: [PATCH 1/3] [clang][Mangle] Inject structor type into mangled name
whe
https://github.com/DavidSpickett edited
https://github.com/llvm/llvm-project/pull/152284
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -76,17 +77,26 @@ class NativeRegisterContextDBReg
// On AArch64 and Loongarch the hardware breakpoint length size is 4, and the
// target address must 4-byte alignment.
- bool ValidateBreakpoint(size_t size, lldb::addr_t addr) {
+ virtual bool ValidateBreakpoint(size_
Author: Michael Buch
Date: 2025-08-27T12:46:39Z
New Revision: 9dd38b0ed06db1da46b142fe9e0a142b5c11ac58
URL:
https://github.com/llvm/llvm-project/commit/9dd38b0ed06db1da46b142fe9e0a142b5c11ac58
DIFF:
https://github.com/llvm/llvm-project/commit/9dd38b0ed06db1da46b142fe9e0a142b5c11ac58.diff
LOG:
https://github.com/DavidSpickett updated
https://github.com/llvm/llvm-project/pull/152284
>From b1a421f6c94057bf7f4ca375907a6ab7081d5a33 Mon Sep 17 00:00:00 2001
From: David Spickett
Date: Mon, 16 Dec 2024 16:02:33 +
Subject: [PATCH 1/7] [lldb][ARM] Port Arm Linux to use
NativeRegisterCont
@@ -166,7 +174,9 @@ Non-comprehensive list of changes in this release
New Compiler Flags
--
-- New option ``-fno-sanitize-annotate-debug-info-traps`` added to disable
emitting trap reasons into the debug info when compiling with trapping UBSan
(e.g. ``-fsanit
delcypher wrote:
@thurstond Thanks for the feedback. I've tried to address your comments and I
also added a brief discussion of optimized-vs-unoptimized builds.
https://github.com/llvm/llvm-project/pull/154618
___
lldb-commits mailing list
lldb-commit
@@ -184,242 +458,232 @@ public:
_LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI void
swap(__split_buffer& __x)
_NOEXCEPT_(!__alloc_traits::propagate_on_container_swap::value ||
__is_nothrow_swappable_v<__alloc_rr>);
- _LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_F
@@ -820,6 +820,26 @@ class vector {
__add_alignment_assumption(_Ptr __p) _NOEXCEPT {
return __p;
}
+
+ template class _Layout>
+ _LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI void
+ __swap_layouts(__split_buffer<_Tp, allocator_type&, _Layout>& __v) {
+auto
@@ -820,6 +820,26 @@ class vector {
__add_alignment_assumption(_Ptr __p) _NOEXCEPT {
return __p;
}
+
+ template class _Layout>
+ _LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI void
+ __swap_layouts(__split_buffer<_Tp, allocator_type&, _Layout>& __v) {
+auto
@@ -65,6 +203,170 @@ public:
using iterator = pointer;
using const_iterator = const_pointer;
+public:
+ _LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI
__split_buffer_size_layout() = default;
+
+ _LIBCPP_CONSTEXPR_SINCE_CXX20 _L
1 - 100 of 122 matches
Mail list logo