public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug symtab/31821] New: move index_addrmap from dwarf2_per_bfd to mapped_gdb_index
@ 2024-05-30 15:34 tromey at sourceware dot org
  2024-05-30 15:34 ` [Bug symtab/31821] " tromey at sourceware dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: tromey at sourceware dot org @ 2024-05-30 15:34 UTC (permalink / raw)
  To: gdb-prs

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

            Bug ID: 31821
           Summary: move index_addrmap from dwarf2_per_bfd to
                    mapped_gdb_index
           Product: gdb
           Version: HEAD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: symtab
          Assignee: unassigned at sourceware dot org
          Reporter: tromey at sourceware dot org
  Target Milestone: ---

dwarf2_per_bfd::index_addrmap is only used by the mapped
gdb index.  It should be in mapped_gdb_index instead.

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

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

* [Bug symtab/31821] move index_addrmap from dwarf2_per_bfd to mapped_gdb_index
  2024-05-30 15:34 [Bug symtab/31821] New: move index_addrmap from dwarf2_per_bfd to mapped_gdb_index tromey at sourceware dot org
@ 2024-05-30 15:34 ` tromey at sourceware dot org
  2024-05-30 16:08 ` tromey at sourceware dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: tromey at sourceware dot org @ 2024-05-30 15:34 UTC (permalink / raw)
  To: gdb-prs

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

--- Comment #1 from Tom Tromey <tromey at sourceware dot org> ---
Also then find_per_cu can be simplified to call into the
index object.

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

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

* [Bug symtab/31821] move index_addrmap from dwarf2_per_bfd to mapped_gdb_index
  2024-05-30 15:34 [Bug symtab/31821] New: move index_addrmap from dwarf2_per_bfd to mapped_gdb_index tromey at sourceware dot org
  2024-05-30 15:34 ` [Bug symtab/31821] " tromey at sourceware dot org
@ 2024-05-30 16:08 ` tromey at sourceware dot org
  2024-05-30 16:38 ` tromey at sourceware dot org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: tromey at sourceware dot org @ 2024-05-30 16:08 UTC (permalink / raw)
  To: gdb-prs

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

Tom Tromey <tromey at sourceware dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Blocks|                            |29366


Referenced Bugs:

https://sourceware.org/bugzilla/show_bug.cgi?id=29366
[Bug 29366] [meta] New DWARF indexer meta bug
-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug symtab/31821] move index_addrmap from dwarf2_per_bfd to mapped_gdb_index
  2024-05-30 15:34 [Bug symtab/31821] New: move index_addrmap from dwarf2_per_bfd to mapped_gdb_index tromey at sourceware dot org
  2024-05-30 15:34 ` [Bug symtab/31821] " tromey at sourceware dot org
  2024-05-30 16:08 ` tromey at sourceware dot org
@ 2024-05-30 16:38 ` tromey at sourceware dot org
  2024-05-31 14:26 ` cvs-commit at gcc dot gnu.org
  2024-05-31 14:31 ` tromey at sourceware dot org
  4 siblings, 0 replies; 6+ messages in thread
From: tromey at sourceware dot org @ 2024-05-30 16:38 UTC (permalink / raw)
  To: gdb-prs

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

Tom Tromey <tromey at sourceware dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|unassigned at sourceware dot org   |tromey at sourceware dot org

--- Comment #2 from Tom Tromey <tromey at sourceware dot org> ---
I ended up finding a little time to implement this after all.

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

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

* [Bug symtab/31821] move index_addrmap from dwarf2_per_bfd to mapped_gdb_index
  2024-05-30 15:34 [Bug symtab/31821] New: move index_addrmap from dwarf2_per_bfd to mapped_gdb_index tromey at sourceware dot org
                   ` (2 preceding siblings ...)
  2024-05-30 16:38 ` tromey at sourceware dot org
@ 2024-05-31 14:26 ` cvs-commit at gcc dot gnu.org
  2024-05-31 14:31 ` tromey at sourceware dot org
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-05-31 14:26 UTC (permalink / raw)
  To: gdb-prs

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

--- Comment #3 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Tom Tromey <tromey@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=2e3b7a38930730b98e41f1393f8479488debb823

commit 2e3b7a38930730b98e41f1393f8479488debb823
Author: Tom Tromey <tromey@adacore.com>
Date:   Thu May 30 10:39:17 2024 -0600

    Move dwarf2_per_bfd::index_addrmap to mapped_gdb_index

    dwarf2_per_bfd::index_addrmap is only used by the .gdb_index reader,
    so this field can be moved to mapped_gdb_index instead.  Then,
    cooked_index_functions::find_per_cu can be removed in favor of a
    method on the index object.

    Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31821
    Approved-By: Simon Marchi <simon.marchi@efficios.com>

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

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

* [Bug symtab/31821] move index_addrmap from dwarf2_per_bfd to mapped_gdb_index
  2024-05-30 15:34 [Bug symtab/31821] New: move index_addrmap from dwarf2_per_bfd to mapped_gdb_index tromey at sourceware dot org
                   ` (3 preceding siblings ...)
  2024-05-31 14:26 ` cvs-commit at gcc dot gnu.org
@ 2024-05-31 14:31 ` tromey at sourceware dot org
  4 siblings, 0 replies; 6+ messages in thread
From: tromey at sourceware dot org @ 2024-05-31 14:31 UTC (permalink / raw)
  To: gdb-prs

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

Tom Tromey <tromey at sourceware dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |16.1
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Tom Tromey <tromey at sourceware dot org> ---
Fixed.

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

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

end of thread, other threads:[~2024-05-31 14:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-30 15:34 [Bug symtab/31821] New: move index_addrmap from dwarf2_per_bfd to mapped_gdb_index tromey at sourceware dot org
2024-05-30 15:34 ` [Bug symtab/31821] " tromey at sourceware dot org
2024-05-30 16:08 ` tromey at sourceware dot org
2024-05-30 16:38 ` tromey at sourceware dot org
2024-05-31 14:26 ` cvs-commit at gcc dot gnu.org
2024-05-31 14:31 ` 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).