Make various lm_info implementations inherit from a base class
The lm_info structure is used to store target specific information about mapped libraries. It is currently defined as an opaque type in solist.h and a pointer to it is included in solist, the target-agnostic object representing a loaded shared library. Multiple targets define their own implementation of lm_info. In anticipation of using C++ stuff (e.g. vector) in the lm_info objects, we first need to avoid different definitions of classes with the same name (which violates the one definition rule). This patch does it by having a base class (lm_info_base) from which all the specific lm_info derive. Each implementation is renamed to something that makes sense (e.g. lm_info_aix for AIX). The next logical step would probably be to derive directly from so_list, it's not really obvious, so I'll keep that for another day. One special case is the Neutrino (nto) support. It uses SVR4-style libraries, but overrides some methods. To do that, it needed to have its own copy of SVR4's lm_info structure in nto-tdep.c, because it was just not possible to put it in solib-svr4.h and include that file. Over time, that copy got out of sync, which is still the case today. I can only assume that the lm_addr function in nto-tdep.c is broken right now. The first field of the old lm_info was a pointer (gdb_byte *), whereas in the new lm_info it's an address in the inferior (CORE_ADDR). Trying to use that field today probably results in a crash. With this refactor, it's now possible to put lm_info_svr4 in solib-svr4.h and just include it. I have adapted the code in nto-tdep.c to that it builds, but it's probably not correct. Since I don't have the knowledge nor setup to try this on Neutrino, somebody else would have to fix it. But I am confident that I am not making things worse than they already are. gdb/ChangeLog: * solist.h (struct lm_info): Remove. (struct lm_info_base): New class. (struct so_list) <lm_info>: Change type to lm_info_base *. * nto-tdep.c (struct lm_info): Remove. (lm_addr): Adjust. * solib-aix.c (struct lm_info): Rename to ... (struct lm_info_aix): ... this. Extend lm_info_base. (lm_info_p): Rename to ... (lm_info_aix_p): ... this, and adjust. (solib_aix_new_lm_info, solib_aix_xfree_lm_info, solib_aix_parse_libraries, library_list_start_library, solib_aix_free_library_list, solib_aix_parse_libraries, solib_aix_get_library_list, solib_aix_relocate_section_addresses, solib_aix_free_so, solib_aix_get_section_offsets, solib_aix_solib_create_inferior_hook, solib_aix_current_sos): Adjust. (struct solib_aix_inferior_data) <library_list>: Adjust. * solib-darwin.c (struct lm_info): Rename to ... (struct lm_info_darwin): ... this. Extend lm_info_base. (darwin_current_sos, darwin_relocate_section_addresses): Adjust. * solib-dsbt.c (struct lm_info): Rename to ... (struct lm_info_dsbt): ... this. Extend lm_info_base. (struct dsbt_info) <main_executable_lm_info): Adjust. (dsbt_current_sos, dsbt_relocate_main_executable, dsbt_free_so, dsbt_relocate_section_addresses): Adjust. * solib-frv.c (struct lm_info): Rename to ... (struct lm_info_frv): ... this. Extend lm_info_base. (main_executable_lm_info): Adjust. (frv_current_sos, frv_relocate_main_executable, frv_free_so, frv_relocate_section_addresses, frv_fdpic_find_global_pointer, find_canonical_descriptor_in_load_object, frv_fdpic_find_canonical_descriptor): Adjust. * solib-svr4.c (struct lm_info): Move to solib-svr4.h, renamed to lm_info_svr4. (lm_info_read, lm_addr_check, svr4_keep_data_in_core, svr4_clear_so, svr4_copy_library_list, library_list_start_library, svr4_default_sos, svr4_read_so_list, svr4_current_sos, svr4_fetch_objfile_link_map, solist_update_incremental): Adjust. * solib-svr4.h (struct lm_info_svr4): Move here from solib-svr4.c. * solib-target.c (struct lm_info): Rename to ... (struct lm_info_target): ... this. Extend lm_info_base. (lm_info_p): Rename to ... (lm_info_target_p): ... this. (solib_target_parse_libraries, library_list_start_segment, library_list_start_section, library_list_start_library, library_list_end_library, solib_target_free_library_list, solib_target_current_sos, solib_target_free_so, solib_target_relocate_section_addresses): Adjust. * windows-nat.c (struct lm_info): Rename to ... (struct lm_info_windows): ... this. Extend lm_info_base. (windows_make_so, handle_load_dll, handle_unload_dll, windows_xfer_shared_libraries): Adjust.
This commit is contained in:
parent
434a402395
commit
d0e449a186
11 changed files with 291 additions and 222 deletions
|
@ -202,7 +202,7 @@ struct ext_link_map
|
|||
|
||||
/* Link map info to include in an allocated so_list entry. */
|
||||
|
||||
struct lm_info
|
||||
struct lm_info_frv : public lm_info_base
|
||||
{
|
||||
/* The loadmap, digested into an easier to use form. */
|
||||
struct int_elf32_fdpic_loadmap *map;
|
||||
|
@ -231,7 +231,7 @@ struct lm_info
|
|||
of loaded shared objects. ``main_executable_lm_info'' provides
|
||||
a way to get at this information so that it doesn't need to be
|
||||
frequently recomputed. Initialized by frv_relocate_main_executable(). */
|
||||
static struct lm_info *main_executable_lm_info;
|
||||
static lm_info_frv *main_executable_lm_info;
|
||||
|
||||
static void frv_relocate_main_executable (void);
|
||||
static CORE_ADDR main_got (void);
|
||||
|
@ -389,10 +389,11 @@ frv_current_sos (void)
|
|||
}
|
||||
|
||||
sop = XCNEW (struct so_list);
|
||||
sop->lm_info = XCNEW (struct lm_info);
|
||||
sop->lm_info->map = loadmap;
|
||||
sop->lm_info->got_value = got_addr;
|
||||
sop->lm_info->lm_addr = lm_addr;
|
||||
lm_info_frv *li = XCNEW (lm_info_frv);
|
||||
sop->lm_info = li;
|
||||
li->map = loadmap;
|
||||
li->got_value = got_addr;
|
||||
li->lm_addr = lm_addr;
|
||||
/* Fetch the name. */
|
||||
addr = extract_unsigned_integer (lm_buf.l_name,
|
||||
sizeof (lm_buf.l_name),
|
||||
|
@ -783,7 +784,7 @@ frv_relocate_main_executable (void)
|
|||
|
||||
if (main_executable_lm_info)
|
||||
xfree (main_executable_lm_info);
|
||||
main_executable_lm_info = XCNEW (struct lm_info);
|
||||
main_executable_lm_info = XCNEW (lm_info_frv);
|
||||
main_executable_lm_info->map = ldm;
|
||||
|
||||
new_offsets = XCNEWVEC (struct section_offsets,
|
||||
|
@ -870,10 +871,12 @@ frv_clear_solib (void)
|
|||
static void
|
||||
frv_free_so (struct so_list *so)
|
||||
{
|
||||
xfree (so->lm_info->map);
|
||||
xfree (so->lm_info->dyn_syms);
|
||||
xfree (so->lm_info->dyn_relocs);
|
||||
xfree (so->lm_info);
|
||||
lm_info_frv *li = (lm_info_frv *) so->lm_info;
|
||||
|
||||
xfree (li->map);
|
||||
xfree (li->dyn_syms);
|
||||
xfree (li->dyn_relocs);
|
||||
xfree (li);
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -881,9 +884,8 @@ frv_relocate_section_addresses (struct so_list *so,
|
|||
struct target_section *sec)
|
||||
{
|
||||
int seg;
|
||||
struct int_elf32_fdpic_loadmap *map;
|
||||
|
||||
map = so->lm_info->map;
|
||||
lm_info_frv *li = (lm_info_frv *) so->lm_info;
|
||||
int_elf32_fdpic_loadmap *map = li->map;
|
||||
|
||||
for (seg = 0; seg < map->nsegs; seg++)
|
||||
{
|
||||
|
@ -926,15 +928,14 @@ frv_fdpic_find_global_pointer (CORE_ADDR addr)
|
|||
while (so)
|
||||
{
|
||||
int seg;
|
||||
struct int_elf32_fdpic_loadmap *map;
|
||||
|
||||
map = so->lm_info->map;
|
||||
lm_info_frv *li = (lm_info_frv *) so->lm_info;
|
||||
int_elf32_fdpic_loadmap *map = li->map;
|
||||
|
||||
for (seg = 0; seg < map->nsegs; seg++)
|
||||
{
|
||||
if (map->segs[seg].addr <= addr
|
||||
&& addr < map->segs[seg].addr + map->segs[seg].p_memsz)
|
||||
return so->lm_info->got_value;
|
||||
return li->got_value;
|
||||
}
|
||||
|
||||
so = so->next;
|
||||
|
@ -947,7 +948,7 @@ frv_fdpic_find_global_pointer (CORE_ADDR addr)
|
|||
|
||||
/* Forward declarations for frv_fdpic_find_canonical_descriptor(). */
|
||||
static CORE_ADDR find_canonical_descriptor_in_load_object
|
||||
(CORE_ADDR, CORE_ADDR, const char *, bfd *, struct lm_info *);
|
||||
(CORE_ADDR, CORE_ADDR, const char *, bfd *, lm_info_frv *);
|
||||
|
||||
/* Given a function entry point, attempt to find the canonical descriptor
|
||||
associated with that entry point. Return 0 if no canonical descriptor
|
||||
|
@ -987,8 +988,10 @@ frv_fdpic_find_canonical_descriptor (CORE_ADDR entry_point)
|
|||
so = master_so_list ();
|
||||
while (so)
|
||||
{
|
||||
lm_info_frv *li = (lm_info_frv *) so->lm_info;
|
||||
|
||||
addr = find_canonical_descriptor_in_load_object
|
||||
(entry_point, got_value, name, so->abfd, so->lm_info);
|
||||
(entry_point, got_value, name, so->abfd, li);
|
||||
|
||||
if (addr != 0)
|
||||
break;
|
||||
|
@ -1003,7 +1006,7 @@ frv_fdpic_find_canonical_descriptor (CORE_ADDR entry_point)
|
|||
static CORE_ADDR
|
||||
find_canonical_descriptor_in_load_object
|
||||
(CORE_ADDR entry_point, CORE_ADDR got_value, const char *name, bfd *abfd,
|
||||
struct lm_info *lm)
|
||||
lm_info_frv *lm)
|
||||
{
|
||||
enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
|
||||
arelent *rel;
|
||||
|
@ -1141,8 +1144,10 @@ frv_fetch_objfile_link_map (struct objfile *objfile)
|
|||
of shared libraries. */
|
||||
for (so = master_so_list (); so; so = so->next)
|
||||
{
|
||||
lm_info_frv *li = (lm_info_frv *) so->lm_info;
|
||||
|
||||
if (so->objfile == objfile)
|
||||
return so->lm_info->lm_addr;
|
||||
return li->lm_addr;
|
||||
}
|
||||
|
||||
/* Not found! */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue