https://github.com/JDevlieghere updated
https://github.com/llvm/llvm-project/pull/111911
>From 55eab57c695d4be99305d2b6cee0c4f44261a473 Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere
Date: Thu, 10 Oct 2024 14:39:44 -0700
Subject: [PATCH 1/2] [lldb] Log errors to the system log if they would
https://github.com/JDevlieghere updated
https://github.com/llvm/llvm-project/pull/111911
>From 55eab57c695d4be99305d2b6cee0c4f44261a473 Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere
Date: Thu, 10 Oct 2024 14:39:44 -0700
Subject: [PATCH 1/3] [lldb] Log errors to the system log if they would
jasonmolenda wrote:
Thanks for all the work you've done on this, and updating the setting. I
looked over the implementations, and they all look like reasonable changes to
me - I did laugh a little when I realized that 2/3rds of all the changes were
related to adding the setting :) that's alwa
grandinj wrote:
Windows system log :
https://learn.microsoft.com/en-us/windows/win32/Events/windows-events
https://github.com/llvm/llvm-project/pull/112052
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailma
@@ -151,3 +151,19 @@ bool DWARFIndex::ProcessTypeDIEMatchQuery(
return true;
return callback(die);
}
+
+void DWARFIndex::GetNamespacesWithParents(
+ConstString name, const CompilerDeclContext &parent_decl_ctx,
+llvm::function_ref callback) {
+ GetNamespaces(name,
@@ -565,6 +565,48 @@ void DebugNamesDWARFIndex::GetTypesWithQuery(
m_fallback.GetTypesWithQuery(query, callback);
}
+void DebugNamesDWARFIndex::GetNamespacesWithParents(
+ConstString name, const CompilerDeclContext &parent_decl_ctx,
+llvm::function_ref callback) {
+
@@ -71,6 +71,14 @@ class DWARFIndex {
virtual void
GetTypesWithQuery(TypeQuery &query,
llvm::function_ref callback);
+ /// Get namespace DIEs whose base name match \param name with \param
jeffreytan81 wrote:
There is no `query` in `Get
https://github.com/jeffreytan81 updated
https://github.com/llvm/llvm-project/pull/110062
>From c5bbc5f17dd5039fb9d5a01ade2397afd5d4c967 Mon Sep 17 00:00:00 2001
From: jeffreytan81
Date: Tue, 24 Sep 2024 14:43:44 -0700
Subject: [PATCH 1/2] Improve namespace lookup
---
.../Plugins/SymbolFile/DW
DhruvSrivastavaX wrote:
Okay sure.
Thats not a problem Pavel, better to have it in smaller understandable pieces,
so that it can be organised and reviewed properly.
There are a couple of incoming code with such huge changes, it will be good to
adhere to this systematic approach.
So, I wil
https://github.com/adrian-prantl updated
https://github.com/llvm/llvm-project/pull/112109
>From e60c7d3313748bc3147be188e2243f271d71d19a Mon Sep 17 00:00:00 2001
From: Adrian Prantl
Date: Fri, 11 Oct 2024 19:27:37 -0700
Subject: [PATCH] [lldb] Expose structured command diagnostics via the SBAPI
10 matches
Mail list logo