This patches makes lm_info_frv a "real" class. It adds a destructor,
initializes the fields and replaces XCNEW/xfree with new/delete.
gdb/ChangeLog:
* solib-frv.c (struct lm_info_frv): Add destructor, initialize
fields.
(frv_current_sos): Allocate lm_info_frv with new.
(frv_relocate_main_executable): Free lm_info_frv with delete,
allocate with new.
(frv_clear_solib, frv_free_so): Free lm_info_frv with delete.
2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
+ * solib-frv.c (struct lm_info_frv): Add destructor, initialize
+ fields.
+ (frv_current_sos): Allocate lm_info_frv with new.
+ (frv_relocate_main_executable): Free lm_info_frv with delete,
+ allocate with new.
+ (frv_clear_solib, frv_free_so): Free lm_info_frv with delete.
+
+2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
+
* solib-frv.c (struct lm_info_frv): Fix indentation.
2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
* solib-frv.c (struct lm_info_frv): Fix indentation.
2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
struct lm_info_frv : public lm_info_base
{
struct lm_info_frv : public lm_info_base
{
+ ~lm_info_frv ()
+ {
+ xfree (this->map);
+ xfree (this->dyn_syms);
+ xfree (this->dyn_relocs);
+ }
/* The loadmap, digested into an easier to use form. */
/* The loadmap, digested into an easier to use form. */
- struct int_elf32_fdpic_loadmap *map;
+ int_elf32_fdpic_loadmap *map = NULL;
/* The GOT address for this link map entry. */
/* The GOT address for this link map entry. */
+ CORE_ADDR got_value = 0;
/* The link map address, needed for frv_fetch_objfile_link_map(). */
/* The link map address, needed for frv_fetch_objfile_link_map(). */
/* Cached dynamic symbol table and dynamic relocs initialized and
used only by find_canonical_descriptor_in_load_object().
/* Cached dynamic symbol table and dynamic relocs initialized and
used only by find_canonical_descriptor_in_load_object().
supplied to the first call. Thus the caching of the dynamic
symbols (dyn_syms) is critical for correct operation. The
caching of the dynamic relocations could be dispensed with. */
supplied to the first call. Thus the caching of the dynamic
symbols (dyn_syms) is critical for correct operation. The
caching of the dynamic relocations could be dispensed with. */
- asymbol **dyn_syms;
- arelent **dyn_relocs;
- int dyn_reloc_count; /* Number of dynamic relocs. */
-
+ asymbol **dyn_syms = NULL;
+ arelent **dyn_relocs = NULL;
+ int dyn_reloc_count = 0; /* Number of dynamic relocs. */
};
/* The load map, got value, etc. are not available from the chain
};
/* The load map, got value, etc. are not available from the chain
}
sop = XCNEW (struct so_list);
}
sop = XCNEW (struct so_list);
- lm_info_frv *li = XCNEW (lm_info_frv);
+ lm_info_frv *li = new lm_info_frv;
sop->lm_info = li;
li->map = loadmap;
li->got_value = got_addr;
sop->lm_info = li;
li->map = loadmap;
li->got_value = got_addr;
if (ldm == NULL)
error (_("Unable to load the executable's loadmap."));
if (ldm == NULL)
error (_("Unable to load the executable's loadmap."));
- if (main_executable_lm_info)
- xfree (main_executable_lm_info);
- main_executable_lm_info = XCNEW (lm_info_frv);
+ delete main_executable_lm_info;
+ main_executable_lm_info = new lm_info_frv;
main_executable_lm_info->map = ldm;
new_offsets = XCNEWVEC (struct section_offsets,
main_executable_lm_info->map = ldm;
new_offsets = XCNEWVEC (struct section_offsets,
lm_base_cache = 0;
enable_break2_done = 0;
main_lm_addr = 0;
lm_base_cache = 0;
enable_break2_done = 0;
main_lm_addr = 0;
- if (main_executable_lm_info != 0)
- {
- xfree (main_executable_lm_info->map);
- xfree (main_executable_lm_info->dyn_syms);
- xfree (main_executable_lm_info->dyn_relocs);
- xfree (main_executable_lm_info);
- main_executable_lm_info = 0;
- }
+
+ delete main_executable_lm_info;
+ main_executable_lm_info = NULL;
{
lm_info_frv *li = (lm_info_frv *) 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);