Author: David Spickett
Date: 2025-05-08T08:47:12Z
New Revision: 2668167e2cf935528f7d93cb3b12a651a29e52f6
URL:
https://github.com/llvm/llvm-project/commit/2668167e2cf935528f7d93cb3b12a651a29e52f6
DIFF:
https://github.com/llvm/llvm-project/commit/2668167e2cf935528f7d93cb3b12a651a29e52f6.diff
LOG
https://github.com/DhruvSrivastavaX updated
https://github.com/llvm/llvm-project/pull/131304
>From 106e137fea7d4b420ce3d97a8df16c3a91400997 Mon Sep 17 00:00:00 2001
From: Dhruv-Srivastava
Date: Fri, 14 Mar 2025 02:51:21 -0500
Subject: [PATCH 1/4] Support for XCOFF Sections
---
.../ObjectFile/
DavidSpickett wrote:
We have a few failures on Windows on Arm too:
https://github.com/llvm/llvm-project/commit/2668167e2cf935528f7d93cb3b12a651a29e52f6
I've skipped those tests for now.
https://github.com/llvm/llvm-project/pull/138791
___
lldb-commit
@@ -36,34 +39,49 @@ int main() {
}
// CHECK-LABEL: process status -d
-// CHECK: m_stop_id: 2
-// CHECK: m_memory_id: 0
+// CHECK: m_stop_id: [[#STOP_ID:]]
+// CHECK: m_memory_id: [[#MEMORY_ID:]]
// CHECK-LABEL: expr x.i != 42
// IDs are not changed when executing simple ex
https://github.com/DavidSpickett edited
https://github.com/llvm/llvm-project/pull/138941
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/DavidSpickett commented:
Looks fine just one question.
https://github.com/llvm/llvm-project/pull/138941
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/Michael137 approved this pull request.
https://github.com/llvm/llvm-project/pull/139021
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -24,41 +31,105 @@ using namespace llvm;
namespace lldb_dap {
-FifoFile::FifoFile(StringRef path) : m_path(path) {}
+FifoFile::FifoFile(std::string path, FILE *f) : m_path(path), m_file(f) {}
+
+Expected FifoFile::create(StringRef path) {
+ auto file = fopen(path.data(), "
DavidSpickett wrote:
A few tests still failing on Windows -
https://lab.llvm.org/buildbot/#/builders/141/builds/8523
```
Unresolved Tests (1):
lldb-api :: tools/lldb-dap/send-event/TestDAP_sendEvent.py
Failed Tests (2):
lldb-a
@@ -36,34 +39,49 @@ int main() {
}
// CHECK-LABEL: process status -d
-// CHECK: m_stop_id: 2
-// CHECK: m_memory_id: 0
+// CHECK: m_stop_id: [[#STOP_ID:]]
+// CHECK: m_memory_id: [[#MEMORY_ID:]]
// CHECK-LABEL: expr x.i != 42
// IDs are not changed when executing simple ex
@@ -36,34 +39,49 @@ int main() {
}
// CHECK-LABEL: process status -d
-// CHECK: m_stop_id: 2
-// CHECK: m_memory_id: 0
+// CHECK: m_stop_id: [[#STOP_ID:]]
+// CHECK: m_memory_id: [[#MEMORY_ID:]]
// CHECK-LABEL: expr x.i != 42
// IDs are not changed when executing simple ex
https://github.com/DavidSpickett approved this pull request.
LGTM, thanks!
https://github.com/llvm/llvm-project/pull/138941
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
real-mikhail wrote:
Thanks for checking @DavidSpickett. Could you please merge this PR for me?
https://github.com/llvm/llvm-project/pull/138941
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/ll
https://github.com/Michael137 closed
https://github.com/llvm/llvm-project/pull/138297
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Charles Zablit
Date: 2025-05-08T12:21:26+01:00
New Revision: 0d47a4548c17b320e02e33a1e250792626652e59
URL:
https://github.com/llvm/llvm-project/commit/0d47a4548c17b320e02e33a1e250792626652e59
DIFF:
https://github.com/llvm/llvm-project/commit/0d47a4548c17b320e02e33a1e250792626652e59.diff
Author: Ely Ronnen
Date: 2025-05-08T14:01:42+02:00
New Revision: 41321416815d74a4a7fd15c78fcfa5af457625bb
URL:
https://github.com/llvm/llvm-project/commit/41321416815d74a4a7fd15c78fcfa5af457625bb
DIFF:
https://github.com/llvm/llvm-project/commit/41321416815d74a4a7fd15c78fcfa5af457625bb.diff
LO
https://github.com/eronnen closed
https://github.com/llvm/llvm-project/pull/137904
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/eronnen approved this pull request.
https://github.com/llvm/llvm-project/pull/138987
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Dmitry Vasilyev
Date: 2025-05-08T11:22:37+04:00
New Revision: e18f248956b317f06f7822920c72d7a2eebcd267
URL:
https://github.com/llvm/llvm-project/commit/e18f248956b317f06f7822920c72d7a2eebcd267
DIFF:
https://github.com/llvm/llvm-project/commit/e18f248956b317f06f7822920c72d7a2eebcd267.dif
https://github.com/slydiman closed
https://github.com/llvm/llvm-project/pull/138940
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/eronnen updated
https://github.com/llvm/llvm-project/pull/137426
>From 84638973a3592411025d5294d1f0e93dddba3bf7 Mon Sep 17 00:00:00 2001
From: Ely Ronnen
Date: Sat, 26 Apr 2025 01:22:05 +0200
Subject: [PATCH] Migrating breakpointLocations request to use typed
RequestHandler
https://github.com/oontvoo updated
https://github.com/llvm/llvm-project/pull/139002
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,sans-s
https://github.com/oontvoo edited
https://github.com/llvm/llvm-project/pull/139002
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
felipepiovezan wrote:
Pushed your suggestion
> Lol, I think its this:
>
> https://github.com/llvm/llvm-project/blob/6babd63a4bbc094bee4ef8e75f95dccd32325c15/lldb/source/Plugins/ObjectFile/Minidump/MinidumpFileBuilder.cpp#L718-L721
>
> I'm done for this week, but could someone try if changing
felipepiovezan wrote:
@eronnen this is breaking the incremental green dragon bots.
Could you revert while you look at this please?
https://ci.swift.org/view/all/job/llvm.org/job/as-lldb-cmake/25425/changes#41321416815d74a4a7fd15c78fcfa5af457625bb
```
[2025-05-08T12:15:32.021Z]
==
Author: Felipe de Azevedo Piovezan
Date: 2025-05-08T07:27:09-07:00
New Revision: bbafa5214e8d5d5daf7cf428780500b13a7d6cbb
URL:
https://github.com/llvm/llvm-project/commit/bbafa5214e8d5d5daf7cf428780500b13a7d6cbb
DIFF:
https://github.com/llvm/llvm-project/commit/bbafa5214e8d5d5daf7cf428780500b13
Author: John Harrison
Date: 2025-05-08T08:43:41-07:00
New Revision: 155bf37ad995fa07baf99ad59294ec5fe2777635
URL:
https://github.com/llvm/llvm-project/commit/155bf37ad995fa07baf99ad59294ec5fe2777635
DIFF:
https://github.com/llvm/llvm-project/commit/155bf37ad995fa07baf99ad59294ec5fe2777635.diff
hapee wrote:
Hi @JDevlieghere @jinmingjian , all required checks have passed and the PR has
received approvals. Would you mind helping merge this PR? Thanks!
https://github.com/llvm/llvm-project/pull/137515
___
lldb-commits mailing list
lldb-com
https://github.com/JDevlieghere closed
https://github.com/llvm/llvm-project/pull/137515
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Zax
Date: 2025-05-08T07:01:16-07:00
New Revision: b5674cb7be1b010be181883601a3674ceef38683
URL:
https://github.com/llvm/llvm-project/commit/b5674cb7be1b010be181883601a3674ceef38683
DIFF:
https://github.com/llvm/llvm-project/commit/b5674cb7be1b010be181883601a3674ceef38683.diff
LOG: [lld
Jlalond wrote:
@clayborg, @dmpots bump if you have time
https://github.com/llvm/llvm-project/pull/138169
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/ashgti closed
https://github.com/llvm/llvm-project/pull/138987
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
eronnen wrote:
@felipepiovezan thanks for the temp fix, I'll try to understand the problem
soon
https://github.com/llvm/llvm-project/pull/137904
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo
slydiman wrote:
The following buildbots are broken by this patch too
https://lab.llvm.org/buildbot/#/builders/195/builds/8715
https://lab.llvm.org/buildbot/#/builders/197/builds/5054
Please fix ASAP.
https://github.com/llvm/llvm-project/pull/137904
___
@@ -44,6 +44,48 @@ def step_out_with_scripted_plan(self, name):
stop_desc = thread.GetStopDescription(1000)
self.assertIn("Stepping out from", stop_desc, "Got right description")
+def run_until_branch_instruction(self):
+self.build()
+(targe
https://github.com/kuilpd updated
https://github.com/llvm/llvm-project/pull/138551
>From cfe7359bd16c1e87932e2ebb8bcdfc88130e9729 Mon Sep 17 00:00:00 2001
From: Ilia Kuklin
Date: Wed, 30 Apr 2025 22:03:50 +0500
Subject: [PATCH 1/4] [LLDB] Add array subscription and integer parsing to DIL
---
https://github.com/JDevlieghere closed
https://github.com/llvm/llvm-project/pull/139021
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
kuilpd wrote:
> Because I wanted to avoid this getting bogged down in the discussion about
> the types of numbers. I don't really mind the "extra capability" of indexing
> an array with a another variable. The part I have problem with is the
> precedent it sets about the representation of numb
eronnen wrote:
@slydiman Seems this worker is `aarch64` so this test should be disabled after
@felipepiovezan 's fix.
https://github.com/llvm/llvm-project/pull/137904
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi
https://github.com/oontvoo updated
https://github.com/llvm/llvm-project/pull/139002
>From 5746e997eea55c05cbbb63ad6f78ca225c9ac855 Mon Sep 17 00:00:00 2001
From: Vy Nguyen
Date: Wed, 7 May 2025 21:37:31 -0400
Subject: [PATCH 1/4] [lldb]Make `list` command work with headers when
possible.
---
@@ -1170,8 +1171,37 @@ class CommandObjectSourceList : public
CommandObjectParsed {
if (m_options.num_lines == 0)
m_options.num_lines = 10;
const uint32_t column = 0;
+
+ // Headers aren't always in the DWARF but if they have
+
github-actions[bot] wrote:
@hapee Congratulations on having your first Pull Request (PR) merged into
the LLVM Project!
Your changes will be combined with recent changes from other authors, then
tested by our [build bots](https://lab.llvm.org/buildbot/). If there is a
problem with a buil
https://github.com/oontvoo edited
https://github.com/llvm/llvm-project/pull/139002
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Felipe de Azevedo Piovezan
Date: 2025-05-08T08:11:17-07:00
New Revision: cb0b9614f8ca7ffcd5f091b1c9990adfd6cb7e33
URL:
https://github.com/llvm/llvm-project/commit/cb0b9614f8ca7ffcd5f091b1c9990adfd6cb7e33
DIFF:
https://github.com/llvm/llvm-project/commit/cb0b9614f8ca7ffcd5f091b1c9990adfd
felipepiovezan wrote:
To fix the bots, I've disabled your new test in all non x86 archs, feel free to
update if you want to do something else
https://github.com/llvm/llvm-project/pull/137904
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
ht
@@ -1170,8 +1171,37 @@ class CommandObjectSourceList : public
CommandObjectParsed {
if (m_options.num_lines == 0)
m_options.num_lines = 10;
const uint32_t column = 0;
+
+ // Headers aren't always in the DWARF but if they have
+
https://github.com/oontvoo edited
https://github.com/llvm/llvm-project/pull/139002
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Jonas Devlieghere
Date: 2025-05-08T09:09:46-07:00
New Revision: 45cd708184e114bb771330d51ec552f7f674ffa0
URL:
https://github.com/llvm/llvm-project/commit/45cd708184e114bb771330d51ec552f7f674ffa0
DIFF:
https://github.com/llvm/llvm-project/commit/45cd708184e114bb771330d51ec552f7f674ffa0.d
@@ -0,0 +1,58 @@
+## Test that `list header.h:` works correctly when header is available.
+##
+# REQUIRES: x86
bulbazord wrote:
Why does this test require x86?
https://github.com/llvm/llvm-project/pull/139002
___
lldb
@@ -183,7 +194,7 @@ struct Configuration {
/// Specify a source path to remap "./" to allow full paths to be used when
/// setting breakpoints in binaries that have relative source paths.
- std::optional sourcePath;
+ std::string sourcePath = "";
ashgti
@@ -10,183 +10,133 @@
#include "EventHelper.h"
#include "JSONUtils.h"
#include "LLDBUtils.h"
+#include "Protocol/ProtocolRequests.h"
#include "RequestHandler.h"
+#include "lldb/API/SBAttachInfo.h"
#include "lldb/API/SBListener.h"
+#include "lldb/lldb-defines.h"
+#include "llv
@@ -1170,10 +1171,41 @@ class CommandObjectSourceList : public
CommandObjectParsed {
if (m_options.num_lines == 0)
m_options.num_lines = 10;
const uint32_t column = 0;
+
+ // Headers aren't always in the DWARF but if they have
+
https://github.com/oontvoo updated
https://github.com/llvm/llvm-project/pull/139002
>From 5746e997eea55c05cbbb63ad6f78ca225c9ac855 Mon Sep 17 00:00:00 2001
From: Vy Nguyen
Date: Wed, 7 May 2025 21:37:31 -0400
Subject: [PATCH 1/5] [lldb]Make `list` command work with headers when
possible.
---
@@ -0,0 +1,58 @@
+## Test that `list header.h:` works correctly when header is available.
+##
+# REQUIRES: x86
oontvoo wrote:
removed
https://github.com/llvm/llvm-project/pull/139002
___
lldb-commits mailing list
lldb
@@ -1170,10 +1171,41 @@ class CommandObjectSourceList : public
CommandObjectParsed {
if (m_options.num_lines == 0)
m_options.num_lines = 10;
const uint32_t column = 0;
+
+ // Headers aren't always in the DWARF but if they have
+
https://github.com/jimingham created
https://github.com/llvm/llvm-project/pull/139192
This test is failing because when we step to what is the branch island address
and ask for its symbol, we can't resolve the symbol, and just call it the last
padding symbol plus a bajillion.
That has nothing
https://github.com/jasonmolenda updated
https://github.com/llvm/llvm-project/pull/138805
>From 4fc9acd03a58a3617b113352c48e5dd2fdb58eda Mon Sep 17 00:00:00 2001
From: Jason Molenda
Date: Tue, 6 May 2025 22:37:17 -0700
Subject: [PATCH 1/7] [lldb] Provide lr value in faulting frame on arm64
When
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: None (jimingham)
Changes
This test is failing because when we step to what is the branch island address
and ask for its symbol, we can't resolve the symbol, and just call it the last
padding symbol plus a bajillion.
That has nothing to do
https://github.com/jimingham closed
https://github.com/llvm/llvm-project/pull/139192
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/jasonmolenda updated
https://github.com/llvm/llvm-project/pull/138805
>From 4fc9acd03a58a3617b113352c48e5dd2fdb58eda Mon Sep 17 00:00:00 2001
From: Jason Molenda
Date: Tue, 6 May 2025 22:37:17 -0700
Subject: [PATCH 1/6] [lldb] Provide lr value in faulting frame on arm64
When
Author: jimingham
Date: 2025-05-08T18:37:43-07:00
New Revision: 74120d0a389584bd8d74073fb0c0b80af29f0a4c
URL:
https://github.com/llvm/llvm-project/commit/74120d0a389584bd8d74073fb0c0b80af29f0a4c
DIFF:
https://github.com/llvm/llvm-project/commit/74120d0a389584bd8d74073fb0c0b80af29f0a4c.diff
LOG
https://github.com/JDevlieghere updated
https://github.com/llvm/llvm-project/pull/139167
>From 724a9e9a13de896e43935b2c77e8398a3ed318c5 Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere
Date: Thu, 8 May 2025 15:47:22 -0700
Subject: [PATCH] [lldb-dap] Move the event and progress event threads int
ashgti wrote:
Yea, the address is being encoded as an plain integer not a hex string here
https://github.com/llvm/llvm-project/blob/fa43e8f7de534984bc56b6319b72fd8ad422cbdf/lldb/tools/lldb-dap/JSONUtils.cpp#L492-L494
We can follow up with other adjustments to either the data.
https://github.co
Author: John Harrison
Date: 2025-05-08T15:25:28-07:00
New Revision: 611d81bd9304768f3cdb101d37c81d36b9762723
URL:
https://github.com/llvm/llvm-project/commit/611d81bd9304768f3cdb101d37c81d36b9762723
DIFF:
https://github.com/llvm/llvm-project/commit/611d81bd9304768f3cdb101d37c81d36b9762723.diff
https://github.com/ashgti closed
https://github.com/llvm/llvm-project/pull/138977
___
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: None (jimingham)
Changes
This patch allows lldb to step in across "branch islands" which is the Darwin
linker's way of dealing with immediate branches to targets that are too far
away for the immediate slot to make the jump.
I submitted t
https://github.com/jimingham closed
https://github.com/llvm/llvm-project/pull/139178
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/jasonmolenda updated
https://github.com/llvm/llvm-project/pull/138805
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,s
https://github.com/jasonmolenda updated
https://github.com/llvm/llvm-project/pull/138805
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,s
https://github.com/Jlalond updated
https://github.com/llvm/llvm-project/pull/137041
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,sans-s
https://github.com/Jlalond edited
https://github.com/llvm/llvm-project/pull/137041
___
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: Jacob Lalonde (Jlalond)
Changes
This the actual PR to my [SEIZE
RFC](https://discourse.llvm.org/t/rfc-ptrace-seize-when-attaching-to-dead-processes/85825/8).
This is currently the bare bones on seizing a dead process, and being able to
at
https://github.com/Jlalond ready_for_review
https://github.com/llvm/llvm-project/pull/137041
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Jlalond wrote:
@labath @DavidSpickett Thanks for the patience.
I've broken down my prototype, and this is now patch 2, where we implement the
SEIZE functionality. I will follow up with making it so we can't resume the
process when we're in this state.
@DavidSpickett you mentioned you wanted m
Author: Felipe de Azevedo Piovezan
Date: 2025-05-08T13:14:40-07:00
New Revision: 28156539a9df3fa0d9db47c405c0006fcee9f77f
URL:
https://github.com/llvm/llvm-project/commit/28156539a9df3fa0d9db47c405c0006fcee9f77f
DIFF:
https://github.com/llvm/llvm-project/commit/28156539a9df3fa0d9db47c405c0006fc
https://github.com/Jlalond updated
https://github.com/llvm/llvm-project/pull/137041
>From fa08811c7a90b9fd1c644b051ed3d7d1157243fe Mon Sep 17 00:00:00 2001
From: Jacob Lalonde
Date: Thu, 8 May 2025 12:56:14 -0700
Subject: [PATCH] Implement PTRACE_SEIZE when a process is coredumping
---
.../ll
https://github.com/Jlalond updated
https://github.com/llvm/llvm-project/pull/137041
>From 42365065305d190aec3206f5d3eb35095050fb69 Mon Sep 17 00:00:00 2001
From: Jacob Lalonde
Date: Thu, 8 May 2025 12:56:14 -0700
Subject: [PATCH] Implement PTRACE_SEIZE when a process is coredumping
---
.../Pr
https://github.com/eronnen updated
https://github.com/llvm/llvm-project/pull/137426
>From da044f5d5391f679cfbba4afc69b46dc30dc8fff Mon Sep 17 00:00:00 2001
From: Ely Ronnen
Date: Sat, 26 Apr 2025 01:22:05 +0200
Subject: [PATCH] Migrating breakpointLocations request to use typed
RequestHandler
eronnen wrote:
@felipepiovezan Sorry for the trouble, do you know if there's a way for me to
run the CI on arm/aarch64 before merging the PR next time?
https://github.com/llvm/llvm-project/pull/137904
___
lldb-commits mailing list
lldb-commits@lists.
https://github.com/Jlalond updated
https://github.com/llvm/llvm-project/pull/137041
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,sans-s
felipepiovezan wrote:
@eronnen my fix does not seem to have worked
https://github.com/llvm/llvm-project/pull/137904
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
felipepiovezan wrote:
Ah there were _two_ tests here. I've disabled the other one too.
https://github.com/llvm/llvm-project/pull/137904
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commi
felipepiovezan wrote:
28156539a9df 20250508 fpiove.. [lldb] Disable test using GetControlFlowKind on
arm (HEAD, llvm/main)
https://github.com/llvm/llvm-project/pull/137904
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https
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 HEAD~1...HEAD
lldb/test/API/macosx/branch-islands/TestBranchIslands.py
``
Vie
https://github.com/JDevlieghere created
https://github.com/llvm/llvm-project/pull/139167
Move the event and progress event threads into the DAP class. Currently both
are implemented in the InitializeRequestHandler, but it doesn't really belong
there because the threads are not tied to that req
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Jonas Devlieghere (JDevlieghere)
Changes
Move the event and progress event threads into the DAP class. Currently both
are implemented in the InitializeRequestHandler, but it doesn't really belong
there because the threads are not tied to t
https://github.com/royitaqi created
https://github.com/llvm/llvm-project/pull/139170
# Change
`SymbolFileDWARFDebugMap::CreateInstance()` will return `nullptr` if the file
is not a Mach-O.
# Benefit
This may improve **Linux** debugger launch time by skipping the creation of
`SymbolFileDWAR
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: None (royitaqi)
Changes
# Change
`SymbolFileDWARFDebugMap::CreateInstance()` will return `nullptr` if the file
is not a Mach-O.
# Benefit
This may improve **Linux** debugger launch time by skipping the creation of
`SymbolFileDWARFDebug
https://github.com/royitaqi edited
https://github.com/llvm/llvm-project/pull/139170
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/royitaqi edited
https://github.com/llvm/llvm-project/pull/139170
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/jimingham closed
https://github.com/llvm/llvm-project/pull/139191
___
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: None (jimingham)
Changes
When we get to the branch island, we don't see the symbol for
it.
The only other thing I can think of that would be a dsymutil bug?
Let's try this just with dwarf, and then I'll have to revert al
https://github.com/jasonmolenda updated
https://github.com/llvm/llvm-project/pull/138805
>From 4fc9acd03a58a3617b113352c48e5dd2fdb58eda Mon Sep 17 00:00:00 2001
From: Jason Molenda
Date: Tue, 6 May 2025 22:37:17 -0700
Subject: [PATCH 1/5] [lldb] Provide lr value in faulting frame on arm64
When
https://github.com/jimingham created
https://github.com/llvm/llvm-project/pull/139191
When we get to the branch island, we don't see the symbol for
it.
The only other thing I can think of that would be a dsymutil bug?
Let's try this just with dwarf, and then I'll have to rev
Author: jimingham
Date: 2025-05-08T18:22:10-07:00
New Revision: 803fd732ae634b49c308e88e9b508fdbff664034
URL:
https://github.com/llvm/llvm-project/commit/803fd732ae634b49c308e88e9b508fdbff664034
DIFF:
https://github.com/llvm/llvm-project/commit/803fd732ae634b49c308e88e9b508fdbff664034.diff
LOG
da-viper wrote:
LGTM,
Except the load address seems to be in decimal. It does not specify in the dap
specification if it is decimal or hex. I assume it is implementation based.
if it is the case we should show it as hex as that is default format for
address in lldb.
We could later extend
https://github.com/ashgti closed
https://github.com/llvm/llvm-project/pull/137911
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/royitaqi created
https://github.com/llvm/llvm-project/pull/139174
# Benefit
This patch fixes:
1. After `platform select ios-simulator`, `platform process list` will now
print processes which are running in the iOS simulator. Previously, no process
will be listed.
2. After `
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: None (royitaqi)
Changes
# Benefit
This patch fixes:
1. After `platform select ios-simulator`, `platform process list` will now
print processes which are running in the iOS simulator. Previously, no process
will be listed.
2. After `platfo
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 HEAD~1 HEAD --extensions h,cpp --
lldb/tools/lldb-dap/DAP.cpp lldb/tools/lldb-dap/DAP
1 - 100 of 131 matches
Mail list logo