From ce36ef63aa74c30016334db0f6a4638d1ffe7256 Mon Sep 17 00:00:00 2001 From: Guinevere Larsen Date: Thu, 14 Mar 2024 16:14:26 +0100 Subject: gdb: add "unwinder class" to frame unwinders A future patch will add a way to disable certain unwinders based on different characteristics. This patch aims to make it more convenient to disable related unwinders in bulk, such as architecture specific ones, by identifying all unwinders by which part of the code adds it. The classes, and explanations, are as follows: * GDB: An internal unwinder, added by GDB core, such as the unwinder for dummy frames; * EXTENSION: Unwinders added by extension languages; * DEBUGINFO: Unwinders installed by the debug info reader; * ARCH: Unwinders installed by the architecture specific code. Reviewed-By: Eli Zaretskii Reviewed-by: Thiago Jung Bauermann Approved-By: Simon Marchi Approved-By: Andrew Burgess --- gdb/python/py-unwind.c | 1 + 1 file changed, 1 insertion(+) (limited to 'gdb/python/py-unwind.c') diff --git a/gdb/python/py-unwind.c b/gdb/python/py-unwind.c index c1a01bf..9d9b048 100644 --- a/gdb/python/py-unwind.c +++ b/gdb/python/py-unwind.c @@ -985,6 +985,7 @@ pyuw_on_new_gdbarch (gdbarch *newarch) unwinder->name = "python"; unwinder->type = NORMAL_FRAME; + unwinder->unwinder_class = FRAME_UNWIND_EXTENSION; unwinder->stop_reason = default_frame_unwind_stop_reason; unwinder->this_id = pyuw_this_id; unwinder->prev_register = pyuw_prev_register; -- cgit v1.1