mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 08:24:05 +08:00
gdb/
Removed unused code. * libunwind-frame.c (libunwind_frame_unwind) (libunwind_frame_base_address): Remove. * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
2012-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
|
|
||||||
|
Removed unused code.
|
||||||
|
* libunwind-frame.c (libunwind_frame_unwind)
|
||||||
|
(libunwind_frame_base_address): Remove.
|
||||||
|
* libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
|
||||||
|
|
||||||
2012-03-04 Yao Qi <yao@codesourcery.com>
|
2012-03-04 Yao Qi <yao@codesourcery.com>
|
||||||
|
|
||||||
* common/agent.c (gdb_connect_sync_socket): Add _ markup and
|
* common/agent.c (gdb_connect_sync_socket): Add _ markup and
|
||||||
|
@ -241,17 +241,6 @@ 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);
|
return unw_find_dyn_list_p (as, di, arg);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct frame_unwind libunwind_frame_unwind =
|
|
||||||
{
|
|
||||||
NORMAL_FRAME,
|
|
||||||
default_frame_unwind_stop_reason,
|
|
||||||
libunwind_frame_this_id,
|
|
||||||
libunwind_frame_prev_register,
|
|
||||||
NULL,
|
|
||||||
libunwind_frame_sniffer,
|
|
||||||
libunwind_frame_dealloc_cache,
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Verify if there is sufficient libunwind information for the frame to use
|
/* Verify if there is sufficient libunwind information for the frame to use
|
||||||
libunwind frame unwinding. */
|
libunwind frame unwinding. */
|
||||||
int
|
int
|
||||||
@ -384,17 +373,6 @@ libunwind_frame_prev_register (struct frame_info *this_frame,
|
|||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
CORE_ADDR
|
|
||||||
libunwind_frame_base_address (struct frame_info *this_frame, void **this_cache)
|
|
||||||
{
|
|
||||||
struct libunwind_frame_cache *cache =
|
|
||||||
libunwind_frame_cache (this_frame, this_cache);
|
|
||||||
|
|
||||||
if (cache == NULL)
|
|
||||||
return (CORE_ADDR)NULL;
|
|
||||||
return cache->base;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* The following is a glue routine to call the libunwind unwind table
|
/* The following is a glue routine to call the libunwind unwind table
|
||||||
search function to get unwind information for a specified ip address. */
|
search function to get unwind information for a specified ip address. */
|
||||||
int
|
int
|
||||||
|
@ -60,8 +60,6 @@ void libunwind_frame_this_id (struct frame_info *this_frame, void **this_cache,
|
|||||||
struct value *libunwind_frame_prev_register (struct frame_info *this_frame,
|
struct value *libunwind_frame_prev_register (struct frame_info *this_frame,
|
||||||
void **this_cache, int regnum);
|
void **this_cache, int regnum);
|
||||||
void libunwind_frame_dealloc_cache (struct frame_info *self, void *cache);
|
void libunwind_frame_dealloc_cache (struct frame_info *self, void *cache);
|
||||||
CORE_ADDR libunwind_frame_base_address (struct frame_info *this_frame,
|
|
||||||
void **this_cache);
|
|
||||||
|
|
||||||
int libunwind_is_initialized (void);
|
int libunwind_is_initialized (void);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user