* [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch]
@ 2012-03-04 21:58 Jan Kratochvil
2012-03-06 7:54 ` Pedro Alves
0 siblings, 1 reply; 13+ messages in thread
From: Jan Kratochvil @ 2012-03-04 21:58 UTC (permalink / raw)
To: gdb-patches
Hi,
this is just a rename, it breaks the build, but it makes the changes
reviewable in [patch 2/2]. It would be checked-in as a single commit.
Regards,
Jan
gdb/libunwind-frame.c -> gdb/ia64-tdep-libunwind-frame.c
gdb/libunwind-frame.h -> gdb/ia64-tdep-libunwind-frame.h
--- /dev/null
+++ b/gdb/ia64-tdep-libunwind-frame.c
@@ -0,0 +1,564 @@
+/* Frame unwinder for frames using the libunwind library.
+
+ Copyright (C) 2003-2004, 2006-2012 Free Software Foundation, Inc.
+
+ 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
+ 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 "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>
+
+#include "gdb_assert.h"
+#include "gdb_string.h"
+
+#include "libunwind-frame.h"
+
+#include "complaints.h"
+
+/* IA-64 is the only target that currently uses libunwind-frame. Note
+ how UNW_TARGET, UNW_OBJ, etc. are compile time constants below.
+ 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). */
+
+/* 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
+
+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 *);
+static int (*unw_get_saveloc_p) (unw_cursor_t *, unw_regnum_t,
+ unw_save_loc_t *);
+static int (*unw_is_signal_frame_p) (unw_cursor_t *);
+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);
+static void (*unw_destroy_addr_space_p) (unw_addr_space_t);
+static int (*unw_search_unwind_table_p) (unw_addr_space_t, unw_word_t,
+ unw_dyn_info_t *,
+ unw_proc_info_t *, int, void *);
+static unw_word_t (*unw_find_dyn_list_p) (unw_addr_space_t, unw_dyn_info_t *,
+ void *);
+
+
+struct libunwind_frame_cache
+{
+ CORE_ADDR base;
+ CORE_ADDR func_addr;
+ unw_cursor_t cursor;
+ unw_addr_space_t as;
+};
+
+/* 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. */
+#define STRINGIFY2(name) #name
+#define STRINGIFY(name) STRINGIFY2(name)
+
+#ifndef LIBUNWIND_SO
+/* Use the stable ABI major version number. `libunwind-ia64.so' is a link time
+ only library, not a runtime one. */
+#define LIBUNWIND_SO "libunwind-" STRINGIFY(UNW_TARGET) ".so.7"
+#endif
+
+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));
+static char *is_signal_frame_name = STRINGIFY(UNW_OBJ(is_signal_frame));
+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));
+static char *destroy_addr_space_name = STRINGIFY(UNW_OBJ(destroy_addr_space));
+static char *search_unwind_table_name
+ = STRINGIFY(UNW_OBJ(search_unwind_table));
+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)
+{
+ struct libunwind_descr *descr
+ = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct libunwind_descr);
+
+ return descr;
+}
+
+void
+libunwind_frame_set_descr (struct gdbarch *gdbarch,
+ struct libunwind_descr *descr)
+{
+ 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);
+ deprecated_set_gdbarch_data (gdbarch,
+ libunwind_descr_handle, arch_descr);
+ }
+
+ /* 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;
+ arch_descr->special_accessors = descr->special_accessors;
+}
+
+static struct libunwind_frame_cache *
+libunwind_frame_cache (struct frame_info *this_frame, void **this_cache)
+{
+ 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;
+ struct gdbarch *gdbarch = get_frame_arch (this_frame);
+ int i, ret;
+
+ if (*this_cache)
+ return *this_cache;
+
+ /* Allocate a new cache. */
+ cache = FRAME_OBSTACK_ZALLOC (struct libunwind_frame_cache);
+
+ cache->func_addr = get_frame_func (this_frame);
+ 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);
+
+ /* 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. */
+ descr = libunwind_descr (gdbarch);
+ acc = descr->accessors;
+ as = unw_create_addr_space_p (acc,
+ gdbarch_byte_order (gdbarch)
+ == BFD_ENDIAN_BIG
+ ? __BIG_ENDIAN
+ : __LITTLE_ENDIAN);
+
+ unw_init_remote_p (&cache->cursor, as, this_frame);
+ if (unw_step_p (&cache->cursor) < 0)
+ {
+ unw_destroy_addr_space_p (as);
+ return NULL;
+ }
+
+ /* To get base address, get sp from previous frame. */
+ uw_sp_regnum = descr->gdb2uw (gdbarch_sp_regnum (gdbarch));
+ ret = unw_get_reg_p (&cache->cursor, uw_sp_regnum, &fp);
+ if (ret < 0)
+ {
+ unw_destroy_addr_space_p (as);
+ error (_("Can't get libunwind sp register."));
+ }
+
+ cache->base = (CORE_ADDR)fp;
+ cache->as = as;
+
+ *this_cache = cache;
+ return cache;
+}
+
+void
+libunwind_frame_dealloc_cache (struct frame_info *self, void *this_cache)
+{
+ struct libunwind_frame_cache *cache = this_cache;
+
+ if (cache->as)
+ unw_destroy_addr_space_p (cache->as);
+}
+
+unw_word_t
+libunwind_find_dyn_list (unw_addr_space_t as, unw_dyn_info_t *di, void *arg)
+{
+ return unw_find_dyn_list_p (as, di, arg);
+}
+
+/* Verify if there is sufficient libunwind information for the frame to use
+ libunwind frame unwinding. */
+int
+libunwind_frame_sniffer (const struct frame_unwind *self,
+ struct frame_info *this_frame, void **this_cache)
+{
+ unw_cursor_t cursor;
+ unw_accessors_t *acc;
+ unw_addr_space_t as;
+ struct libunwind_descr *descr;
+ struct gdbarch *gdbarch = get_frame_arch (this_frame);
+ 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. */
+
+ descr = libunwind_descr (gdbarch);
+ acc = descr->accessors;
+ as = unw_create_addr_space_p (acc,
+ gdbarch_byte_order (gdbarch)
+ == BFD_ENDIAN_BIG
+ ? __BIG_ENDIAN
+ : __LITTLE_ENDIAN);
+
+ ret = unw_init_remote_p (&cursor, as, this_frame);
+
+ if (ret < 0)
+ {
+ unw_destroy_addr_space_p (as);
+ return 0;
+ }
+
+
+ /* 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);
+ unw_destroy_addr_space_p (as);
+
+ if (ret < 0)
+ return 0;
+
+ return 1;
+}
+
+void
+libunwind_frame_this_id (struct frame_info *this_frame, void **this_cache,
+ struct frame_id *this_id)
+{
+ struct libunwind_frame_cache *cache =
+ libunwind_frame_cache (this_frame, this_cache);
+
+ if (cache != NULL)
+ (*this_id) = frame_id_build (cache->base, cache->func_addr);
+}
+
+struct value *
+libunwind_frame_prev_register (struct frame_info *this_frame,
+ void **this_cache, int regnum)
+{
+ struct libunwind_frame_cache *cache =
+ libunwind_frame_cache (this_frame, this_cache);
+ struct gdbarch *gdbarch = get_frame_arch (this_frame);
+
+ 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;
+ struct value *val = NULL;
+
+ if (cache == NULL)
+ return frame_unwind_got_constant (this_frame, regnum, 0);
+
+ /* Convert from gdb register number to libunwind register number. */
+ descr = libunwind_descr (get_frame_arch (this_frame));
+ uw_regnum = descr->gdb2uw (regnum);
+
+ gdb_assert (regnum >= 0);
+
+ if (!target_has_registers)
+ error (_("No registers."));
+
+ if (uw_regnum < 0)
+ return frame_unwind_got_constant (this_frame, regnum, 0);
+
+ if (unw_get_saveloc_p (&cache->cursor, uw_regnum, &sl) < 0)
+ return frame_unwind_got_constant (this_frame, regnum, 0);
+
+ switch (sl.type)
+ {
+ case UNW_SLT_MEMORY:
+ val = frame_unwind_got_memory (this_frame, regnum, sl.u.addr);
+ break;
+
+ case UNW_SLT_REG:
+ val = frame_unwind_got_register (this_frame, regnum,
+ descr->uw2gdb (sl.u.regnum));
+ break;
+ 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;
+ }
+ }
+
+ return val;
+}
+
+/* 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);
+}
+
+/* Verify if we are in a sigtramp frame and we can use libunwind to unwind. */
+int
+libunwind_sigtramp_frame_sniffer (const struct frame_unwind *self,
+ struct frame_info *this_frame,
+ void **this_cache)
+{
+ unw_cursor_t cursor;
+ unw_accessors_t *acc;
+ unw_addr_space_t as;
+ struct libunwind_descr *descr;
+ struct gdbarch *gdbarch = get_frame_arch (this_frame);
+ 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. */
+
+ descr = libunwind_descr (gdbarch);
+ acc = descr->accessors;
+ as = unw_create_addr_space_p (acc,
+ gdbarch_byte_order (gdbarch)
+ == BFD_ENDIAN_BIG
+ ? __BIG_ENDIAN
+ : __LITTLE_ENDIAN);
+
+ ret = unw_init_remote_p (&cursor, as, this_frame);
+
+ if (ret < 0)
+ {
+ unw_destroy_addr_space_p (as);
+ return 0;
+ }
+
+ /* Check to see if we are in a signal frame. */
+ ret = unw_is_signal_frame_p (&cursor);
+ unw_destroy_addr_space_p (as);
+ if (ret > 0)
+ return 1;
+
+ return 0;
+}
+
+/* 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
+libunwind_get_reg_special (struct gdbarch *gdbarch, struct regcache *regcache,
+ int regnum, void *buf)
+{
+ 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,
+ gdbarch_byte_order (gdbarch)
+ == BFD_ENDIAN_BIG
+ ? __BIG_ENDIAN
+ : __LITTLE_ENDIAN);
+
+ ret = unw_init_remote_p (&cursor, as, regcache);
+ if (ret < 0)
+ {
+ unw_destroy_addr_space_p (as);
+ return -1;
+ }
+
+ 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;
+ }
+
+ unw_destroy_addr_space_p (as);
+
+ if (ret < 0)
+ return -1;
+
+ if (buf)
+ memcpy (buf, ptr, register_size (gdbarch, regnum));
+
+ return 0;
+}
+
+static int
+libunwind_load (void)
+{
+ void *handle;
+
+ handle = dlopen (LIBUNWIND_SO, RTLD_NOW);
+ if (handle == NULL)
+ {
+ fprintf_unfiltered (gdb_stderr, _("[GDB failed to load %s: %s]\n"),
+ LIBUNWIND_SO, dlerror ());
+ return 0;
+ }
+
+ /* 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;
+
+ unw_is_signal_frame_p = dlsym (handle, is_signal_frame_name);
+ if (unw_is_signal_frame_p == NULL)
+ return 0;
+
+ 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;
+
+ unw_destroy_addr_space_p = dlsym (handle, destroy_addr_space_name);
+ if (unw_destroy_addr_space_p == NULL)
+ return 0;
+
+ 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)
+{
+ libunwind_descr_handle
+ = gdbarch_data_register_post_init (libunwind_descr_init);
+
+ libunwind_initialized = libunwind_load ();
+}
--- /dev/null
+++ b/gdb/ia64-tdep-libunwind-frame.h
@@ -0,0 +1,76 @@
+/* Frame unwinder for frames with libunwind frame information.
+
+ Copyright (C) 2003, 2006-2012 Free Software Foundation, Inc.
+
+ Contributed by Jeff Johnston.
+
+ 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/>. */
+
+struct frame_info;
+struct frame_id;
+struct regcache;
+struct gdbarch;
+
+#ifndef LIBUNWIND_FRAME_H
+#define LIBUNWIND_FRAME_H 1
+
+/* IA-64 is the only target that currently uses libunwind. If some
+ other target wants to use it, we will need to do some abstracting
+ in order to make it possible to have more than one libunwind-frame
+ instance. Including "libunwind.h" is wrong as that ends up
+ including the libunwind-$(arch).h for the host gdb is running
+ on. */
+#include "libunwind-ia64.h"
+
+struct libunwind_descr
+{
+ int (*gdb2uw) (int);
+ int (*uw2gdb) (int);
+ int (*is_fpreg) (int);
+ void *accessors;
+ void *special_accessors;
+};
+
+int libunwind_frame_sniffer (const struct frame_unwind *self,
+ struct frame_info *this_frame,
+ void **this_cache);
+
+int libunwind_sigtramp_frame_sniffer (const struct frame_unwind *self,
+ struct frame_info *this_frame,
+ void **this_cache);
+
+void libunwind_frame_set_descr (struct gdbarch *arch,
+ struct libunwind_descr *descr);
+
+void libunwind_frame_this_id (struct frame_info *this_frame, void **this_cache,
+ struct frame_id *this_id);
+struct value *libunwind_frame_prev_register (struct frame_info *this_frame,
+ void **this_cache, int regnum);
+void libunwind_frame_dealloc_cache (struct frame_info *self, void *cache);
+
+int libunwind_is_initialized (void);
+
+int libunwind_search_unwind_table (void *as, long ip, void *di,
+ void *pi, int need_unwind_info, void *args);
+
+unw_word_t libunwind_find_dyn_list (unw_addr_space_t, unw_dyn_info_t *,
+ void *);
+
+int libunwind_get_reg_special (struct gdbarch *gdbarch,
+ struct regcache *regcache,
+ int regnum, void *buf);
+
+#endif /* libunwind-frame.h */
--- a/gdb/libunwind-frame.c
+++ /dev/null
@@ -1,564 +0,0 @@
-/* Frame unwinder for frames using the libunwind library.
-
- Copyright (C) 2003-2004, 2006-2012 Free Software Foundation, Inc.
-
- 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
- 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 "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>
-
-#include "gdb_assert.h"
-#include "gdb_string.h"
-
-#include "libunwind-frame.h"
-
-#include "complaints.h"
-
-/* IA-64 is the only target that currently uses libunwind-frame. Note
- how UNW_TARGET, UNW_OBJ, etc. are compile time constants below.
- 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). */
-
-/* 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
-
-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 *);
-static int (*unw_get_saveloc_p) (unw_cursor_t *, unw_regnum_t,
- unw_save_loc_t *);
-static int (*unw_is_signal_frame_p) (unw_cursor_t *);
-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);
-static void (*unw_destroy_addr_space_p) (unw_addr_space_t);
-static int (*unw_search_unwind_table_p) (unw_addr_space_t, unw_word_t,
- unw_dyn_info_t *,
- unw_proc_info_t *, int, void *);
-static unw_word_t (*unw_find_dyn_list_p) (unw_addr_space_t, unw_dyn_info_t *,
- void *);
-
-
-struct libunwind_frame_cache
-{
- CORE_ADDR base;
- CORE_ADDR func_addr;
- unw_cursor_t cursor;
- unw_addr_space_t as;
-};
-
-/* 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. */
-#define STRINGIFY2(name) #name
-#define STRINGIFY(name) STRINGIFY2(name)
-
-#ifndef LIBUNWIND_SO
-/* Use the stable ABI major version number. `libunwind-ia64.so' is a link time
- only library, not a runtime one. */
-#define LIBUNWIND_SO "libunwind-" STRINGIFY(UNW_TARGET) ".so.7"
-#endif
-
-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));
-static char *is_signal_frame_name = STRINGIFY(UNW_OBJ(is_signal_frame));
-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));
-static char *destroy_addr_space_name = STRINGIFY(UNW_OBJ(destroy_addr_space));
-static char *search_unwind_table_name
- = STRINGIFY(UNW_OBJ(search_unwind_table));
-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)
-{
- struct libunwind_descr *descr
- = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct libunwind_descr);
-
- return descr;
-}
-
-void
-libunwind_frame_set_descr (struct gdbarch *gdbarch,
- struct libunwind_descr *descr)
-{
- 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);
- deprecated_set_gdbarch_data (gdbarch,
- libunwind_descr_handle, arch_descr);
- }
-
- /* 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;
- arch_descr->special_accessors = descr->special_accessors;
-}
-
-static struct libunwind_frame_cache *
-libunwind_frame_cache (struct frame_info *this_frame, void **this_cache)
-{
- 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;
- struct gdbarch *gdbarch = get_frame_arch (this_frame);
- int i, ret;
-
- if (*this_cache)
- return *this_cache;
-
- /* Allocate a new cache. */
- cache = FRAME_OBSTACK_ZALLOC (struct libunwind_frame_cache);
-
- cache->func_addr = get_frame_func (this_frame);
- 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);
-
- /* 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. */
- descr = libunwind_descr (gdbarch);
- acc = descr->accessors;
- as = unw_create_addr_space_p (acc,
- gdbarch_byte_order (gdbarch)
- == BFD_ENDIAN_BIG
- ? __BIG_ENDIAN
- : __LITTLE_ENDIAN);
-
- unw_init_remote_p (&cache->cursor, as, this_frame);
- if (unw_step_p (&cache->cursor) < 0)
- {
- unw_destroy_addr_space_p (as);
- return NULL;
- }
-
- /* To get base address, get sp from previous frame. */
- uw_sp_regnum = descr->gdb2uw (gdbarch_sp_regnum (gdbarch));
- ret = unw_get_reg_p (&cache->cursor, uw_sp_regnum, &fp);
- if (ret < 0)
- {
- unw_destroy_addr_space_p (as);
- error (_("Can't get libunwind sp register."));
- }
-
- cache->base = (CORE_ADDR)fp;
- cache->as = as;
-
- *this_cache = cache;
- return cache;
-}
-
-void
-libunwind_frame_dealloc_cache (struct frame_info *self, void *this_cache)
-{
- struct libunwind_frame_cache *cache = this_cache;
-
- if (cache->as)
- unw_destroy_addr_space_p (cache->as);
-}
-
-unw_word_t
-libunwind_find_dyn_list (unw_addr_space_t as, unw_dyn_info_t *di, void *arg)
-{
- return unw_find_dyn_list_p (as, di, arg);
-}
-
-/* Verify if there is sufficient libunwind information for the frame to use
- libunwind frame unwinding. */
-int
-libunwind_frame_sniffer (const struct frame_unwind *self,
- struct frame_info *this_frame, void **this_cache)
-{
- unw_cursor_t cursor;
- unw_accessors_t *acc;
- unw_addr_space_t as;
- struct libunwind_descr *descr;
- struct gdbarch *gdbarch = get_frame_arch (this_frame);
- 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. */
-
- descr = libunwind_descr (gdbarch);
- acc = descr->accessors;
- as = unw_create_addr_space_p (acc,
- gdbarch_byte_order (gdbarch)
- == BFD_ENDIAN_BIG
- ? __BIG_ENDIAN
- : __LITTLE_ENDIAN);
-
- ret = unw_init_remote_p (&cursor, as, this_frame);
-
- if (ret < 0)
- {
- unw_destroy_addr_space_p (as);
- return 0;
- }
-
-
- /* 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);
- unw_destroy_addr_space_p (as);
-
- if (ret < 0)
- return 0;
-
- return 1;
-}
-
-void
-libunwind_frame_this_id (struct frame_info *this_frame, void **this_cache,
- struct frame_id *this_id)
-{
- struct libunwind_frame_cache *cache =
- libunwind_frame_cache (this_frame, this_cache);
-
- if (cache != NULL)
- (*this_id) = frame_id_build (cache->base, cache->func_addr);
-}
-
-struct value *
-libunwind_frame_prev_register (struct frame_info *this_frame,
- void **this_cache, int regnum)
-{
- struct libunwind_frame_cache *cache =
- libunwind_frame_cache (this_frame, this_cache);
- struct gdbarch *gdbarch = get_frame_arch (this_frame);
-
- 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;
- struct value *val = NULL;
-
- if (cache == NULL)
- return frame_unwind_got_constant (this_frame, regnum, 0);
-
- /* Convert from gdb register number to libunwind register number. */
- descr = libunwind_descr (get_frame_arch (this_frame));
- uw_regnum = descr->gdb2uw (regnum);
-
- gdb_assert (regnum >= 0);
-
- if (!target_has_registers)
- error (_("No registers."));
-
- if (uw_regnum < 0)
- return frame_unwind_got_constant (this_frame, regnum, 0);
-
- if (unw_get_saveloc_p (&cache->cursor, uw_regnum, &sl) < 0)
- return frame_unwind_got_constant (this_frame, regnum, 0);
-
- switch (sl.type)
- {
- case UNW_SLT_MEMORY:
- val = frame_unwind_got_memory (this_frame, regnum, sl.u.addr);
- break;
-
- case UNW_SLT_REG:
- val = frame_unwind_got_register (this_frame, regnum,
- descr->uw2gdb (sl.u.regnum));
- break;
- 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;
- }
- }
-
- return val;
-}
-
-/* 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);
-}
-
-/* Verify if we are in a sigtramp frame and we can use libunwind to unwind. */
-int
-libunwind_sigtramp_frame_sniffer (const struct frame_unwind *self,
- struct frame_info *this_frame,
- void **this_cache)
-{
- unw_cursor_t cursor;
- unw_accessors_t *acc;
- unw_addr_space_t as;
- struct libunwind_descr *descr;
- struct gdbarch *gdbarch = get_frame_arch (this_frame);
- 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. */
-
- descr = libunwind_descr (gdbarch);
- acc = descr->accessors;
- as = unw_create_addr_space_p (acc,
- gdbarch_byte_order (gdbarch)
- == BFD_ENDIAN_BIG
- ? __BIG_ENDIAN
- : __LITTLE_ENDIAN);
-
- ret = unw_init_remote_p (&cursor, as, this_frame);
-
- if (ret < 0)
- {
- unw_destroy_addr_space_p (as);
- return 0;
- }
-
- /* Check to see if we are in a signal frame. */
- ret = unw_is_signal_frame_p (&cursor);
- unw_destroy_addr_space_p (as);
- if (ret > 0)
- return 1;
-
- return 0;
-}
-
-/* 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
-libunwind_get_reg_special (struct gdbarch *gdbarch, struct regcache *regcache,
- int regnum, void *buf)
-{
- 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,
- gdbarch_byte_order (gdbarch)
- == BFD_ENDIAN_BIG
- ? __BIG_ENDIAN
- : __LITTLE_ENDIAN);
-
- ret = unw_init_remote_p (&cursor, as, regcache);
- if (ret < 0)
- {
- unw_destroy_addr_space_p (as);
- return -1;
- }
-
- 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;
- }
-
- unw_destroy_addr_space_p (as);
-
- if (ret < 0)
- return -1;
-
- if (buf)
- memcpy (buf, ptr, register_size (gdbarch, regnum));
-
- return 0;
-}
-
-static int
-libunwind_load (void)
-{
- void *handle;
-
- handle = dlopen (LIBUNWIND_SO, RTLD_NOW);
- if (handle == NULL)
- {
- fprintf_unfiltered (gdb_stderr, _("[GDB failed to load %s: %s]\n"),
- LIBUNWIND_SO, dlerror ());
- return 0;
- }
-
- /* 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;
-
- unw_is_signal_frame_p = dlsym (handle, is_signal_frame_name);
- if (unw_is_signal_frame_p == NULL)
- return 0;
-
- 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;
-
- unw_destroy_addr_space_p = dlsym (handle, destroy_addr_space_name);
- if (unw_destroy_addr_space_p == NULL)
- return 0;
-
- 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)
-{
- libunwind_descr_handle
- = gdbarch_data_register_post_init (libunwind_descr_init);
-
- libunwind_initialized = libunwind_load ();
-}
--- a/gdb/libunwind-frame.h
+++ /dev/null
@@ -1,76 +0,0 @@
-/* Frame unwinder for frames with libunwind frame information.
-
- Copyright (C) 2003, 2006-2012 Free Software Foundation, Inc.
-
- Contributed by Jeff Johnston.
-
- 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/>. */
-
-struct frame_info;
-struct frame_id;
-struct regcache;
-struct gdbarch;
-
-#ifndef LIBUNWIND_FRAME_H
-#define LIBUNWIND_FRAME_H 1
-
-/* IA-64 is the only target that currently uses libunwind. If some
- other target wants to use it, we will need to do some abstracting
- in order to make it possible to have more than one libunwind-frame
- instance. Including "libunwind.h" is wrong as that ends up
- including the libunwind-$(arch).h for the host gdb is running
- on. */
-#include "libunwind-ia64.h"
-
-struct libunwind_descr
-{
- int (*gdb2uw) (int);
- int (*uw2gdb) (int);
- int (*is_fpreg) (int);
- void *accessors;
- void *special_accessors;
-};
-
-int libunwind_frame_sniffer (const struct frame_unwind *self,
- struct frame_info *this_frame,
- void **this_cache);
-
-int libunwind_sigtramp_frame_sniffer (const struct frame_unwind *self,
- struct frame_info *this_frame,
- void **this_cache);
-
-void libunwind_frame_set_descr (struct gdbarch *arch,
- struct libunwind_descr *descr);
-
-void libunwind_frame_this_id (struct frame_info *this_frame, void **this_cache,
- struct frame_id *this_id);
-struct value *libunwind_frame_prev_register (struct frame_info *this_frame,
- void **this_cache, int regnum);
-void libunwind_frame_dealloc_cache (struct frame_info *self, void *cache);
-
-int libunwind_is_initialized (void);
-
-int libunwind_search_unwind_table (void *as, long ip, void *di,
- void *pi, int need_unwind_info, void *args);
-
-unw_word_t libunwind_find_dyn_list (unw_addr_space_t, unw_dyn_info_t *,
- void *);
-
-int libunwind_get_reg_special (struct gdbarch *gdbarch,
- struct regcache *regcache,
- int regnum, void *buf);
-
-#endif /* libunwind-frame.h */
^ permalink raw reply [flat|nested] 13+ messages in thread* Re: [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch]
2012-03-04 21:58 [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch] Jan Kratochvil
@ 2012-03-06 7:54 ` Pedro Alves
2012-03-06 8:43 ` Mark Kettenis
2012-03-08 9:15 ` Jan Kratochvil
0 siblings, 2 replies; 13+ messages in thread
From: Pedro Alves @ 2012-03-06 7:54 UTC (permalink / raw)
To: Jan Kratochvil; +Cc: gdb-patches
On 03/04/2012 09:57 PM, Jan Kratochvil wrote:
> Hi,
>
> this is just a rename, it breaks the build, but it makes the changes
> reviewable in [patch 2/2]. It would be checked-in as a single commit.
BTW, there's a different way to split this so that you don't mix
the rename with other changes to the same files, and so that
git log sees through pure file renames without trouble.
That is, you rename the header in one patch, and rename the
c file in the other patch. For example:
In patch #1 rename libunwind-frame.h -> ia64-tdep-libunwind-frame.h
but otherwise don't touch ia64-tdep-libunwind-frame.h. Also do all
other adjustments to the other files so that the build doesn't break
(except for the build bits that need adjustment to compile
ia64-tdep-libunwind-frame.o instead).
In patch #2 rename libunwind-frame.c -> ia64-tdep-libunwind-frame.c
but otherwise don't touch ia64-tdep-libunwind-frame.c. Do the
build bits adjustment to build ia64-tdep-libunwind-frame.o instead
in this patch.
Or the other way around, (there's more than one
way to split this). The point is not to touch the same file
you're renaming in the same commit you're doing the rename in.
--
Pedro Alves
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch]
2012-03-06 7:54 ` Pedro Alves
@ 2012-03-06 8:43 ` Mark Kettenis
2012-03-06 8:45 ` Jan Kratochvil
2012-03-06 9:00 ` Tristan Gingold
2012-03-08 9:15 ` Jan Kratochvil
1 sibling, 2 replies; 13+ messages in thread
From: Mark Kettenis @ 2012-03-06 8:43 UTC (permalink / raw)
To: palves; +Cc: jan.kratochvil, gdb-patches
> Date: Tue, 06 Mar 2012 07:54:35 +0000
> From: Pedro Alves <palves@redhat.com>
>
> In patch #1 rename libunwind-frame.h -> ia64-tdep-libunwind-frame.h
BTW, is it just me, or do other people think as well that
ia64-tdep-libunwin-frame.h is an awfully long name?
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch]
2012-03-06 8:43 ` Mark Kettenis
@ 2012-03-06 8:45 ` Jan Kratochvil
2012-03-06 9:00 ` Tristan Gingold
1 sibling, 0 replies; 13+ messages in thread
From: Jan Kratochvil @ 2012-03-06 8:45 UTC (permalink / raw)
To: Mark Kettenis; +Cc: palves, gdb-patches
On Tue, 06 Mar 2012 09:43:06 +0100, Mark Kettenis wrote:
> BTW, is it just me, or do other people think as well that
> ia64-tdep-libunwin-frame.h is an awfully long name?
I agree but I find essential the very every component of its name.
Regards,
Jan
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch]
2012-03-06 8:43 ` Mark Kettenis
2012-03-06 8:45 ` Jan Kratochvil
@ 2012-03-06 9:00 ` Tristan Gingold
2012-03-06 9:44 ` Pedro Alves
1 sibling, 1 reply; 13+ messages in thread
From: Tristan Gingold @ 2012-03-06 9:00 UTC (permalink / raw)
To: Mark Kettenis; +Cc: palves, jan.kratochvil, gdb-patches
On Mar 6, 2012, at 9:43 AM, Mark Kettenis wrote:
>> Date: Tue, 06 Mar 2012 07:54:35 +0000
>> From: Pedro Alves <palves@redhat.com>
>>
>> In patch #1 rename libunwind-frame.h -> ia64-tdep-libunwind-frame.h
>
> BTW, is it just me, or do other people think as well that
> ia64-tdep-libunwin-frame.h is an awfully long name?
Yes, it is but I am unable to find a better shorter one…
Tristan.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch]
2012-03-06 9:00 ` Tristan Gingold
@ 2012-03-06 9:44 ` Pedro Alves
2012-03-06 9:53 ` Jan Kratochvil
0 siblings, 1 reply; 13+ messages in thread
From: Pedro Alves @ 2012-03-06 9:44 UTC (permalink / raw)
To: Tristan Gingold; +Cc: Mark Kettenis, jan.kratochvil, gdb-patches
On 03/06/2012 09:00 AM, Tristan Gingold wrote:
>
> On Mar 6, 2012, at 9:43 AM, Mark Kettenis wrote:
>
>>> Date: Tue, 06 Mar 2012 07:54:35 +0000
>>> From: Pedro Alves <palves@redhat.com>
>>>
>>> In patch #1 rename libunwind-frame.h -> ia64-tdep-libunwind-frame.h
>>
>> BTW, is it just me, or do other people think as well that
>> ia64-tdep-libunwin-frame.h is an awfully long name?
>
> Yes, it is but I am unable to find a better shorter oneÂ…
I could live quite well without the tdep bit, thus, ia64-libunwind-frame.[hc];
or, since we're really using libunwind's libunwind-ia64.h and libunwind-ia64.so,
we could also go with libunwind-ia64-frame.[hc].
--
Pedro Alves
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch]
2012-03-06 9:44 ` Pedro Alves
@ 2012-03-06 9:53 ` Jan Kratochvil
2012-03-06 10:35 ` Pedro Alves
2012-03-06 10:48 ` Mark Kettenis
0 siblings, 2 replies; 13+ messages in thread
From: Jan Kratochvil @ 2012-03-06 9:53 UTC (permalink / raw)
To: Pedro Alves; +Cc: Tristan Gingold, Mark Kettenis, gdb-patches
On Tue, 06 Mar 2012 10:43:38 +0100, Pedro Alves wrote:
> I could live quite well without the tdep bit, thus, ia64-libunwind-frame.[hc];
> or, since we're really using libunwind's libunwind-ia64.h and libunwind-ia64.so,
> we could also go with libunwind-ia64-frame.[hc].
I find "tdep" important there, that it is really a target-only file.
I had rather an idea ia64-tdep-libunwind.[ch].
Jan
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch]
2012-03-06 9:53 ` Jan Kratochvil
@ 2012-03-06 10:35 ` Pedro Alves
2012-03-06 10:48 ` Mark Kettenis
1 sibling, 0 replies; 13+ messages in thread
From: Pedro Alves @ 2012-03-06 10:35 UTC (permalink / raw)
To: Jan Kratochvil; +Cc: Tristan Gingold, Mark Kettenis, gdb-patches
On 03/06/2012 09:52 AM, Jan Kratochvil wrote:
> On Tue, 06 Mar 2012 10:43:38 +0100, Pedro Alves wrote:
>> I could live quite well without the tdep bit, thus, ia64-libunwind-frame.[hc];
>> or, since we're really using libunwind's libunwind-ia64.h and libunwind-ia64.so,
>> we could also go with libunwind-ia64-frame.[hc].
>
> I find "tdep" important there, that it is really a target-only file.
>
> I had rather an idea ia64-tdep-libunwind.[ch].
That's fine with me as well. Mark, do you have a preference?
--
Pedro Alves
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch]
2012-03-06 9:53 ` Jan Kratochvil
2012-03-06 10:35 ` Pedro Alves
@ 2012-03-06 10:48 ` Mark Kettenis
2012-03-06 11:32 ` Jan Kratochvil
1 sibling, 1 reply; 13+ messages in thread
From: Mark Kettenis @ 2012-03-06 10:48 UTC (permalink / raw)
To: jan.kratochvil; +Cc: palves, gingold, gdb-patches
> Date: Tue, 6 Mar 2012 10:52:36 +0100
> From: Jan Kratochvil <jan.kratochvil@redhat.com>
>
> On Tue, 06 Mar 2012 10:43:38 +0100, Pedro Alves wrote:
> > I could live quite well without the tdep bit, thus, ia64-libunwind-frame.[hc];
> > or, since we're really using libunwind's libunwind-ia64.h and libunwind-ia64.so,
> > we could also go with libunwind-ia64-frame.[hc].
>
> I find "tdep" important there, that it is really a target-only file.
>
> I had rather an idea ia64-tdep-libunwind.[ch].
Then it probably should be ia64-libunwind-tdep.c since we only have
files that have the -tdep bit as a suffix.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch]
2012-03-06 10:48 ` Mark Kettenis
@ 2012-03-06 11:32 ` Jan Kratochvil
2012-03-06 11:43 ` Pedro Alves
0 siblings, 1 reply; 13+ messages in thread
From: Jan Kratochvil @ 2012-03-06 11:32 UTC (permalink / raw)
To: Mark Kettenis; +Cc: palves, gingold, gdb-patches
On Tue, 06 Mar 2012 11:47:49 +0100, Mark Kettenis wrote:
> Then it probably should be ia64-libunwind-tdep.c since we only have
> files that have the -tdep bit as a suffix.
Fine with me.
Thanks,
Jan
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch]
2012-03-06 11:32 ` Jan Kratochvil
@ 2012-03-06 11:43 ` Pedro Alves
0 siblings, 0 replies; 13+ messages in thread
From: Pedro Alves @ 2012-03-06 11:43 UTC (permalink / raw)
To: Jan Kratochvil; +Cc: Mark Kettenis, gingold, gdb-patches
On 03/06/2012 11:32 AM, Jan Kratochvil wrote:
> On Tue, 06 Mar 2012 11:47:49 +0100, Mark Kettenis wrote:
>> Then it probably should be ia64-libunwind-tdep.c since we only have
>> files that have the -tdep bit as a suffix.
>
> Fine with me.
Fine with me as well.
Thanks Mark, that does make sense.
--
Pedro Alves
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch]
2012-03-06 7:54 ` Pedro Alves
2012-03-06 8:43 ` Mark Kettenis
@ 2012-03-08 9:15 ` Jan Kratochvil
2012-03-08 10:40 ` Pedro Alves
1 sibling, 1 reply; 13+ messages in thread
From: Jan Kratochvil @ 2012-03-08 9:15 UTC (permalink / raw)
To: Pedro Alves; +Cc: gdb-patches
On Tue, 06 Mar 2012 08:54:35 +0100, Pedro Alves wrote:
> On 03/04/2012 09:57 PM, Jan Kratochvil wrote:
> > this is just a rename, it breaks the build, but it makes the changes
> > reviewable in [patch 2/2]. It would be checked-in as a single commit.
>
> BTW, there's a different way to split this so that you don't mix
> the rename with other changes to the same files, and so that
> git log sees through pure file renames without trouble.
'git log' never see a rename while 'git log -M' sees the rename even if those
changes are in single commit as those changes are really very small:
diff --git a/gdb/libunwind-frame.h b/gdb/ia64-libunwind-tdep.h
similarity index 93%
rename from gdb/libunwind-frame.h
rename to gdb/ia64-libunwind-tdep.h
index a6b3c34..221bbd2 100644
--- a/gdb/libunwind-frame.h
+++ b/gdb/ia64-libunwind-tdep.h
@@ -1,4 +1,4 @@
-/* Frame unwinder for frames with libunwind frame information.
+/* Frame unwinder for ia64 frames with libunwind frame information.
[...]
So I do not find a need to use multiple commits into the (CVS) repository.
I was posting it this way so that one can easily apply the series by 'patch'
while still being able to see the changes (in [patch 2/2]).
If one can assume every mailing list user has GIT anyway the repository
absolutely no longer makes sense in CVS.
Thanks,
Jan
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch]
2012-03-08 9:15 ` Jan Kratochvil
@ 2012-03-08 10:40 ` Pedro Alves
0 siblings, 0 replies; 13+ messages in thread
From: Pedro Alves @ 2012-03-08 10:40 UTC (permalink / raw)
To: Jan Kratochvil; +Cc: gdb-patches
On 03/08/2012 09:15 AM, Jan Kratochvil wrote:
> On Tue, 06 Mar 2012 08:54:35 +0100, Pedro Alves wrote:
>> On 03/04/2012 09:57 PM, Jan Kratochvil wrote:
>>> this is just a rename, it breaks the build, but it makes the changes
>>> reviewable in [patch 2/2]. It would be checked-in as a single commit.
>>
>> BTW, there's a different way to split this so that you don't mix
>> the rename with other changes to the same files, and so that
>> git log sees through pure file renames without trouble.
> 'git log' never see a rename while 'git log -M' sees the rename even if those
> changes are in single commit as those changes are really very small:
Thanks, but well, I said "git log", but I meant "git in general".
> diff --git a/gdb/libunwind-frame.h b/gdb/ia64-libunwind-tdep.h
> similarity index 93%
> rename from gdb/libunwind-frame.h
> rename to gdb/ia64-libunwind-tdep.h
> index a6b3c34..221bbd2 100644
> --- a/gdb/libunwind-frame.h
> +++ b/gdb/ia64-libunwind-tdep.h
> @@ -1,4 +1,4 @@
> -/* Frame unwinder for frames with libunwind frame information.
> +/* Frame unwinder for ia64 frames with libunwind frame information.
> [...]
>
> So I do not find a need to use multiple commits into the (CVS) repository.
Hmm, okay, that's smart. I do think rename-only in one commit/patch, and then
changes as separate commits in the repository is anyway a good principle to aim
for (making sure the build doesn't break in the process). But given that, I don't
care so much.
> I was posting it this way so that one can easily apply the series by 'patch'
> while still being able to see the changes (in [patch 2/2]).
There's nothing in my suggestion that'd prevent that, given the changes are
always separate from the rename.
> If one can assume every mailing list user has GIT anyway the repository
> absolutely no longer makes sense in CVS.
There's more to the cvs/git conversion than what mailing list
users are using, so let's keep that out of the discussion.
(That'd actually make my argument stronger. Making pure renames in separate
commits increases the chances of tools other than git also understanding
a rename.)
Anyway, please go ahead as you prefer.
--
Pedro Alves
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2012-03-08 10:40 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-04 21:58 [patch 1/2] libunwind/ia64: Rename libunwind-frame.[ch] Jan Kratochvil
2012-03-06 7:54 ` Pedro Alves
2012-03-06 8:43 ` Mark Kettenis
2012-03-06 8:45 ` Jan Kratochvil
2012-03-06 9:00 ` Tristan Gingold
2012-03-06 9:44 ` Pedro Alves
2012-03-06 9:53 ` Jan Kratochvil
2012-03-06 10:35 ` Pedro Alves
2012-03-06 10:48 ` Mark Kettenis
2012-03-06 11:32 ` Jan Kratochvil
2012-03-06 11:43 ` Pedro Alves
2012-03-08 9:15 ` Jan Kratochvil
2012-03-08 10:40 ` Pedro Alves
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox