mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-11-16 12:34:43 +00:00
When debugging functions where a callee-saved register is moved to a
register of a larger size (e.g., a 64-bit general-purpose register to
a 128-bit vector register), GDB would crash when the user issued the
"return" command. For example:
ldgr %f0, %r11 ; Move 64-bit general-purpose register (r11)
; to 128-bit vector register (f0)
.cfi_register r11, f0 ; DW_CFA_register: r11 is stored in f0
...
lgdr %r11, %f0 ; Restore r11 from f0
.cfi_restore r11 ; DW_CFA_restore: r11 is restored to its original
; register
(This example uses instructions and registers for the S390x architecture,
where this bug was originally found.)
If GDB is stopped in the "..." section and the user issues the
"return" command, GDB crashes due to a buffer size mismatch during
unwinding. Specifically, in frame_register_unwind in frame.c, a
buffer the size of the original register (the 64-bit r11 in this
example) has been allocated and GDB would like to use memcpy to copy
the contents of the register where the original register was saved
(the 128-bit f0) to the buffer for the original register. But,
fortunately, GDB has an assertion which prevents this from happening:
gdb_assert (buffer.size () >= value->type ()->length ());
This patch ensures that GDB uses the original register's type (e.g.,
r11's type) when unwinding, even if it was marked as saved to a differently
typed/sized register (e.g., f0) via .cfi_register (DW_CFA_register).
The fix adds a 'struct type *' parameter to value_of_register_lazy() to
explicitly track the original register's type. The function
frame_unwind_got_register is updated to pass the correct type for the
original register.
The call chain from frame_register_unwind to frame_unwind_got_register
is shown by this backtrace:
#0 frame_unwind_got_register (frame=..., regnum=13, new_regnum=128)
at gdb/frame-unwind.c:300
#1 0x000000000135d894 in dwarf2_frame_prev_register (this_frame=...,
this_cache=0x2204528, regnum=13)
at gdb/dwarf2/frame.c:1187
#2 0x00000000014d9186 in frame_unwind_legacy::prev_register (
this=0x211f428 <dwarf2_frame_unwind>, this_frame=...,
this_prologue_cache=0x2204528, regnum=13) at gdb/frame-unwind.c:401
#3 0x00000000014e1d12 in frame_unwind_register_value (next_frame=...,
regnum=13) at gdb/frame.c:1263
#4 0x00000000014e16b8 in frame_register_unwind (next_frame=..., regnum=13,
optimizedp=0x3ffffff813c, unavailablep=0x3ffffff8138,
lvalp=0x3ffffff8134, addrp=0x3ffffff8128, realnump=0x3ffffff8124,
buffer=...) at gdb/frame.c:1189
The register numbers shown above are for s390x. On s390x,
S390_R11_REGNUM has value 13. Vector registers (like f0) are numbered
differently from floating-point registers of the same name, leading to
regnum 128 for f0 despite S390_F0_REGNUM being assigned a different
value in s390-tdep.h.
New test cases for aarch64 and x86_64 check for this on more popular
architectures and also without dependency on a particular compiler to
generate an unusual prologue in which a general purpose register is
being moved to a vector register. In both cases, the test simulates
the bug found on s390x where a 64-bit frame pointer was being moved to
a much wider vector register. These test cases will cause an internal
error on their respective architecture, but will pass with this fix in
place.
When tested on s390x linux (native), this change fixes 59 GDB internal
errors and around 200 failures overall. This is the list of internal
errors that no longer occur on s390x:
FAIL: gdb.base/call-sc.exp: tc: return foo; return call-sc-tc (GDB internal error)
FAIL: gdb.base/call-sc.exp: td: return foo; return call-sc-td (GDB internal error)
FAIL: gdb.base/call-sc.exp: te: return foo; return call-sc-te (GDB internal error)
FAIL: gdb.base/call-sc.exp: tf: return foo; return call-sc-tf (GDB internal error)
FAIL: gdb.base/call-sc.exp: ti: return foo; return call-sc-ti (GDB internal error)
FAIL: gdb.base/call-sc.exp: tl: return foo; return call-sc-tl (GDB internal error)
FAIL: gdb.base/call-sc.exp: tld: return foo; return call-sc-tld (GDB internal error)
FAIL: gdb.base/call-sc.exp: tll: return foo; return call-sc-tll (GDB internal error)
FAIL: gdb.base/call-sc.exp: ts: return foo; return call-sc-ts (GDB internal error)
FAIL: gdb.base/gnu_vector.exp: return from vector-valued function (GDB internal error)
FAIL: gdb.base/return-3.exp: in foo: return (GDB internal error)
FAIL: gdb.base/return-nodebug.exp: double: return from function with no debug info with a cast (GDB internal error)
FAIL: gdb.base/return-nodebug.exp: float: return from function with no debug info with a cast (GDB internal error)
FAIL: gdb.base/return-nodebug.exp: int: return from function with no debug info with a cast (GDB internal error)
FAIL: gdb.base/return-nodebug.exp: long-long: return from function with no debug info with a cast (GDB internal error)
FAIL: gdb.base/return-nodebug.exp: long: return from function with no debug info with a cast (GDB internal error)
FAIL: gdb.base/return-nodebug.exp: short: return from function with no debug info with a cast (GDB internal error)
FAIL: gdb.base/return-nodebug.exp: signed-char: return from function with no debug info with a cast (GDB internal error)
FAIL: gdb.base/return.exp: return value 5 (GDB internal error)
FAIL: gdb.base/return.exp: return value 5.0 (GDB internal error)
FAIL: gdb.base/return2.exp: return from char_func (GDB internal error)
FAIL: gdb.base/return2.exp: return from double_func (GDB internal error)
FAIL: gdb.base/return2.exp: return from float_func (GDB internal error)
FAIL: gdb.base/return2.exp: return from int_func (GDB internal error)
FAIL: gdb.base/return2.exp: return from long_func (GDB internal error)
FAIL: gdb.base/return2.exp: return from long_long_func (GDB internal error)
FAIL: gdb.base/return2.exp: return from short_func (GDB internal error)
FAIL: gdb.base/return2.exp: return from void_func (GDB internal error)
FAIL: gdb.base/sigstep.exp: return from handleri: leave handler (GDB internal error)
FAIL: gdb.base/structs.exp: types=tc-ti: return foo<n>; return 2 structs-tc-ti (GDB internal error)
FAIL: gdb.base/structs.exp: types=tc-tl: return foo<n>; return 2 structs-tc-tl (GDB internal error)
FAIL: gdb.base/structs.exp: types=tc-ts: return foo<n>; return 2 structs-tc-ts (GDB internal error)
FAIL: gdb.base/structs.exp: types=tc: return foo<n>; return 1 structs-tc (GDB internal error)
FAIL: gdb.base/structs.exp: types=tc: return foo<n>; return 2 structs-tc (GDB internal error)
FAIL: gdb.base/structs.exp: types=tc: return foo<n>; return 3 structs-tc (GDB internal error)
FAIL: gdb.base/structs.exp: types=tc: return foo<n>; return 4 structs-tc (GDB internal error)
FAIL: gdb.base/structs.exp: types=tc: return foo<n>; return 5 structs-tc (GDB internal error)
FAIL: gdb.base/structs.exp: types=tc: return foo<n>; return 6 structs-tc (GDB internal error)
FAIL: gdb.base/structs.exp: types=tc: return foo<n>; return 7 structs-tc (GDB internal error)
FAIL: gdb.base/structs.exp: types=tc: return foo<n>; return 8 structs-tc (GDB internal error)
FAIL: gdb.base/structs.exp: types=td-tf: return foo<n>; return 2 structs-td-tf (GDB internal error)
FAIL: gdb.base/structs.exp: types=td: return foo<n>; return 1 structs-td (GDB internal error)
FAIL: gdb.base/structs.exp: types=tf-tc: return foo<n>; return 2 structs-tf-tc (GDB internal error)
FAIL: gdb.base/structs.exp: types=tf-td: return foo<n>; return 2 structs-tf-td (GDB internal error)
FAIL: gdb.base/structs.exp: types=tf: return foo<n>; return 1 structs-tf (GDB internal error)
FAIL: gdb.base/structs.exp: types=tf: return foo<n>; return 2 structs-tf (GDB internal error)
FAIL: gdb.base/structs.exp: types=ti-tc: return foo<n>; return 2 structs-ti-tc (GDB internal error)
FAIL: gdb.base/structs.exp: types=ti: return foo<n>; return 1 structs-ti (GDB internal error)
FAIL: gdb.base/structs.exp: types=ti: return foo<n>; return 2 structs-ti (GDB internal error)
FAIL: gdb.base/structs.exp: types=tl-tc: return foo<n>; return 2 structs-tl-tc (GDB internal error)
FAIL: gdb.base/structs.exp: types=tl: return foo<n>; return 1 structs-tl (GDB internal error)
FAIL: gdb.base/structs.exp: types=tl: return foo<n>; return 2 structs-tl (GDB internal error)
FAIL: gdb.base/structs.exp: types=tld: return foo<n>; return 1 structs-tld (GDB internal error)
FAIL: gdb.base/structs.exp: types=tll: return foo<n>; return 1 structs-tll (GDB internal error)
FAIL: gdb.base/structs.exp: types=ts-tc: return foo<n>; return 2 structs-ts-tc (GDB internal error)
FAIL: gdb.base/structs.exp: types=ts: return foo<n>; return 1 structs-ts (GDB internal error)
FAIL: gdb.base/structs.exp: types=ts: return foo<n>; return 2 structs-ts (GDB internal error)
FAIL: gdb.base/structs.exp: types=ts: return foo<n>; return 3 structs-ts (GDB internal error)
FAIL: gdb.base/structs.exp: types=ts: return foo<n>; return 4 structs-ts (GDB internal error)
I have tested this commit on Fedora Linux, with architectures s390x,
x86_64, x86_64/-m32, aarch64, ppc64le, and riscv64, with no
regressions found.
This v2 version makes some changes suggested by Andrew Burgess: It
adds an assert to frame_unwind_got_register() and always passes the
type of REGNUM to value_of_register_lazy(). It also updates value.h's
comment describing value_of_register_lazy().
In his approval message, Andrew requested some changes to the tests.
Those have been made exactly as requested.
Approved-By: Andrew Burgess <aburgess@redhat.com>
683 lines
21 KiB
C
683 lines
21 KiB
C
/* Definitions for frame unwinder, for GDB, the GNU debugger.
|
|
|
|
Copyright (C) 2003-2025 Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#include "extract-store-integer.h"
|
|
#include "frame.h"
|
|
#include "frame-unwind.h"
|
|
#include "dummy-frame.h"
|
|
#include "inline-frame.h"
|
|
#include "value.h"
|
|
#include "regcache.h"
|
|
#include "gdbsupport/gdb_obstack.h"
|
|
#include "target.h"
|
|
#include "gdbarch.h"
|
|
#include "dwarf2/frame-tailcall.h"
|
|
#include "cli/cli-cmds.h"
|
|
#include "cli/cli-option.h"
|
|
#include "inferior.h"
|
|
|
|
/* Conversion list between the enum for frame_unwind_class and
|
|
string. */
|
|
static const char * unwind_class_conversion[] =
|
|
{
|
|
"GDB",
|
|
"EXTENSION",
|
|
"DEBUGINFO",
|
|
"ARCH",
|
|
nullptr
|
|
};
|
|
|
|
/* Default sniffers, that must always be the first in the unwinder list,
|
|
no matter the architecture. */
|
|
static constexpr std::initializer_list<const frame_unwind *>
|
|
standard_unwinders =
|
|
{
|
|
&dummy_frame_unwind,
|
|
#if defined(DWARF_FORMAT_AVAILABLE)
|
|
/* The DWARF tailcall sniffer must come before the inline sniffer.
|
|
Otherwise, we can end up in a situation where a DWARF frame finds
|
|
tailcall information, but then the inline sniffer claims a frame
|
|
before the tailcall sniffer, resulting in confusion. This is
|
|
safe to do always because the tailcall sniffer can only ever be
|
|
activated if the newer frame was created using the DWARF
|
|
unwinder, and it also found tailcall information. */
|
|
&dwarf2_tailcall_frame_unwind,
|
|
#endif
|
|
&inline_frame_unwind,
|
|
};
|
|
|
|
/* If an unwinder should be prepended to the list, this is the
|
|
index in which it should be inserted. */
|
|
static constexpr int prepend_unwinder_index = standard_unwinders.size ();
|
|
|
|
static const registry<gdbarch>::key<std::vector<const frame_unwind *>>
|
|
frame_unwind_data;
|
|
|
|
/* Retrieve the list of frame unwinders available in GDBARCH.
|
|
If this list is empty, it is initialized before being returned. */
|
|
static std::vector<const frame_unwind *> &
|
|
get_frame_unwind_table (struct gdbarch *gdbarch)
|
|
{
|
|
std::vector<const frame_unwind *> *table = frame_unwind_data.get (gdbarch);
|
|
if (table == nullptr)
|
|
table = frame_unwind_data.emplace (gdbarch,
|
|
standard_unwinders.begin (),
|
|
standard_unwinders.end ());
|
|
return *table;
|
|
}
|
|
|
|
static const char *
|
|
frame_unwinder_class_str (frame_unwind_class uclass)
|
|
{
|
|
gdb_assert (uclass < UNWIND_CLASS_NUMBER);
|
|
return unwind_class_conversion[uclass];
|
|
}
|
|
|
|
/* Case insensitive search for a frame_unwind_class based on the given
|
|
string. */
|
|
static enum frame_unwind_class
|
|
str_to_frame_unwind_class (const char *class_str)
|
|
{
|
|
for (int i = 0; i < UNWIND_CLASS_NUMBER; i++)
|
|
{
|
|
if (strcasecmp (unwind_class_conversion[i], class_str) == 0)
|
|
return (frame_unwind_class) i;
|
|
}
|
|
|
|
error (_("Unknown frame unwind class: %s"), class_str);
|
|
}
|
|
|
|
void
|
|
frame_unwind_prepend_unwinder (struct gdbarch *gdbarch,
|
|
const struct frame_unwind *unwinder)
|
|
{
|
|
std::vector<const frame_unwind *> &table = get_frame_unwind_table (gdbarch);
|
|
|
|
table.insert (table.begin () + prepend_unwinder_index, unwinder);
|
|
}
|
|
|
|
void
|
|
frame_unwind_append_unwinder (struct gdbarch *gdbarch,
|
|
const struct frame_unwind *unwinder)
|
|
{
|
|
get_frame_unwind_table (gdbarch).push_back (unwinder);
|
|
}
|
|
|
|
/* Call SNIFFER from UNWINDER. If it succeeded set UNWINDER for
|
|
THIS_FRAME and return true. Otherwise the function keeps THIS_FRAME
|
|
unchanged and returns false. */
|
|
|
|
static bool
|
|
frame_unwind_try_unwinder (const frame_info_ptr &this_frame, void **this_cache,
|
|
const struct frame_unwind *unwinder)
|
|
{
|
|
int res = 0;
|
|
|
|
unsigned int entry_generation = get_frame_cache_generation ();
|
|
|
|
frame_prepare_for_sniffer (this_frame, unwinder);
|
|
|
|
try
|
|
{
|
|
frame_debug_printf ("trying unwinder \"%s\"", unwinder->name ());
|
|
res = unwinder->sniff (this_frame, this_cache);
|
|
}
|
|
catch (const gdb_exception &ex)
|
|
{
|
|
frame_debug_printf ("caught exception: %s", ex.message->c_str ());
|
|
|
|
/* Catch all exceptions, caused by either interrupt or error.
|
|
Reset *THIS_CACHE, unless something reinitialized the frame
|
|
cache meanwhile, in which case THIS_FRAME/THIS_CACHE are now
|
|
dangling. */
|
|
if (get_frame_cache_generation () == entry_generation)
|
|
{
|
|
*this_cache = NULL;
|
|
frame_cleanup_after_sniffer (this_frame);
|
|
}
|
|
|
|
if (ex.error == NOT_AVAILABLE_ERROR)
|
|
{
|
|
/* This usually means that not even the PC is available,
|
|
thus most unwinders aren't able to determine if they're
|
|
the best fit. Keep trying. Fallback prologue unwinders
|
|
should always accept the frame. */
|
|
return false;
|
|
}
|
|
throw;
|
|
}
|
|
|
|
if (res)
|
|
{
|
|
frame_debug_printf ("yes");
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
frame_debug_printf ("no");
|
|
/* Don't set *THIS_CACHE to NULL here, because sniffer has to do
|
|
so. */
|
|
frame_cleanup_after_sniffer (this_frame);
|
|
return false;
|
|
}
|
|
gdb_assert_not_reached ("frame_unwind_try_unwinder");
|
|
}
|
|
|
|
/* Iterate through sniffers for THIS_FRAME frame until one returns with an
|
|
unwinder implementation. THIS_FRAME->UNWIND must be NULL, it will get set
|
|
by this function. Possibly initialize THIS_CACHE. */
|
|
|
|
void
|
|
frame_unwind_find_by_frame (const frame_info_ptr &this_frame, void **this_cache)
|
|
{
|
|
FRAME_SCOPED_DEBUG_ENTER_EXIT;
|
|
frame_debug_printf ("this_frame=%d", frame_relative_level (this_frame));
|
|
|
|
/* If we see a disabled unwinder, we assume some test is being run on
|
|
GDB, and we don't want to internal_error at the end of this function. */
|
|
bool seen_disabled_unwinder = false;
|
|
/* Lambda to factor out the logic of checking if an unwinder is enabled,
|
|
testing it and otherwise recording if we saw a disable unwinder. */
|
|
auto test_unwinder = [&] (const struct frame_unwind *unwinder)
|
|
{
|
|
if (unwinder == nullptr)
|
|
return false;
|
|
|
|
if (!unwinder->enabled ())
|
|
{
|
|
seen_disabled_unwinder = true;
|
|
return false;
|
|
}
|
|
|
|
return frame_unwind_try_unwinder (this_frame,
|
|
this_cache,
|
|
unwinder);
|
|
};
|
|
|
|
if (test_unwinder (target_get_unwinder ()))
|
|
return;
|
|
|
|
if (test_unwinder (target_get_tailcall_unwinder ()))
|
|
return;
|
|
|
|
struct gdbarch *gdbarch = get_frame_arch (this_frame);
|
|
std::vector<const frame_unwind *> &table = get_frame_unwind_table (gdbarch);
|
|
for (const auto &unwinder : table)
|
|
{
|
|
if (test_unwinder (unwinder))
|
|
return;
|
|
}
|
|
|
|
if (seen_disabled_unwinder)
|
|
error (_("Required frame unwinder may have been disabled"
|
|
", see 'maint info frame-unwinders'"));
|
|
else
|
|
internal_error (_("frame_unwind_find_by_frame failed"));
|
|
}
|
|
|
|
/* A default frame sniffer which always accepts the frame. Used by
|
|
fallback prologue unwinders. */
|
|
|
|
int
|
|
default_frame_sniffer (const struct frame_unwind *self,
|
|
const frame_info_ptr &this_frame,
|
|
void **this_prologue_cache)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
/* The default frame unwinder stop_reason callback. */
|
|
|
|
enum unwind_stop_reason
|
|
default_frame_unwind_stop_reason (const frame_info_ptr &this_frame,
|
|
void **this_cache)
|
|
{
|
|
struct frame_id this_id = get_frame_id (this_frame);
|
|
|
|
if (this_id == outer_frame_id)
|
|
return UNWIND_OUTERMOST;
|
|
else
|
|
return UNWIND_NO_REASON;
|
|
}
|
|
|
|
/* See frame-unwind.h. */
|
|
|
|
CORE_ADDR
|
|
default_unwind_pc (struct gdbarch *gdbarch, const frame_info_ptr &next_frame)
|
|
{
|
|
int pc_regnum = gdbarch_pc_regnum (gdbarch);
|
|
CORE_ADDR pc = frame_unwind_register_unsigned (next_frame, pc_regnum);
|
|
pc = gdbarch_addr_bits_remove (gdbarch, pc);
|
|
return pc;
|
|
}
|
|
|
|
/* See frame-unwind.h. */
|
|
|
|
CORE_ADDR
|
|
default_unwind_sp (struct gdbarch *gdbarch, const frame_info_ptr &next_frame)
|
|
{
|
|
int sp_regnum = gdbarch_sp_regnum (gdbarch);
|
|
return frame_unwind_register_unsigned (next_frame, sp_regnum);
|
|
}
|
|
|
|
/* Helper functions for value-based register unwinding. These return
|
|
a (possibly lazy) value of the appropriate type. */
|
|
|
|
/* Return a value which indicates that FRAME did not save REGNUM. */
|
|
|
|
struct value *
|
|
frame_unwind_got_optimized (const frame_info_ptr &frame, int regnum)
|
|
{
|
|
struct gdbarch *gdbarch = frame_unwind_arch (frame);
|
|
struct type *type = register_type (gdbarch, regnum);
|
|
|
|
return value::allocate_optimized_out (type);
|
|
}
|
|
|
|
/* Return a value which indicates that FRAME copied REGNUM into
|
|
register NEW_REGNUM. */
|
|
|
|
struct value *
|
|
frame_unwind_got_register (const frame_info_ptr &frame,
|
|
int regnum, int new_regnum)
|
|
{
|
|
struct gdbarch *gdbarch = frame_unwind_arch (frame);
|
|
struct type *regnum_type = register_type (gdbarch, regnum);
|
|
struct type *new_regnum_type = register_type (gdbarch, new_regnum);
|
|
|
|
/* REGNUM has been copied into NEW_REGNUM, therefore, the former
|
|
must be smaller or equal in size to the latter. */
|
|
gdb_assert (regnum_type->length () <= new_regnum_type->length ());
|
|
|
|
return value_of_register_lazy (get_next_frame_sentinel_okay (frame),
|
|
new_regnum, regnum_type);
|
|
}
|
|
|
|
/* Return a value which indicates that FRAME saved REGNUM in memory at
|
|
ADDR. */
|
|
|
|
struct value *
|
|
frame_unwind_got_memory (const frame_info_ptr &frame, int regnum, CORE_ADDR addr)
|
|
{
|
|
struct gdbarch *gdbarch = frame_unwind_arch (frame);
|
|
struct value *v = value_at_lazy (register_type (gdbarch, regnum), addr);
|
|
|
|
v->set_stack (true);
|
|
return v;
|
|
}
|
|
|
|
/* Return a value which indicates that FRAME's saved version of
|
|
REGNUM has a known constant (computed) value of VAL. */
|
|
|
|
struct value *
|
|
frame_unwind_got_constant (const frame_info_ptr &frame, int regnum,
|
|
ULONGEST val)
|
|
{
|
|
struct gdbarch *gdbarch = frame_unwind_arch (frame);
|
|
enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
|
|
struct value *reg_val;
|
|
|
|
reg_val = value::zero (register_type (gdbarch, regnum), not_lval);
|
|
store_unsigned_integer (reg_val->contents_writeable ().data (),
|
|
register_size (gdbarch, regnum), byte_order, val);
|
|
return reg_val;
|
|
}
|
|
|
|
struct value *
|
|
frame_unwind_got_bytes (const frame_info_ptr &frame, int regnum,
|
|
gdb::array_view<const gdb_byte> buf)
|
|
{
|
|
struct gdbarch *gdbarch = frame_unwind_arch (frame);
|
|
struct value *reg_val;
|
|
|
|
reg_val = value::zero (register_type (gdbarch, regnum), not_lval);
|
|
gdb::array_view<gdb_byte> val_contents = reg_val->contents_raw ();
|
|
|
|
/* The value's contents buffer is zeroed on allocation so if buf is
|
|
smaller, the remaining space will be filled with zero.
|
|
|
|
This can happen when unwinding through signal frames. For example, if
|
|
an AArch64 program doesn't use SVE, then the Linux kernel will only
|
|
save in the signal frame the first 128 bits of the vector registers,
|
|
which is their minimum size, even if the vector length says they're
|
|
bigger. */
|
|
gdb_assert (buf.size () <= val_contents.size ());
|
|
|
|
memcpy (val_contents.data (), buf.data (), buf.size ());
|
|
return reg_val;
|
|
}
|
|
|
|
/* Return a value which indicates that FRAME's saved version of REGNUM
|
|
has a known constant (computed) value of ADDR. Convert the
|
|
CORE_ADDR to a target address if necessary. */
|
|
|
|
struct value *
|
|
frame_unwind_got_address (const frame_info_ptr &frame, int regnum,
|
|
CORE_ADDR addr)
|
|
{
|
|
struct gdbarch *gdbarch = frame_unwind_arch (frame);
|
|
struct value *reg_val;
|
|
|
|
reg_val = value::zero (register_type (gdbarch, regnum), not_lval);
|
|
pack_long (reg_val->contents_writeable ().data (),
|
|
register_type (gdbarch, regnum), addr);
|
|
return reg_val;
|
|
}
|
|
|
|
/* See frame-unwind.h. */
|
|
|
|
enum unwind_stop_reason
|
|
frame_unwind_legacy::stop_reason (const frame_info_ptr &this_frame,
|
|
void **this_prologue_cache) const
|
|
{
|
|
return m_stop_reason (this_frame, this_prologue_cache);
|
|
}
|
|
|
|
/* See frame-unwind.h. */
|
|
|
|
void
|
|
frame_unwind_legacy::this_id (const frame_info_ptr &this_frame,
|
|
void **this_prologue_cache,
|
|
struct frame_id *id) const
|
|
{
|
|
return m_this_id (this_frame, this_prologue_cache, id);
|
|
}
|
|
|
|
/* See frame-unwind.h. */
|
|
|
|
struct value *
|
|
frame_unwind_legacy::prev_register (const frame_info_ptr &this_frame,
|
|
void **this_prologue_cache,
|
|
int regnum) const
|
|
{
|
|
return m_prev_register (this_frame, this_prologue_cache, regnum);
|
|
}
|
|
|
|
/* See frame-unwind.h. */
|
|
|
|
int
|
|
frame_unwind_legacy::sniff (const frame_info_ptr &this_frame,
|
|
void **this_prologue_cache) const
|
|
{
|
|
return m_sniffer (this, this_frame, this_prologue_cache);
|
|
}
|
|
|
|
/* See frame-unwind.h. */
|
|
|
|
void
|
|
frame_unwind_legacy::dealloc_cache (frame_info *self, void *this_cache) const
|
|
{
|
|
if (m_dealloc_cache != nullptr)
|
|
m_dealloc_cache (self, this_cache);
|
|
}
|
|
|
|
/* See frame-unwind.h. */
|
|
|
|
struct gdbarch *
|
|
frame_unwind_legacy::prev_arch (const frame_info_ptr &this_frame,
|
|
void **this_prologue_cache) const
|
|
{
|
|
if (m_prev_arch == nullptr)
|
|
return frame_unwind::prev_arch (this_frame, this_prologue_cache);
|
|
return m_prev_arch (this_frame, this_prologue_cache);
|
|
}
|
|
|
|
/* Implement "maintenance info frame-unwinders" command. */
|
|
|
|
static void
|
|
maintenance_info_frame_unwinders (const char *args, int from_tty)
|
|
{
|
|
gdbarch *gdbarch = current_inferior ()->arch ();
|
|
std::vector<const frame_unwind *> &table = get_frame_unwind_table (gdbarch);
|
|
|
|
ui_out *uiout = current_uiout;
|
|
ui_out_emit_table table_emitter (uiout, 4, -1, "FrameUnwinders");
|
|
uiout->table_header (27, ui_left, "name", "Name");
|
|
uiout->table_header (25, ui_left, "type", "Type");
|
|
uiout->table_header (9, ui_left, "class", "Class");
|
|
uiout->table_header (8, ui_left, "enabled", "Enabled");
|
|
uiout->table_body ();
|
|
|
|
for (const auto &unwinder : table)
|
|
{
|
|
ui_out_emit_list tuple_emitter (uiout, nullptr);
|
|
uiout->field_string ("name", unwinder->name ());
|
|
uiout->field_string ("type", frame_type_str (unwinder->type ()));
|
|
uiout->field_string ("class", frame_unwinder_class_str (
|
|
unwinder->unwinder_class ()));
|
|
uiout->field_string ("enabled", unwinder->enabled () ? "Y" : "N");
|
|
uiout->text ("\n");
|
|
}
|
|
}
|
|
|
|
/* Options for disabling frame unwinders. */
|
|
struct maint_frame_unwind_options
|
|
{
|
|
std::string unwinder_name;
|
|
const char *unwinder_class = nullptr;
|
|
bool all = false;
|
|
};
|
|
|
|
static const gdb::option::option_def maint_frame_unwind_opt_defs[] = {
|
|
|
|
gdb::option::flag_option_def<maint_frame_unwind_options> {
|
|
"all",
|
|
[] (maint_frame_unwind_options *opt) { return &opt->all; },
|
|
N_("Change the state of all unwinders")
|
|
},
|
|
gdb::option::string_option_def<maint_frame_unwind_options> {
|
|
"name",
|
|
[] (maint_frame_unwind_options *opt) { return &opt->unwinder_name; },
|
|
nullptr,
|
|
N_("The name of the unwinder to have its state changed")
|
|
},
|
|
gdb::option::enum_option_def<maint_frame_unwind_options> {
|
|
"class",
|
|
unwind_class_conversion,
|
|
[] (maint_frame_unwind_options *opt) { return &opt->unwinder_class; },
|
|
nullptr,
|
|
N_("The class of unwinders to have their states changed")
|
|
}
|
|
};
|
|
|
|
static inline gdb::option::option_def_group
|
|
make_frame_unwind_enable_disable_options (maint_frame_unwind_options *opts)
|
|
{
|
|
return {{maint_frame_unwind_opt_defs}, opts};
|
|
}
|
|
|
|
/* Helper function to both enable and disable frame unwinders.
|
|
If ENABLE is true, this call will be enabling unwinders,
|
|
otherwise the unwinders will be disabled. */
|
|
static void
|
|
enable_disable_frame_unwinders (const char *args, int from_tty, bool enable)
|
|
{
|
|
if (args == nullptr)
|
|
{
|
|
if (enable)
|
|
error (_("Specify which frame unwinder(s) should be enabled"));
|
|
else
|
|
error (_("Specify which frame unwinder(s) should be disabled"));
|
|
}
|
|
|
|
struct gdbarch* gdbarch = current_inferior ()->arch ();
|
|
std::vector<const frame_unwind *> unwinder_list
|
|
= get_frame_unwind_table (gdbarch);
|
|
|
|
maint_frame_unwind_options opts;
|
|
gdb::option::process_options
|
|
(&args, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_ERROR,
|
|
make_frame_unwind_enable_disable_options (&opts));
|
|
|
|
if ((opts.all && !opts.unwinder_name.empty ())
|
|
|| (opts.all && opts.unwinder_class != nullptr)
|
|
|| (!opts.unwinder_name.empty () && opts.unwinder_class != nullptr))
|
|
error (_("Options are mutually exclusive"));
|
|
|
|
/* First see if the user wants to change all unwinders. */
|
|
if (opts.all)
|
|
{
|
|
for (const frame_unwind *u : unwinder_list)
|
|
u->set_enabled (enable);
|
|
|
|
reinit_frame_cache ();
|
|
return;
|
|
}
|
|
|
|
/* If user entered a specific unwinder name, handle it here. If the
|
|
unwinder is already at the expected state, error out. */
|
|
if (!opts.unwinder_name.empty ())
|
|
{
|
|
bool did_something = false;
|
|
for (const frame_unwind *unwinder : unwinder_list)
|
|
{
|
|
if (strcasecmp (unwinder->name (),
|
|
opts.unwinder_name.c_str ()) == 0)
|
|
{
|
|
if (unwinder->enabled () == enable)
|
|
{
|
|
if (unwinder->enabled ())
|
|
error (_("unwinder %s is already enabled"),
|
|
unwinder->name ());
|
|
else
|
|
error (_("unwinder %s is already disabled"),
|
|
unwinder->name ());
|
|
}
|
|
unwinder->set_enabled (enable);
|
|
|
|
did_something = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!did_something)
|
|
error (_("couldn't find unwinder named %s"),
|
|
opts.unwinder_name.c_str ());
|
|
}
|
|
else
|
|
{
|
|
if (opts.unwinder_class == nullptr)
|
|
opts.unwinder_class = args;
|
|
enum frame_unwind_class dclass = str_to_frame_unwind_class
|
|
(opts.unwinder_class);
|
|
for (const frame_unwind *unwinder: unwinder_list)
|
|
{
|
|
if (unwinder->unwinder_class () == dclass)
|
|
unwinder->set_enabled (enable);
|
|
}
|
|
}
|
|
|
|
reinit_frame_cache ();
|
|
}
|
|
|
|
/* Completer for the "maint frame-unwinder enable|disable" commands. */
|
|
|
|
static void
|
|
enable_disable_frame_unwinders_completer (struct cmd_list_element *ignore,
|
|
completion_tracker &tracker,
|
|
const char *text,
|
|
const char * /*word*/)
|
|
{
|
|
maint_frame_unwind_options opts;
|
|
const auto group = make_frame_unwind_enable_disable_options (&opts);
|
|
|
|
const char *start = text;
|
|
if (gdb::option::complete_options
|
|
(tracker, &text, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, group))
|
|
return;
|
|
|
|
/* Only complete a class name as a stand-alone operand when no options
|
|
are given. */
|
|
if (start == text)
|
|
complete_on_enum (tracker, unwind_class_conversion, text, text);
|
|
return;
|
|
}
|
|
|
|
/* Implement "maint frame-unwinder disable" command. */
|
|
static void
|
|
maintenance_disable_frame_unwinders (const char *args, int from_tty)
|
|
{
|
|
enable_disable_frame_unwinders (args, from_tty, false);
|
|
}
|
|
|
|
/* Implement "maint frame-unwinder enable" command. */
|
|
static void
|
|
maintenance_enable_frame_unwinders (const char *args, int from_tty)
|
|
{
|
|
enable_disable_frame_unwinders (args, from_tty, true);
|
|
}
|
|
|
|
INIT_GDB_FILE (frame_unwind)
|
|
{
|
|
/* Add "maint info frame-unwinders". */
|
|
add_cmd ("frame-unwinders",
|
|
class_maintenance,
|
|
maintenance_info_frame_unwinders,
|
|
_("\
|
|
List the frame unwinders currently in effect.\n\
|
|
Unwinders are listed starting with the highest priority."),
|
|
&maintenanceinfolist);
|
|
|
|
/* Add "maint frame-unwinder disable/enable". */
|
|
static struct cmd_list_element *maint_frame_unwinder;
|
|
|
|
add_basic_prefix_cmd ("frame-unwinder", class_maintenance,
|
|
_("Commands handling frame unwinders."),
|
|
&maint_frame_unwinder, 0, &maintenancelist);
|
|
|
|
cmd_list_element *c
|
|
= add_cmd ("disable", class_maintenance, maintenance_disable_frame_unwinders,
|
|
_("\
|
|
Disable one or more frame unwinder(s).\n\
|
|
Usage: maint frame-unwinder disable [-all | -name NAME | [-class] CLASS]\n\
|
|
\n\
|
|
These are the meanings of the options:\n\
|
|
\t-all - All available unwinders will be disabled\n\
|
|
\t-name - NAME is the exact name of the frame unwinder to be disabled\n\
|
|
\t-class - CLASS is the class of unwinders to be disabled. Valid classes are:\n\
|
|
\t\tGDB - Unwinders added by GDB core;\n\
|
|
\t\tEXTENSION - Unwinders added by extension languages;\n\
|
|
\t\tDEBUGINFO - Unwinders that handle debug information;\n\
|
|
\t\tARCH - Unwinders that use architecture-specific information;\n\
|
|
\n\
|
|
UNWINDER and NAME are case insensitive."),
|
|
&maint_frame_unwinder);
|
|
set_cmd_completer_handle_brkchars (c,
|
|
enable_disable_frame_unwinders_completer);
|
|
|
|
c =
|
|
add_cmd ("enable", class_maintenance, maintenance_enable_frame_unwinders,
|
|
_("\
|
|
Enable one or more frame unwinder(s).\n\
|
|
Usage: maint frame-unwinder enable [-all | -name NAME | [-class] CLASS]\n\
|
|
\n\
|
|
These are the meanings of the options:\n\
|
|
\t-all - All available unwinders will be enabled\n\
|
|
\t-name - NAME is the exact name of the frame unwinder to be enabled\n\
|
|
\t-class - CLASS is the class of unwinders to be enabled. Valid classes are:\n\
|
|
\t\tGDB - Unwinders added by GDB core;\n\
|
|
\t\tEXTENSION - Unwinders added by extension languages;\n\
|
|
\t\tDEBUGINFO - Unwinders that handle debug information;\n\
|
|
\t\tARCH - Unwinders that use architecture-specific information;\n\
|
|
\n\
|
|
UNWINDER and NAME are case insensitive."),
|
|
&maint_frame_unwinder);
|
|
set_cmd_completer_handle_brkchars (c,
|
|
enable_disable_frame_unwinders_completer);
|
|
}
|