mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
* dwarf2read.c (create_debug_types_hash_table): Use hex_string
instead of phex. (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto. (create_dwo_in_dwp): Ditto.
This commit is contained in:
parent
1622ff3b43
commit
4031ecc58a
@ -1,3 +1,10 @@
|
|||||||
|
2013-04-15 Doug Evans <dje@google.com>
|
||||||
|
|
||||||
|
* dwarf2read.c (create_debug_types_hash_table): Use hex_string
|
||||||
|
instead of phex.
|
||||||
|
(lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
|
||||||
|
(create_dwo_in_dwp): Ditto.
|
||||||
|
|
||||||
2013-04-15 Tom Tromey <tromey@redhat.com>
|
2013-04-15 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
* NEWS: Move recent entries into "since 7.6" section.
|
* NEWS: Move recent entries into "since 7.6" section.
|
||||||
|
@ -4317,16 +4317,16 @@ create_debug_types_hash_table (struct dwo_file *dwo_file,
|
|||||||
|
|
||||||
complaint (&symfile_complaints,
|
complaint (&symfile_complaints,
|
||||||
_("debug type entry at offset 0x%x is duplicate to"
|
_("debug type entry at offset 0x%x is duplicate to"
|
||||||
" the entry at offset 0x%x, signature 0x%s"),
|
" the entry at offset 0x%x, signature %s"),
|
||||||
offset.sect_off, dup_offset.sect_off,
|
offset.sect_off, dup_offset.sect_off,
|
||||||
phex (signature, sizeof (signature)));
|
hex_string (signature));
|
||||||
}
|
}
|
||||||
*slot = dwo_file ? (void *) dwo_tu : (void *) sig_type;
|
*slot = dwo_file ? (void *) dwo_tu : (void *) sig_type;
|
||||||
|
|
||||||
if (dwarf2_read_debug)
|
if (dwarf2_read_debug)
|
||||||
fprintf_unfiltered (gdb_stdlog, " offset 0x%x, signature 0x%s\n",
|
fprintf_unfiltered (gdb_stdlog, " offset 0x%x, signature %s\n",
|
||||||
offset.sect_off,
|
offset.sect_off,
|
||||||
phex (signature, sizeof (signature)));
|
hex_string (signature));
|
||||||
|
|
||||||
info_ptr += length;
|
info_ptr += length;
|
||||||
}
|
}
|
||||||
@ -4634,8 +4634,7 @@ lookup_dwo_unit (struct dwarf2_per_cu_data *this_cu,
|
|||||||
{
|
{
|
||||||
error (_("Dwarf Error: CU at offset 0x%x references unknown DWO"
|
error (_("Dwarf Error: CU at offset 0x%x references unknown DWO"
|
||||||
" with ID %s [in module %s]"),
|
" with ID %s [in module %s]"),
|
||||||
this_cu->offset.sect_off,
|
this_cu->offset.sect_off, hex_string (signature),
|
||||||
phex (signature, sizeof (signature)),
|
|
||||||
this_cu->objfile->name);
|
this_cu->objfile->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -8439,19 +8438,16 @@ create_dwo_debug_info_hash_table_reader (const struct die_reader_specs *reader,
|
|||||||
|
|
||||||
complaint (&symfile_complaints,
|
complaint (&symfile_complaints,
|
||||||
_("debug entry at offset 0x%x is duplicate to the entry at"
|
_("debug entry at offset 0x%x is duplicate to the entry at"
|
||||||
" offset 0x%x, dwo_id 0x%s [in module %s]"),
|
" offset 0x%x, dwo_id %s [in module %s]"),
|
||||||
offset.sect_off, dup_dwo_unit->offset.sect_off,
|
offset.sect_off, dup_dwo_unit->offset.sect_off,
|
||||||
phex (dwo_unit->signature, sizeof (dwo_unit->signature)),
|
hex_string (dwo_unit->signature), dwo_file->dwo_name);
|
||||||
dwo_file->dwo_name);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
*slot = dwo_unit;
|
*slot = dwo_unit;
|
||||||
|
|
||||||
if (dwarf2_read_debug)
|
if (dwarf2_read_debug)
|
||||||
fprintf_unfiltered (gdb_stdlog, " offset 0x%x, dwo_id 0x%s\n",
|
fprintf_unfiltered (gdb_stdlog, " offset 0x%x, dwo_id %s\n",
|
||||||
offset.sect_off,
|
offset.sect_off, hex_string (dwo_unit->signature));
|
||||||
phex (dwo_unit->signature,
|
|
||||||
sizeof (dwo_unit->signature)));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Create a hash table to map DWO IDs to their CU entry in
|
/* Create a hash table to map DWO IDs to their CU entry in
|
||||||
@ -8734,9 +8730,9 @@ create_dwo_in_dwp (struct dwp_file *dwp_file,
|
|||||||
|
|
||||||
if (dwarf2_read_debug)
|
if (dwarf2_read_debug)
|
||||||
{
|
{
|
||||||
fprintf_unfiltered (gdb_stdlog, "Reading %s %u/0x%s in DWP file: %s\n",
|
fprintf_unfiltered (gdb_stdlog, "Reading %s %u/%s in DWP file: %s\n",
|
||||||
kind,
|
kind,
|
||||||
section_index, phex (signature, sizeof (signature)),
|
section_index, hex_string (signature),
|
||||||
dwp_file->name);
|
dwp_file->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user