This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 6c3458a8b7e PR32829, SEGV on objdump function debug_type_samep new 115421b8507 Rename cooked-index-storage.[ch] new 32c5beae951 Rename cooked_index_storage new 5021c5bbf8e Make language_requires_canonicalization 'static' new 5bc2273db46 Move cooked_index_entry to new files new 3351f741c8d Move cooked_index_shard to new files new 5703a5019ca Change includes in cooked-index-worker.h new 51b14215942 Move cooked_index_worker to cooked-index-worker.[ch] new 23ad2598a6b Update comments from moved methods new d33f7cc36e7 Add addrmap_mutable::clear new 2dc660bd2b2 Remove cooked_index_worker::result_type new 34a286acdc3 Add cooked_index_worker::done_reading new bbfa90724d2 Update cooked_index comment
The 12 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gdb/Makefile.in | 8 +- gdb/addrmap.c | 69 ++-- gdb/addrmap.h | 21 +- gdb/dwarf2/abbrev-table-cache.h | 3 + gdb/dwarf2/cooked-index-entry.c | 242 ++++++++++++++ gdb/dwarf2/cooked-index-entry.h | 258 +++++++++++++++ gdb/dwarf2/cooked-index-shard.c | 331 +++++++++++++++++++ gdb/dwarf2/cooked-index-shard.h | 134 ++++++++ gdb/dwarf2/cooked-index-storage.c | 84 ----- gdb/dwarf2/cooked-index-storage.h | 131 -------- gdb/dwarf2/cooked-index-worker.c | 265 +++++++++++++++ gdb/dwarf2/cooked-index-worker.h | 290 ++++++++++++++++ gdb/dwarf2/cooked-index.c | 678 +------------------------------------- gdb/dwarf2/cooked-index.h | 484 +-------------------------- gdb/dwarf2/cooked-indexer.c | 4 +- gdb/dwarf2/cooked-indexer.h | 6 +- gdb/dwarf2/read-debug-names.c | 69 ++-- gdb/dwarf2/read.c | 56 ++-- 18 files changed, 1662 insertions(+), 1471 deletions(-) create mode 100644 gdb/dwarf2/cooked-index-entry.c create mode 100644 gdb/dwarf2/cooked-index-entry.h create mode 100644 gdb/dwarf2/cooked-index-shard.c create mode 100644 gdb/dwarf2/cooked-index-shard.h delete mode 100644 gdb/dwarf2/cooked-index-storage.c delete mode 100644 gdb/dwarf2/cooked-index-storage.h create mode 100644 gdb/dwarf2/cooked-index-worker.c create mode 100644 gdb/dwarf2/cooked-index-worker.h