2012-03-08 20:08:11 +01:00
|
|
|
/* Frame unwinder for ia64 frames using the libunwind library.
|
2003-11-14 22:17:51 +01:00
|
|
|
|
2014-01-01 04:54:24 +01:00
|
|
|
Copyright (C) 2003-2014 Free Software Foundation, Inc.
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
Written by Jeff Johnston, contributed by Red Hat 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
|
2007-08-23 20:08:50 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2003-11-14 22:17:51 +01:00
|
|
|
(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
|
2007-08-23 20:08:50 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
#include "inferior.h"
|
|
|
|
#include "frame.h"
|
|
|
|
#include "frame-base.h"
|
|
|
|
#include "frame-unwind.h"
|
|
|
|
#include "gdbcore.h"
|
|
|
|
#include "gdbtypes.h"
|
|
|
|
#include "symtab.h"
|
|
|
|
#include "objfiles.h"
|
|
|
|
#include "regcache.h"
|
|
|
|
|
|
|
|
#include <dlfcn.h>
|
|
|
|
|
2012-03-08 20:08:11 +01:00
|
|
|
#include "ia64-libunwind-tdep.h"
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
#include "complaints.h"
|
|
|
|
|
2012-03-08 20:08:11 +01:00
|
|
|
/* IA-64 is the only target that currently uses ia64-libunwind-tdep.
|
|
|
|
Note how UNW_TARGET, UNW_OBJ, etc. are compile time constants below.
|
2012-02-21 20:39:32 +01:00
|
|
|
Those come from libunwind's headers, and are target dependent.
|
|
|
|
Also, some of libunwind's typedefs are target dependent, as e.g.,
|
|
|
|
unw_word_t. If some other target wants to use this, we will need
|
|
|
|
to do some abstracting in order to make it possible to select which
|
|
|
|
libunwind we're talking to at runtime (and have one per arch). */
|
|
|
|
|
2011-01-13 17:23:11 +01:00
|
|
|
/* The following two macros are normally defined in <endian.h>.
|
|
|
|
But systems such as ia64-hpux do not provide such header, so
|
|
|
|
we just define them here if not already defined. */
|
|
|
|
#ifndef __LITTLE_ENDIAN
|
|
|
|
#define __LITTLE_ENDIAN 1234
|
|
|
|
#endif
|
|
|
|
#ifndef __BIG_ENDIAN
|
|
|
|
#define __BIG_ENDIAN 4321
|
|
|
|
#endif
|
|
|
|
|
2003-11-14 22:17:51 +01:00
|
|
|
static int libunwind_initialized;
|
|
|
|
static struct gdbarch_data *libunwind_descr_handle;
|
|
|
|
|
|
|
|
/* Required function pointers from libunwind. */
|
|
|
|
static int (*unw_get_reg_p) (unw_cursor_t *, unw_regnum_t, unw_word_t *);
|
|
|
|
static int (*unw_get_fpreg_p) (unw_cursor_t *, unw_regnum_t, unw_fpreg_t *);
|
2011-01-05 23:22:53 +01:00
|
|
|
static int (*unw_get_saveloc_p) (unw_cursor_t *, unw_regnum_t,
|
|
|
|
unw_save_loc_t *);
|
2005-06-08 23:54:23 +02:00
|
|
|
static int (*unw_is_signal_frame_p) (unw_cursor_t *);
|
2003-11-14 22:17:51 +01:00
|
|
|
static int (*unw_step_p) (unw_cursor_t *);
|
|
|
|
static int (*unw_init_remote_p) (unw_cursor_t *, unw_addr_space_t, void *);
|
|
|
|
static unw_addr_space_t (*unw_create_addr_space_p) (unw_accessors_t *, int);
|
2007-06-06 21:35:02 +02:00
|
|
|
static void (*unw_destroy_addr_space_p) (unw_addr_space_t);
|
2011-01-05 23:22:53 +01:00
|
|
|
static int (*unw_search_unwind_table_p) (unw_addr_space_t, unw_word_t,
|
|
|
|
unw_dyn_info_t *,
|
2003-11-14 22:17:51 +01:00
|
|
|
unw_proc_info_t *, int, void *);
|
2003-12-13 04:51:56 +01:00
|
|
|
static unw_word_t (*unw_find_dyn_list_p) (unw_addr_space_t, unw_dyn_info_t *,
|
|
|
|
void *);
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
struct libunwind_frame_cache
|
|
|
|
{
|
|
|
|
CORE_ADDR base;
|
|
|
|
CORE_ADDR func_addr;
|
|
|
|
unw_cursor_t cursor;
|
2007-06-12 17:21:27 +02:00
|
|
|
unw_addr_space_t as;
|
2003-11-14 22:17:51 +01:00
|
|
|
};
|
|
|
|
|
2008-05-06 20:37:46 +02:00
|
|
|
/* We need to qualify the function names with a platform-specific prefix
|
|
|
|
to match the names used by the libunwind library. The UNW_OBJ macro is
|
|
|
|
provided by the libunwind.h header file. */
|
2003-11-14 22:17:51 +01:00
|
|
|
#define STRINGIFY2(name) #name
|
|
|
|
#define STRINGIFY(name) STRINGIFY2(name)
|
|
|
|
|
2004-08-05 22:37:56 +02:00
|
|
|
#ifndef LIBUNWIND_SO
|
2007-04-11 18:09:57 +02:00
|
|
|
/* Use the stable ABI major version number. `libunwind-ia64.so' is a link time
|
|
|
|
only library, not a runtime one. */
|
2012-03-05 18:11:48 +01:00
|
|
|
#define LIBUNWIND_SO "libunwind-" STRINGIFY(UNW_TARGET) ".so.8"
|
|
|
|
|
|
|
|
/* Provide also compatibility with older .so. The two APIs are compatible, .8
|
|
|
|
is only extended a bit, GDB does not use the extended API at all. */
|
|
|
|
#define LIBUNWIND_SO_7 "libunwind-" STRINGIFY(UNW_TARGET) ".so.7"
|
2004-08-05 22:37:56 +02:00
|
|
|
#endif
|
|
|
|
|
2003-11-14 22:17:51 +01:00
|
|
|
static char *get_reg_name = STRINGIFY(UNW_OBJ(get_reg));
|
|
|
|
static char *get_fpreg_name = STRINGIFY(UNW_OBJ(get_fpreg));
|
|
|
|
static char *get_saveloc_name = STRINGIFY(UNW_OBJ(get_save_loc));
|
2005-06-08 23:54:23 +02:00
|
|
|
static char *is_signal_frame_name = STRINGIFY(UNW_OBJ(is_signal_frame));
|
2003-11-14 22:17:51 +01:00
|
|
|
static char *step_name = STRINGIFY(UNW_OBJ(step));
|
|
|
|
static char *init_remote_name = STRINGIFY(UNW_OBJ(init_remote));
|
|
|
|
static char *create_addr_space_name = STRINGIFY(UNW_OBJ(create_addr_space));
|
2007-06-06 21:35:02 +02:00
|
|
|
static char *destroy_addr_space_name = STRINGIFY(UNW_OBJ(destroy_addr_space));
|
2011-01-05 23:22:53 +01:00
|
|
|
static char *search_unwind_table_name
|
|
|
|
= STRINGIFY(UNW_OBJ(search_unwind_table));
|
2003-11-14 22:17:51 +01:00
|
|
|
static char *find_dyn_list_name = STRINGIFY(UNW_OBJ(find_dyn_list));
|
|
|
|
|
|
|
|
static struct libunwind_descr *
|
|
|
|
libunwind_descr (struct gdbarch *gdbarch)
|
|
|
|
{
|
|
|
|
return gdbarch_data (gdbarch, libunwind_descr_handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
libunwind_descr_init (struct gdbarch *gdbarch)
|
|
|
|
{
|
2011-01-05 23:22:53 +01:00
|
|
|
struct libunwind_descr *descr
|
|
|
|
= GDBARCH_OBSTACK_ZALLOC (gdbarch, struct libunwind_descr);
|
2010-05-15 01:41:05 +02:00
|
|
|
|
2003-11-14 22:17:51 +01:00
|
|
|
return descr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-01-05 23:22:53 +01:00
|
|
|
libunwind_frame_set_descr (struct gdbarch *gdbarch,
|
|
|
|
struct libunwind_descr *descr)
|
2003-11-14 22:17:51 +01:00
|
|
|
{
|
|
|
|
struct libunwind_descr *arch_descr;
|
|
|
|
|
|
|
|
gdb_assert (gdbarch != NULL);
|
|
|
|
|
|
|
|
arch_descr = gdbarch_data (gdbarch, libunwind_descr_handle);
|
|
|
|
|
|
|
|
if (arch_descr == NULL)
|
|
|
|
{
|
|
|
|
/* First time here. Must initialize data area. */
|
|
|
|
arch_descr = libunwind_descr_init (gdbarch);
|
2011-01-05 23:22:53 +01:00
|
|
|
deprecated_set_gdbarch_data (gdbarch,
|
|
|
|
libunwind_descr_handle, arch_descr);
|
2003-11-14 22:17:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy new descriptor info into arch descriptor. */
|
|
|
|
arch_descr->gdb2uw = descr->gdb2uw;
|
|
|
|
arch_descr->uw2gdb = descr->uw2gdb;
|
|
|
|
arch_descr->is_fpreg = descr->is_fpreg;
|
|
|
|
arch_descr->accessors = descr->accessors;
|
2005-06-08 23:54:23 +02:00
|
|
|
arch_descr->special_accessors = descr->special_accessors;
|
2003-11-14 22:17:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct libunwind_frame_cache *
|
2008-05-06 20:37:46 +02:00
|
|
|
libunwind_frame_cache (struct frame_info *this_frame, void **this_cache)
|
2003-11-14 22:17:51 +01:00
|
|
|
{
|
|
|
|
unw_accessors_t *acc;
|
|
|
|
unw_addr_space_t as;
|
|
|
|
unw_word_t fp;
|
|
|
|
unw_regnum_t uw_sp_regnum;
|
|
|
|
struct libunwind_frame_cache *cache;
|
|
|
|
struct libunwind_descr *descr;
|
2008-05-06 20:37:46 +02:00
|
|
|
struct gdbarch *gdbarch = get_frame_arch (this_frame);
|
2003-11-14 22:17:51 +01:00
|
|
|
int i, ret;
|
|
|
|
|
|
|
|
if (*this_cache)
|
|
|
|
return *this_cache;
|
|
|
|
|
|
|
|
/* Allocate a new cache. */
|
|
|
|
cache = FRAME_OBSTACK_ZALLOC (struct libunwind_frame_cache);
|
|
|
|
|
2008-05-06 20:37:46 +02:00
|
|
|
cache->func_addr = get_frame_func (this_frame);
|
2011-01-13 17:23:22 +01:00
|
|
|
if (cache->func_addr == 0)
|
|
|
|
/* This can happen when the frame corresponds to a function for which
|
|
|
|
there is no debugging information nor any entry in the symbol table.
|
|
|
|
This is probably a static function for which an entry in the symbol
|
|
|
|
table was not created when the objfile got linked (observed in
|
|
|
|
libpthread.so on ia64-hpux).
|
|
|
|
|
|
|
|
The best we can do, in that case, is use the frame PC as the function
|
|
|
|
address. We don't need to give up since we still have the unwind
|
|
|
|
record to help us perform the unwinding. There is also another
|
|
|
|
compelling to continue, because abandonning now means stopping
|
|
|
|
the backtrace, which can never be helpful for the user. */
|
|
|
|
cache->func_addr = get_frame_pc (this_frame);
|
2003-11-14 22:17:51 +01:00
|
|
|
|
2008-05-06 20:37:46 +02:00
|
|
|
/* Get a libunwind cursor to the previous frame.
|
|
|
|
|
|
|
|
We do this by initializing a cursor. Libunwind treats a new cursor
|
|
|
|
as the top of stack and will get the current register set via the
|
|
|
|
libunwind register accessor. Now, we provide the platform-specific
|
|
|
|
accessors and we set up the register accessor to use the frame
|
|
|
|
register unwinding interfaces so that we properly get the registers
|
|
|
|
for the current frame rather than the top. We then use the unw_step
|
|
|
|
function to move the libunwind cursor back one frame. We can later
|
|
|
|
use this cursor to find previous registers via the unw_get_reg
|
|
|
|
interface which will invoke libunwind's special logic. */
|
2007-10-30 23:00:29 +01:00
|
|
|
descr = libunwind_descr (gdbarch);
|
2003-11-14 22:17:51 +01:00
|
|
|
acc = descr->accessors;
|
|
|
|
as = unw_create_addr_space_p (acc,
|
2007-10-30 23:00:29 +01:00
|
|
|
gdbarch_byte_order (gdbarch)
|
2007-05-31 Markus Deuling <deuling@de.ibm.com>
* xtensa-tdep.c (XTENSA_IS_ENTRY, extract_call_winsize)
(xtensa_register_write_masked, xtensa_register_read_masked)
(xtensa_extract_return_value, xtensa_store_return_value
(xtensa_push_dummy_call, xtensa_breakpoint_from_pc): Replace
TARGET_BYTE_ORDER by gdbarch_byte_order.
* sh-tdep.c (sh_breakpoint_from_pc, gdb_print_insn_sh)
(sh_justify_value_in_reg, sh_next_flt_argreg, sh_push_dummy_call_fpu)
(sh_extract_return_value_fpu, sh_store_return_value_fpu): Likewise.
* sh64-tdep.c (sh64_breakpoint_from_pc, gdb_print_insn_sh64)
(sh64_push_dummy_call, sh64_extract_return_value)
(sh64_store_return_value, sh64_register_convert_to_virtual)
(sh64_register_convert_to_raw, sh64_pseudo_register_read)
(sh64_pseudo_register_write, sh64_do_fp_register)
(sh64_frame_prev_register): Likewise.
* score-tdep.c (score_print_insn, score_breakpoint_from_pc)
(score_return_value, score_push_dummy_call, score_fetch_inst): Likewise.
* rs6000-tdep.c (rs6000_breakpoint_from_pc, rs6000_push_dummy_call)
(e500_move_ev_register,gdb_print_insn_powerpc): Likewise.
* remote-m32r-sdi.c (m32r_resume, m32r_wait): Likewise.
* ppc-linux-nat.c (store_register): Likewise.
* nto-tdep.c (nto_find_and_open_solib)
(nto_init_solib_absolute_prefix): Likewise.
* mips-tdep.c (mips_pseudo_register_read, mips_pseudo_register_write)
(mips_convert_register_p, mips_eabi_push_dummy_call)
(mips_n32n64_push_dummy_call, mips_n32n64_return_value)
(mips_o32_push_dummy_call, mips_o32_return_value)
(mips_o64_push_dummy_call, mips_o64_return_value, mips_o64_return_value)
(mips_read_fp_register_single, mips_read_fp_register_double)
(mips_print_register, print_gp_register_row, gdb_print_insn_mips)
(mips_breakpoint_from_pc): Likewise.
* mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset): Likewise.
* mips-linux-tdep.c (mips64_supply_fpregset, mips64_fill_fpregset)
(mips_linux_o32_sigframe_init): Likewise.
* m32r-tdep.c (m32r_memory_insert_breakpoint)
(m32r_memory_remove_breakpoint, m32r_breakpoint_from_pc): Likewise.
* libunwind-frame.c (libunwind_frame_cache, libunwind_frame_sniffer)
(libunwind_sigtramp_frame_sniffer, libunwind_get_reg_special): Likewise.
* iq2000-tdep.c (iq2000_breakpoint_from_pc): Likewise.
* coffread.c (process_coff_symbol): Likewise.
* arm-tdep.c (convert_from_extended, convert_to_extended)
(gdb_print_insn_arm): Likewise.
2007-05-31 22:57:41 +02:00
|
|
|
== BFD_ENDIAN_BIG
|
2003-11-14 22:17:51 +01:00
|
|
|
? __BIG_ENDIAN
|
|
|
|
: __LITTLE_ENDIAN);
|
|
|
|
|
2008-05-06 20:37:46 +02:00
|
|
|
unw_init_remote_p (&cache->cursor, as, this_frame);
|
2005-06-08 23:54:23 +02:00
|
|
|
if (unw_step_p (&cache->cursor) < 0)
|
2007-06-06 21:35:02 +02:00
|
|
|
{
|
|
|
|
unw_destroy_addr_space_p (as);
|
|
|
|
return NULL;
|
|
|
|
}
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
/* To get base address, get sp from previous frame. */
|
2007-10-30 23:00:29 +01:00
|
|
|
uw_sp_regnum = descr->gdb2uw (gdbarch_sp_regnum (gdbarch));
|
2003-11-14 22:17:51 +01:00
|
|
|
ret = unw_get_reg_p (&cache->cursor, uw_sp_regnum, &fp);
|
|
|
|
if (ret < 0)
|
2007-06-06 21:35:02 +02:00
|
|
|
{
|
|
|
|
unw_destroy_addr_space_p (as);
|
|
|
|
error (_("Can't get libunwind sp register."));
|
|
|
|
}
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
cache->base = (CORE_ADDR)fp;
|
2007-06-12 17:21:27 +02:00
|
|
|
cache->as = as;
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
*this_cache = cache;
|
|
|
|
return cache;
|
|
|
|
}
|
|
|
|
|
2007-06-12 17:21:27 +02:00
|
|
|
void
|
|
|
|
libunwind_frame_dealloc_cache (struct frame_info *self, void *this_cache)
|
|
|
|
{
|
|
|
|
struct libunwind_frame_cache *cache = this_cache;
|
2010-05-15 01:41:05 +02:00
|
|
|
|
2007-06-12 17:21:27 +02:00
|
|
|
if (cache->as)
|
|
|
|
unw_destroy_addr_space_p (cache->as);
|
|
|
|
}
|
|
|
|
|
2003-12-13 04:51:56 +01:00
|
|
|
unw_word_t
|
|
|
|
libunwind_find_dyn_list (unw_addr_space_t as, unw_dyn_info_t *di, void *arg)
|
2003-11-14 22:17:51 +01:00
|
|
|
{
|
2003-12-13 04:51:56 +01:00
|
|
|
return unw_find_dyn_list_p (as, di, arg);
|
2003-11-14 22:17:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Verify if there is sufficient libunwind information for the frame to use
|
|
|
|
libunwind frame unwinding. */
|
2008-05-06 20:37:46 +02:00
|
|
|
int
|
|
|
|
libunwind_frame_sniffer (const struct frame_unwind *self,
|
|
|
|
struct frame_info *this_frame, void **this_cache)
|
2003-11-14 22:17:51 +01:00
|
|
|
{
|
|
|
|
unw_cursor_t cursor;
|
|
|
|
unw_accessors_t *acc;
|
|
|
|
unw_addr_space_t as;
|
|
|
|
struct libunwind_descr *descr;
|
2008-05-06 20:37:46 +02:00
|
|
|
struct gdbarch *gdbarch = get_frame_arch (this_frame);
|
2003-11-14 22:17:51 +01:00
|
|
|
int i, ret;
|
|
|
|
|
2008-05-06 20:37:46 +02:00
|
|
|
/* To test for libunwind unwind support, initialize a cursor to
|
|
|
|
the current frame and try to back up. We use this same method
|
|
|
|
when setting up the frame cache (see libunwind_frame_cache()).
|
|
|
|
If libunwind returns success for this operation, it means that
|
|
|
|
it has found sufficient libunwind unwinding information to do so. */
|
2003-11-14 22:17:51 +01:00
|
|
|
|
2007-10-30 23:00:29 +01:00
|
|
|
descr = libunwind_descr (gdbarch);
|
2003-11-14 22:17:51 +01:00
|
|
|
acc = descr->accessors;
|
|
|
|
as = unw_create_addr_space_p (acc,
|
2007-10-30 23:00:29 +01:00
|
|
|
gdbarch_byte_order (gdbarch)
|
2007-05-31 Markus Deuling <deuling@de.ibm.com>
* xtensa-tdep.c (XTENSA_IS_ENTRY, extract_call_winsize)
(xtensa_register_write_masked, xtensa_register_read_masked)
(xtensa_extract_return_value, xtensa_store_return_value
(xtensa_push_dummy_call, xtensa_breakpoint_from_pc): Replace
TARGET_BYTE_ORDER by gdbarch_byte_order.
* sh-tdep.c (sh_breakpoint_from_pc, gdb_print_insn_sh)
(sh_justify_value_in_reg, sh_next_flt_argreg, sh_push_dummy_call_fpu)
(sh_extract_return_value_fpu, sh_store_return_value_fpu): Likewise.
* sh64-tdep.c (sh64_breakpoint_from_pc, gdb_print_insn_sh64)
(sh64_push_dummy_call, sh64_extract_return_value)
(sh64_store_return_value, sh64_register_convert_to_virtual)
(sh64_register_convert_to_raw, sh64_pseudo_register_read)
(sh64_pseudo_register_write, sh64_do_fp_register)
(sh64_frame_prev_register): Likewise.
* score-tdep.c (score_print_insn, score_breakpoint_from_pc)
(score_return_value, score_push_dummy_call, score_fetch_inst): Likewise.
* rs6000-tdep.c (rs6000_breakpoint_from_pc, rs6000_push_dummy_call)
(e500_move_ev_register,gdb_print_insn_powerpc): Likewise.
* remote-m32r-sdi.c (m32r_resume, m32r_wait): Likewise.
* ppc-linux-nat.c (store_register): Likewise.
* nto-tdep.c (nto_find_and_open_solib)
(nto_init_solib_absolute_prefix): Likewise.
* mips-tdep.c (mips_pseudo_register_read, mips_pseudo_register_write)
(mips_convert_register_p, mips_eabi_push_dummy_call)
(mips_n32n64_push_dummy_call, mips_n32n64_return_value)
(mips_o32_push_dummy_call, mips_o32_return_value)
(mips_o64_push_dummy_call, mips_o64_return_value, mips_o64_return_value)
(mips_read_fp_register_single, mips_read_fp_register_double)
(mips_print_register, print_gp_register_row, gdb_print_insn_mips)
(mips_breakpoint_from_pc): Likewise.
* mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset): Likewise.
* mips-linux-tdep.c (mips64_supply_fpregset, mips64_fill_fpregset)
(mips_linux_o32_sigframe_init): Likewise.
* m32r-tdep.c (m32r_memory_insert_breakpoint)
(m32r_memory_remove_breakpoint, m32r_breakpoint_from_pc): Likewise.
* libunwind-frame.c (libunwind_frame_cache, libunwind_frame_sniffer)
(libunwind_sigtramp_frame_sniffer, libunwind_get_reg_special): Likewise.
* iq2000-tdep.c (iq2000_breakpoint_from_pc): Likewise.
* coffread.c (process_coff_symbol): Likewise.
* arm-tdep.c (convert_from_extended, convert_to_extended)
(gdb_print_insn_arm): Likewise.
2007-05-31 22:57:41 +02:00
|
|
|
== BFD_ENDIAN_BIG
|
2003-11-14 22:17:51 +01:00
|
|
|
? __BIG_ENDIAN
|
|
|
|
: __LITTLE_ENDIAN);
|
|
|
|
|
2008-05-06 20:37:46 +02:00
|
|
|
ret = unw_init_remote_p (&cursor, as, this_frame);
|
2003-11-14 22:17:51 +01:00
|
|
|
|
2005-06-08 23:54:23 +02:00
|
|
|
if (ret < 0)
|
2007-06-06 21:35:02 +02:00
|
|
|
{
|
|
|
|
unw_destroy_addr_space_p (as);
|
2008-05-06 20:37:46 +02:00
|
|
|
return 0;
|
2007-06-06 21:35:02 +02:00
|
|
|
}
|
2005-06-08 23:54:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Check to see if we have libunwind info by checking if we are in a
|
|
|
|
signal frame. If it doesn't return an error, we have libunwind info
|
|
|
|
and can use libunwind. */
|
|
|
|
ret = unw_is_signal_frame_p (&cursor);
|
2007-06-06 21:35:02 +02:00
|
|
|
unw_destroy_addr_space_p (as);
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
if (ret < 0)
|
2008-05-06 20:37:46 +02:00
|
|
|
return 0;
|
2003-11-14 22:17:51 +01:00
|
|
|
|
2008-05-06 20:37:46 +02:00
|
|
|
return 1;
|
2003-11-14 22:17:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-05-06 20:37:46 +02:00
|
|
|
libunwind_frame_this_id (struct frame_info *this_frame, void **this_cache,
|
|
|
|
struct frame_id *this_id)
|
2003-11-14 22:17:51 +01:00
|
|
|
{
|
|
|
|
struct libunwind_frame_cache *cache =
|
2008-05-06 20:37:46 +02:00
|
|
|
libunwind_frame_cache (this_frame, this_cache);
|
2003-11-14 22:17:51 +01:00
|
|
|
|
2005-06-08 23:54:23 +02:00
|
|
|
if (cache != NULL)
|
|
|
|
(*this_id) = frame_id_build (cache->base, cache->func_addr);
|
2003-11-14 22:17:51 +01:00
|
|
|
}
|
|
|
|
|
2008-05-06 20:37:46 +02:00
|
|
|
struct value *
|
|
|
|
libunwind_frame_prev_register (struct frame_info *this_frame,
|
|
|
|
void **this_cache, int regnum)
|
2003-11-14 22:17:51 +01:00
|
|
|
{
|
|
|
|
struct libunwind_frame_cache *cache =
|
2008-05-06 20:37:46 +02:00
|
|
|
libunwind_frame_cache (this_frame, this_cache);
|
|
|
|
struct gdbarch *gdbarch = get_frame_arch (this_frame);
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
void *ptr;
|
|
|
|
unw_cursor_t *c;
|
|
|
|
unw_save_loc_t sl;
|
|
|
|
int i, ret;
|
|
|
|
unw_word_t intval;
|
|
|
|
unw_fpreg_t fpval;
|
|
|
|
unw_regnum_t uw_regnum;
|
|
|
|
struct libunwind_descr *descr;
|
2008-05-06 20:37:46 +02:00
|
|
|
struct value *val = NULL;
|
2003-11-14 22:17:51 +01:00
|
|
|
|
2005-06-08 23:54:23 +02:00
|
|
|
if (cache == NULL)
|
2008-05-06 20:37:46 +02:00
|
|
|
return frame_unwind_got_constant (this_frame, regnum, 0);
|
2005-06-08 23:54:23 +02:00
|
|
|
|
2003-11-14 22:17:51 +01:00
|
|
|
/* Convert from gdb register number to libunwind register number. */
|
2008-05-06 20:37:46 +02:00
|
|
|
descr = libunwind_descr (get_frame_arch (this_frame));
|
2003-11-14 22:17:51 +01:00
|
|
|
uw_regnum = descr->gdb2uw (regnum);
|
|
|
|
|
|
|
|
gdb_assert (regnum >= 0);
|
|
|
|
|
|
|
|
if (!target_has_registers)
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
error (_("No registers."));
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
if (uw_regnum < 0)
|
2008-05-06 20:37:46 +02:00
|
|
|
return frame_unwind_got_constant (this_frame, regnum, 0);
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
if (unw_get_saveloc_p (&cache->cursor, uw_regnum, &sl) < 0)
|
2008-05-06 20:37:46 +02:00
|
|
|
return frame_unwind_got_constant (this_frame, regnum, 0);
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
switch (sl.type)
|
|
|
|
{
|
|
|
|
case UNW_SLT_MEMORY:
|
2008-05-06 20:37:46 +02:00
|
|
|
val = frame_unwind_got_memory (this_frame, regnum, sl.u.addr);
|
2003-11-14 22:17:51 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case UNW_SLT_REG:
|
2008-05-06 20:37:46 +02:00
|
|
|
val = frame_unwind_got_register (this_frame, regnum,
|
|
|
|
descr->uw2gdb (sl.u.regnum));
|
2003-11-14 22:17:51 +01:00
|
|
|
break;
|
2008-05-06 20:37:46 +02:00
|
|
|
case UNW_SLT_NONE:
|
|
|
|
{
|
|
|
|
/* The register is not stored at a specific memory address nor
|
|
|
|
inside another register. So use libunwind to fetch the register
|
|
|
|
value for us, and create a constant value with the result. */
|
|
|
|
if (descr->is_fpreg (uw_regnum))
|
|
|
|
{
|
|
|
|
ret = unw_get_fpreg_p (&cache->cursor, uw_regnum, &fpval);
|
|
|
|
if (ret < 0)
|
|
|
|
return frame_unwind_got_constant (this_frame, regnum, 0);
|
|
|
|
val = frame_unwind_got_bytes (this_frame, regnum,
|
|
|
|
(gdb_byte *) &fpval);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = unw_get_reg_p (&cache->cursor, uw_regnum, &intval);
|
|
|
|
if (ret < 0)
|
|
|
|
return frame_unwind_got_constant (this_frame, regnum, 0);
|
|
|
|
val = frame_unwind_got_constant (this_frame, regnum, intval);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2003-11-14 22:17:51 +01:00
|
|
|
}
|
2008-05-06 20:37:46 +02:00
|
|
|
|
|
|
|
return val;
|
2003-11-14 22:17:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The following is a glue routine to call the libunwind unwind table
|
|
|
|
search function to get unwind information for a specified ip address. */
|
|
|
|
int
|
|
|
|
libunwind_search_unwind_table (void *as, long ip, void *di,
|
|
|
|
void *pi, int need_unwind_info, void *args)
|
|
|
|
{
|
|
|
|
return unw_search_unwind_table_p (*(unw_addr_space_t *)as, (unw_word_t )ip,
|
|
|
|
di, pi, need_unwind_info, args);
|
|
|
|
}
|
|
|
|
|
2005-06-08 23:54:23 +02:00
|
|
|
/* Verify if we are in a sigtramp frame and we can use libunwind to unwind. */
|
2008-05-06 20:37:46 +02:00
|
|
|
int
|
|
|
|
libunwind_sigtramp_frame_sniffer (const struct frame_unwind *self,
|
|
|
|
struct frame_info *this_frame,
|
|
|
|
void **this_cache)
|
2005-06-08 23:54:23 +02:00
|
|
|
{
|
|
|
|
unw_cursor_t cursor;
|
|
|
|
unw_accessors_t *acc;
|
|
|
|
unw_addr_space_t as;
|
|
|
|
struct libunwind_descr *descr;
|
2008-05-06 20:37:46 +02:00
|
|
|
struct gdbarch *gdbarch = get_frame_arch (this_frame);
|
2005-06-08 23:54:23 +02:00
|
|
|
int i, ret;
|
|
|
|
|
|
|
|
/* To test for libunwind unwind support, initialize a cursor to the
|
|
|
|
current frame and try to back up. We use this same method when
|
|
|
|
setting up the frame cache (see libunwind_frame_cache()). If
|
|
|
|
libunwind returns success for this operation, it means that it
|
|
|
|
has found sufficient libunwind unwinding information to do
|
|
|
|
so. */
|
|
|
|
|
2007-10-30 23:00:29 +01:00
|
|
|
descr = libunwind_descr (gdbarch);
|
2005-06-08 23:54:23 +02:00
|
|
|
acc = descr->accessors;
|
|
|
|
as = unw_create_addr_space_p (acc,
|
2007-10-30 23:00:29 +01:00
|
|
|
gdbarch_byte_order (gdbarch)
|
2007-05-31 Markus Deuling <deuling@de.ibm.com>
* xtensa-tdep.c (XTENSA_IS_ENTRY, extract_call_winsize)
(xtensa_register_write_masked, xtensa_register_read_masked)
(xtensa_extract_return_value, xtensa_store_return_value
(xtensa_push_dummy_call, xtensa_breakpoint_from_pc): Replace
TARGET_BYTE_ORDER by gdbarch_byte_order.
* sh-tdep.c (sh_breakpoint_from_pc, gdb_print_insn_sh)
(sh_justify_value_in_reg, sh_next_flt_argreg, sh_push_dummy_call_fpu)
(sh_extract_return_value_fpu, sh_store_return_value_fpu): Likewise.
* sh64-tdep.c (sh64_breakpoint_from_pc, gdb_print_insn_sh64)
(sh64_push_dummy_call, sh64_extract_return_value)
(sh64_store_return_value, sh64_register_convert_to_virtual)
(sh64_register_convert_to_raw, sh64_pseudo_register_read)
(sh64_pseudo_register_write, sh64_do_fp_register)
(sh64_frame_prev_register): Likewise.
* score-tdep.c (score_print_insn, score_breakpoint_from_pc)
(score_return_value, score_push_dummy_call, score_fetch_inst): Likewise.
* rs6000-tdep.c (rs6000_breakpoint_from_pc, rs6000_push_dummy_call)
(e500_move_ev_register,gdb_print_insn_powerpc): Likewise.
* remote-m32r-sdi.c (m32r_resume, m32r_wait): Likewise.
* ppc-linux-nat.c (store_register): Likewise.
* nto-tdep.c (nto_find_and_open_solib)
(nto_init_solib_absolute_prefix): Likewise.
* mips-tdep.c (mips_pseudo_register_read, mips_pseudo_register_write)
(mips_convert_register_p, mips_eabi_push_dummy_call)
(mips_n32n64_push_dummy_call, mips_n32n64_return_value)
(mips_o32_push_dummy_call, mips_o32_return_value)
(mips_o64_push_dummy_call, mips_o64_return_value, mips_o64_return_value)
(mips_read_fp_register_single, mips_read_fp_register_double)
(mips_print_register, print_gp_register_row, gdb_print_insn_mips)
(mips_breakpoint_from_pc): Likewise.
* mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset): Likewise.
* mips-linux-tdep.c (mips64_supply_fpregset, mips64_fill_fpregset)
(mips_linux_o32_sigframe_init): Likewise.
* m32r-tdep.c (m32r_memory_insert_breakpoint)
(m32r_memory_remove_breakpoint, m32r_breakpoint_from_pc): Likewise.
* libunwind-frame.c (libunwind_frame_cache, libunwind_frame_sniffer)
(libunwind_sigtramp_frame_sniffer, libunwind_get_reg_special): Likewise.
* iq2000-tdep.c (iq2000_breakpoint_from_pc): Likewise.
* coffread.c (process_coff_symbol): Likewise.
* arm-tdep.c (convert_from_extended, convert_to_extended)
(gdb_print_insn_arm): Likewise.
2007-05-31 22:57:41 +02:00
|
|
|
== BFD_ENDIAN_BIG
|
2005-06-08 23:54:23 +02:00
|
|
|
? __BIG_ENDIAN
|
|
|
|
: __LITTLE_ENDIAN);
|
|
|
|
|
2008-05-06 20:37:46 +02:00
|
|
|
ret = unw_init_remote_p (&cursor, as, this_frame);
|
2005-06-08 23:54:23 +02:00
|
|
|
|
|
|
|
if (ret < 0)
|
2007-06-06 21:35:02 +02:00
|
|
|
{
|
|
|
|
unw_destroy_addr_space_p (as);
|
2008-05-06 20:37:46 +02:00
|
|
|
return 0;
|
2007-06-06 21:35:02 +02:00
|
|
|
}
|
2005-06-08 23:54:23 +02:00
|
|
|
|
|
|
|
/* Check to see if we are in a signal frame. */
|
|
|
|
ret = unw_is_signal_frame_p (&cursor);
|
2007-06-06 21:35:02 +02:00
|
|
|
unw_destroy_addr_space_p (as);
|
2005-06-08 23:54:23 +02:00
|
|
|
if (ret > 0)
|
2008-05-06 20:37:46 +02:00
|
|
|
return 1;
|
2005-06-08 23:54:23 +02:00
|
|
|
|
2008-05-06 20:37:46 +02:00
|
|
|
return 0;
|
2005-06-08 23:54:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The following routine is for accessing special registers of the top frame.
|
|
|
|
A special set of accessors must be given that work without frame info.
|
|
|
|
This is used by ia64 to access the rse registers r32-r127. While they
|
|
|
|
are usually located at BOF, this is not always true and only the libunwind
|
|
|
|
info can decipher where they actually are. */
|
|
|
|
int
|
2007-05-12 02:07:45 +02:00
|
|
|
libunwind_get_reg_special (struct gdbarch *gdbarch, struct regcache *regcache,
|
|
|
|
int regnum, void *buf)
|
2005-06-08 23:54:23 +02:00
|
|
|
{
|
|
|
|
unw_cursor_t cursor;
|
|
|
|
unw_accessors_t *acc;
|
|
|
|
unw_addr_space_t as;
|
|
|
|
struct libunwind_descr *descr;
|
|
|
|
int ret;
|
|
|
|
unw_regnum_t uw_regnum;
|
|
|
|
unw_word_t intval;
|
|
|
|
unw_fpreg_t fpval;
|
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
|
|
|
|
descr = libunwind_descr (gdbarch);
|
|
|
|
acc = descr->special_accessors;
|
|
|
|
as = unw_create_addr_space_p (acc,
|
2007-10-30 23:00:29 +01:00
|
|
|
gdbarch_byte_order (gdbarch)
|
2007-05-31 Markus Deuling <deuling@de.ibm.com>
* xtensa-tdep.c (XTENSA_IS_ENTRY, extract_call_winsize)
(xtensa_register_write_masked, xtensa_register_read_masked)
(xtensa_extract_return_value, xtensa_store_return_value
(xtensa_push_dummy_call, xtensa_breakpoint_from_pc): Replace
TARGET_BYTE_ORDER by gdbarch_byte_order.
* sh-tdep.c (sh_breakpoint_from_pc, gdb_print_insn_sh)
(sh_justify_value_in_reg, sh_next_flt_argreg, sh_push_dummy_call_fpu)
(sh_extract_return_value_fpu, sh_store_return_value_fpu): Likewise.
* sh64-tdep.c (sh64_breakpoint_from_pc, gdb_print_insn_sh64)
(sh64_push_dummy_call, sh64_extract_return_value)
(sh64_store_return_value, sh64_register_convert_to_virtual)
(sh64_register_convert_to_raw, sh64_pseudo_register_read)
(sh64_pseudo_register_write, sh64_do_fp_register)
(sh64_frame_prev_register): Likewise.
* score-tdep.c (score_print_insn, score_breakpoint_from_pc)
(score_return_value, score_push_dummy_call, score_fetch_inst): Likewise.
* rs6000-tdep.c (rs6000_breakpoint_from_pc, rs6000_push_dummy_call)
(e500_move_ev_register,gdb_print_insn_powerpc): Likewise.
* remote-m32r-sdi.c (m32r_resume, m32r_wait): Likewise.
* ppc-linux-nat.c (store_register): Likewise.
* nto-tdep.c (nto_find_and_open_solib)
(nto_init_solib_absolute_prefix): Likewise.
* mips-tdep.c (mips_pseudo_register_read, mips_pseudo_register_write)
(mips_convert_register_p, mips_eabi_push_dummy_call)
(mips_n32n64_push_dummy_call, mips_n32n64_return_value)
(mips_o32_push_dummy_call, mips_o32_return_value)
(mips_o64_push_dummy_call, mips_o64_return_value, mips_o64_return_value)
(mips_read_fp_register_single, mips_read_fp_register_double)
(mips_print_register, print_gp_register_row, gdb_print_insn_mips)
(mips_breakpoint_from_pc): Likewise.
* mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset): Likewise.
* mips-linux-tdep.c (mips64_supply_fpregset, mips64_fill_fpregset)
(mips_linux_o32_sigframe_init): Likewise.
* m32r-tdep.c (m32r_memory_insert_breakpoint)
(m32r_memory_remove_breakpoint, m32r_breakpoint_from_pc): Likewise.
* libunwind-frame.c (libunwind_frame_cache, libunwind_frame_sniffer)
(libunwind_sigtramp_frame_sniffer, libunwind_get_reg_special): Likewise.
* iq2000-tdep.c (iq2000_breakpoint_from_pc): Likewise.
* coffread.c (process_coff_symbol): Likewise.
* arm-tdep.c (convert_from_extended, convert_to_extended)
(gdb_print_insn_arm): Likewise.
2007-05-31 22:57:41 +02:00
|
|
|
== BFD_ENDIAN_BIG
|
2005-06-08 23:54:23 +02:00
|
|
|
? __BIG_ENDIAN
|
|
|
|
: __LITTLE_ENDIAN);
|
|
|
|
|
2007-05-12 02:07:45 +02:00
|
|
|
ret = unw_init_remote_p (&cursor, as, regcache);
|
2005-06-08 23:54:23 +02:00
|
|
|
if (ret < 0)
|
2007-06-06 21:35:02 +02:00
|
|
|
{
|
|
|
|
unw_destroy_addr_space_p (as);
|
|
|
|
return -1;
|
|
|
|
}
|
2005-06-08 23:54:23 +02:00
|
|
|
|
|
|
|
uw_regnum = descr->gdb2uw (regnum);
|
|
|
|
|
|
|
|
if (descr->is_fpreg (uw_regnum))
|
|
|
|
{
|
|
|
|
ret = unw_get_fpreg_p (&cursor, uw_regnum, &fpval);
|
|
|
|
ptr = &fpval;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = unw_get_reg_p (&cursor, uw_regnum, &intval);
|
|
|
|
ptr = &intval;
|
|
|
|
}
|
|
|
|
|
2007-06-06 21:35:02 +02:00
|
|
|
unw_destroy_addr_space_p (as);
|
|
|
|
|
2005-06-08 23:54:23 +02:00
|
|
|
if (ret < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (buf)
|
2007-10-30 23:00:29 +01:00
|
|
|
memcpy (buf, ptr, register_size (gdbarch, regnum));
|
2005-06-08 23:54:23 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-11-14 22:17:51 +01:00
|
|
|
static int
|
|
|
|
libunwind_load (void)
|
|
|
|
{
|
|
|
|
void *handle;
|
2012-03-05 18:11:48 +01:00
|
|
|
char *so_error = NULL;
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
handle = dlopen (LIBUNWIND_SO, RTLD_NOW);
|
2012-03-05 18:11:48 +01:00
|
|
|
if (handle == NULL)
|
|
|
|
{
|
|
|
|
so_error = xstrdup (dlerror ());
|
|
|
|
#ifdef LIBUNWIND_SO_7
|
|
|
|
handle = dlopen (LIBUNWIND_SO_7, RTLD_NOW);
|
|
|
|
#endif /* LIBUNWIND_SO_7 */
|
|
|
|
}
|
2003-11-14 22:17:51 +01:00
|
|
|
if (handle == NULL)
|
2012-02-01 17:20:51 +01:00
|
|
|
{
|
|
|
|
fprintf_unfiltered (gdb_stderr, _("[GDB failed to load %s: %s]\n"),
|
2012-03-05 18:11:48 +01:00
|
|
|
LIBUNWIND_SO, so_error);
|
|
|
|
#ifdef LIBUNWIND_SO_7
|
|
|
|
fprintf_unfiltered (gdb_stderr, _("[GDB failed to load %s: %s]\n"),
|
|
|
|
LIBUNWIND_SO_7, dlerror ());
|
|
|
|
#endif /* LIBUNWIND_SO_7 */
|
2012-02-01 17:20:51 +01:00
|
|
|
}
|
2012-03-05 18:11:48 +01:00
|
|
|
xfree (so_error);
|
|
|
|
if (handle == NULL)
|
|
|
|
return 0;
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
/* Initialize pointers to the dynamic library functions we will use. */
|
|
|
|
|
|
|
|
unw_get_reg_p = dlsym (handle, get_reg_name);
|
|
|
|
if (unw_get_reg_p == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
unw_get_fpreg_p = dlsym (handle, get_fpreg_name);
|
|
|
|
if (unw_get_fpreg_p == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
unw_get_saveloc_p = dlsym (handle, get_saveloc_name);
|
|
|
|
if (unw_get_saveloc_p == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2005-06-08 23:54:23 +02:00
|
|
|
unw_is_signal_frame_p = dlsym (handle, is_signal_frame_name);
|
|
|
|
if (unw_is_signal_frame_p == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2003-11-14 22:17:51 +01:00
|
|
|
unw_step_p = dlsym (handle, step_name);
|
|
|
|
if (unw_step_p == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
unw_init_remote_p = dlsym (handle, init_remote_name);
|
|
|
|
if (unw_init_remote_p == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
unw_create_addr_space_p = dlsym (handle, create_addr_space_name);
|
|
|
|
if (unw_create_addr_space_p == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2007-06-06 21:35:02 +02:00
|
|
|
unw_destroy_addr_space_p = dlsym (handle, destroy_addr_space_name);
|
|
|
|
if (unw_destroy_addr_space_p == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2003-11-14 22:17:51 +01:00
|
|
|
unw_search_unwind_table_p = dlsym (handle, search_unwind_table_name);
|
|
|
|
if (unw_search_unwind_table_p == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
unw_find_dyn_list_p = dlsym (handle, find_dyn_list_name);
|
|
|
|
if (unw_find_dyn_list_p == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
libunwind_is_initialized (void)
|
|
|
|
{
|
|
|
|
return libunwind_initialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Provide a prototype to silence -Wmissing-prototypes. */
|
|
|
|
void _initialize_libunwind_frame (void);
|
|
|
|
|
|
|
|
void
|
|
|
|
_initialize_libunwind_frame (void)
|
|
|
|
{
|
2011-01-05 23:22:53 +01:00
|
|
|
libunwind_descr_handle
|
|
|
|
= gdbarch_data_register_post_init (libunwind_descr_init);
|
2003-11-14 22:17:51 +01:00
|
|
|
|
|
|
|
libunwind_initialized = libunwind_load ();
|
|
|
|
}
|