public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug symtab/15883] New: reread_symbols: preserving section offsets?
@ 2013-08-23  0:07 dje at google dot com
  2023-03-05 17:35 ` [Bug symtab/15883] " tromey at sourceware dot org
  0 siblings, 1 reply; 2+ messages in thread
From: dje at google dot com @ 2013-08-23  0:07 UTC (permalink / raw)
  To: gdb-prs

http://sourceware.org/bugzilla/show_bug.cgi?id=15883

            Bug ID: 15883
           Summary: reread_symbols: preserving section offsets?
           Product: gdb
           Version: HEAD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: symtab
          Assignee: unassigned at sourceware dot org
          Reporter: dje at google dot com

reread_symbols preserves section offsets across rereading the bfd.

          /* Save the offsets, we will nuke them with the rest of the           
             objfile_obstack.  */                                               
          num_offsets = objfile->num_sections;
          offsets = ((struct section_offsets *)
                     alloca (SIZEOF_N_SECTION_OFFSETS (num_offsets)));
          memcpy (offsets, objfile->section_offsets,
                  SIZEOF_N_SECTION_OFFSETS (num_offsets));

          ...

          /* We use the same section offsets as from last time.  I'm not        
             sure whether that is always correct for shared libraries.  */
          objfile->section_offsets = (struct section_offsets *)
            obstack_alloc (&objfile->objfile_obstack,
                           SIZEOF_N_SECTION_OFFSETS (num_offsets));
          memcpy (objfile->section_offsets, offsets,
                  SIZEOF_N_SECTION_OFFSETS (num_offsets));
          objfile->num_sections = num_offsets;

What if in recompiling the user added a new section?
Seems like this won't work.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [Bug symtab/15883] reread_symbols: preserving section offsets?
  2013-08-23  0:07 [Bug symtab/15883] New: reread_symbols: preserving section offsets? dje at google dot com
@ 2023-03-05 17:35 ` tromey at sourceware dot org
  0 siblings, 0 replies; 2+ messages in thread
From: tromey at sourceware dot org @ 2023-03-05 17:35 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=15883

Tom Tromey <tromey at sourceware dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tromey at sourceware dot org
             Status|NEW                         |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #1 from Tom Tromey <tromey at sourceware dot org> ---
This problem is being tracked elsewhere.

*** This bug has been marked as a duplicate of bug 25479 ***

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-03-05 17:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-23  0:07 [Bug symtab/15883] New: reread_symbols: preserving section offsets? dje at google dot com
2023-03-05 17:35 ` [Bug symtab/15883] " tromey at sourceware dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).