bfd * hash.c (struct bfd_strtab_hash): Remove xcoff field.
Add length_field_size field.
(_bfd_stringtab_init): Change prototype.
Adapt to new length_field_size.
(_bfd_xcoff_stringtab_init): Likewise.
(_bfd_stringtab_add): Likewise.
(_bfd_stringtab_emit): Likewise.
* libbfd-in.h (_bfd_xcoff_stringtab_init):
Change prototype.
* libbfd.h: Regenerate.
* xcofflink.c (_bfd_xcoff_bfd_link_hash_table_create):
Call _bfd_xcoff_stringtab_init with isxcoff64 value.
+2021-04-22 Clément Chigot <clement.chigot@atos.net>
+
+ * hash.c (struct bfd_strtab_hash): Remove xcoff field.
+ Add length_field_size field.
+ (_bfd_stringtab_init): Change prototype.
+ Adapt to new length_field_size.
+ (_bfd_xcoff_stringtab_init): Likewise.
+ (_bfd_stringtab_add): Likewise.
+ (_bfd_stringtab_emit): Likewise.
+ * libbfd-in.h (_bfd_xcoff_stringtab_init):
+ Change prototype.
+ * libbfd.h: Regenerate.
+ * xcofflink.c (_bfd_xcoff_bfd_link_hash_table_create):
+ Call _bfd_xcoff_stringtab_init with isxcoff64 value.
+
2021-04-22 Clément Chigot <clement.chigot@atos.net>
* coff-rs6000.c (_bfd_xcoff_swap_aux_in): Add errors for
struct strtab_hash_entry *first;
/* Last string in strtab. */
struct strtab_hash_entry *last;
- /* Whether to precede strings with a two byte length, as in the
- XCOFF .debug section. */
- bool xcoff;
+ /* Whether to precede strings with a two or four byte length,
+ as in the XCOFF .debug section. */
+ char length_field_size;
};
+
/* Routine to create an entry in a strtab. */
static struct bfd_hash_entry *
table->size = 0;
table->first = NULL;
table->last = NULL;
- table->xcoff = false;
+ table->length_field_size = 0;
return table;
}
string. */
struct bfd_strtab_hash *
-_bfd_xcoff_stringtab_init (void)
+_bfd_xcoff_stringtab_init (bool isxcoff64)
{
struct bfd_strtab_hash *ret;
ret = _bfd_stringtab_init ();
if (ret != NULL)
- ret->xcoff = true;
+ ret->length_field_size = isxcoff64 ? 4 : 2;
return ret;
}
{
entry->index = tab->size;
tab->size += strlen (str) + 1;
- if (tab->xcoff)
- {
- entry->index += 2;
- tab->size += 2;
- }
+ entry->index += tab->length_field_size;
+ tab->size += tab->length_field_size;
if (tab->first == NULL)
tab->first = entry;
else
bool
_bfd_stringtab_emit (bfd *abfd, struct bfd_strtab_hash *tab)
{
- bool xcoff;
struct strtab_hash_entry *entry;
- xcoff = tab->xcoff;
-
for (entry = tab->first; entry != NULL; entry = entry->next)
{
const char *str;
str = entry->root.string;
len = strlen (str) + 1;
- if (xcoff)
+ if (tab->length_field_size == 4)
+ {
+ bfd_byte buf[4];
+
+ /* The output length includes the null byte. */
+ bfd_put_32 (abfd, (bfd_vma) len, buf);
+ if (bfd_bwrite ((void *) buf, (bfd_size_type) 4, abfd) != 4)
+ return false;
+ }
+ else if (tab->length_field_size == 2)
{
bfd_byte buf[2];
/* Create an XCOFF .debug section style string table. */
extern struct bfd_strtab_hash *_bfd_xcoff_stringtab_init
- (void) ATTRIBUTE_HIDDEN;
+ (bool isxcoff64) ATTRIBUTE_HIDDEN;
/* Free a string table. */
extern void _bfd_stringtab_free
/* Create an XCOFF .debug section style string table. */
extern struct bfd_strtab_hash *_bfd_xcoff_stringtab_init
- (void) ATTRIBUTE_HIDDEN;
+ (bool isxcoff64) ATTRIBUTE_HIDDEN;
/* Free a string table. */
extern void _bfd_stringtab_free
_bfd_xcoff_bfd_link_hash_table_create (bfd *abfd)
{
struct xcoff_link_hash_table *ret;
+ bool isxcoff64 = false;
size_t amt = sizeof (* ret);
ret = bfd_zmalloc (amt);
return NULL;
}
- ret->debug_strtab = _bfd_xcoff_stringtab_init ();
+ isxcoff64 = bfd_coff_debug_string_prefix_length (abfd) == 4;
+
+ ret->debug_strtab = _bfd_xcoff_stringtab_init (isxcoff64);
ret->archive_info = htab_create (37, xcoff_archive_info_hash,
xcoff_archive_info_eq, NULL);
if (!ret->debug_strtab || !ret->archive_info)