https://github.com/tstellar updated
https://github.com/llvm/llvm-project/pull/155274
>From 57697a66cfdddf2028c7260f1ce61ecacc550d00 Mon Sep 17 00:00:00 2001
From: Tom Stellard
Date: Mon, 25 Aug 2025 17:15:36 +
Subject: [PATCH 01/69] Add AArch64 support to the premerge tests
---
.github/wo
@@ -513,6 +518,63 @@ llvm::json::Value DebuggerStats::ReportStatistics(
return std::move(global_stats);
}
+void TargetStats::SetFirstBtTime(lldb::ProcessSP process_sp, Thread &thread) {
+ if (m_first_bt_time_set)
+return;
+
+ // Our goal here is to calculate the total
https://github.com/jimingham updated
https://github.com/llvm/llvm-project/pull/162370
>From ee58ec0f67b5ef70d7c11756f5931ad08ed7c4dc Mon Sep 17 00:00:00 2001
From: Jim Ingham
Date: Tue, 7 Oct 2025 13:44:45 -0700
Subject: [PATCH 1/5] Make
SBBreakpoint/SBBreakpointLocation.SetCondition(nullptr)
https://github.com/igorkudrin edited
https://github.com/llvm/llvm-project/pull/161982
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/jimingham updated
https://github.com/llvm/llvm-project/pull/162370
>From ee58ec0f67b5ef70d7c11756f5931ad08ed7c4dc Mon Sep 17 00:00:00 2001
From: Jim Ingham
Date: Tue, 7 Oct 2025 13:44:45 -0700
Subject: [PATCH 1/2] Make
SBBreakpoint/SBBreakpointLocation.SetCondition(nullptr)
@@ -143,6 +148,73 @@ static void PrintVersion() {
llvm::outs() << "liblldb: " << lldb::SBDebugger::GetVersionString() << '\n';
}
+#if not defined(_WIN32)
+struct FDGroup {
+ std::vector fds;
+ bool read = false;
+ bool write = false;
+};
+
+static llvm::Error RedirectToFi
@@ -0,0 +1,85 @@
+//===-- BreakpointClearConditionTest.cpp
+//===//
+//
+// 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-Ide
@@ -513,6 +518,63 @@ llvm::json::Value DebuggerStats::ReportStatistics(
return std::move(global_stats);
}
+void TargetStats::SetFirstBtTime(lldb::ProcessSP process_sp, Thread &thread) {
+ if (m_first_bt_time_set)
clayborg wrote:
use `std::once` with the `s
@@ -513,6 +518,63 @@ llvm::json::Value DebuggerStats::ReportStatistics(
return std::move(global_stats);
}
+void TargetStats::SetFirstBtTime(lldb::ProcessSP process_sp, Thread &thread) {
clayborg wrote:
No need to pass a process into this function, the threa