https://github.com/kastiglione closed
https://github.com/llvm/llvm-project/pull/154574
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -1039,7 +1039,12 @@ ResolveSDKPathFromDebugInfo(lldb_private::Target
*target) {
SymbolFile *sym_file = exe_module_sp->GetSymbolFile();
if (!sym_file)
-return llvm::createStringError("Failed to get symbol file from module");
+return llvm::createStringError("Fail
https://github.com/kastiglione closed
https://github.com/llvm/llvm-project/pull/154572
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/kastiglione updated
https://github.com/llvm/llvm-project/pull/154607
>From 1e70adad6b2d62bcb568ad603298a1a91121a87b Mon Sep 17 00:00:00 2001
From: Dave Lee
Date: Wed, 20 Aug 2025 13:27:51 -0700
Subject: [PATCH 1/2] [lldb] Improve error message in
ResolveSDKPathFromDebugInfo
@@ -1039,7 +1039,12 @@ ResolveSDKPathFromDebugInfo(lldb_private::Target
*target) {
SymbolFile *sym_file = exe_module_sp->GetSymbolFile();
if (!sym_file)
-return llvm::createStringError("Failed to get symbol file from module");
+return llvm::createStringError("Fail
@@ -109,6 +109,35 @@ class SBStructuredData {
/// Return the generic pointer if this data structure is a generic type.
lldb::SBScriptObject GetGenericValue() const;
+ /// Set the value corresponding to a key. If this data structure
+ /// is not a dictionary type, reset t
@@ -81,6 +81,39 @@ class StructuredDataImpl {
void SetObjectSP(const StructuredData::ObjectSP &obj) { m_data_sp = obj; }
+ void SetValueForKey(llvm::StringRef key,
+ const StructuredData::ObjectSP &value) {
+if (m_data_sp) {
+ if (StructuredDa
@@ -232,3 +232,46 @@ lldb::SBScriptObject SBStructuredData::GetGenericValue()
const {
return {m_impl_up->GetGenericValue(), eScriptLanguageDefault};
}
+
+void SBStructuredData::SetValueForKey(const char *key,
+ SBStructuredData &value) {
@@ -232,3 +232,46 @@ lldb::SBScriptObject SBStructuredData::GetGenericValue()
const {
return {m_impl_up->GetGenericValue(), eScriptLanguageDefault};
}
+
+void SBStructuredData::SetValueForKey(const char *key,
+ SBStructuredData &value) {
Author: Dave Lee
Date: 2025-08-21T08:55:50-07:00
New Revision: 86c9a7b0c1a99e9bed49edf4621e3a79847c6c35
URL:
https://github.com/llvm/llvm-project/commit/86c9a7b0c1a99e9bed49edf4621e3a79847c6c35
DIFF:
https://github.com/llvm/llvm-project/commit/86c9a7b0c1a99e9bed49edf4621e3a79847c6c35.diff
LOG:
Author: Dave Lee
Date: 2025-08-21T08:56:17-07:00
New Revision: dacabc1fee69d3cdced779d9a72916ddf2ca57e6
URL:
https://github.com/llvm/llvm-project/commit/dacabc1fee69d3cdced779d9a72916ddf2ca57e6
DIFF:
https://github.com/llvm/llvm-project/commit/dacabc1fee69d3cdced779d9a72916ddf2ca57e6.diff
LOG:
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
Author: John Harrison
Date: 2025-08-21T10:20:01-07:00
New Revision: 13eca5248c7bf625af9c7af898d48e8c0a441496
URL:
https://github.com/llvm/llvm-project/commit/13eca5248c7bf625af9c7af898d48e8c0a441496
DIFF:
https://github.com/llvm/llvm-project/commit/13eca5248c7bf625af9c7af898d48e8c0a441496.diff
https://github.com/ashgti closed
https://github.com/llvm/llvm-project/pull/147787
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -198,27 +85,25 @@ void CompletionsRequestHandler::operator()(
std::string match = matches.GetStringAtIndex(i);
std::string description = descriptions.GetStringAtIndex(i);
- llvm::json::Object item;
- llvm::StringRef match_ref = match;
- for (llvm:
@@ -8,167 +8,54 @@
#include "DAP.h"
#include "JSONUtils.h"
+#include "Protocol/ProtocolRequests.h"
+#include "Protocol/ProtocolTypes.h"
#include "RequestHandler.h"
#include "lldb/API/SBStringList.h"
-namespace lldb_dap {
+using namespace llvm;
+using namespace lldb_dap;
+u
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/da-viper approved this pull request.
https://github.com/llvm/llvm-project/pull/147787
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -81,6 +81,40 @@ class StructuredDataImpl {
void SetObjectSP(const StructuredData::ObjectSP &obj) { m_data_sp = obj; }
+ void SetValueForKey(llvm::StringRef key,
+ const StructuredData::ObjectSP &value) {
+if (m_data_sp) {
+ if (StructuredDa
@@ -81,6 +81,40 @@ class StructuredDataImpl {
void SetObjectSP(const StructuredData::ObjectSP &obj) { m_data_sp = obj; }
+ void SetValueForKey(llvm::StringRef key,
+ const StructuredData::ObjectSP &value) {
+if (m_data_sp) {
+ if (StructuredDa
https://github.com/bulbazord requested changes to this pull request.
https://github.com/llvm/llvm-project/pull/154445
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -130,6 +130,38 @@ class MyRandomClass:
self.assertSuccess(example.SetFromJSON("null"))
self.assertEqual(example.GetType(), lldb.eStructuredDataTypeNull)
+example = lldb.SBStructuredData()
+example.SetUnsignedIntegerValue(1)
+self.asse
@@ -227,3 +228,46 @@ def test_terminate_commands(self):
pattern=terminateCommands[0],
)
self.verify_commands("terminateCommands", output, terminateCommands)
+
+def test_session_id_update(self):
+program = self.build_and_create_debug_adapt
Author: Dave Lee
Date: 2025-08-21T13:23:38-07:00
New Revision: a447fc63f9b7add22eaa693e9ea8925402af04b7
URL:
https://github.com/llvm/llvm-project/commit/a447fc63f9b7add22eaa693e9ea8925402af04b7
DIFF:
https://github.com/llvm/llvm-project/commit/a447fc63f9b7add22eaa693e9ea8925402af04b7.diff
LOG:
da-viper wrote:
```
AttributeError: 'DebugAdapterServer' object has no attribute 'send_recv'. Did
you mean: '_send_recv'?
```
missed update location.
`lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py` line 1319
https://github.com/llvm/llvm-project/pull/147787
https://github.com/barsolo2000 updated
https://github.com/llvm/llvm-project/pull/154809
>From f378e6a09487eca27d4741bc527c578b8fb8d161 Mon Sep 17 00:00:00 2001
From: Bar Soloveychik
Date: Wed, 20 Aug 2025 14:54:52 -0700
Subject: [PATCH 1/4] added helper function
---
.../source/Plugins/ObjectF
https://github.com/ashgti created
https://github.com/llvm/llvm-project/pull/154832
This reverts commit 0f33b90b6117bcfa6ca3779c641c1ee8d03590fd and includes a fix
for the added test that was submitted between my last update and pull.
>From ff17fd28c43d1109c8cb6057c628ad6f4b541242 Mon Sep 17 00
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: John Harrison (ashgti)
Changes
This reverts commit 0f33b90b6117bcfa6ca3779c641c1ee8d03590fd and includes a fix
for the added test that was submitted between my last update and pull.
---
Patch is 82.96 KiB, truncated to 20.00 KiB below, fu
https://github.com/ashgti updated
https://github.com/llvm/llvm-project/pull/153317
>From 3db3a7184eb7d729c37f7dc02f826c77df8c65e9 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Tue, 12 Aug 2025 16:23:18 -0700
Subject: [PATCH 1/6] [lldb-dap] Migrating 'completions' to structured types.
This
https://github.com/JDevlieghere updated
https://github.com/llvm/llvm-project/pull/154727
>From defb8e0fe69009362537b3e2c9c05c4eac544505 Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere
Date: Thu, 21 Aug 2025 03:25:19 -0700
Subject: [PATCH] [lldb] Corretly parse Wasm segments
My original implem
https://github.com/ashgti updated
https://github.com/llvm/llvm-project/pull/153317
>From 3db3a7184eb7d729c37f7dc02f826c77df8c65e9 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Tue, 12 Aug 2025 16:23:18 -0700
Subject: [PATCH 1/5] [lldb-dap] Migrating 'completions' to structured types.
This
https://github.com/barsolo2000 created
https://github.com/llvm/llvm-project/pull/154809
https://discourse.llvm.org/t/rfc-should-we-omit-local-symbols-in-eekciihgtfvflvnbieicunjlrtnufhuelf-files-from-the-lldb-symbol-table/87384
Improving symbolication by excluding local symbols that are typicall
@@ -30,6 +30,7 @@ def CLASS_REMARK: DiagClass;
def CLASS_WARNING : DiagClass;
def CLASS_EXTENSION : DiagClass;
def CLASS_ERROR : DiagClass;
+def CLASS_TRAP : DiagClass;
delcypher wrote:
My initial prototype didn't add a new class but after think
https://github.com/barsolo2000 updated
https://github.com/llvm/llvm-project/pull/154809
>From f378e6a09487eca27d4741bc527c578b8fb8d161 Mon Sep 17 00:00:00 2001
From: Bar Soloveychik
Date: Wed, 20 Aug 2025 14:54:52 -0700
Subject: [PATCH 1/3] added helper function
---
.../source/Plugins/ObjectF
jimingham wrote:
> Regarding capitalization, I pretty strongly prefer **not** to change it and
> focus on highlighting the mnemonic. Here's why:
>
> * I don't think that matching the capitalization was ever the goal, but
> rather capitalization was used to highlight the letter, regardless of w
https://github.com/ashgti updated
https://github.com/llvm/llvm-project/pull/153317
>From 3db3a7184eb7d729c37f7dc02f826c77df8c65e9 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Tue, 12 Aug 2025 16:23:18 -0700
Subject: [PATCH 1/6] [lldb-dap] Migrating 'completions' to structured types.
This
@@ -1039,7 +1039,12 @@ ResolveSDKPathFromDebugInfo(lldb_private::Target
*target) {
SymbolFile *sym_file = exe_module_sp->GetSymbolFile();
if (!sym_file)
-return llvm::createStringError("Failed to get symbol file from module");
+return llvm::createStringError("Fail
https://github.com/kastiglione closed
https://github.com/llvm/llvm-project/pull/154607
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -30,4 +30,5 @@
#include "clang/Basic/DiagnosticAnalysisKinds.inc"
#include "clang/Basic/DiagnosticRefactoringKinds.inc"
#include "clang/Basic/DiagnosticInstallAPIKinds.inc"
+#include "clang/Basic/DiagnosticCodeGenKinds.inc"
delcypher wrote:
So the reason I
https://github.com/piyushjaiswal98 closed
https://github.com/llvm/llvm-project/pull/154632
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/jimingham approved this pull request.
LGMT
https://github.com/llvm/llvm-project/pull/154853
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/JDevlieghere approved this pull request.
Nice 📚
https://github.com/llvm/llvm-project/pull/154853
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/JDevlieghere approved this pull request.
https://github.com/llvm/llvm-project/pull/154445
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/JDevlieghere approved this pull request.
https://github.com/llvm/llvm-project/pull/154832
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/bulbazord approved this pull request.
https://github.com/llvm/llvm-project/pull/154445
___
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/29461
Here is the relevant piece of the build log
https://github.com/barsolo2000 updated
https://github.com/llvm/llvm-project/pull/154809
>From f378e6a09487eca27d4741bc527c578b8fb8d161 Mon Sep 17 00:00:00 2001
From: Bar Soloveychik
Date: Wed, 20 Aug 2025 14:54:52 -0700
Subject: [PATCH 1/5] added helper function
---
.../source/Plugins/ObjectF
https://github.com/barsolo2000 updated
https://github.com/llvm/llvm-project/pull/154809
>From f378e6a09487eca27d4741bc527c578b8fb8d161 Mon Sep 17 00:00:00 2001
From: Bar Soloveychik
Date: Wed, 20 Aug 2025 14:54:52 -0700
Subject: [PATCH 1/6] added helper function
---
.../source/Plugins/ObjectF
https://github.com/delcypher edited
https://github.com/llvm/llvm-project/pull/154618
___
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: Med Ismail Bennani (medismailben)
Changes
In 88f409194, we changed the way the crashlog scripted process was
launched since the previous approach required to parse the file twice,
by stopping at entry, setting the crashlog object in the midd
https://github.com/medismailben updated
https://github.com/llvm/llvm-project/pull/154651
>From 5bd75225a9a934be76ce7b337c1defb1e25e9153 Mon Sep 17 00:00:00 2001
From: Med Ismail Bennani
Date: Wed, 20 Aug 2025 17:07:33 -0700
Subject: [PATCH] [lldb/crashlog] Avoid StopAtEntry when launch crashlog
https://github.com/medismailben ready_for_review
https://github.com/llvm/llvm-project/pull/154651
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/Michael137 updated
https://github.com/llvm/llvm-project/pull/149827
>From d55e41fa03d09b2ddfc9484c4a70a7d21ed9a994 Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Mon, 18 Aug 2025 15:12:45 +0100
Subject: [PATCH 01/11] [llvm][DebugInfo] Support DW_AT_linkage_names that are
https://github.com/Michael137 updated
https://github.com/llvm/llvm-project/pull/149827
>From d55e41fa03d09b2ddfc9484c4a70a7d21ed9a994 Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Mon, 18 Aug 2025 15:12:45 +0100
Subject: [PATCH 01/10] [llvm][DebugInfo] Support DW_AT_linkage_names that are
charles-zablit wrote:
Should this check also be added to the implementations of
GetSDKPathFromDebugInfo? They also loop over the compile units and some callers
[assume the resolved sdk won't be
empty](https://github.com/swiftlang/llvm-project/blob/f55dc0824ebcf546b1d34a5102021c15101e4d3b/lldb/
https://github.com/Michael137 updated
https://github.com/llvm/llvm-project/pull/149827
>From d55e41fa03d09b2ddfc9484c4a70a7d21ed9a994 Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Mon, 18 Aug 2025 15:12:45 +0100
Subject: [PATCH 01/11] [llvm][DebugInfo] Support DW_AT_linkage_names that are
https://github.com/medismailben updated
https://github.com/llvm/llvm-project/pull/154651
>From 04db318bbd6b3c4e9245a11a711960cd016dcb19 Mon Sep 17 00:00:00 2001
From: Med Ismail Bennani
Date: Thu, 21 Aug 2025 22:55:59 -0700
Subject: [PATCH] [lldb/crashlog] Avoid StopAtEntry when launch crashlog
57 matches
Mail list logo