diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-06-28 15:28:26 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-06-28 15:28:26 -0400 |
commit | 0c1bcd23274e9f465dc43eda4fc467150631f824 (patch) | |
tree | a7ebad33d064631f80c6b016da5cb3e2df3eedae /gdb/objfiles.c | |
parent | f07fad95a949b070e51a18276b8f1e03cf86490f (diff) | |
download | gdb-0c1bcd23274e9f465dc43eda4fc467150631f824.zip gdb-0c1bcd23274e9f465dc43eda4fc467150631f824.tar.gz gdb-0c1bcd23274e9f465dc43eda4fc467150631f824.tar.bz2 |
gdb: convert obj_section macros to methods
Convert these three macros to methods of obj_section. The problem fixed
by the following patch is caused by an out of bound access of the
objfile::section_offsets vector. Since this is deep in macros, we don't
get a clear backtrace and it's difficult to debug. Changing that to
methods means we can step in them and break on them.
Because their implementation requires knowing about struct objfile, move
struct obj_section below struct objfile in objfiles.h.
The obj_section_offset was used in one place as an lvalue to set
offsets, in machoread.c. Replace that with a set_offset method.
Add the objfile::section_offset and objfile::set_section_offset methods
to improve encapsulation (reduce other objects poking into struct
objfile's internals).
gdb/ChangeLog:
* objfiles.h (struct obj_section): Move down.
<offset, set_offset, addr, endaddr>: New.
(obj_section_offset, obj_section_addr, obj_section_endaddr),
replace all users to use obj_section methods.
(struct objfile) <section_offset, set_section_offset>: New.
Change-Id: I97e8fcae93ab2353fbdadcb4a5ec10d7949a7334
Diffstat (limited to 'gdb/objfiles.c')
-rw-r--r-- | gdb/objfiles.c | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/gdb/objfiles.c b/gdb/objfiles.c index 16bbb91..b65fa88 100644 --- a/gdb/objfiles.c +++ b/gdb/objfiles.c @@ -729,7 +729,7 @@ objfile_relocate1 (struct objfile *objfile, int idx = s - objfile->sections; exec_set_section_address (bfd_get_filename (objfile->obfd), idx, - obj_section_addr (s)); + s->addr ()); } /* Data changed. */ @@ -899,8 +899,8 @@ have_minimal_symbols (void) static bool sort_cmp (const struct obj_section *sect1, const obj_section *sect2) { - const CORE_ADDR sect1_addr = obj_section_addr (sect1); - const CORE_ADDR sect2_addr = obj_section_addr (sect2); + const CORE_ADDR sect1_addr = sect1->addr (); + const CORE_ADDR sect2_addr = sect2->addr (); if (sect1_addr < sect2_addr) return true; @@ -982,7 +982,7 @@ sort_cmp (const struct obj_section *sect1, const obj_section *sect2) static struct obj_section * preferred_obj_section (struct obj_section *a, struct obj_section *b) { - gdb_assert (obj_section_addr (a) == obj_section_addr (b)); + gdb_assert (a->addr () == b->addr ()); gdb_assert ((a->objfile->separate_debug_objfile == b->objfile) || (b->objfile->separate_debug_objfile == a->objfile)); gdb_assert ((a->objfile->separate_debug_objfile_backlink == b->objfile) @@ -1030,8 +1030,8 @@ filter_debuginfo_sections (struct obj_section **map, int map_size) struct obj_section *const sect2 = map[i + 1]; const struct objfile *const objfile1 = sect1->objfile; const struct objfile *const objfile2 = sect2->objfile; - const CORE_ADDR sect1_addr = obj_section_addr (sect1); - const CORE_ADDR sect2_addr = obj_section_addr (sect2); + const CORE_ADDR sect1_addr = sect1->addr (); + const CORE_ADDR sect2_addr = sect2->addr (); if (sect1_addr == sect2_addr && (objfile1->separate_debug_objfile == objfile2 @@ -1075,9 +1075,9 @@ filter_overlapping_sections (struct obj_section **map, int map_size) { struct obj_section *const sect1 = map[i]; struct obj_section *const sect2 = map[k]; - const CORE_ADDR sect1_addr = obj_section_addr (sect1); - const CORE_ADDR sect2_addr = obj_section_addr (sect2); - const CORE_ADDR sect1_endaddr = obj_section_endaddr (sect1); + const CORE_ADDR sect1_addr = sect1->addr (); + const CORE_ADDR sect2_addr = sect2->addr (); + const CORE_ADDR sect1_endaddr = sect1->endaddr (); gdb_assert (sect1_addr <= sect2_addr); @@ -1093,7 +1093,7 @@ filter_overlapping_sections (struct obj_section **map, int map_size) const struct bfd_section *const bfds1 = sect1->the_bfd_section; const struct bfd_section *const bfds2 = sect2->the_bfd_section; - const CORE_ADDR sect2_endaddr = obj_section_endaddr (sect2); + const CORE_ADDR sect2_endaddr = sect2->endaddr (); struct gdbarch *const gdbarch = objf1->arch (); @@ -1184,9 +1184,9 @@ bsearch_cmp (const void *key, const void *elt) const CORE_ADDR pc = *(CORE_ADDR *) key; const struct obj_section *section = *(const struct obj_section **) elt; - if (pc < obj_section_addr (section)) + if (pc < section->addr ()) return -1; - if (pc < obj_section_endaddr (section)) + if (pc < section->endaddr ()) return 0; return 1; } @@ -1289,8 +1289,7 @@ is_addr_in_objfile (CORE_ADDR addr, const struct objfile *objfile) if (section_is_overlay (osect) && !section_is_mapped (osect)) continue; - if (obj_section_addr (osect) <= addr - && addr < obj_section_endaddr (osect)) + if (osect->addr () <= addr && addr < osect->endaddr ()) return true; } return false; |