diff options
203 files changed, 11175 insertions, 9088 deletions
@@ -1,10 +1,14 @@ +2025-07-13 Nick Clifton <nickc@redhat.com> + + * 2.45 Binutils Branch point. + 2025-01-19 Nick Clifton <nickc@redhat.com> * 2.44 Binutils Branch point. 2024-07-20 Nick Clifton <nickc@redhat.com> - * 2.43 branch point. + * 2.43 Binutils Branch point. 2024-07-15 Nick Clifton <nickc@redhat.com> diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 3f02487..583f731 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2025-07-13 Nick Clifton <nickc@redhat.com> + + * 2.45 Branch point. + 2025-02-08 Alexandre Oliva <oliva@adacore.com> * elfxx-sparc.c (_bfd_sparc_elf_check_relocs): Check for diff --git a/bfd/configure b/bfd/configure index 504ff0c..15a3269 100755 --- a/bfd/configure +++ b/bfd/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for bfd 2.44.50. +# Generated by GNU Autoconf 2.69 for bfd 2.45.50. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -587,8 +587,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='bfd' PACKAGE_TARNAME='bfd' -PACKAGE_VERSION='2.44.50' -PACKAGE_STRING='bfd 2.44.50' +PACKAGE_VERSION='2.45.50' +PACKAGE_STRING='bfd 2.45.50' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1409,7 +1409,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures bfd 2.44.50 to adapt to many kinds of systems. +\`configure' configures bfd 2.45.50 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1480,7 +1480,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of bfd 2.44.50:";; + short | recursive ) echo "Configuration of bfd 2.45.50:";; esac cat <<\_ACEOF @@ -1625,7 +1625,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -bfd configure 2.44.50 +bfd configure 2.45.50 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2219,7 +2219,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by bfd $as_me 2.44.50, which was +It was created by bfd $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3202,7 +3202,7 @@ fi # Define the identity of the package. PACKAGE='bfd' - VERSION='2.44.50' + VERSION='2.45.50' cat >>confdefs.h <<_ACEOF @@ -17754,7 +17754,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by bfd $as_me 2.44.50, which was +This file was extended by bfd $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -17820,7 +17820,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -bfd config.status 2.44.50 +bfd config.status 2.45.50 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/bfd/elf-eh-frame.c b/bfd/elf-eh-frame.c index 0250a8f..dc0d2e0 100644 --- a/bfd/elf-eh-frame.c +++ b/bfd/elf-eh-frame.c @@ -802,6 +802,9 @@ _bfd_elf_parse_eh_frame (bfd *abfd, struct bfd_link_info *info, switch (*aug++) { case 'B': + case 'G': + if (abfd->arch_info->arch != bfd_arch_aarch64) + goto unrecognized; break; case 'L': REQUIRE (read_byte (&buf, end, &cie->lsda_encoding)); @@ -843,6 +846,7 @@ _bfd_elf_parse_eh_frame (bfd *abfd, struct bfd_link_info *info, REQUIRE (skip_bytes (&buf, end, per_width)); } break; + unrecognized: default: /* Unrecognized augmentation. Better bail out. */ goto free_no_table; diff --git a/bfd/elf-sframe.c b/bfd/elf-sframe.c index d74235b..b709e59 100644 --- a/bfd/elf-sframe.c +++ b/bfd/elf-sframe.c @@ -191,6 +191,18 @@ _bfd_elf_parse_sframe (bfd *abfd, bfd_size_type sf_size; int decerr = 0; + /* Prior versions of assembler and ld were generating SFrame sections with + section type SHT_PROGBITS. Issue an error for lack of support for such + objects now. Even if section size is zero, a valid section type is + expected. */ + if (elf_section_type (sec) != SHT_GNU_SFRAME) + { + _bfd_error_handler + (_("error in %pB(%pA); unexpected SFrame section type"), + abfd, sec); + return false; + } + if (sec->size == 0 || (sec->flags & SEC_HAS_CONTENTS) == 0 || sec->sec_info_type != SEC_INFO_TYPE_NONE) @@ -298,8 +310,7 @@ _bfd_elf_discard_section_sframe BFD ABFD. Returns true if no error. */ bool -_bfd_elf_set_section_sframe (bfd *abfd, - struct bfd_link_info *info) +_bfd_elf_set_section_sframe (bfd *abfd, struct bfd_link_info *info) { asection *cfsec; @@ -307,6 +318,7 @@ _bfd_elf_set_section_sframe (bfd *abfd, if (!cfsec) return false; + elf_section_type (cfsec) = SHT_GNU_SFRAME; elf_sframe (abfd) = cfsec; return true; @@ -2476,6 +2476,7 @@ bfd_section_from_shdr (bfd *abfd, unsigned int shindex) case SHT_PREINIT_ARRAY: /* .preinit_array section. */ case SHT_GNU_LIBLIST: /* .gnu.liblist section. */ case SHT_GNU_HASH: /* .gnu.hash section. */ + case SHT_GNU_SFRAME: /* .sframe section. */ ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex); goto success; diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c index 6fe93a8..5871fb7 100644 --- a/bfd/elf32-mips.c +++ b/bfd/elf32-mips.c @@ -618,7 +618,7 @@ static reloc_howto_type elf_mips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS_TLS_DTPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -633,7 +633,7 @@ static reloc_howto_type elf_mips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS_TLS_DTPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -680,7 +680,7 @@ static reloc_howto_type elf_mips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS_TLS_TPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -695,7 +695,7 @@ static reloc_howto_type elf_mips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS_TLS_TPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -789,7 +789,7 @@ static reloc_howto_type elf_mips_howto_table_rel[] = true, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS_PCHI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -803,7 +803,7 @@ static reloc_howto_type elf_mips_howto_table_rel[] = true, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS_PCLO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -961,7 +961,7 @@ static reloc_howto_type elf_mips16_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS16_TLS_DTPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -976,7 +976,7 @@ static reloc_howto_type elf_mips16_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS16_TLS_DTPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -1006,7 +1006,7 @@ static reloc_howto_type elf_mips16_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS16_TLS_TPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -1021,7 +1021,7 @@ static reloc_howto_type elf_mips16_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS16_TLS_TPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -1444,7 +1444,7 @@ static reloc_howto_type elf_micromips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MICROMIPS_TLS_DTPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -1459,7 +1459,7 @@ static reloc_howto_type elf_micromips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MICROMIPS_TLS_DTPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -1492,7 +1492,7 @@ static reloc_howto_type elf_micromips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MICROMIPS_TLS_TPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -1507,7 +1507,7 @@ static reloc_howto_type elf_micromips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MICROMIPS_TLS_TPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ diff --git a/bfd/elf64-mips.c b/bfd/elf64-mips.c index 5b55210..f031dfd 100644 --- a/bfd/elf64-mips.c +++ b/bfd/elf64-mips.c @@ -697,7 +697,7 @@ static reloc_howto_type mips_elf64_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS_TLS_DTPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -712,7 +712,7 @@ static reloc_howto_type mips_elf64_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS_TLS_DTPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -759,7 +759,7 @@ static reloc_howto_type mips_elf64_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS_TLS_TPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -774,7 +774,7 @@ static reloc_howto_type mips_elf64_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS_TLS_TPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -868,7 +868,7 @@ static reloc_howto_type mips_elf64_howto_table_rel[] = true, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS_PCHI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -882,7 +882,7 @@ static reloc_howto_type mips_elf64_howto_table_rel[] = true, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS_PCLO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -1805,7 +1805,7 @@ static reloc_howto_type mips16_elf64_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS16_TLS_DTPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -1820,7 +1820,7 @@ static reloc_howto_type mips16_elf64_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS16_TLS_DTPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -1850,7 +1850,7 @@ static reloc_howto_type mips16_elf64_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS16_TLS_TPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -1865,7 +1865,7 @@ static reloc_howto_type mips16_elf64_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS16_TLS_TPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -2481,7 +2481,7 @@ static reloc_howto_type micromips_elf64_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MICROMIPS_TLS_DTPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -2496,7 +2496,7 @@ static reloc_howto_type micromips_elf64_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MICROMIPS_TLS_DTPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -2529,7 +2529,7 @@ static reloc_howto_type micromips_elf64_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MICROMIPS_TLS_TPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -2544,7 +2544,7 @@ static reloc_howto_type micromips_elf64_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MICROMIPS_TLS_TPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ diff --git a/bfd/elflink.c b/bfd/elflink.c index 666399b..c4f57cf 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -11293,7 +11293,7 @@ _bfd_elf_default_action_discarded (asection *sec) && strncmp (sec->name, ".eh_frame.", 10) == 0) return 0; - if (strcmp (".sframe", sec->name) == 0) + if (elf_section_type (sec) == SHT_GNU_SFRAME) return 0; if (strcmp (".gcc_except_table", sec->name) == 0) diff --git a/bfd/elfn32-mips.c b/bfd/elfn32-mips.c index e457bfc..07e222c 100644 --- a/bfd/elfn32-mips.c +++ b/bfd/elfn32-mips.c @@ -676,7 +676,7 @@ static reloc_howto_type elf_mips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS_TLS_DTPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -691,7 +691,7 @@ static reloc_howto_type elf_mips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS_TLS_DTPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -738,7 +738,7 @@ static reloc_howto_type elf_mips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS_TLS_TPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -753,7 +753,7 @@ static reloc_howto_type elf_mips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS_TLS_TPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -847,7 +847,7 @@ static reloc_howto_type elf_mips_howto_table_rel[] = true, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS_PCHI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -861,7 +861,7 @@ static reloc_howto_type elf_mips_howto_table_rel[] = true, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS_PCLO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -1785,7 +1785,7 @@ static reloc_howto_type elf_mips16_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS16_TLS_DTPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -1800,7 +1800,7 @@ static reloc_howto_type elf_mips16_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS16_TLS_DTPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -1830,7 +1830,7 @@ static reloc_howto_type elf_mips16_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MIPS16_TLS_TPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -1845,7 +1845,7 @@ static reloc_howto_type elf_mips16_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MIPS16_TLS_TPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -2461,7 +2461,7 @@ static reloc_howto_type elf_micromips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MICROMIPS_TLS_DTPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -2476,7 +2476,7 @@ static reloc_howto_type elf_micromips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MICROMIPS_TLS_DTPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -2509,7 +2509,7 @@ static reloc_howto_type elf_micromips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_signed, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_hi16_reloc, /* special_function */ "R_MICROMIPS_TLS_TPREL_HI16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ @@ -2524,7 +2524,7 @@ static reloc_howto_type elf_micromips_howto_table_rel[] = false, /* pc_relative */ 0, /* bitpos */ complain_overflow_dont, /* complain_on_overflow */ - _bfd_mips_elf_generic_reloc, /* special_function */ + _bfd_mips_elf_lo16_reloc, /* special_function */ "R_MICROMIPS_TLS_TPREL_LO16", /* name */ true, /* partial_inplace */ 0x0000ffff, /* src_mask */ diff --git a/bfd/elfnn-aarch64.c b/bfd/elfnn-aarch64.c index 8f39920..9e98215d 100644 --- a/bfd/elfnn-aarch64.c +++ b/bfd/elfnn-aarch64.c @@ -2622,6 +2622,9 @@ struct elf_aarch64_link_hash_table /* Don't apply link-time values for dynamic relocations. */ int no_apply_dynamic_relocs; + /* Memtag Extension mode of operation. */ + aarch64_memtag_opts memtag_opts; + /* The number of bytes in the initial entry in the PLT. */ bfd_size_type plt_header_size; @@ -5009,13 +5012,15 @@ bfd_elfNN_aarch64_set_options (struct bfd *output_bfd, int fix_erratum_835769, erratum_84319_opts fix_erratum_843419, int no_apply_dynamic_relocs, - const aarch64_protection_opts *sw_protections) + const aarch64_protection_opts *sw_protections, + const aarch64_memtag_opts *memtag_opts) { struct elf_aarch64_link_hash_table *globals; globals = elf_aarch64_hash_table (link_info); globals->pic_veneer = pic_veneer; globals->fix_erratum_835769 = fix_erratum_835769; + globals->memtag_opts = *memtag_opts; /* If the default options are used, then ERRAT_ADR will be set by default which will enable the ADRP->ADR workaround for the erratum 843419 workaround. */ @@ -9775,7 +9780,20 @@ elfNN_aarch64_late_size_sections (bfd *output_bfd ATTRIBUTE_UNUSED, && !add_dynamic_entry (DT_AARCH64_PAC_PLT, 0)) return false; } + + if (is_aarch64_elf (output_bfd) + && htab->memtag_opts.memtag_mode != AARCH64_MEMTAG_MODE_NONE + && !add_dynamic_entry (DT_AARCH64_MEMTAG_MODE, + htab->memtag_opts.memtag_mode == AARCH64_MEMTAG_MODE_ASYNC)) + return false; + + if (is_aarch64_elf (output_bfd) + && htab->memtag_opts.memtag_stack == 1 + && !add_dynamic_entry (DT_AARCH64_MEMTAG_STACK, + htab->memtag_opts.memtag_stack == 1)) + return false; } + #undef add_dynamic_entry return true; diff --git a/bfd/elfnn-loongarch.c b/bfd/elfnn-loongarch.c index c75f520..46fafb3 100644 --- a/bfd/elfnn-loongarch.c +++ b/bfd/elfnn-loongarch.c @@ -5374,22 +5374,17 @@ loongarch_relax_pcala_addi (bfd *abfd, asection *sec, asection *sym_sec, symval = sec_addr (sec) + loongarch_calc_relaxed_addr (info, symval - sec_addr (sec)); - /* If pc and symbol not in the same segment, add/sub segment alignment if the - section has not undergone alignment processing because distances may grow - after alignment. */ - if (!loongarch_sec_closed_for_deletion (sec)) - { - if (!loongarch_two_sections_in_same_segment (info->output_bfd, - sec->output_section, - sym_sec->output_section)) - max_alignment = info->maxpagesize > max_alignment ? info->maxpagesize - : max_alignment; - - if (symval > pc) - pc -= (max_alignment > 4 ? max_alignment : 0); - else if (symval < pc) - pc += (max_alignment > 4 ? max_alignment : 0); - } + /* If pc and symbol not in the same segment, add/sub segment alignment. */ + if (!loongarch_two_sections_in_same_segment (info->output_bfd, + sec->output_section, + sym_sec->output_section)) + max_alignment = info->maxpagesize > max_alignment ? info->maxpagesize + : max_alignment; + + if (symval > pc) + pc -= (max_alignment > 4 ? max_alignment : 0); + else if (symval < pc) + pc += (max_alignment > 4 ? max_alignment : 0); const uint32_t pcaddi = LARCH_OP_PCADDI; @@ -5444,22 +5439,17 @@ loongarch_relax_call36 (bfd *abfd, asection *sec, asection *sym_sec, symval = sec_addr (sec) + loongarch_calc_relaxed_addr (info, symval - sec_addr (sec)); - /* If pc and symbol not in the same segment, add/sub segment alignment if the - section has not undergone alignment processing because distances may grow - after alignment. */ - if (!loongarch_sec_closed_for_deletion (sec)) - { - if (!loongarch_two_sections_in_same_segment (info->output_bfd, - sec->output_section, - sym_sec->output_section)) - max_alignment = info->maxpagesize > max_alignment ? info->maxpagesize - : max_alignment; - - if (symval > pc) - pc -= (max_alignment > 4 ? max_alignment : 0); - else if (symval < pc) - pc += (max_alignment > 4 ? max_alignment : 0); - } + /* If pc and symbol not in the same segment, add/sub segment alignment. */ + if (!loongarch_two_sections_in_same_segment (info->output_bfd, + sec->output_section, + sym_sec->output_section)) + max_alignment = info->maxpagesize > max_alignment ? info->maxpagesize + : max_alignment; + + if (symval > pc) + pc -= (max_alignment > 4 ? max_alignment : 0); + else if (symval < pc) + pc += (max_alignment > 4 ? max_alignment : 0); /* Is pcalau12i + addi.d insns? */ if (!LARCH_INSN_JIRL (jirl) @@ -5513,22 +5503,17 @@ loongarch_relax_pcala_ld (bfd *abfd, asection *sec, symval = sec_addr (sec) + loongarch_calc_relaxed_addr (info, symval - sec_addr (sec)); - /* If pc and symbol not in the same segment, add/sub segment alignment if the - section has not undergone alignment processing because distances may grow - after alignment. */ - if (!loongarch_sec_closed_for_deletion (sec)) - { - if (!loongarch_two_sections_in_same_segment (info->output_bfd, - sec->output_section, - sym_sec->output_section)) - max_alignment = info->maxpagesize > max_alignment ? info->maxpagesize - : max_alignment; - - if (symval > pc) - pc -= (max_alignment > 4 ? max_alignment : 0); - else if (symval < pc) - pc += (max_alignment > 4 ? max_alignment : 0); - } + /* If pc and symbol not in the same segment, add/sub segment alignment. */ + if (!loongarch_two_sections_in_same_segment (info->output_bfd, + sec->output_section, + sym_sec->output_section)) + max_alignment = info->maxpagesize > max_alignment ? info->maxpagesize + : max_alignment; + + if (symval > pc) + pc -= (max_alignment > 4 ? max_alignment : 0); + else if (symval < pc) + pc += (max_alignment > 4 ? max_alignment : 0); if ((ELFNN_R_TYPE (rel_lo->r_info) != R_LARCH_GOT_PC_LO12) || (LARCH_GET_RD (ld) != rd) @@ -5651,22 +5636,17 @@ loongarch_relax_tls_ld_gd_desc (bfd *abfd, asection *sec, asection *sym_sec, symval = sec_addr (sec) + loongarch_calc_relaxed_addr (info, symval - sec_addr (sec)); - /* If pc and symbol not in the same segment, add/sub segment alignment if the - section has not undergone alignment processing because distances may grow - after alignment. */ - if (!loongarch_sec_closed_for_deletion (sec)) - { - if (!loongarch_two_sections_in_same_segment (info->output_bfd, - sec->output_section, - sym_sec->output_section)) - max_alignment = info->maxpagesize > max_alignment ? info->maxpagesize - : max_alignment; - - if (symval > pc) - pc -= (max_alignment > 4 ? max_alignment : 0); - else if (symval < pc) - pc += (max_alignment > 4 ? max_alignment : 0); - } + /* If pc and symbol not in the same segment, add/sub segment alignment. */ + if (!loongarch_two_sections_in_same_segment (info->output_bfd, + sec->output_section, + sym_sec->output_section)) + max_alignment = info->maxpagesize > max_alignment ? info->maxpagesize + : max_alignment; + + if (symval > pc) + pc -= (max_alignment > 4 ? max_alignment : 0); + else if (symval < pc) + pc += (max_alignment > 4 ? max_alignment : 0); const uint32_t pcaddi = LARCH_OP_PCADDI; diff --git a/bfd/elfxx-aarch64.h b/bfd/elfxx-aarch64.h index 506f4a9..bd3642c 100644 --- a/bfd/elfxx-aarch64.h +++ b/bfd/elfxx-aarch64.h @@ -129,13 +129,38 @@ typedef enum ERRAT_ADRP = (1 << 2), /* Erratum workarounds using ADRP are allowed. */ } erratum_84319_opts; +/* An enum to define the various modes of MTE operation. + At this time, except AARCH64_MEMTAG_MODE_NONE, the enumerator constants are + the same as specified in the Memtag ABI Extension to ELF for the Arm 64-bit + Architecture (AArch64) document (the intent being that this keeps the + emission of the associated dynamic tag simple).*/ +typedef enum +{ + AARCH64_MEMTAG_MODE_SYNC = 0, + AARCH64_MEMTAG_MODE_ASYNC = 1, + AARCH64_MEMTAG_MODE_NONE = 2, +} aarch64_memtag_mode_type; + +/* A structure to encompass all information about memtag feature related + command line options. */ +struct aarch64_memtag_opts +{ + /* Mode of MTE operation. */ + aarch64_memtag_mode_type memtag_mode; + + /* Whether stack accesses use MTE insns. */ + unsigned int memtag_stack; +}; + +typedef struct aarch64_memtag_opts aarch64_memtag_opts; + extern void bfd_elf64_aarch64_set_options (bfd *, struct bfd_link_info *, int, int, int, int, erratum_84319_opts, int, - const aarch64_protection_opts *); + const aarch64_protection_opts *, const aarch64_memtag_opts *); extern void bfd_elf32_aarch64_set_options (bfd *, struct bfd_link_info *, int, int, int, int, erratum_84319_opts, int, - const aarch64_protection_opts *); + const aarch64_protection_opts *, const aarch64_memtag_opts *); /* AArch64 stub generation support for ELF64. Called from the linker. */ extern int elf64_aarch64_setup_section_lists diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index 530e8d6..3c38f51 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -2294,6 +2294,17 @@ lo16_reloc_p (int r_type) } static inline bool +tls_hi16_reloc_p (int r_type) +{ + return (r_type == R_MIPS_TLS_DTPREL_HI16 + || r_type == R_MIPS_TLS_TPREL_HI16 + || r_type == R_MIPS16_TLS_DTPREL_HI16 + || r_type == R_MIPS16_TLS_TPREL_HI16 + || r_type == R_MICROMIPS_TLS_DTPREL_HI16 + || r_type == R_MICROMIPS_TLS_TPREL_HI16); +} + +static inline bool mips16_call_reloc_p (int r_type) { return r_type == R_MIPS16_26 || r_type == R_MIPS16_CALL16; @@ -2600,20 +2611,22 @@ _bfd_mips_elf_lo16_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol, extended. For example, an addend of 0x38000 would have 0x0004 in the high part and 0x8000 (=0xff..f8000) in the low part. To extract the actual addend, calculate - ((hi & 0xffff) << 16) + ((lo & 0xffff) ^ 0x8000) - 0x8000. - We will be applying (symbol + addend) & 0xffff to the low insn, - and we want to apply (symbol + addend + 0x8000) >> 16 to the - high insn (the +0x8000 adjusting for when the applied low part is - negative). */ - vallo = ((bfd_get_32 (abfd, location) & 0xffff) ^ 0x8000) - 0x8000; + ((hi & 0xffff) << 16) + ((lo & 0xffff) ^ 0x8000) - 0x8000. */ + vallo = _bfd_mips_elf_sign_extend (bfd_get_32 (abfd, location) & 0xffff, 16); _bfd_mips_elf_reloc_shuffle (abfd, reloc_entry->howto->type, false, location); + /* Add in the separate addend, if any. Since we are REL here this + will have been set and the in-place addend cleared if we have + been called from GAS via `bfd_install_relocation'. */ + vallo += reloc_entry->addend; tdata = mips_elf_tdata (abfd); while (tdata->mips_hi16_list != NULL) { bfd_reloc_status_type ret; struct mips_hi16 *hi; + bfd_vma addhi; + bfd_vma addlo; hi = tdata->mips_hi16_list; @@ -2629,7 +2642,19 @@ _bfd_mips_elf_lo16_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol, else if (hi->rel.howto->type == R_MICROMIPS_GOT16) hi->rel.howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, R_MICROMIPS_HI16, false); - hi->rel.addend += vallo; + /* We will be applying (symbol + addend) & 0xffff to the low insn, + and we want to apply (symbol + addend + 0x8000) >> 16 to the + high insn (the +0x8000 adjusting for when the applied low part is + negative). */ + addhi = (hi->rel.addend + 0x8000) & ~(bfd_vma) 0xffff; + addlo = vallo; + + /* For a PC-relative relocation the PCLO16 part of the addend + is relative to its PC and not ours, so we need to adjust it. */ + if (hi->rel.howto->type == R_MIPS_PCHI16) + addlo -= reloc_entry->address - hi->rel.address; + + hi->rel.addend = addhi + _bfd_mips_elf_sign_extend (addlo & 0xffff, 16); ret = _bfd_mips_elf_generic_reloc (abfd, &hi->rel, symbol, hi->data, hi->input_section, output_bfd, @@ -8298,14 +8323,44 @@ mips_elf_add_lo16_rel_addend (bfd *abfd, bfd_vma l; r_type = ELF_R_TYPE (abfd, rel->r_info); - if (mips16_reloc_p (r_type)) - lo16_type = R_MIPS16_LO16; - else if (micromips_reloc_p (r_type)) - lo16_type = R_MICROMIPS_LO16; - else if (r_type == R_MIPS_PCHI16) - lo16_type = R_MIPS_PCLO16; - else - lo16_type = R_MIPS_LO16; + switch (r_type) + { + case R_MIPS_HI16: + case R_MIPS_GOT16: + lo16_type = R_MIPS_LO16; + break; + case R_MIPS_PCHI16: + lo16_type = R_MIPS_PCLO16; + break; + case R_MIPS_TLS_DTPREL_HI16: + lo16_type = R_MIPS_TLS_DTPREL_LO16; + break; + case R_MIPS_TLS_TPREL_HI16: + lo16_type = R_MIPS_TLS_TPREL_LO16; + break; + case R_MIPS16_HI16: + case R_MIPS16_GOT16: + lo16_type = R_MIPS16_LO16; + break; + case R_MIPS16_TLS_DTPREL_HI16: + lo16_type = R_MIPS16_TLS_DTPREL_LO16; + break; + case R_MIPS16_TLS_TPREL_HI16: + lo16_type = R_MIPS16_TLS_TPREL_LO16; + break; + case R_MICROMIPS_HI16: + case R_MICROMIPS_GOT16: + lo16_type = R_MICROMIPS_LO16; + break; + case R_MICROMIPS_TLS_DTPREL_HI16: + lo16_type = R_MICROMIPS_TLS_DTPREL_LO16; + break; + case R_MICROMIPS_TLS_TPREL_HI16: + lo16_type = R_MICROMIPS_TLS_TPREL_LO16; + break; + default: + abort (); + } /* The combined value is the sum of the HI16 addend, left-shifted by sixteen bits, and the LO16 addend, sign extended. (Usually, the @@ -8334,6 +8389,10 @@ mips_elf_add_lo16_rel_addend (bfd *abfd, contents); l <<= lo16_howto->rightshift; + /* For a PC-relative relocation the PCLO16 part of the addend + is relative to its PC and not ours, so we need to adjust it. */ + if (r_type == R_MIPS_PCHI16) + l = (l - (lo16_relocation->r_offset - rel->r_offset)) & 0xffff; l = _bfd_mips_elf_sign_extend (l, 16); *addend <<= 16; @@ -10529,7 +10588,8 @@ _bfd_mips_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info, if (hi16_reloc_p (r_type) || (got16_reloc_p (r_type) && mips_elf_local_relocation_p (input_bfd, rel, - local_sections))) + local_sections)) + || tls_hi16_reloc_p (r_type)) { if (!mips_elf_add_lo16_rel_addend (input_bfd, input_section, rel, relend, @@ -10567,7 +10627,9 @@ _bfd_mips_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info, if (!rela_relocation_p && rel->r_addend) { addend += rel->r_addend; - if (hi16_reloc_p (r_type) || got16_reloc_p (r_type)) + if (hi16_reloc_p (r_type) + || got16_reloc_p (r_type) + || tls_hi16_reloc_p (r_type)) addend = mips_elf_high (addend); else if (r_type == R_MIPS_HIGHER) addend = mips_elf_higher (addend); diff --git a/bfd/elfxx-x86.c b/bfd/elfxx-x86.c index 663f40a..3dc0095 100644 --- a/bfd/elfxx-x86.c +++ b/bfd/elfxx-x86.c @@ -4785,11 +4785,10 @@ _bfd_x86_elf_link_setup_gnu_properties | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED); - sec = bfd_make_section_anyway_with_flags (dynobj, - ".sframe", - flags); + sec = bfd_make_section_anyway_with_flags (dynobj, ".sframe", flags); if (sec == NULL) info->callbacks->fatal (_("%P: failed to create PLT .sframe section\n")); + elf_section_type (sec) = SHT_GNU_SFRAME; // FIXME check this // if (!bfd_set_section_alignment (sec, class_align)) @@ -4805,6 +4804,7 @@ _bfd_x86_elf_link_setup_gnu_properties flags); if (sec == NULL) info->callbacks->fatal (_("%P: failed to create second PLT .sframe section\n")); + elf_section_type (sec) = SHT_GNU_SFRAME; htab->plt_second_sframe = sec; } @@ -4817,6 +4817,7 @@ _bfd_x86_elf_link_setup_gnu_properties flags); if (sec == NULL) info->callbacks->fatal (_("%P: failed to create PLT GOT .sframe section\n")); + elf_section_type (sec) = SHT_GNU_SFRAME; htab->plt_got_sframe = sec; } diff --git a/bfd/po/bfd.pot b/bfd/po/bfd.pot index 6649106..c90c033 100644 --- a/bfd/po/bfd.pot +++ b/bfd/po/bfd.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n" -"POT-Creation-Date: 2025-01-19 12:19+0000\n" +"POT-Creation-Date: 2025-07-13 08:43+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -67,51 +67,52 @@ msgstr "" msgid "%pB: attempt to write out unknown reloc type" msgstr "" -#: aoutx.h:4047 pdp11.c:3409 +#: aoutx.h:4040 pdp11.c:3402 #, c-format msgid "%pB: unsupported relocation type" msgstr "" #. Unknown relocation. -#: aoutx.h:4367 coff-alpha.c:601 coff-mips.c:356 coff-rs6000.c:3037 +#: aoutx.h:4360 coff-alpha.c:604 coff-mips.c:356 coff-rs6000.c:3037 #: coff-sh.c:504 coff-tic4x.c:184 coff-tic54x.c:262 elf-hppa.h:798 #: elf-hppa.h:826 elf-m10200.c:226 elf-m10300.c:813 elf32-arc.c:531 -#: elf32-arm.c:1985 elf32-avr.c:957 elf32-bfin.c:1063 elf32-bfin.c:4686 +#: elf32-arm.c:1985 elf32-avr.c:957 elf32-bfin.c:1063 elf32-bfin.c:4692 #: elf32-cr16.c:654 elf32-cr16.c:684 elf32-cris.c:467 elf32-crx.c:429 #: elf32-csky.c:991 elf32-d10v.c:234 elf32-d30v.c:522 elf32-d30v.c:544 #: elf32-dlx.c:546 elf32-epiphany.c:373 elf32-fr30.c:381 elf32-frv.c:2558 -#: elf32-frv.c:6240 elf32-ft32.c:304 elf32-h8300.c:302 elf32-i386.c:394 +#: elf32-frv.c:6246 elf32-ft32.c:304 elf32-h8300.c:302 elf32-i386.c:394 #: elf32-ip2k.c:1241 elf32-iq2000.c:442 elf32-lm32.c:495 elf32-m32c.c:305 -#: elf32-m32r.c:1286 elf32-m32r.c:1311 elf32-m32r.c:2209 elf32-m68hc11.c:390 +#: elf32-m32r.c:1286 elf32-m32r.c:1311 elf32-m32r.c:2211 elf32-m68hc11.c:390 #: elf32-m68hc12.c:510 elf32-m68k.c:354 elf32-mcore.c:354 elf32-mcore.c:440 #: elf32-mep.c:385 elf32-metag.c:871 elf32-microblaze.c:708 #: elf32-microblaze.c:1015 elf32-mips.c:2242 elf32-moxie.c:137 -#: elf32-msp430.c:737 elf32-msp430.c:747 elf32-mt.c:241 elf32-nds32.c:3287 -#: elf32-nds32.c:3308 elf32-nds32.c:5077 elf32-or1k.c:1085 elf32-pj.c:326 +#: elf32-msp430.c:737 elf32-msp430.c:747 elf32-mt.c:241 elf32-nds32.c:3294 +#: elf32-nds32.c:3315 elf32-nds32.c:5084 elf32-or1k.c:1085 elf32-pj.c:326 #: elf32-ppc.c:900 elf32-ppc.c:913 elf32-pru.c:423 elf32-rl78.c:291 #: elf32-rx.c:324 elf32-rx.c:333 elf32-s12z.c:296 elf32-s390.c:347 #: elf32-score.c:2373 elf32-score7.c:2214 elf32-sh.c:437 elf32-spu.c:163 #: elf32-tic6x.c:1498 elf32-tic6x.c:1508 elf32-tic6x.c:1527 elf32-tic6x.c:1537 #: elf32-tic6x.c:2575 elf32-tilepro.c:791 elf32-v850.c:1902 elf32-v850.c:1924 -#: elf32-v850.c:4253 elf32-vax.c:288 elf32-visium.c:481 elf32-wasm32.c:105 +#: elf32-v850.c:4254 elf32-vax.c:288 elf32-visium.c:481 elf32-wasm32.c:105 #: elf32-xgate.c:418 elf32-xstormy16.c:395 elf32-xtensa.c:510 -#: elf32-xtensa.c:544 elf32-z80.c:331 elf64-alpha.c:1112 elf64-alpha.c:4055 -#: elf64-alpha.c:4203 elf64-bpf.c:132 elf64-ia64-vms.c:255 -#: elf64-ia64-vms.c:3426 elf64-mips.c:3965 elf64-mips.c:3981 elf64-mmix.c:1260 +#: elf32-xtensa.c:544 elf32-z80.c:331 elf64-alpha.c:1112 elf64-alpha.c:4058 +#: elf64-alpha.c:4206 elf64-bpf.c:132 elf64-ia64-vms.c:255 +#: elf64-ia64-vms.c:3428 elf64-mips.c:3965 elf64-mips.c:3981 elf64-mmix.c:1260 #: elf64-nfp.c:151 elf64-ppc.c:1031 elf64-ppc.c:1385 elf64-ppc.c:1394 -#: elf64-s390.c:328 elf64-s390.c:378 elf64-x86-64.c:305 elfn32-mips.c:3799 -#: elfxx-ia64.c:324 elfxx-loongarch.c:1897 elfxx-riscv.c:1062 -#: elfxx-sparc.c:589 elfxx-sparc.c:639 elfxx-tilegx.c:907 elfxx-tilegx.c:947 +#: elf64-s390.c:331 elf64-s390.c:381 elf64-x86-64.c:305 elf64-x86-64.c:2558 +#: elfn32-mips.c:3799 elfxx-ia64.c:324 elfxx-loongarch.c:1897 +#: elfxx-riscv.c:1068 elfxx-sparc.c:589 elfxx-sparc.c:639 elfxx-tilegx.c:907 +#: elfxx-tilegx.c:947 #: elfnn-aarch64.c:2215 -#: elfnn-aarch64.c:2313 +#: elfnn-aarch64.c:2316 #: elfnn-ia64.c:214 -#: elfnn-ia64.c:3821 +#: elfnn-ia64.c:3823 #: elfnn-kvx.c:259 #, c-format msgid "%pB: unsupported relocation type %#x" msgstr "" -#: aoutx.h:5387 pdp11.c:3825 +#: aoutx.h:5380 pdp11.c:3818 #, c-format msgid "%pB: relocatable link from %s to %s not supported" msgstr "" @@ -122,135 +123,135 @@ msgid "%pB: cannot allocate memory for local GOT entries" msgstr "" #: archive.c:748 -msgid "%F%P: %pB(%s): error opening thin archive member: %E\n" +msgid "%P: %pB(%s): error opening thin archive member: %E\n" msgstr "" #: archive.c:2282 msgid "warning: writing archive was slow: rewriting timestamp" msgstr "" -#: archive.c:2351 archive.c:2412 elflink.c:4931 linker.c:1452 +#: archive.c:2351 archive.c:2408 elflink.c:4956 linker.c:1470 #, c-format msgid "%pB: plugin needed to handle lto object" msgstr "" -#: archive.c:2644 +#: archive.c:2640 msgid "Reading archive file mod timestamp" msgstr "" -#: archive.c:2675 +#: archive.c:2671 msgid "Writing updated armap timestamp" msgstr "" -#: bfd.c:777 +#: bfd.c:793 msgid "no error" msgstr "" -#: bfd.c:778 +#: bfd.c:794 msgid "system call error" msgstr "" -#: bfd.c:779 +#: bfd.c:795 msgid "invalid bfd target" msgstr "" -#: bfd.c:780 +#: bfd.c:796 msgid "file in wrong format" msgstr "" -#: bfd.c:781 +#: bfd.c:797 msgid "archive object file in wrong format" msgstr "" -#: bfd.c:782 +#: bfd.c:798 msgid "invalid operation" msgstr "" -#: bfd.c:783 +#: bfd.c:799 msgid "memory exhausted" msgstr "" -#: bfd.c:784 +#: bfd.c:800 msgid "no symbols" msgstr "" -#: bfd.c:785 +#: bfd.c:801 msgid "archive has no index; run ranlib to add one" msgstr "" -#: bfd.c:786 +#: bfd.c:802 msgid "no more archived files" msgstr "" -#: bfd.c:787 +#: bfd.c:803 msgid "malformed archive" msgstr "" -#: bfd.c:788 +#: bfd.c:804 msgid "DSO missing from command line" msgstr "" -#: bfd.c:789 +#: bfd.c:805 msgid "file format not recognized" msgstr "" -#: bfd.c:790 +#: bfd.c:806 msgid "file format is ambiguous" msgstr "" -#: bfd.c:791 +#: bfd.c:807 msgid "section has no contents" msgstr "" -#: bfd.c:792 +#: bfd.c:808 msgid "nonrepresentable section on output" msgstr "" -#: bfd.c:793 +#: bfd.c:809 msgid "symbol needs debug section which does not exist" msgstr "" -#: bfd.c:794 +#: bfd.c:810 msgid "bad value" msgstr "" -#: bfd.c:795 +#: bfd.c:811 msgid "file truncated" msgstr "" -#: bfd.c:796 +#: bfd.c:812 msgid "file too big" msgstr "" -#: bfd.c:797 +#: bfd.c:813 msgid "sorry, cannot handle this file" msgstr "" -#: bfd.c:798 +#: bfd.c:814 #, c-format msgid "error reading %s: %s" msgstr "" -#: bfd.c:799 +#: bfd.c:815 msgid "#<invalid error code>" msgstr "" -#: bfd.c:2242 +#: bfd.c:2266 #, c-format msgid "BFD %s assertion fail %s:%d" msgstr "" -#: bfd.c:2255 +#: bfd.c:2279 #, c-format msgid "%s: BFD %s internal error, aborting at %s:%d in %s\n" msgstr "" -#: bfd.c:2259 +#: bfd.c:2283 #, c-format msgid "%s: BFD %s internal error, aborting at %s:%d\n" msgstr "" -#: bfd.c:2262 +#: bfd.c:2286 #, c-format msgid "Please report this bug.\n" msgstr "" @@ -272,37 +273,37 @@ msgid "" "to generate uncompressed binaries" msgstr "" -#: coff-alpha.c:867 coff-alpha.c:894 coff-alpha.c:2004 coff-mips.c:948 +#: coff-alpha.c:914 coff-alpha.c:941 coff-alpha.c:2009 coff-mips.c:948 msgid "GP relative relocation used when GP not defined" msgstr "" -#: coff-alpha.c:1151 coff-z80.c:351 coff-z8k.c:214 elf32-nds32.c:13188 -#: elfxx-mips.c:13509 reloc.c:8596 reloc16.c:314 +#: coff-alpha.c:1177 coff-z80.c:351 coff-z8k.c:214 elf32-nds32.c:13195 +#: elfxx-mips.c:13594 reloc.c:8602 reloc16.c:314 #, c-format msgid "%X%P: %pB(%pA): relocation \"%pR\" goes out of range\n" msgstr "" -#: coff-alpha.c:1157 coff-z80.c:477 coff-z8k.c:378 elfxx-mips.c:13519 -#: reloc.c:8606 +#: coff-alpha.c:1183 coff-z80.c:477 coff-z8k.c:378 elfxx-mips.c:13604 +#: reloc.c:8612 #, c-format msgid "%X%P: %pB(%pA): relocation \"%pR\" is not supported\n" msgstr "" -#: coff-alpha.c:1163 elfxx-mips.c:13528 reloc.c:8615 +#: coff-alpha.c:1189 elfxx-mips.c:13613 reloc.c:8621 #, c-format msgid "%X%P: %pB(%pA): relocation \"%pR\" returns an unrecognized value %x\n" msgstr "" -#: coff-alpha.c:1489 +#: coff-alpha.c:1515 msgid "using multiple gp values" msgstr "" -#: coff-alpha.c:1987 +#: coff-alpha.c:1992 #, c-format msgid "%X%P: %pB(%pA): relocation out of range\n" msgstr "" -#: coff-alpha.c:1999 +#: coff-alpha.c:2004 #, c-format msgid "%X%P: %pB(%pA): relocation is not supported\n" msgstr "" @@ -402,13 +403,13 @@ msgstr "" msgid "%pB: fatal: generic symbols retrieved before relaxing" msgstr "" -#: coff-sh.c:2773 cofflink.c:2947 +#: coff-sh.c:2773 cofflink.c:2986 #, c-format msgid "%pB: illegal symbol index %ld in relocs" msgstr "" #: coff-tic30.c:172 coff-tic4x.c:228 coff-tic54x.c:338 coff-z80.c:325 -#: coff-z8k.c:188 coffcode.h:5314 +#: coff-z8k.c:188 coffcode.h:5305 #, c-format msgid "%pB: warning: illegal symbol index %ld in relocs" msgstr "" @@ -465,152 +466,152 @@ msgstr "" msgid "%pB (%s): section flag %s (%#lx) ignored" msgstr "" -#: coffcode.h:1954 +#: coffcode.h:1945 #, c-format msgid "%pB: overflow reloc count too small" msgstr "" -#: coffcode.h:1963 coffcode.h:2028 +#: coffcode.h:1954 coffcode.h:2019 #, c-format msgid "%pB: warning: claims to have 0xffff relocs, without overflow" msgstr "" -#: coffcode.h:2411 +#: coffcode.h:2402 #, c-format msgid "unrecognized TI COFF target id '0x%x'" msgstr "" -#: coffcode.h:2690 +#: coffcode.h:2681 #, c-format msgid "%pB: reloc against a non-existent symbol index: %ld" msgstr "" -#: coffcode.h:3162 +#: coffcode.h:3153 #, c-format msgid "%pB: too many sections (%d)" msgstr "" -#: coffcode.h:3690 +#: coffcode.h:3681 #, c-format msgid "%pB: section %pA: string table overflow at offset %ld" msgstr "" -#: coffcode.h:3791 +#: coffcode.h:3782 #, c-format msgid "%pB:%s section %s: alignment 2**%u not representable" msgstr "" -#: coffcode.h:4532 +#: coffcode.h:4523 #, c-format msgid "%pB: warning: line number table read failed" msgstr "" -#: coffcode.h:4578 coffcode.h:4592 +#: coffcode.h:4569 coffcode.h:4583 #, c-format msgid "%pB: warning: illegal symbol index 0x%lx in line number entry %d" msgstr "" -#: coffcode.h:4606 +#: coffcode.h:4597 #, c-format msgid "%pB: warning: illegal symbol in line number entry %d" msgstr "" -#: coffcode.h:4619 +#: coffcode.h:4610 #, c-format msgid "%pB: warning: duplicate line number information for `%s'" msgstr "" -#: coffcode.h:5043 +#: coffcode.h:5034 #, c-format msgid "%pB: unrecognized storage class %d for %s symbol `%s'" msgstr "" -#: coffcode.h:5183 +#: coffcode.h:5174 #, c-format msgid "warning: %pB: local symbol `%s' has no section" msgstr "" -#: coffcode.h:5354 +#: coffcode.h:5345 #, c-format msgid "%pB: illegal relocation type %d at address %#<PRIx64>" msgstr "" -#: coffgen.c:255 elf.c:1033 +#: coffgen.c:257 elf.c:1060 #, c-format msgid "%pB: unable to compress section %s" msgstr "" -#: coffgen.c:265 elf.c:1043 +#: coffgen.c:267 elf.c:1070 #, c-format msgid "%pB: unable to decompress section %s" msgstr "" -#: coffgen.c:1778 +#: coffgen.c:1795 #, c-format msgid "%pB: bad string table size %<PRIu64>" msgstr "" -#: coffgen.c:2162 coffgen.c:2301 cofflink.c:2012 ecoff.c:1456 elf.c:2288 -#: elf.c:2320 pef.c:214 syms.c:788 xcofflink.c:5530 +#: coffgen.c:2179 coffgen.c:2318 cofflink.c:2051 ecoff.c:1444 elf.c:2313 +#: elf.c:2345 pef.c:214 syms.c:789 xcofflink.c:384 xcofflink.c:5577 msgid "<corrupt>" msgstr "" -#: coffgen.c:2191 +#: coffgen.c:2208 #, c-format msgid "<corrupt info> %s" msgstr "" -#: coffgen.c:2797 elflink.c:15435 linker.c:3011 -msgid "%F%P: already_linked_table: %E\n" +#: coffgen.c:2818 elflink.c:15490 linker.c:3061 +msgid "%P: already_linked_table: %E\n" msgstr "" -#: coffgen.c:3139 elflink.c:14375 +#: coffgen.c:3175 elflink.c:14430 #, c-format msgid "removing unused section '%pA' in file '%pB'" msgstr "" -#: coffgen.c:3216 elflink.c:14606 +#: coffgen.c:3252 elflink.c:14661 msgid "warning: gc-sections option ignored" msgstr "" -#: cofflink.c:398 +#: cofflink.c:399 #, c-format msgid "warning: symbol `%s' is both section and non-section" msgstr "" -#: cofflink.c:503 elf64-ia64-vms.c:5198 elflink.c:5560 +#: cofflink.c:504 elf64-ia64-vms.c:5200 elflink.c:5587 #, c-format msgid "warning: type of symbol `%s' changed from %d to %d in %pB" msgstr "" -#: cofflink.c:2340 +#: cofflink.c:2379 #, c-format msgid "%pB: relocs in section `%pA', but it has no contents" msgstr "" -#: cofflink.c:2403 elflink.c:11809 +#: cofflink.c:2442 elflink.c:11880 #, c-format msgid "" "%X`%s' referenced in section `%pA' of %pB: defined in discarded section `%" "pA' of %pB\n" msgstr "" -#: cofflink.c:2598 +#: cofflink.c:2637 #, c-format msgid "%pB: stripping non-representable symbol '%s' (value 0x%<PRIx64>)" msgstr "" -#: cofflink.c:2716 +#: cofflink.c:2755 #, c-format msgid "%pB: %pA: reloc overflow: %#x > 0xffff" msgstr "" -#: cofflink.c:2724 +#: cofflink.c:2763 #, c-format msgid "%pB: warning: %pA: line number overflow: %#x > 0xffff" msgstr "" -#: cofflink.c:3118 +#: cofflink.c:3157 #, c-format msgid "%pB: bad reloc address %#<PRIx64> in section `%pA'" msgstr "" @@ -620,7 +621,7 @@ msgstr "" msgid "%pB: %s: reloc overflow: 0x%lx > 0xffff" msgstr "" -#: compress.c:748 compress.c:765 libbfd.c:1322 +#: compress.c:732 compress.c:749 libbfd.c:1322 #, c-format msgid "error: %pB(%pA) is too large (%#<PRIx64> bytes)" msgstr "" @@ -764,163 +765,168 @@ msgid "" "greater than '%u'" msgstr "" -#: ecoff.c:1017 +#: ecoff.c:1005 #, c-format msgid "%pB: warning: isymMax (%ld) is greater than ifdMax (%ld)" msgstr "" -#: ecoff.c:1313 +#: ecoff.c:1301 #, c-format msgid "unknown basic type %d" msgstr "" -#: ecoff.c:1571 +#: ecoff.c:1559 #, c-format msgid "" "\n" " End+1 symbol: %ld" msgstr "" -#: ecoff.c:1578 ecoff.c:1581 +#: ecoff.c:1566 ecoff.c:1569 #, c-format msgid "" "\n" " First symbol: %ld" msgstr "" -#: ecoff.c:1596 +#: ecoff.c:1584 #, c-format msgid "" "\n" " End+1 symbol: %-7ld Type: %s" msgstr "" -#: ecoff.c:1604 +#: ecoff.c:1592 #, c-format msgid "" "\n" " Local symbol: %ld" msgstr "" -#: ecoff.c:1612 +#: ecoff.c:1600 #, c-format msgid "" "\n" " struct; End+1 symbol: %ld" msgstr "" -#: ecoff.c:1617 +#: ecoff.c:1605 #, c-format msgid "" "\n" " union; End+1 symbol: %ld" msgstr "" -#: ecoff.c:1622 +#: ecoff.c:1610 #, c-format msgid "" "\n" " enum; End+1 symbol: %ld" msgstr "" -#: ecoff.c:1630 +#: ecoff.c:1618 #, c-format msgid "" "\n" " Type: %s" msgstr "" -#: elf-attrs.c:417 elf-attrs.c:447 elf-attrs.c:623 +#: elf-attrs.c:424 elf-attrs.c:454 elf-attrs.c:596 msgid "error adding attribute" msgstr "" -#: elf-attrs.c:503 +#: elf-attrs.c:513 +#, c-format +msgid "%pB: error: attribute section length too small: %ld" +msgstr "" + +#: elf-attrs.c:623 #, c-format msgid "%pB: error: attribute section '%pA' too big: %#llx" msgstr "" -#: elf-attrs.c:540 +#: elf-attrs.c:642 #, c-format -msgid "%pB: error: attribute section length too small: %ld" +msgid "%pB: error: unknown attributes version '%c'(%d) - expecting 'A'\n" msgstr "" -#: elf-attrs.c:673 +#: elf-attrs.c:688 #, c-format msgid "" "error: %pB: object has vendor-specific contents that must be processed by " "the '%s' toolchain" msgstr "" -#: elf-attrs.c:683 +#: elf-attrs.c:698 #, c-format msgid "error: %pB: object tag '%d, %s' is incompatible with tag '%d, %s'" msgstr "" -#: elf-eh-frame.c:946 +#: elf-eh-frame.c:952 #, c-format msgid "discarding zero address range FDE in %pB(%pA).\n" msgstr "" -#: elf-eh-frame.c:1051 +#: elf-eh-frame.c:1057 #, c-format msgid "error in %pB(%pA); no .eh_frame_hdr table will be created" msgstr "" -#: elf-eh-frame.c:1542 +#: elf-eh-frame.c:1548 #, c-format msgid "FDE encoding in %pB(%pA) prevents .eh_frame_hdr table being created" msgstr "" -#: elf-eh-frame.c:1549 +#: elf-eh-frame.c:1555 msgid "" "further warnings about FDE encoding preventing .eh_frame_hdr generation " "dropped" msgstr "" -#: elf-eh-frame.c:1872 +#: elf-eh-frame.c:1878 #, c-format msgid "%pB: %pA not in order" msgstr "" -#: elf-eh-frame.c:1886 +#: elf-eh-frame.c:1892 #, c-format msgid "%pB: %pA invalid input section size" msgstr "" -#: elf-eh-frame.c:1894 +#: elf-eh-frame.c:1900 #, c-format msgid "%pB: %pA points past end of text section" msgstr "" -#: elf-eh-frame.c:2147 +#: elf-eh-frame.c:2153 msgid "DW_EH_PE_datarel unspecified for this architecture" msgstr "" -#: elf-eh-frame.c:2317 +#: elf-eh-frame.c:2323 #, c-format msgid "invalid output section for .eh_frame_entry: %pA" msgstr "" -#: elf-eh-frame.c:2340 +#: elf-eh-frame.c:2346 #, c-format msgid "invalid contents in %pA section" msgstr "" -#: elf-eh-frame.c:2496 +#: elf-eh-frame.c:2500 msgid ".eh_frame_hdr entry overflow" msgstr "" -#: elf-eh-frame.c:2498 +#: elf-eh-frame.c:2502 msgid ".eh_frame_hdr refers to overlapping FDEs" msgstr "" #. xgettext:c-format. #: elf-ifunc.c:144 -#: elfnn-loongarch.c:1704 +#: elfnn-loongarch.c:1713 #, c-format msgid "" -"%F%P: dynamic STT_GNU_IFUNC symbol `%s' with pointer equality in `%pB' can " -"not be used when making an executable; recompile with -fPIE and relink with -" +"%P: dynamic STT_GNU_IFUNC symbol `%s' with pointer equality in `%pB' can not " +"be used when making an executable; recompile with -fPIE and relink with -" "pie\n" msgstr "" @@ -928,31 +934,31 @@ msgstr "" #: elf32-cris.c:2033 elf32-crx.c:922 elf32-d10v.c:510 elf32-epiphany.c:563 #: elf32-fr30.c:594 elf32-frv.c:4048 elf32-ft32.c:492 elf32-h8300.c:523 #: elf32-ip2k.c:1478 elf32-iq2000.c:691 elf32-lm32.c:1069 elf32-m32c.c:624 -#: elf32-m32r.c:2837 elf32-m68hc1x.c:1270 elf32-mep.c:522 elf32-metag.c:1983 -#: elf32-microblaze.c:1677 elf32-moxie.c:288 elf32-mt.c:402 elf32-nds32.c:6092 -#: elf32-or1k.c:1895 elf32-score.c:2724 elf32-score7.c:2535 elf32-spu.c:5081 -#: elf32-tilepro.c:3369 elf32-v850.c:2297 elf32-visium.c:680 -#: elf32-xstormy16.c:930 elf64-bpf.c:339 elf64-mmix.c:1537 elfxx-tilegx.c:3742 +#: elf32-m32r.c:2839 elf32-m68hc1x.c:1271 elf32-mep.c:522 elf32-metag.c:1983 +#: elf32-microblaze.c:1677 elf32-moxie.c:288 elf32-mt.c:402 elf32-nds32.c:6099 +#: elf32-or1k.c:1895 elf32-score.c:2724 elf32-score7.c:2535 elf32-spu.c:5084 +#: elf32-tilepro.c:3371 elf32-v850.c:2297 elf32-visium.c:680 +#: elf32-xstormy16.c:931 elf64-bpf.c:339 elf64-mmix.c:1537 elfxx-tilegx.c:3744 msgid "internal error: out of range error" msgstr "" #: elf-m10200.c:438 elf-m10300.c:2150 elf32-bfin.c:3136 elf32-cr16.c:1433 #: elf32-cris.c:2037 elf32-crx.c:926 elf32-d10v.c:514 elf32-fr30.c:598 #: elf32-frv.c:4052 elf32-ft32.c:496 elf32-h8300.c:527 elf32-iq2000.c:695 -#: elf32-lm32.c:1073 elf32-m32c.c:628 elf32-m32r.c:2841 elf32-m68hc1x.c:1274 +#: elf32-lm32.c:1073 elf32-m32c.c:628 elf32-m32r.c:2843 elf32-m68hc1x.c:1275 #: elf32-mep.c:526 elf32-metag.c:1987 elf32-microblaze.c:1681 -#: elf32-moxie.c:292 elf32-msp430.c:1510 elf32-nds32.c:6096 elf32-or1k.c:1899 -#: elf32-score.c:2728 elf32-score7.c:2539 elf32-spu.c:5085 -#: elf32-tilepro.c:3373 elf32-v850.c:2301 elf32-visium.c:684 -#: elf32-xstormy16.c:934 elf64-mmix.c:1541 elfxx-mips.c:10642 -#: elfxx-tilegx.c:3746 +#: elf32-moxie.c:292 elf32-msp430.c:1510 elf32-nds32.c:6103 elf32-or1k.c:1899 +#: elf32-score.c:2728 elf32-score7.c:2539 elf32-spu.c:5088 +#: elf32-tilepro.c:3375 elf32-v850.c:2301 elf32-visium.c:684 +#: elf32-xstormy16.c:935 elf64-mmix.c:1541 elfxx-mips.c:10727 +#: elfxx-tilegx.c:3748 msgid "internal error: unsupported relocation error" msgstr "" #: elf-m10200.c:442 elf32-cr16.c:1437 elf32-crx.c:930 elf32-d10v.c:518 -#: elf32-h8300.c:531 elf32-lm32.c:1077 elf32-m32r.c:2845 elf32-m68hc1x.c:1278 -#: elf32-microblaze.c:1685 elf32-nds32.c:6100 elf32-score.c:2732 -#: elf32-score7.c:2543 elf32-spu.c:5089 +#: elf32-h8300.c:531 elf32-lm32.c:1077 elf32-m32r.c:2847 elf32-m68hc1x.c:1279 +#: elf32-microblaze.c:1685 elf32-nds32.c:6107 elf32-score.c:2732 +#: elf32-score7.c:2543 elf32-spu.c:5092 msgid "internal error: dangerous error" msgstr "" @@ -960,12 +966,12 @@ msgstr "" #: elf32-cris.c:2045 elf32-crx.c:934 elf32-d10v.c:522 elf32-epiphany.c:578 #: elf32-fr30.c:606 elf32-frv.c:4060 elf32-ft32.c:504 elf32-h8300.c:535 #: elf32-ip2k.c:1493 elf32-iq2000.c:703 elf32-lm32.c:1081 elf32-m32c.c:636 -#: elf32-m32r.c:2849 elf32-m68hc1x.c:1282 elf32-mep.c:534 elf32-metag.c:1995 +#: elf32-m32r.c:2851 elf32-m68hc1x.c:1283 elf32-mep.c:534 elf32-metag.c:1995 #: elf32-microblaze.c:1689 elf32-moxie.c:300 elf32-msp430.c:1518 -#: elf32-mt.c:410 elf32-nds32.c:6104 elf32-or1k.c:1907 elf32-score.c:2741 -#: elf32-score7.c:2547 elf32-spu.c:5093 elf32-tilepro.c:3381 elf32-v850.c:2321 -#: elf32-visium.c:692 elf32-xstormy16.c:942 elf64-bpf.c:352 elf64-mmix.c:1549 -#: elfxx-tilegx.c:3754 +#: elf32-mt.c:410 elf32-nds32.c:6111 elf32-or1k.c:1907 elf32-score.c:2741 +#: elf32-score7.c:2547 elf32-spu.c:5096 elf32-tilepro.c:3383 elf32-v850.c:2321 +#: elf32-visium.c:692 elf32-xstormy16.c:943 elf64-bpf.c:352 elf64-mmix.c:1549 +#: elfxx-tilegx.c:3756 msgid "internal error: unknown error" msgstr "" @@ -979,13 +985,13 @@ msgstr "" msgid "%pB: %s' accessed both as normal and thread local symbol" msgstr "" -#: elf-m10300.c:2093 elf32-arm.c:13472 elf32-i386.c:3503 elf32-m32r.c:2331 -#: elf32-m68k.c:3929 elf32-s390.c:3072 elf32-sh.c:3672 elf32-tilepro.c:3272 -#: elf32-xtensa.c:3020 elf64-s390.c:3129 elf64-x86-64.c:4564 -#: elfxx-sparc.c:2913 elfxx-sparc.c:3810 elfxx-tilegx.c:3665 -#: elfnn-aarch64.c:5725 -#: elfnn-aarch64.c:7343 -#: elfnn-kvx.c:2772 +#: elf-m10300.c:2093 elf32-arm.c:13476 elf32-i386.c:3545 elf32-m32r.c:2333 +#: elf32-m68k.c:3931 elf32-s390.c:3074 elf32-sh.c:3674 elf32-tilepro.c:3274 +#: elf32-xtensa.c:3022 elf64-s390.c:3391 elf64-x86-64.c:5025 +#: elfxx-sparc.c:2924 elfxx-sparc.c:3820 elfxx-tilegx.c:3667 +#: elfnn-aarch64.c:5743 +#: elfnn-aarch64.c:7361 +#: elfnn-kvx.c:2773 #, c-format msgid "%pB(%pA+%#<PRIx64>): unresolvable %s relocation against symbol `%s'" msgstr "" @@ -1007,113 +1013,118 @@ msgstr "" msgid "internal error: suspicious relocation type used in shared library" msgstr "" -#: elf-m10300.c:2650 elf32-avr.c:2483 elf32-frv.c:5621 elf64-ia64-vms.c:365 -#: elfxx-sparc.c:2680 reloc.c:8370 reloc16.c:155 +#: elf-m10300.c:2650 elf32-avr.c:2483 elf32-frv.c:5627 elf64-ia64-vms.c:365 +#: elfxx-sparc.c:2691 reloc.c:8376 reloc16.c:155 #: elfnn-ia64.c:365 -msgid "%P%F: --relax and -r may not be used together\n" +msgid "%P: --relax and -r may not be used together\n" msgstr "" -#: elf-properties.c:65 +#: elf-properties.c:121 #, c-format msgid "%pB: out of memory in _bfd_elf_get_property" msgstr "" -#: elf-properties.c:91 +#: elf-properties.c:150 #, c-format msgid "warning: %pB: corrupt GNU_PROPERTY_TYPE (%ld) size: %#lx" msgstr "" -#: elf-properties.c:112 +#: elf-properties.c:171 #, c-format msgid "warning: %pB: corrupt GNU_PROPERTY_TYPE (%ld) type (0x%x) datasz: 0x%x" msgstr "" -#: elf-properties.c:151 +#: elf-properties.c:210 #, c-format msgid "warning: %pB: corrupt stack size: 0x%x" msgstr "" -#: elf-properties.c:169 +#: elf-properties.c:228 #, c-format msgid "warning: %pB: corrupt no copy on protected size: 0x%x" msgstr "" -#: elf-properties.c:184 +#: elf-properties.c:243 #, c-format msgid "warning: %pB: corrupt memory sealing size: 0x%x" msgstr "" -#: elf-properties.c:203 +#: elf-properties.c:262 #, c-format msgid "error: %pB: <corrupt property (0x%x) size: 0x%x>" msgstr "" -#: elf-properties.c:228 +#: elf-properties.c:287 #, c-format msgid "warning: %pB: unsupported GNU_PROPERTY_TYPE (%ld) type: 0x%x" msgstr "" -#: elf-properties.c:415 +#: elf-properties.c:467 msgid "Removed property %W to merge %pB (0x%v) and %pB (0x%v)\n" msgstr "" -#: elf-properties.c:421 +#: elf-properties.c:473 msgid "Removed property %W to merge %pB (0x%v) and %pB (not found)\n" msgstr "" -#: elf-properties.c:430 elf-properties.c:508 +#: elf-properties.c:482 elf-properties.c:560 msgid "Removed property %W to merge %pB and %pB\n" msgstr "" -#: elf-properties.c:434 +#: elf-properties.c:486 msgid "Removed property %W to merge %pB and %pB (not found)\n" msgstr "" -#: elf-properties.c:451 +#: elf-properties.c:503 msgid "Updated property %W (0x%v) to merge %pB (0x%v) and %pB (0x%v)\n" msgstr "" -#: elf-properties.c:460 +#: elf-properties.c:512 msgid "Updated property %W (%v) to merge %pB (0x%v) and %pB (not found)\n" msgstr "" -#: elf-properties.c:502 +#: elf-properties.c:554 msgid "Removed property %W to merge %pB (not found) and %pB (0x%v)\n" msgstr "" -#: elf-properties.c:640 elfxx-aarch64.c:748 elfxx-x86.c:4348 -msgid "%F%P: failed to create GNU property section\n" -msgstr "" - -#: elf-properties.c:644 elfxx-aarch64.c:752 elfxx-x86.c:4353 -#, c-format -msgid "%F%pA: failed to align section\n" +#: elf-properties.c:693 elfxx-aarch64.c:765 +msgid "%P: failed to create %s\n" msgstr "" #. Merge .note.gnu.property sections. -#: elf-properties.c:749 elf-properties.c:751 +#: elf-properties.c:798 elf-properties.c:800 msgid "\n" msgstr "" -#: elf-properties.c:750 +#: elf-properties.c:799 msgid "Merging program properties\n" msgstr "" -#: elf-sframe.c:239 +#: elf-sframe.c:201 +#, c-format +msgid "error in %pB(%pA); unexpected SFrame section type" +msgstr "" + +#: elf-sframe.c:252 #, c-format msgid "error in %pB(%pA); no .sframe will be created" msgstr "" -#: elf-sframe.c:399 +#: elf-sframe.c:426 msgid "input SFrame sections with different abi prevent .sframe generation" msgstr "" -#: elf-sframe.c:410 +#: elf-sframe.c:437 msgid "" "input SFrame sections with different format versions prevent .sframe " "generation" msgstr "" +#: elf-sframe.c:450 +msgid "" +"SFrame sections with unexpected data encoding prevent .sframe generation" +msgstr "" + #: elf.c:299 #, c-format msgid "%pB: string table [%u] is corrupt" @@ -1130,197 +1141,212 @@ msgstr "" msgid "%pB: invalid string offset %u >= %<PRIu64> for section `%s'" msgstr "" -#: elf.c:511 elf32-arm.c:17773 -#: elfnn-aarch64.c:8343 -#: elfnn-loongarch.c:6132 -#: elfnn-riscv.c:3688 +#: elf.c:512 elf32-arm.c:17779 +#: elfnn-aarch64.c:8361 +#: elfnn-loongarch.c:6449 +#: elfnn-riscv.c:3885 #, c-format msgid "%pB symbol number %lu references nonexistent SHT_SYMTAB_SHNDX section" msgstr "" -#: elf.c:614 +#: elf.c:526 +#, c-format +msgid "%pB symbol number %lu uses unsupported binding of %u" +msgstr "" + +#: elf.c:538 +#, c-format +msgid "%pB symbol number %lu uses unsupported type of %u" +msgstr "" + +#: elf.c:641 #, c-format msgid "%pB: could not read contents of group [%u]" msgstr "" -#: elf.c:645 +#: elf.c:672 #, c-format msgid "%pB: invalid entry (%#x) in group [%u]" msgstr "" -#: elf.c:664 +#: elf.c:691 #, c-format msgid "%pB: unexpected type (%#x) section `%s' in group [%u]" msgstr "" -#: elf.c:740 +#: elf.c:767 #, c-format msgid "%pB: sh_link [%d] in section `%pA' is incorrect" msgstr "" -#: elf.c:769 +#: elf.c:796 #, c-format msgid "%pB: section group entry number %u is corrupt" msgstr "" -#: elf.c:1051 +#: elf.c:1078 #, c-format msgid "" "%pB: section %s is compressed with zstd, but BFD is not built with zstd " "support" msgstr "" -#: elf.c:1237 +#: elf.c:1264 #, c-format msgid "%pB: invalid sh_link field (%d) in section number %d" msgstr "" -#: elf.c:1253 +#: elf.c:1280 #, c-format msgid "%pB: failed to find link section for section %d" msgstr "" -#: elf.c:1280 +#: elf.c:1307 #, c-format msgid "%pB: failed to find info section for section %d" msgstr "" -#: elf.c:1457 +#: elf.c:1484 #, c-format msgid "" "\n" "Program Header:\n" msgstr "" -#: elf.c:1499 +#: elf.c:1526 #, c-format msgid "" "\n" "Dynamic Section:\n" msgstr "" -#: elf.c:1638 +#: elf.c:1665 #, c-format msgid "" "\n" "Version definitions:\n" msgstr "" -#: elf.c:1663 +#: elf.c:1690 #, c-format msgid "" "\n" "Version References:\n" msgstr "" -#: elf.c:1668 +#: elf.c:1695 #, c-format msgid " required from %s:\n" msgstr "" -#: elf.c:1917 +#: elf.c:1944 #, c-format msgid "%pB: DT_STRTAB table is corrupt" msgstr "" -#: elf.c:2426 +#: elf.c:2451 #, c-format msgid "%pB: warning: loop in section dependencies detected" msgstr "" -#: elf.c:2533 +#: elf.c:2559 #, c-format msgid "" "%pB: warning: multiple symbol tables detected - ignoring the table in " "section %u" msgstr "" -#: elf.c:2618 +#: elf.c:2644 #, c-format msgid "" "%pB: warning: multiple dynamic symbol tables detected - ignoring the table " "in section %u" msgstr "" -#: elf.c:2737 +#: elf.c:2763 #, c-format msgid "%pB: invalid link %u for reloc section %s (index %u)" msgstr "" -#: elf.c:2794 +#: elf.c:2820 #, c-format msgid "" "%pB: warning: secondary relocation section '%s' for section %pA found - " "ignoring" msgstr "" -#: elf.c:2879 elf.c:2893 elf.c:2904 elf.c:2917 +#: elf.c:2905 elf.c:2919 elf.c:2930 elf.c:2943 #, c-format msgid "%pB: unknown type [%#x] section `%s'" msgstr "" -#: elf.c:3586 +#: elf.c:3614 #, c-format msgid "%pB: error: alignment power %d of section `%pA' is too big" msgstr "" -#: elf.c:3621 +#: elf.c:3649 #, c-format msgid "warning: section `%pA' type changed to PROGBITS" msgstr "" -#: elf.c:4130 +#: elf.c:3981 +#, c-format +msgid "%pB: corrupted group section: `%pA'" +msgstr "" + +#: elf.c:4156 #, c-format msgid "%pB: too many sections: %u" msgstr "" -#: elf.c:4216 +#: elf.c:4242 #, c-format msgid "" "%pB: sh_link of section `%pA' points to discarded section `%pA' of `%pB'" msgstr "" -#: elf.c:4234 +#: elf.c:4260 #, c-format msgid "%pB: sh_link of section `%pA' points to removed section `%pA' of `%pB'" msgstr "" -#: elf.c:4830 +#: elf.c:4860 #, c-format msgid "%pB: GNU_MBIND section `%pA' has invalid sh_info field: %d" msgstr "" -#: elf.c:5013 -msgid "%F%P: failed to size relative relocations\n" +#: elf.c:5043 +msgid "%P: failed to size relative relocations\n" msgstr "" -#: elf.c:5440 +#: elf.c:5470 #, c-format msgid "%pB: TLS sections are not adjacent:" msgstr "" -#: elf.c:5447 +#: elf.c:5477 #, c-format msgid "\t TLS: %pA" msgstr "" -#: elf.c:5451 +#: elf.c:5481 #, c-format msgid "\tnon-TLS: %pA" msgstr "" -#: elf.c:6075 +#: elf.c:6103 #, c-format msgid "" "%pB: The first section in the PT_DYNAMIC segment is not the .dynamic section" msgstr "" -#: elf.c:6101 +#: elf.c:6129 #, c-format msgid "%pB: not enough room for program headers, try linking with -N" msgstr "" -#: elf.c:6222 +#: elf.c:6256 #, c-format msgid "%pB: section %pA lma %#<PRIx64> adjusted to %#<PRIx64>" msgstr "" @@ -1328,201 +1354,201 @@ msgstr "" #. The fix for this error is usually to edit the linker script being #. used and set up the program headers manually. Either that or #. leave room for the headers at the start of the SECTIONS. -#: elf.c:6362 +#: elf.c:6397 #, c-format msgid "%pB: error: PHDR segment not covered by LOAD segment" msgstr "" -#: elf.c:6402 +#: elf.c:6437 #, c-format msgid "%pB: section `%pA' can't be allocated in segment %u" msgstr "" -#: elf.c:6543 +#: elf.c:6575 #, c-format msgid "%pB: warning: allocated section `%s' not in segment" msgstr "" -#: elf.c:6678 +#: elf.c:6710 #, c-format msgid "%pB: warning: unable to allocate any sections to PT_GNU_RELRO segment" msgstr "" -#: elf.c:6709 +#: elf.c:6741 #, c-format msgid "" "%pB: error: non-load segment %d includes file header and/or program header" msgstr "" -#: elf.c:6862 +#: elf.c:6894 #, c-format msgid "error: %pB has a TLS segment with execute permission" msgstr "" -#: elf.c:6868 +#: elf.c:6900 #, c-format msgid "warning: %pB has a TLS segment with execute permission" msgstr "" -#: elf.c:6883 +#: elf.c:6915 #, c-format msgid "error: %pB has a LOAD segment with RWX permissions" msgstr "" -#: elf.c:6889 +#: elf.c:6921 #, c-format msgid "warning: %pB has a LOAD segment with RWX permissions" msgstr "" -#: elf.c:7284 +#: elf.c:7316 #, c-format msgid "%pB: symbol `%s' required but not present" msgstr "" -#: elf.c:7661 +#: elf.c:7693 #, c-format msgid "" "%pB: warning: empty loadable segment detected at vaddr=%#<PRIx64>, is this " "intentional?" msgstr "" -#: elf.c:8334 +#: elf.c:8366 #, c-format msgid "%pB: warning: segment alignment of %#<PRIx64> is too large" msgstr "" -#: elf.c:8837 +#: elf.c:8848 #, c-format msgid "" "%pB: Unable to handle section index %x in ELF symbol. Using ABS instead." msgstr "" -#: elf.c:8867 +#: elf.c:8878 #, c-format msgid "" "unable to find equivalent output section for symbol '%s' from section '%s'" msgstr "" -#: elf.c:9300 +#: elf.c:9311 #, c-format msgid "%pB: .gnu.version_r invalid entry" msgstr "" -#: elf.c:9478 +#: elf.c:9489 #, c-format msgid "%pB: .gnu.version_d invalid entry" msgstr "" -#: elf.c:9981 +#: elf.c:9992 #, c-format msgid "%pB:%pA: error: attempting to write over the end of the section" msgstr "" -#: elf.c:9993 +#: elf.c:10004 #, c-format msgid "%pB:%pA: error: attempting to write section into an empty buffer" msgstr "" -#: elf.c:10108 elf32-mcore.c:100 elf32-mcore.c:455 elf32-ppc.c:7675 -#: elf32-ppc.c:8863 elf64-ppc.c:16860 +#: elf.c:10119 elf32-mcore.c:100 elf32-mcore.c:455 elf32-ppc.c:7666 +#: elf32-ppc.c:8854 elf64-ppc.c:16870 #, c-format msgid "%pB: %s unsupported" msgstr "" -#: elf.c:10923 +#: elf.c:10966 #, c-format msgid "%pB: warning: win32pstatus %s of size %lu bytes is too small" msgstr "" -#: elf.c:11002 +#: elf.c:11045 #, c-format msgid "" "%pB: win32pstatus NOTE_INFO_MODULE of size %lu is too small to contain a " "name of size %u" msgstr "" -#: elf.c:13640 +#: elf.c:13726 msgid "GNU_MBIND section is supported only by GNU and FreeBSD targets" msgstr "" -#: elf.c:13643 +#: elf.c:13729 msgid "symbol type STT_GNU_IFUNC is supported only by GNU and FreeBSD targets" msgstr "" -#: elf.c:13646 +#: elf.c:13732 msgid "" "symbol binding STB_GNU_UNIQUE is supported only by GNU and FreeBSD targets" msgstr "" -#: elf.c:13649 +#: elf.c:13735 msgid "GNU_RETAIN section is supported only by GNU and FreeBSD targets" msgstr "" -#: elf.c:13866 +#: elf.c:13952 #, c-format msgid "%pB(%pA): relocation %zu has invalid symbol index %lu" msgstr "" -#: elf.c:13941 +#: elf.c:14027 #, c-format msgid "" "%pB(%pA): link section cannot be set because the output file does not have a " "symbol table" msgstr "" -#: elf.c:13955 +#: elf.c:14041 #, c-format msgid "%pB(%pA): info section index is invalid" msgstr "" -#: elf.c:13969 +#: elf.c:14055 #, c-format msgid "" "%pB(%pA): info section index cannot be set because the section is not in the " "output" msgstr "" -#: elf.c:14045 +#: elf.c:14131 #, c-format msgid "%pB(%pA): error: secondary reloc section processed twice" msgstr "" -#: elf.c:14057 +#: elf.c:14143 #, c-format msgid "%pB(%pA): error: secondary reloc section has zero sized entries" msgstr "" -#: elf.c:14069 +#: elf.c:14155 #, c-format msgid "%pB(%pA): error: secondary reloc section has non-standard sized entries" msgstr "" -#: elf.c:14083 +#: elf.c:14169 #, c-format msgid "%pB(%pA): error: secondary reloc section is empty!" msgstr "" -#: elf.c:14106 +#: elf.c:14193 #, c-format msgid "%pB(%pA): error: internal relocs missing for secondary reloc section" msgstr "" -#: elf.c:14126 +#: elf.c:14213 #, c-format msgid "%pB(%pA): error: reloc table entry %zu is empty" msgstr "" -#: elf.c:14151 +#: elf.c:14238 #, c-format msgid "%pB(%pA): error: secondary reloc %zu references a missing symbol" msgstr "" -#: elf.c:14169 +#: elf.c:14256 #, c-format msgid "%pB(%pA): error: secondary reloc %zu references a deleted symbol" msgstr "" -#: elf.c:14183 +#: elf.c:14270 #, c-format msgid "%pB(%pA): error: secondary reloc %zu is of an unknown type" msgstr "" @@ -1531,10 +1557,10 @@ msgstr "" #. containing valid data. #. Ignore init flag - it may not be set, despite the flags field #. containing valid data. -#: elf32-arc.c:454 elf32-arm.c:15194 elf32-frv.c:6612 elf32-iq2000.c:868 -#: elf32-m32c.c:914 elf32-mt.c:560 elf32-rl78.c:1275 elf32-rx.c:3218 +#: elf32-arc.c:454 elf32-arm.c:15198 elf32-frv.c:6618 elf32-iq2000.c:868 +#: elf32-m32c.c:915 elf32-mt.c:560 elf32-rl78.c:1275 elf32-rx.c:3218 #: elf32-visium.c:844 elf64-ppc.c:5531 -#: elfnn-aarch64.c:7573 +#: elfnn-aarch64.c:7591 #, c-format msgid "private flags = 0x%lx:" msgstr "" @@ -1580,8 +1606,8 @@ msgid "" "error: attempting to link %pB with a binary %pB of different architecture" msgstr "" -#: elf32-arc.c:937 elf32-iq2000.c:844 elf32-m32c.c:889 elf32-m68hc1x.c:1389 -#: elf32-ppc.c:3854 elf64-sparc.c:737 elfxx-mips.c:15680 +#: elf32-arc.c:937 elf32-iq2000.c:844 elf32-m32c.c:890 elf32-m68hc1x.c:1390 +#: elf32-ppc.c:3854 elf64-sparc.c:737 elfxx-mips.c:15766 #, c-format msgid "%pB: uses different e_flags (%#x) fields than previous modules (%#x)" msgstr "" @@ -1638,27 +1664,27 @@ msgstr "" msgid "%pB(%pA): internal error: unknown error" msgstr "" -#: elf32-arc.c:2035 elf32-arc.c:2103 elf32-arm.c:15637 elf32-metag.c:2250 -#: elf32-nds32.c:5542 -#: elfnn-aarch64.c:7980 -#: elfnn-riscv.c:722 +#: elf32-arc.c:2035 elf32-arc.c:2103 elf32-arm.c:15641 elf32-metag.c:2250 +#: elf32-nds32.c:5549 +#: elfnn-aarch64.c:7998 +#: elfnn-riscv.c:915 #, c-format msgid "" "%pB: relocation %s against `%s' can not be used when making a shared object; " "recompile with -fPIC" msgstr "" -#: elf32-arc.c:2920 +#: elf32-arc.c:2922 #, c-format msgid "%pB: unknown mandatory ARC object attribute %d" msgstr "" -#: elf32-arc.c:2928 +#: elf32-arc.c:2930 #, c-format msgid "warning: %pB: unknown ARC object attribute %d" msgstr "" -#: elf32-arm.c:4365 elf32-arm.c:4399 elf32-arm.c:4418 elf32-arm.c:4470 +#: elf32-arm.c:4367 elf32-arm.c:4401 elf32-arm.c:4420 elf32-arm.c:4472 #, c-format msgid "" "%pB(%pA): warning: long branch veneers used in section with SHF_ARM_PURECODE " @@ -1666,158 +1692,158 @@ msgid "" "movw instruction" msgstr "" -#: elf32-arm.c:4430 elf32-arm.c:4484 elf32-arm.c:9181 elf32-arm.c:9271 +#: elf32-arm.c:4432 elf32-arm.c:4486 elf32-arm.c:9185 elf32-arm.c:9275 #, c-format msgid "" "%pB(%s): warning: interworking not enabled; first occurrence: %pB: %s call " "to %s" msgstr "" -#: elf32-arm.c:4610 +#: elf32-arm.c:4612 #, c-format msgid "" "ERROR: CMSE stub (%s section) too far (%#<PRIx64>) from destination (%" "#<PRIx64>)" msgstr "" -#: elf32-arm.c:4779 +#: elf32-arm.c:4781 #, c-format msgid "no address assigned to the veneers output section %s" msgstr "" -#: elf32-arm.c:4854 elf32-arm.c:7003 elf32-csky.c:3385 elf32-hppa.c:581 -#: elf32-m68hc1x.c:163 elf32-metag.c:1179 elf64-ppc.c:3902 elf64-ppc.c:14175 -#: elfnn-aarch64.c:3188 +#: elf32-arm.c:4856 elf32-arm.c:7005 elf32-csky.c:3387 elf32-hppa.c:581 +#: elf32-m68hc1x.c:163 elf32-metag.c:1179 elf64-ppc.c:3902 elf64-ppc.c:14180 +#: elfnn-aarch64.c:3200 #: elfnn-kvx.c:894 #, c-format msgid "%pB: cannot create stub entry %s" msgstr "" -#: elf32-arm.c:5075 elf32-csky.c:3727 elf32-hppa.c:731 elf32-hppa.c:760 -#: elf32-hppa.c:841 elf32-m68hc11.c:422 elf32-m68hc12.c:542 elf32-metag.c:3344 -#: elf64-ppc.c:12292 elf64-ppc.c:12300 xcofflink.c:4676 -#: elfnn-aarch64.c:3260 +#: elf32-arm.c:5077 elf32-csky.c:3729 elf32-hppa.c:731 elf32-hppa.c:760 +#: elf32-hppa.c:841 elf32-m68hc11.c:422 elf32-m68hc12.c:542 elf32-metag.c:3346 +#: elf64-ppc.c:12297 elf64-ppc.c:12305 xcofflink.c:4723 +#: elfnn-aarch64.c:3272 msgid "" -"%F%P: Could not assign `%pA' to an output section. Retry without --enable-" -"non-contiguous-regions.\n" +"%P: Could not assign `%pA' to an output section. Retry without --enable-non-" +"contiguous-regions.\n" msgstr "" -#: elf32-arm.c:6046 +#: elf32-arm.c:6048 #, c-format msgid "%pB: special symbol `%s' only allowed for ARMv8-M architecture or later" msgstr "" -#: elf32-arm.c:6055 +#: elf32-arm.c:6057 #, c-format msgid "" "%pB: invalid special symbol `%s'; it must be a global or weak function symbol" msgstr "" -#: elf32-arm.c:6094 +#: elf32-arm.c:6096 #, c-format msgid "" "%pB: invalid standard symbol `%s'; it must be a global or weak function " "symbol" msgstr "" -#: elf32-arm.c:6100 +#: elf32-arm.c:6102 #, c-format msgid "%pB: absent standard symbol `%s'" msgstr "" -#: elf32-arm.c:6112 +#: elf32-arm.c:6114 #, c-format msgid "%pB: `%s' and its special symbol are in different sections" msgstr "" -#: elf32-arm.c:6124 +#: elf32-arm.c:6126 #, c-format msgid "%pB: entry function `%s' not output" msgstr "" -#: elf32-arm.c:6131 +#: elf32-arm.c:6133 #, c-format msgid "%pB: entry function `%s' is empty" msgstr "" -#: elf32-arm.c:6260 +#: elf32-arm.c:6262 #, c-format msgid "%pB: --in-implib only supported for Secure Gateway import libraries" msgstr "" -#: elf32-arm.c:6309 +#: elf32-arm.c:6311 #, c-format msgid "" "%pB: invalid import library entry: `%s'; symbol should be absolute, global " "and refer to Thumb functions" msgstr "" -#: elf32-arm.c:6331 +#: elf32-arm.c:6333 #, c-format msgid "entry function `%s' disappeared from secure code" msgstr "" -#: elf32-arm.c:6355 +#: elf32-arm.c:6357 #, c-format msgid "`%s' refers to a non entry function" msgstr "" -#: elf32-arm.c:6370 +#: elf32-arm.c:6372 #, c-format msgid "%pB: visibility of symbol `%s' has changed" msgstr "" -#: elf32-arm.c:6379 +#: elf32-arm.c:6381 #, c-format msgid "%pB: incorrect size for symbol `%s'" msgstr "" -#: elf32-arm.c:6398 +#: elf32-arm.c:6400 #, c-format msgid "offset of veneer for entry function `%s' not a multiple of its size" msgstr "" -#: elf32-arm.c:6418 +#: elf32-arm.c:6420 msgid "" "new entry function(s) introduced but no output import library specified:" msgstr "" -#: elf32-arm.c:6426 +#: elf32-arm.c:6428 #, c-format msgid "start address of `%s' is different from previous link" msgstr "" -#: elf32-arm.c:7137 elf32-arm.c:7175 +#: elf32-arm.c:7140 elf32-arm.c:7178 #, c-format msgid "unable to find %s glue '%s' for '%s'" msgstr "" -#: elf32-arm.c:7886 +#: elf32-arm.c:7890 #, c-format msgid "%pB: BE8 images only valid in big-endian mode" msgstr "" #. Give a warning, but do as the user requests anyway. -#: elf32-arm.c:8114 +#: elf32-arm.c:8118 #, c-format msgid "" "%pB: warning: selected VFP11 erratum workaround is not necessary for target " "architecture" msgstr "" -#: elf32-arm.c:8141 +#: elf32-arm.c:8145 #, c-format msgid "" "%pB: warning: selected STM32L4XX erratum workaround is not necessary for " "target architecture" msgstr "" -#: elf32-arm.c:8677 elf32-arm.c:8697 elf32-arm.c:8764 elf32-arm.c:8783 +#: elf32-arm.c:8681 elf32-arm.c:8701 elf32-arm.c:8768 elf32-arm.c:8787 #, c-format msgid "%pB: unable to find %s veneer `%s'" msgstr "" -#: elf32-arm.c:8990 +#: elf32-arm.c:8994 #, c-format msgid "" "%pB(%pA+%#x): error: multiple load detected in non-last IT block " @@ -1825,502 +1851,502 @@ msgid "" "it to generate only one instruction per IT block" msgstr "" -#: elf32-arm.c:9088 +#: elf32-arm.c:9092 #, c-format msgid "invalid TARGET2 relocation type '%s'" msgstr "" #. FIXME: We ought to be able to generate thumb-1 PLT #. instructions... -#: elf32-arm.c:9857 +#: elf32-arm.c:9861 #, c-format msgid "%pB: warning: thumb-1 mode PLT generation not currently supported" msgstr "" -#: elf32-arm.c:10166 elf32-arm.c:10208 +#: elf32-arm.c:10170 elf32-arm.c:10212 #, c-format msgid "%pB(%pA+%#<PRIx64>): unexpected %s instruction '%#lx' in TLS trampoline" msgstr "" -#: elf32-arm.c:10489 +#: elf32-arm.c:10493 #, c-format msgid "" "warning: %pB(%s): Forcing bramch to absolute symbol in Thumb mode (Thumb-" "only CPU) in %pB" msgstr "" -#: elf32-arm.c:10494 +#: elf32-arm.c:10498 #, c-format msgid "" "warning: (%s): Forcing branch to absolute symbol in Thumb mode (Thumb-only " "CPU) in %pB" msgstr "" -#: elf32-arm.c:10523 +#: elf32-arm.c:10527 #, c-format msgid "%pB(%s): Unknown destination type (ARM/Thumb) in %pB" msgstr "" -#: elf32-arm.c:10527 +#: elf32-arm.c:10531 #, c-format msgid "(%s): Unknown destination type (ARM/Thumb) in %pB" msgstr "" -#: elf32-arm.c:10615 +#: elf32-arm.c:10619 msgid "shared object" msgstr "" -#: elf32-arm.c:10618 +#: elf32-arm.c:10622 msgid "PIE executable" msgstr "" -#: elf32-arm.c:10621 +#: elf32-arm.c:10625 #, c-format msgid "" "%pB: relocation %s against external or undefined symbol `%s' can not be used " "when making a %s; recompile with -fPIC" msgstr "" -#: elf32-arm.c:10723 +#: elf32-arm.c:10727 #, c-format msgid "\\%pB: warning: %s BLX instruction targets %s function '%s'" msgstr "" -#: elf32-arm.c:11140 +#: elf32-arm.c:11144 #, c-format msgid "%pB: warning: %s BLX instruction targets %s function '%s'" msgstr "" -#: elf32-arm.c:11774 +#: elf32-arm.c:11778 #, c-format msgid "" "%pB: expected symbol index in range 0..%lu but found local symbol with index " "%lu" msgstr "" -#: elf32-arm.c:12049 elf32-arm.c:12075 +#: elf32-arm.c:12053 elf32-arm.c:12079 #, c-format msgid "" "%pB(%pA+%#<PRIx64>): unexpected %s instruction '%#lx' referenced by " "TLS_GOTDESC" msgstr "" -#: elf32-arm.c:12121 elf32-csky.c:4955 elf32-m68k.c:3733 elf32-metag.c:1912 +#: elf32-arm.c:12125 elf32-csky.c:4958 elf32-m68k.c:3735 elf32-metag.c:1912 #, c-format msgid "%pB(%pA+%#<PRIx64>): %s relocation not permitted in shared object" msgstr "" -#: elf32-arm.c:12335 +#: elf32-arm.c:12339 #, c-format msgid "" "%pB(%pA+%#<PRIx64>): only ADD or SUB instructions are allowed for ALU group " "relocations" msgstr "" -#: elf32-arm.c:12376 elf32-arm.c:12468 elf32-arm.c:12556 elf32-arm.c:12646 +#: elf32-arm.c:12380 elf32-arm.c:12472 elf32-arm.c:12560 elf32-arm.c:12650 #, c-format msgid "" "%pB(%pA+%#<PRIx64>): overflow whilst splitting %#<PRIx64> for group " "relocation %s" msgstr "" -#: elf32-arm.c:12704 elf32-arm.c:12863 +#: elf32-arm.c:12708 elf32-arm.c:12867 msgid "local symbol index too big" msgstr "" -#: elf32-arm.c:12714 elf32-arm.c:12748 +#: elf32-arm.c:12718 elf32-arm.c:12752 msgid "no dynamic index information available" msgstr "" -#: elf32-arm.c:12756 +#: elf32-arm.c:12760 msgid "invalid dynamic index" msgstr "" -#: elf32-arm.c:12873 +#: elf32-arm.c:12877 msgid "dynamic index information not available" msgstr "" -#: elf32-arm.c:13304 elf32-sh.c:3566 +#: elf32-arm.c:13308 elf32-sh.c:3568 #, c-format msgid "%pB(%pA+%#<PRIx64>): %s relocation against SEC_MERGE section" msgstr "" -#: elf32-arm.c:13417 elf32-m68k.c:3966 elf32-xtensa.c:2758 -#: elfnn-aarch64.c:7070 -#: elfnn-kvx.c:2568 +#: elf32-arm.c:13421 elf32-m68k.c:3968 elf32-xtensa.c:2760 +#: elfnn-aarch64.c:7088 +#: elfnn-kvx.c:2569 #, c-format msgid "%pB(%pA+%#<PRIx64>): %s used with TLS symbol %s" msgstr "" -#: elf32-arm.c:13419 elf32-m68k.c:3968 elf32-xtensa.c:2760 -#: elfnn-aarch64.c:7072 -#: elfnn-kvx.c:2570 +#: elf32-arm.c:13423 elf32-m68k.c:3970 elf32-xtensa.c:2762 +#: elfnn-aarch64.c:7090 +#: elfnn-kvx.c:2571 #, c-format msgid "%pB(%pA+%#<PRIx64>): %s used with non-TLS symbol %s" msgstr "" -#: elf32-arm.c:13502 elf32-tic6x.c:2641 -#: elfnn-aarch64.c:7407 -#: elfnn-kvx.c:2797 +#: elf32-arm.c:13506 elf32-tic6x.c:2641 +#: elfnn-aarch64.c:7425 +#: elfnn-kvx.c:2798 msgid "out of range" msgstr "" -#: elf32-arm.c:13506 elf32-pru.c:936 elf32-tic6x.c:2645 -#: elfnn-aarch64.c:7411 -#: elfnn-kvx.c:2801 +#: elf32-arm.c:13510 elf32-pru.c:936 elf32-tic6x.c:2645 +#: elfnn-aarch64.c:7429 +#: elfnn-kvx.c:2802 msgid "unsupported relocation" msgstr "" -#: elf32-arm.c:13514 elf32-pru.c:946 elf32-tic6x.c:2653 -#: elfnn-aarch64.c:7419 -#: elfnn-kvx.c:2809 +#: elf32-arm.c:13518 elf32-pru.c:946 elf32-tic6x.c:2653 +#: elfnn-aarch64.c:7437 +#: elfnn-kvx.c:2810 msgid "unknown error" msgstr "" -#: elf32-arm.c:13991 +#: elf32-arm.c:13995 #, c-format msgid "" "warning: not setting interworking flag of %pB since it has already been " "specified as non-interworking" msgstr "" -#: elf32-arm.c:13995 +#: elf32-arm.c:13999 #, c-format msgid "warning: clearing the interworking flag of %pB due to outside request" msgstr "" -#: elf32-arm.c:14040 +#: elf32-arm.c:14044 #, c-format msgid "" "warning: clearing the interworking flag of %pB because non-interworking code " "in %pB has been linked with it" msgstr "" -#: elf32-arm.c:14127 +#: elf32-arm.c:14131 #, c-format msgid "%pB: unknown mandatory EABI object attribute %d" msgstr "" -#: elf32-arm.c:14135 +#: elf32-arm.c:14139 #, c-format msgid "warning: %pB: unknown EABI object attribute %d" msgstr "" -#: elf32-arm.c:14470 +#: elf32-arm.c:14474 #, c-format msgid "error: %pB: unknown CPU architecture" msgstr "" -#: elf32-arm.c:14508 +#: elf32-arm.c:14512 #, c-format msgid "error: conflicting CPU architectures %s vs %s in %pB" msgstr "" -#: elf32-arm.c:14605 +#: elf32-arm.c:14609 #, c-format msgid "" "Error: %pB has both the current and legacy Tag_MPextension_use attributes" msgstr "" -#: elf32-arm.c:14642 +#: elf32-arm.c:14646 #, c-format msgid "error: %pB uses VFP register arguments, %pB does not" msgstr "" -#: elf32-arm.c:14812 +#: elf32-arm.c:14816 #, c-format msgid "error: %pB: unable to merge virtualization attributes with %pB" msgstr "" -#: elf32-arm.c:14838 +#: elf32-arm.c:14842 #, c-format msgid "error: %pB: conflicting architecture profiles %c/%c" msgstr "" -#: elf32-arm.c:14977 +#: elf32-arm.c:14981 #, c-format msgid "warning: %pB: conflicting platform configuration" msgstr "" -#: elf32-arm.c:14986 +#: elf32-arm.c:14990 #, c-format msgid "error: %pB: conflicting use of R9" msgstr "" -#: elf32-arm.c:14998 +#: elf32-arm.c:15002 #, c-format msgid "error: %pB: SB relative addressing conflicts with use of R9" msgstr "" -#: elf32-arm.c:15011 +#: elf32-arm.c:15015 #, c-format msgid "" "warning: %pB uses %u-byte wchar_t yet the output is to use %u-byte wchar_t; " "use of wchar_t values across objects may fail" msgstr "" -#: elf32-arm.c:15042 +#: elf32-arm.c:15046 #, c-format msgid "" "warning: %pB uses %s enums yet the output is to use %s enums; use of enum " "values across objects may fail" msgstr "" -#: elf32-arm.c:15054 +#: elf32-arm.c:15058 #, c-format msgid "error: %pB uses iWMMXt register arguments, %pB does not" msgstr "" -#: elf32-arm.c:15071 +#: elf32-arm.c:15075 #, c-format msgid "error: fp16 format mismatch between %pB and %pB" msgstr "" -#: elf32-arm.c:15107 +#: elf32-arm.c:15111 #, c-format msgid "%pB has both the current and legacy Tag_MPextension_use attributes" msgstr "" -#: elf32-arm.c:15203 +#: elf32-arm.c:15207 #, c-format msgid " [interworking enabled]" msgstr "" -#: elf32-arm.c:15211 +#: elf32-arm.c:15215 #, c-format msgid " [VFP float format]" msgstr "" -#: elf32-arm.c:15213 +#: elf32-arm.c:15217 #, c-format msgid " [FPA float format]" msgstr "" -#: elf32-arm.c:15216 +#: elf32-arm.c:15220 #, c-format msgid " [floats passed in float registers]" msgstr "" -#: elf32-arm.c:15219 elf32-arm.c:15304 +#: elf32-arm.c:15223 elf32-arm.c:15308 #, c-format msgid " [position independent]" msgstr "" -#: elf32-arm.c:15222 +#: elf32-arm.c:15226 #, c-format msgid " [new ABI]" msgstr "" -#: elf32-arm.c:15225 +#: elf32-arm.c:15229 #, c-format msgid " [old ABI]" msgstr "" -#: elf32-arm.c:15228 +#: elf32-arm.c:15232 #, c-format msgid " [software FP]" msgstr "" -#: elf32-arm.c:15236 +#: elf32-arm.c:15240 #, c-format msgid " [Version1 EABI]" msgstr "" -#: elf32-arm.c:15239 elf32-arm.c:15250 +#: elf32-arm.c:15243 elf32-arm.c:15254 #, c-format msgid " [sorted symbol table]" msgstr "" -#: elf32-arm.c:15241 elf32-arm.c:15252 +#: elf32-arm.c:15245 elf32-arm.c:15256 #, c-format msgid " [unsorted symbol table]" msgstr "" -#: elf32-arm.c:15247 +#: elf32-arm.c:15251 #, c-format msgid " [Version2 EABI]" msgstr "" -#: elf32-arm.c:15255 +#: elf32-arm.c:15259 #, c-format msgid " [dynamic symbols use segment index]" msgstr "" -#: elf32-arm.c:15258 +#: elf32-arm.c:15262 #, c-format msgid " [mapping symbols precede others]" msgstr "" -#: elf32-arm.c:15265 +#: elf32-arm.c:15269 #, c-format msgid " [Version3 EABI]" msgstr "" -#: elf32-arm.c:15269 +#: elf32-arm.c:15273 #, c-format msgid " [Version4 EABI]" msgstr "" -#: elf32-arm.c:15273 +#: elf32-arm.c:15277 #, c-format msgid " [Version5 EABI]" msgstr "" -#: elf32-arm.c:15276 +#: elf32-arm.c:15280 #, c-format msgid " [soft-float ABI]" msgstr "" -#: elf32-arm.c:15279 +#: elf32-arm.c:15283 #, c-format msgid " [hard-float ABI]" msgstr "" -#: elf32-arm.c:15285 +#: elf32-arm.c:15289 #, c-format msgid " [BE8]" msgstr "" -#: elf32-arm.c:15288 +#: elf32-arm.c:15292 #, c-format msgid " [LE8]" msgstr "" -#: elf32-arm.c:15294 +#: elf32-arm.c:15298 #, c-format msgid " <EABI version unrecognised>" msgstr "" -#: elf32-arm.c:15301 +#: elf32-arm.c:15305 #, c-format msgid " [relocatable executable]" msgstr "" -#: elf32-arm.c:15307 +#: elf32-arm.c:15311 #, c-format msgid " [FDPIC ABI supplement]" msgstr "" -#: elf32-arm.c:15312 -#: elfnn-aarch64.c:7576 +#: elf32-arm.c:15316 +#: elfnn-aarch64.c:7594 #, c-format msgid " <Unrecognised flag bits set>" msgstr "" -#: elf32-arm.c:15420 elf32-arm.c:15554 elf32-i386.c:1545 elf32-s390.c:921 +#: elf32-arm.c:15424 elf32-arm.c:15558 elf32-i386.c:1576 elf32-s390.c:921 #: elf32-tic6x.c:2716 elf32-tilepro.c:1433 elf32-xtensa.c:1088 -#: elf64-s390.c:843 elf64-x86-64.c:2173 elfxx-sparc.c:1385 elfxx-tilegx.c:1661 -#: elfxx-x86.c:971 -#: elfnn-aarch64.c:7847 -#: elfnn-kvx.c:3247 -#: elfnn-loongarch.c:952 -#: elfnn-riscv.c:766 +#: elf64-s390.c:924 elf64-x86-64.c:2550 elfxx-sparc.c:1385 elfxx-tilegx.c:1661 +#: elfxx-x86.c:962 +#: elfnn-aarch64.c:7865 +#: elfnn-kvx.c:3248 +#: elfnn-loongarch.c:961 +#: elfnn-riscv.c:959 #, c-format msgid "%pB: bad symbol index: %d" msgstr "" -#: elf32-arm.c:15810 +#: elf32-arm.c:15814 #, c-format msgid "" "FDPIC does not yet support %s relocation to become dynamic for executable" msgstr "" -#: elf32-arm.c:17072 +#: elf32-arm.c:17077 #, c-format msgid "errors encountered processing file %pB" msgstr "" -#: elf32-arm.c:17442 elflink.c:13533 elflink.c:13580 +#: elf32-arm.c:17448 elflink.c:13605 elflink.c:13652 #, c-format msgid "could not find section %s" msgstr "" -#: elf32-arm.c:18397 +#: elf32-arm.c:18406 #, c-format msgid "%pB: Number of symbols in input file has increased from %lu to %u\n" msgstr "" -#: elf32-arm.c:18655 +#: elf32-arm.c:18664 #, c-format msgid "%pB: error: Cortex-A8 erratum stub is allocated in unsafe location" msgstr "" #. There's not much we can do apart from complain if this #. happens. -#: elf32-arm.c:18682 +#: elf32-arm.c:18691 #, c-format msgid "%pB: error: Cortex-A8 erratum stub out of range (input file too large)" msgstr "" -#: elf32-arm.c:19509 elf32-arm.c:19531 +#: elf32-arm.c:19518 elf32-arm.c:19540 #, c-format msgid "%pB: error: VFP11 veneer out of range" msgstr "" -#: elf32-arm.c:19582 +#: elf32-arm.c:19591 #, c-format msgid "" "%pB(%#<PRIx64>): error: cannot create STM32L4XX veneer; jump out of range by " "%<PRId64> bytes; cannot encode branch instruction" msgstr "" -#: elf32-arm.c:19621 +#: elf32-arm.c:19630 #, c-format msgid "%pB: error: cannot create STM32L4XX veneer" msgstr "" -#: elf32-arm.c:20704 +#: elf32-arm.c:20713 #, c-format msgid "error: %pB is already in final BE8 format" msgstr "" -#: elf32-arm.c:20781 +#: elf32-arm.c:20790 #, c-format msgid "" "error: source object %pB has EABI version %d, but target %pB has EABI " "version %d" msgstr "" -#: elf32-arm.c:20796 +#: elf32-arm.c:20805 #, c-format msgid "error: %pB is compiled for APCS-%d, whereas target %pB uses APCS-%d" msgstr "" -#: elf32-arm.c:20806 +#: elf32-arm.c:20815 #, c-format msgid "" "error: %pB passes floats in float registers, whereas %pB passes them in " "integer registers" msgstr "" -#: elf32-arm.c:20810 +#: elf32-arm.c:20819 #, c-format msgid "" "error: %pB passes floats in integer registers, whereas %pB passes them in " "float registers" msgstr "" -#: elf32-arm.c:20820 elf32-arm.c:20824 +#: elf32-arm.c:20829 elf32-arm.c:20833 #, c-format msgid "error: %pB uses %s instructions, whereas %pB does not" msgstr "" -#: elf32-arm.c:20843 +#: elf32-arm.c:20852 #, c-format msgid "error: %pB uses software FP, whereas %pB uses hardware FP" msgstr "" -#: elf32-arm.c:20847 +#: elf32-arm.c:20856 #, c-format msgid "error: %pB uses hardware FP, whereas %pB uses software FP" msgstr "" -#: elf32-arm.c:20861 +#: elf32-arm.c:20870 #, c-format msgid "warning: %pB supports interworking, whereas %pB does not" msgstr "" -#: elf32-arm.c:20867 +#: elf32-arm.c:20876 #, c-format msgid "warning: %pB does not support interworking, whereas %pB does" msgstr "" @@ -2339,7 +2365,7 @@ msgid "" msgstr "" #: elf32-avr.c:3335 -#: elfnn-aarch64.c:3219 +#: elfnn-aarch64.c:3231 #, c-format msgid "cannot create stub entry %s" msgstr "" @@ -2353,8 +2379,8 @@ msgstr "" msgid "%pB(%pA+%#<PRIx64>): unresolvable relocation against symbol `%s'" msgstr "" -#: elf32-bfin.c:1621 elf32-i386.c:3543 elf32-m68k.c:4006 elf32-s390.c:3130 -#: elf64-s390.c:3205 elf64-x86-64.c:4619 +#: elf32-bfin.c:1621 elf32-i386.c:3585 elf32-m68k.c:4008 elf32-s390.c:3132 +#: elf64-s390.c:3468 elf64-x86-64.c:5080 #, c-format msgid "%pB(%pA+%#<PRIx64>): reloc against `%s': error %d" msgstr "" @@ -2378,7 +2404,7 @@ msgstr "" msgid "cannot emit fixups in read-only section" msgstr "" -#: elf32-bfin.c:2831 elf32-bfin.c:2959 elf32-lm32.c:1006 elf32-sh.c:4384 +#: elf32-bfin.c:2831 elf32-bfin.c:2959 elf32-lm32.c:1006 elf32-sh.c:4386 msgid "cannot emit dynamic relocations in read-only section" msgstr "" @@ -2397,41 +2423,41 @@ msgstr "" #: elf32-bfin.c:3140 elf32-cris.c:2041 elf32-epiphany.c:574 elf32-fr30.c:602 #: elf32-frv.c:4056 elf32-ft32.c:500 elf32-ip2k.c:1489 elf32-iq2000.c:699 #: elf32-m32c.c:632 elf32-mep.c:530 elf32-metag.c:1991 elf32-moxie.c:296 -#: elf32-msp430.c:1514 elf32-mt.c:406 elf32-or1k.c:1903 elf32-tilepro.c:3377 -#: elf32-v850.c:2305 elf32-visium.c:688 elf32-xstormy16.c:938 elf64-bpf.c:348 -#: elf64-mmix.c:1545 elfxx-tilegx.c:3750 +#: elf32-msp430.c:1514 elf32-mt.c:406 elf32-or1k.c:1903 elf32-tilepro.c:3379 +#: elf32-v850.c:2305 elf32-visium.c:688 elf32-xstormy16.c:939 elf64-bpf.c:348 +#: elf64-mmix.c:1545 elfxx-tilegx.c:3752 msgid "internal error: dangerous relocation" msgstr "" #. Ignore init flag - it may not be set, despite the flags field containing valid data. -#: elf32-bfin.c:4728 elf32-cris.c:3860 elf32-m68hc1x.c:1414 elf32-m68k.c:1264 -#: elf32-score.c:3984 elf32-score7.c:3791 elf32-vax.c:534 elf32-xgate.c:494 -#: elfxx-mips.c:16366 +#: elf32-bfin.c:4734 elf32-cris.c:3862 elf32-m68hc1x.c:1415 elf32-m68k.c:1264 +#: elf32-score.c:3986 elf32-score7.c:3793 elf32-vax.c:534 elf32-xgate.c:494 +#: elfxx-mips.c:16452 #, c-format msgid "private flags = %lx:" msgstr "" -#: elf32-bfin.c:4779 elf32-frv.c:6585 +#: elf32-bfin.c:4785 elf32-frv.c:6591 #, c-format msgid "%pB: cannot link non-fdpic object file into fdpic executable" msgstr "" -#: elf32-bfin.c:4783 elf32-frv.c:6589 +#: elf32-bfin.c:4789 elf32-frv.c:6595 #, c-format msgid "%pB: cannot link fdpic object file into non-fdpic executable" msgstr "" -#: elf32-bfin.c:4919 +#: elf32-bfin.c:4925 #, c-format msgid "*** check this relocation %s" msgstr "" -#: elf32-bfin.c:5034 +#: elf32-bfin.c:5040 msgid "" "the bfin target does not currently support the generation of copy relocations" msgstr "" -#: elf32-bfin.c:5329 elf32-cr16.c:2720 elf32-m68k.c:4420 +#: elf32-bfin.c:5335 elf32-cr16.c:2723 elf32-m68k.c:4423 msgid "unsupported relocation type" msgstr "" @@ -2532,102 +2558,102 @@ msgid "" "recompile with -fPIC" msgstr "" -#: elf32-cris.c:3699 +#: elf32-cris.c:3701 #, c-format msgid "" "%pB, section `%pA', to symbol `%s': relocation %s should not be used in a " "shared object; recompile with -fPIC" msgstr "" -#: elf32-cris.c:3811 +#: elf32-cris.c:3813 msgid "unexpected machine number" msgstr "" -#: elf32-cris.c:3863 +#: elf32-cris.c:3865 #, c-format msgid " [symbols have a _ prefix]" msgstr "" -#: elf32-cris.c:3866 +#: elf32-cris.c:3868 #, c-format msgid " [v10 and v32]" msgstr "" -#: elf32-cris.c:3869 +#: elf32-cris.c:3871 #, c-format msgid " [v32]" msgstr "" -#: elf32-cris.c:3913 +#: elf32-cris.c:3915 #, c-format msgid "" "%pB: uses _-prefixed symbols, but writing file with non-prefixed symbols" msgstr "" -#: elf32-cris.c:3914 +#: elf32-cris.c:3916 #, c-format msgid "" "%pB: uses non-prefixed symbols, but writing file with _-prefixed symbols" msgstr "" -#: elf32-cris.c:3933 +#: elf32-cris.c:3935 #, c-format msgid "%pB contains CRIS v32 code, incompatible with previous objects" msgstr "" -#: elf32-cris.c:3935 +#: elf32-cris.c:3937 #, c-format msgid "%pB contains non-CRIS-v32 code, incompatible with previous objects" msgstr "" -#: elf32-csky.c:2016 +#: elf32-csky.c:2017 msgid "GOT table size out of range" msgstr "" -#: elf32-csky.c:2826 +#: elf32-csky.c:2828 #, c-format msgid "warning: unrecognized arch eflag '%#lx'" msgstr "" -#: elf32-csky.c:2849 +#: elf32-csky.c:2851 #, c-format msgid "warning: unrecognised arch name '%#x'" msgstr "" -#: elf32-csky.c:2914 elf32-csky.c:3074 +#: elf32-csky.c:2916 elf32-csky.c:3076 #, c-format msgid "%pB: machine flag conflict with target" msgstr "" -#: elf32-csky.c:2927 +#: elf32-csky.c:2929 #, c-format msgid "" "warning: file %pB's arch flag %s conflict with target %s,set target arch " "flag to %s" msgstr "" -#: elf32-csky.c:2956 +#: elf32-csky.c:2958 #, c-format msgid "Error: %pB and %pB has different VDSP version" msgstr "" -#: elf32-csky.c:2973 +#: elf32-csky.c:2975 #, c-format msgid "Error: %pB and %pB has different DSP version" msgstr "" -#: elf32-csky.c:2991 +#: elf32-csky.c:2993 #, c-format msgid "Error: %pB and %pB has different FPU ABI" msgstr "" -#: elf32-csky.c:3088 +#: elf32-csky.c:3090 #, c-format msgid "warning: file %pB's arch flag %s conflicts with target ck%s, using %s" msgstr "" #. The r_type is error, not support it. -#: elf32-csky.c:4327 elf32-i386.c:344 +#: elf32-csky.c:4330 elf32-i386.c:344 #, c-format msgid "%pB: unsupported relocation type: %#x" msgstr "" @@ -2730,18 +2756,18 @@ msgstr "" msgid "%H: reloc against `%s': %s\n" msgstr "" -#: elf32-frv.c:6496 +#: elf32-frv.c:6502 #, c-format msgid "" "%pB: compiled with %s and linked with modules that use non-pic relocations" msgstr "" -#: elf32-frv.c:6550 elf32-iq2000.c:830 elf32-m32c.c:876 +#: elf32-frv.c:6556 elf32-iq2000.c:830 elf32-m32c.c:877 #, c-format msgid "%pB: compiled with %s and linked with modules compiled with %s" msgstr "" -#: elf32-frv.c:6563 +#: elf32-frv.c:6569 #, c-format msgid "" "%pB: uses different unknown e_flags (%#x) fields than previous modules (%#x)" @@ -2752,7 +2778,7 @@ msgstr "" msgid "%pB: relocations in generic ELF (EM: %d)" msgstr "" -#: elf32-hppa.c:862 elf32-hppa.c:3402 +#: elf32-hppa.c:862 elf32-hppa.c:3403 #, c-format msgid "" "%pB(%pA+%#<PRIx64>): cannot reach %s, recompile with -ffunction-sections" @@ -2770,127 +2796,132 @@ msgstr "" msgid "%pB: duplicate export stub %s" msgstr "" -#: elf32-hppa.c:3235 +#: elf32-hppa.c:3236 #, c-format msgid "" "%pB(%pA+%#<PRIx64>): %s fixup for insn %#x is not supported in a non-shared " "link" msgstr "" -#: elf32-hppa.c:3455 +#: elf32-hppa.c:3456 #, c-format msgid "" "%pB(%pA+%#<PRIx64>): displacement %#x for insn %#x is not a multiple of 8 " "(gp %#x)" msgstr "" -#: elf32-hppa.c:3474 +#: elf32-hppa.c:3475 #, c-format msgid "" "%pB(%pA+%#<PRIx64>): displacement %#x for insn %#x is not a multiple of 4 " "(gp %#x)" msgstr "" -#: elf32-hppa.c:4089 +#: elf32-hppa.c:4090 #, c-format msgid "%s has both normal and TLS relocs" msgstr "" -#: elf32-hppa.c:4107 +#: elf32-hppa.c:4108 #, c-format msgid "%pB:%s has both normal and TLS relocs" msgstr "" -#: elf32-hppa.c:4166 +#: elf32-hppa.c:4167 #, c-format msgid "%pB(%pA+%#<PRIx64>): cannot handle %s for %s" msgstr "" -#: elf32-hppa.c:4470 +#: elf32-hppa.c:4471 msgid ".got section not immediately after .plt section" msgstr "" -#: elf32-i386.c:1296 +#: elf32-i386.c:1300 #, c-format msgid "" "%pB: direct GOT relocation R_386_GOT32X against `%s' without base register " "can not be used when making a shared object" msgstr "" -#: elf32-i386.c:1729 elf32-s390.c:1149 elf32-sh.c:5498 elf32-tilepro.c:1546 -#: elf32-xtensa.c:1261 elf64-s390.c:1081 elfxx-sparc.c:1555 +#: elf32-i386.c:1586 +#, c-format +msgid "%pB: bad reloc offset (%#<PRIx32> > %#<PRIx32>) for section `%pA'" +msgstr "" + +#: elf32-i386.c:1771 elf32-s390.c:1149 elf32-sh.c:5500 elf32-tilepro.c:1546 +#: elf32-xtensa.c:1261 elf64-s390.c:1162 elfxx-sparc.c:1565 #: elfxx-tilegx.c:1766 -#: elfnn-loongarch.c:741 -#: elfnn-riscv.c:673 +#: elfnn-loongarch.c:750 +#: elfnn-riscv.c:866 #, c-format msgid "%pB: `%s' accessed both as normal and thread local symbol" msgstr "" -#: elf32-i386.c:1801 +#: elf32-i386.c:1843 #, c-format msgid "%pB: unsupported non-PIC call to IFUNC `%s'" msgstr "" -#: elf32-i386.c:1856 elf64-x86-64.c:2567 +#: elf32-i386.c:1898 elf64-x86-64.c:2964 #, c-format msgid "" "%pB: non-canonical reference to canonical protected function `%s' in %pB" msgstr "" -#: elf32-i386.c:2419 elf64-x86-64.c:3050 -#: elfnn-riscv.c:2544 +#: elf32-i386.c:2461 elf64-x86-64.c:3446 +#: elfnn-riscv.c:2742 #, c-format msgid "%pB: relocation %s against STT_GNU_IFUNC symbol `%s' isn't supported" msgstr "" -#: elf32-i386.c:2452 elf32-i386.c:3752 elf32-i386.c:3900 elf64-x86-64.c:3107 -#: elf64-x86-64.c:4790 elf64-x86-64.c:4958 -#: elfnn-riscv.c:2406 -#: elfnn-riscv.c:3318 -#: elfnn-riscv.c:3392 +#: elf32-i386.c:2494 elf32-i386.c:3794 elf32-i386.c:3942 elf64-x86-64.c:3503 +#: elf64-x86-64.c:5254 elf64-x86-64.c:5425 +#: elfnn-riscv.c:2604 +#: elfnn-riscv.c:3511 +#: elfnn-riscv.c:3585 #, c-format msgid "Local IFUNC function `%s' in %pB\n" msgstr "" -#: elf32-i386.c:2630 +#: elf32-i386.c:2672 #, c-format msgid "" "%pB: direct GOT relocation %s against `%s' without base register can not be " "used when making a shared object" msgstr "" -#: elf32-i386.c:2665 elf64-x86-64.c:3324 +#: elf32-i386.c:2707 elf64-x86-64.c:3726 msgid "hidden symbol" msgstr "" -#: elf32-i386.c:2668 elf64-x86-64.c:3327 +#: elf32-i386.c:2710 elf64-x86-64.c:3729 msgid "internal symbol" msgstr "" -#: elf32-i386.c:2671 elf64-x86-64.c:3330 +#: elf32-i386.c:2713 elf64-x86-64.c:3732 msgid "protected symbol" msgstr "" -#: elf32-i386.c:2674 elf64-x86-64.c:3333 +#: elf32-i386.c:2716 elf64-x86-64.c:3735 msgid "symbol" msgstr "" -#: elf32-i386.c:2680 +#: elf32-i386.c:2722 #, c-format msgid "" "%pB: relocation R_386_GOTOFF against undefined %s `%s' can not be used when " "making a shared object" msgstr "" -#: elf32-i386.c:2693 +#: elf32-i386.c:2735 #, c-format msgid "" "%pB: relocation R_386_GOTOFF against protected %s `%s' can not be used when " "making a shared object" msgstr "" -#: elf32-i386.c:4103 elf64-x86-64.c:5169 -msgid "%F%P: discarded output section: `%pA'\n" +#: elf32-i386.c:4145 elf64-x86-64.c:5645 +msgid "%P: discarded output section: `%pA'\n" msgstr "" #: elf32-ip2k.c:855 elf32-ip2k.c:861 elf32-ip2k.c:928 elf32-ip2k.c:934 @@ -2930,136 +2961,136 @@ msgstr "" msgid "SDA relocation when _SDA_BASE_ not defined" msgstr "" -#: elf32-m32r.c:2776 elf32-microblaze.c:1147 elf32-microblaze.c:1195 +#: elf32-m32r.c:2778 elf32-microblaze.c:1147 elf32-microblaze.c:1195 #, c-format msgid "%pB: the target (%s) of an %s relocation is in the wrong section (%pA)" msgstr "" -#: elf32-m32r.c:3277 +#: elf32-m32r.c:3279 #, c-format msgid "%pB: instruction set mismatch with previous modules" msgstr "" -#: elf32-m32r.c:3298 elf32-nds32.c:6899 +#: elf32-m32r.c:3300 elf32-nds32.c:6906 #, c-format msgid "private flags = %lx" msgstr "" -#: elf32-m32r.c:3303 +#: elf32-m32r.c:3305 #, c-format msgid ": m32r instructions" msgstr "" -#: elf32-m32r.c:3304 +#: elf32-m32r.c:3306 #, c-format msgid ": m32rx instructions" msgstr "" -#: elf32-m32r.c:3305 +#: elf32-m32r.c:3307 #, c-format msgid ": m32r2 instructions" msgstr "" -#: elf32-m68hc1x.c:1134 +#: elf32-m68hc1x.c:1135 #, c-format msgid "" "reference to the far symbol `%s' using a wrong relocation may result in " "incorrect execution" msgstr "" -#: elf32-m68hc1x.c:1165 +#: elf32-m68hc1x.c:1166 #, c-format msgid "" "XGATE address (%lx) is not within shared RAM(0xE000-0xFFFF), therefore you " "must manually offset the address, and possibly manage the page, in your code." msgstr "" -#: elf32-m68hc1x.c:1181 +#: elf32-m68hc1x.c:1182 #, c-format msgid "" "banked address [%lx:%04lx] (%lx) is not in the same bank as current banked " "address [%lx:%04lx] (%lx)" msgstr "" -#: elf32-m68hc1x.c:1196 +#: elf32-m68hc1x.c:1197 #, c-format msgid "" "reference to a banked address [%lx:%04lx] in the normal address space at %" "04lx" msgstr "" -#: elf32-m68hc1x.c:1232 +#: elf32-m68hc1x.c:1233 #, c-format msgid "" "S12 address (%lx) is not within shared RAM(0x2000-0x4000), therefore you " "must manually offset the address in your code" msgstr "" -#: elf32-m68hc1x.c:1356 +#: elf32-m68hc1x.c:1357 #, c-format msgid "" "%pB: linking files compiled for 16-bit integers (-mshort) and others for 32-" "bit integers" msgstr "" -#: elf32-m68hc1x.c:1363 +#: elf32-m68hc1x.c:1364 #, c-format msgid "" "%pB: linking files compiled for 32-bit double (-fshort-double) and others " "for 64-bit double" msgstr "" -#: elf32-m68hc1x.c:1372 +#: elf32-m68hc1x.c:1373 #, c-format msgid "%pB: linking files compiled for HCS12 with others compiled for HC12" msgstr "" -#: elf32-m68hc1x.c:1417 elf32-xgate.c:497 +#: elf32-m68hc1x.c:1418 elf32-xgate.c:497 #, c-format msgid "[abi=32-bit int, " msgstr "" -#: elf32-m68hc1x.c:1419 elf32-xgate.c:499 +#: elf32-m68hc1x.c:1420 elf32-xgate.c:499 #, c-format msgid "[abi=16-bit int, " msgstr "" -#: elf32-m68hc1x.c:1422 elf32-xgate.c:502 +#: elf32-m68hc1x.c:1423 elf32-xgate.c:502 #, c-format msgid "64-bit double, " msgstr "" -#: elf32-m68hc1x.c:1424 elf32-xgate.c:504 +#: elf32-m68hc1x.c:1425 elf32-xgate.c:504 #, c-format msgid "32-bit double, " msgstr "" -#: elf32-m68hc1x.c:1427 +#: elf32-m68hc1x.c:1428 #, c-format msgid "cpu=HC11]" msgstr "" -#: elf32-m68hc1x.c:1429 +#: elf32-m68hc1x.c:1430 #, c-format msgid "cpu=HCS12]" msgstr "" -#: elf32-m68hc1x.c:1431 +#: elf32-m68hc1x.c:1432 #, c-format msgid "cpu=HC12]" msgstr "" -#: elf32-m68hc1x.c:1434 +#: elf32-m68hc1x.c:1435 #, c-format msgid " [memory=bank-model]" msgstr "" -#: elf32-m68hc1x.c:1436 +#: elf32-m68hc1x.c:1437 #, c-format msgid " [memory=flat]" msgstr "" -#: elf32-m68hc1x.c:1439 +#: elf32-m68hc1x.c:1440 #, c-format msgid " [XGATE RAM offsetting]" msgstr "" @@ -3121,8 +3152,8 @@ msgid "" "link" msgstr "" -#: elf32-microblaze.c:1590 elf32-tilepro.c:3018 elfxx-sparc.c:3442 -#: elfxx-tilegx.c:3415 +#: elf32-microblaze.c:1590 elf32-tilepro.c:3020 elfxx-sparc.c:3452 +#: elfxx-tilegx.c:3417 #, c-format msgid "%pB: probably compiled without -fPIC?" msgstr "" @@ -3193,91 +3224,91 @@ msgid "" "exclusively in lower memory" msgstr "" -#: elf32-nds32.c:3673 +#: elf32-nds32.c:3680 #, c-format msgid "error: can't find symbol: %s" msgstr "" -#: elf32-nds32.c:5572 +#: elf32-nds32.c:5579 #, c-format msgid "%pB: warning: %s unsupported in shared mode" msgstr "" -#: elf32-nds32.c:5698 +#: elf32-nds32.c:5705 #, c-format msgid "%pB: warning: unaligned access to GOT entry" msgstr "" -#: elf32-nds32.c:5739 +#: elf32-nds32.c:5746 #, c-format msgid "%pB: warning: relocate SDA_BASE failed" msgstr "" -#: elf32-nds32.c:5761 +#: elf32-nds32.c:5768 #, c-format msgid "%pB(%pA): warning: unaligned small data access of type %d" msgstr "" -#: elf32-nds32.c:6687 +#: elf32-nds32.c:6694 #, c-format msgid "" "%pB: ISR vector size mismatch with previous modules, previous %u-byte, " "current %u-byte" msgstr "" -#: elf32-nds32.c:6735 +#: elf32-nds32.c:6742 #, c-format msgid "%pB: warning: endian mismatch with previous modules" msgstr "" -#: elf32-nds32.c:6749 +#: elf32-nds32.c:6756 #, c-format msgid "" "%pB: warning: older version of object file encountered, please recompile " "with current tool chain" msgstr "" -#: elf32-nds32.c:6837 +#: elf32-nds32.c:6844 #, c-format msgid "%pB: error: ABI mismatch with previous modules" msgstr "" -#: elf32-nds32.c:6847 +#: elf32-nds32.c:6854 #, c-format msgid "%pB: error: instruction set mismatch with previous modules" msgstr "" -#: elf32-nds32.c:6874 +#: elf32-nds32.c:6881 #, c-format msgid "%pB: warning: incompatible elf-versions %s and %s" msgstr "" -#: elf32-nds32.c:6905 +#: elf32-nds32.c:6912 #, c-format msgid ": n1 instructions" msgstr "" -#: elf32-nds32.c:6908 +#: elf32-nds32.c:6915 #, c-format msgid ": n1h instructions" msgstr "" -#: elf32-nds32.c:9357 +#: elf32-nds32.c:9364 #, c-format msgid "%pB: error: search_nds32_elf_blank reports wrong node" msgstr "" -#: elf32-nds32.c:9621 +#: elf32-nds32.c:9628 #, c-format msgid "%pB: warning: %s points to unrecognized reloc at %#<PRIx64>" msgstr "" -#: elf32-nds32.c:12886 +#: elf32-nds32.c:12893 #, c-format msgid "%pB: nested OMIT_FP in %pA" msgstr "" -#: elf32-nds32.c:12905 +#: elf32-nds32.c:12912 #, c-format msgid "%pB: unmatched OMIT_FP in %pA" msgstr "" @@ -3307,7 +3338,7 @@ msgstr "" msgid "%pB: gotoff relocation against dynamic symbol %s" msgstr "" -#: elf32-or1k.c:1573 elf32-or1k.c:1588 elf64-alpha.c:4409 elf64-alpha.c:4553 +#: elf32-or1k.c:1573 elf32-or1k.c:1588 elf64-alpha.c:4412 elf64-alpha.c:4556 #, c-format msgid "%pB: pc-relative relocation against dynamic symbol %s" msgstr "" @@ -3332,7 +3363,7 @@ msgstr "" msgid "%pB: bad relocation section name `%s'" msgstr "" -#: elf32-or1k.c:3312 +#: elf32-or1k.c:3313 #, c-format msgid "%pB: %s flag mismatch with previous modules" msgstr "" @@ -3431,7 +3462,7 @@ msgstr "" msgid "bss-plt forced by profiling" msgstr "" -#: elf32-ppc.c:4606 elf64-ppc.c:8516 +#: elf32-ppc.c:4606 elf64-ppc.c:8517 msgid "%H: warning: %s unexpected insn %#x.\n" msgstr "" @@ -3439,45 +3470,45 @@ msgstr "" #. could just mark this symbol to exclude it #. from tls optimization but it's safer to skip #. the entire optimization. -#: elf32-ppc.c:4636 elf64-ppc.c:8581 +#: elf32-ppc.c:4636 elf64-ppc.c:8582 #, c-format msgid "%H arg lost __tls_get_addr, TLS optimization disabled\n" msgstr "" -#: elf32-ppc.c:5564 elf32-sh.c:3018 elf32-tilepro.c:2245 elfxx-sparc.c:2454 -#: elfxx-tilegx.c:2494 +#: elf32-ppc.c:5565 elf32-sh.c:3019 elf32-tilepro.c:2246 elfxx-sparc.c:2464 +#: elfxx-tilegx.c:2495 #, c-format msgid "%pB: dynamic relocation in read-only section `%pA'\n" msgstr "" -#: elf32-ppc.c:6510 +#: elf32-ppc.c:6512 msgid "%pB: Adjusting branch at 0x%V towards \"%s\" in section %s\n" msgstr "" -#: elf32-ppc.c:7463 +#: elf32-ppc.c:7454 msgid "%P: %H: error: %s with unexpected instruction %x\n" msgstr "" -#: elf32-ppc.c:7501 +#: elf32-ppc.c:7492 msgid "%H: fixup branch overflow\n" msgstr "" -#: elf32-ppc.c:7541 elf32-ppc.c:7579 +#: elf32-ppc.c:7532 elf32-ppc.c:7570 #, c-format msgid "%pB(%pA+%#<PRIx64>): error: %s with unexpected instruction %#x" msgstr "" -#: elf32-ppc.c:7643 +#: elf32-ppc.c:7634 #, c-format msgid "%X%H: unsupported bss-plt -fPIC ifunc %s\n" msgstr "" -#: elf32-ppc.c:7679 +#: elf32-ppc.c:7670 #, c-format msgid "%pB: reloc %#x unsupported" msgstr "" -#: elf32-ppc.c:7962 +#: elf32-ppc.c:7953 #, c-format msgid "%H: non-zero addend on %s reloc against `%s'\n" msgstr "" @@ -3490,54 +3521,54 @@ msgstr "" #. local won't have the +32k reloc addend trick marking #. -fPIC code, so the linker won't know whether r30 is #. _GLOBAL_OFFSET_TABLE_ or pointing into a .got2 section. -#: elf32-ppc.c:7994 +#: elf32-ppc.c:7985 #, c-format msgid "%X%H: @local call to ifunc %s\n" msgstr "" -#: elf32-ppc.c:8172 +#: elf32-ppc.c:8163 #, c-format msgid "%H: relocation %s for indirect function %s unsupported\n" msgstr "" -#: elf32-ppc.c:8510 elf32-ppc.c:8541 elf32-ppc.c:8644 elf32-ppc.c:8744 +#: elf32-ppc.c:8501 elf32-ppc.c:8532 elf32-ppc.c:8635 elf32-ppc.c:8735 #, c-format msgid "" "%pB: the target (%s) of a %s relocation is in the wrong output section (%s)" msgstr "" -#: elf32-ppc.c:8922 elf32-ppc.c:8943 +#: elf32-ppc.c:8913 elf32-ppc.c:8934 msgid "%X%P: %H: %s relocation unsupported for bss-plt\n" msgstr "" -#: elf32-ppc.c:9025 +#: elf32-ppc.c:9016 #, c-format msgid "%H: error: %s against `%s' not a multiple of %u\n" msgstr "" -#: elf32-ppc.c:9054 +#: elf32-ppc.c:9045 #, c-format msgid "%H: unresolvable %s relocation against symbol `%s'\n" msgstr "" -#: elf32-ppc.c:9136 +#: elf32-ppc.c:9127 #, c-format msgid "%H: %s reloc against `%s': error %d\n" msgstr "" -#: elf32-ppc.c:10018 +#: elf32-ppc.c:10009 msgid "" "%X%P: text relocations and GNU indirect functions will result in a segfault " "at runtime\n" msgstr "" -#: elf32-ppc.c:10022 elf64-ppc.c:18320 +#: elf32-ppc.c:10013 elf64-ppc.c:18330 msgid "" "%P: warning: text relocations and GNU indirect functions may result in a " "segfault at runtime\n" msgstr "" -#: elf32-ppc.c:10067 +#: elf32-ppc.c:10058 #, c-format msgid "%s not defined in linker created %pA" msgstr "" @@ -3661,12 +3692,12 @@ msgstr "" msgid "%pB:%pA: %s and %s must be in the same input section" msgstr "" -#: elf32-s390.c:2005 elf64-s390.c:1974 +#: elf32-s390.c:2007 elf64-s390.c:2242 #, c-format msgid "%pB(%pA+%#<PRIx64>): invalid instruction for TLS relocation %s" msgstr "" -#: elf32-score.c:1505 elf32-score7.c:1368 elfxx-mips.c:3868 +#: elf32-score.c:1505 elf32-score7.c:1368 elfxx-mips.c:3914 msgid "not enough GOT space for local GOT entries" msgstr "" @@ -3684,22 +3715,22 @@ msgstr "" msgid "%pB: CALL15 reloc at %#<PRIx64> not against global symbol" msgstr "" -#: elf32-score.c:3481 elf32-score7.c:3292 elfxx-mips.c:11175 +#: elf32-score.c:3483 elf32-score7.c:3294 elfxx-mips.c:11260 #, c-format msgid "%pB: cannot handle more than %d dynamic symbols" msgstr "" -#: elf32-score.c:3987 elf32-score7.c:3794 +#: elf32-score.c:3989 elf32-score7.c:3796 #, c-format msgid " [pic]" msgstr "" -#: elf32-score.c:3991 elf32-score7.c:3798 +#: elf32-score.c:3993 elf32-score7.c:3800 #, c-format msgid " [fix dep]" msgstr "" -#: elf32-score.c:4038 elf32-score7.c:3845 +#: elf32-score.c:4040 elf32-score7.c:3847 #, c-format msgid "%pB: warning: linking PIC files with non-PIC files" msgstr "" @@ -3709,40 +3740,40 @@ msgstr "" msgid "%pB: %#<PRIx64>: warning: R_SH_USES points to unrecognized insn 0x%x" msgstr "" -#: elf32-sh.c:3753 +#: elf32-sh.c:3755 #, c-format msgid "" "%pB: %#<PRIx64>: fatal: unaligned branch target for relax-support relocation" msgstr "" -#: elf32-sh.c:3783 elf32-sh.c:3799 +#: elf32-sh.c:3785 elf32-sh.c:3801 #, c-format msgid "%pB: %#<PRIx64>: fatal: unaligned %s relocation %#<PRIx64>" msgstr "" -#: elf32-sh.c:3815 +#: elf32-sh.c:3817 #, c-format msgid "" "%pB: %#<PRIx64>: fatal: R_SH_PSHA relocation %<PRId64> not in range -32..32" msgstr "" -#: elf32-sh.c:3831 +#: elf32-sh.c:3833 #, c-format msgid "" "%pB: %#<PRIx64>: fatal: R_SH_PSHL relocation %<PRId64> not in range -32..32" msgstr "" -#: elf32-sh.c:3961 elf32-sh.c:4356 +#: elf32-sh.c:3963 elf32-sh.c:4358 #, c-format msgid "%pB(%pA+%#<PRIx64>): cannot emit fixup to `%s' in read-only section" msgstr "" -#: elf32-sh.c:4459 +#: elf32-sh.c:4461 #, c-format msgid "%pB(%pA+%#<PRIx64>): %s relocation against external symbol \"%s\"" msgstr "" -#: elf32-sh.c:4578 +#: elf32-sh.c:4580 #, c-format msgid "" "%pB(%pA): offset in relocation for GD->LE translation is too small: %" @@ -3750,125 +3781,125 @@ msgid "" msgstr "" #. The backslash is to prevent bogus trigraph detection. -#: elf32-sh.c:4596 +#: elf32-sh.c:4598 #, c-format msgid "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0xd4??)" msgstr "" -#: elf32-sh.c:4604 +#: elf32-sh.c:4606 #, c-format msgid "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0xc7??)" msgstr "" -#: elf32-sh.c:4611 +#: elf32-sh.c:4613 #, c-format msgid "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0xd1??)" msgstr "" -#: elf32-sh.c:4618 +#: elf32-sh.c:4620 #, c-format msgid "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0x310c)" msgstr "" -#: elf32-sh.c:4625 +#: elf32-sh.c:4627 #, c-format msgid "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0x410b)" msgstr "" -#: elf32-sh.c:4632 +#: elf32-sh.c:4634 #, c-format msgid "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0x34cc)" msgstr "" -#: elf32-sh.c:4667 +#: elf32-sh.c:4669 #, c-format msgid "" "%pB(%pA): offset in relocation for IE->LE translation is too small: %" "#<PRIx64>" msgstr "" -#: elf32-sh.c:4685 +#: elf32-sh.c:4687 #, c-format msgid "" "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0xd0??: mov.l)" msgstr "" -#: elf32-sh.c:4694 +#: elf32-sh.c:4696 #, c-format msgid "" "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0x0?12: stc)" msgstr "" -#: elf32-sh.c:4701 +#: elf32-sh.c:4703 #, c-format msgid "" "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0x0?ce: mov.l)" msgstr "" -#: elf32-sh.c:4816 +#: elf32-sh.c:4818 #, c-format msgid "" "%pB(%pA): offset in relocation for GD->IE translation is too small: %" "#<PRIx64>" msgstr "" -#: elf32-sh.c:4884 +#: elf32-sh.c:4886 #, c-format msgid "" "%pB(%pA): offset in relocation for LD->LE translation is too small: %" "#<PRIx64>" msgstr "" -#: elf32-sh.c:5012 +#: elf32-sh.c:5014 #, c-format msgid "%X%H: relocation to \"%s\" references a different segment\n" msgstr "" -#: elf32-sh.c:5019 +#: elf32-sh.c:5021 #, c-format msgid "%H: warning: relocation to \"%s\" references a different segment\n" msgstr "" -#: elf32-sh.c:5487 elf32-sh.c:5569 +#: elf32-sh.c:5489 elf32-sh.c:5571 #, c-format msgid "%pB: `%s' accessed both as normal and FDPIC symbol" msgstr "" -#: elf32-sh.c:5493 elf32-sh.c:5574 +#: elf32-sh.c:5495 elf32-sh.c:5576 #, c-format msgid "%pB: `%s' accessed both as FDPIC and thread local symbol" msgstr "" -#: elf32-sh.c:5524 +#: elf32-sh.c:5526 #, c-format msgid "%pB: Function descriptor relocation with non-zero addend" msgstr "" -#: elf32-sh.c:5731 elf64-alpha.c:4645 +#: elf32-sh.c:5733 elf64-alpha.c:4648 #, c-format msgid "%pB: TLS local exec code cannot be linked into shared objects" msgstr "" -#: elf32-sh.c:5846 +#: elf32-sh.c:5848 #, c-format msgid "%pB: uses %s instructions while previous modules use %s instructions" msgstr "" -#: elf32-sh.c:5858 +#: elf32-sh.c:5860 #, c-format msgid "" "internal error: merge of architecture '%s' with architecture '%s' produced " "unknown architecture" msgstr "" -#: elf32-sh.c:5899 +#: elf32-sh.c:5901 #, c-format msgid "" "%pB: uses instructions which are incompatible with instructions used in " "previous modules" msgstr "" -#: elf32-sh.c:5912 +#: elf32-sh.c:5914 #, c-format msgid "%pB: attempt to mix FDPIC and non-FDPIC objects" msgstr "" @@ -3889,142 +3920,142 @@ msgid "" "%pB: unhandled sparc machine value '%lu' detected during write processing" msgstr "" -#: elf32-spu.c:733 +#: elf32-spu.c:734 msgid "%X%P: overlay section %pA does not start on a cache line\n" msgstr "" -#: elf32-spu.c:741 +#: elf32-spu.c:742 msgid "%X%P: overlay section %pA is larger than a cache line\n" msgstr "" -#: elf32-spu.c:761 +#: elf32-spu.c:762 msgid "%X%P: overlay section %pA is not in cache area\n" msgstr "" -#: elf32-spu.c:802 +#: elf32-spu.c:803 #, c-format msgid "%X%P: overlay sections %pA and %pA do not start at the same address\n" msgstr "" -#: elf32-spu.c:1028 +#: elf32-spu.c:1029 #, c-format msgid "warning: call to non-function symbol %s defined in %pB" msgstr "" -#: elf32-spu.c:1378 +#: elf32-spu.c:1379 #, c-format msgid "%pA:0x%v lrlive .brinfo (%u) differs from analysis (%u)\n" msgstr "" -#: elf32-spu.c:1908 +#: elf32-spu.c:1909 #, c-format msgid "%pB is not allowed to define %s" msgstr "" -#: elf32-spu.c:1916 +#: elf32-spu.c:1917 #, c-format msgid "you are not allowed to define %s in a script" msgstr "" -#: elf32-spu.c:1950 +#: elf32-spu.c:1951 #, c-format msgid "%s in overlay section" msgstr "" -#: elf32-spu.c:1979 +#: elf32-spu.c:1981 msgid "overlay stub relocation overflow" msgstr "" -#: elf32-spu.c:1988 elf64-ppc.c:15362 +#: elf32-spu.c:1990 elf64-ppc.c:15372 msgid "stubs don't match calculated size" msgstr "" -#: elf32-spu.c:2571 +#: elf32-spu.c:2575 #, c-format msgid "warning: %s overlaps %s\n" msgstr "" -#: elf32-spu.c:2587 +#: elf32-spu.c:2591 #, c-format msgid "warning: %s exceeds section size\n" msgstr "" -#: elf32-spu.c:2619 +#: elf32-spu.c:2623 #, c-format msgid "%pA:0x%v not found in function table\n" msgstr "" -#: elf32-spu.c:2760 +#: elf32-spu.c:2764 #, c-format msgid "%pB(%pA+0x%v): call to non-code section %pB(%pA), analysis incomplete\n" msgstr "" -#: elf32-spu.c:3326 +#: elf32-spu.c:3330 #, c-format msgid "stack analysis will ignore the call from %s to %s\n" msgstr "" -#: elf32-spu.c:4023 +#: elf32-spu.c:4027 msgid " calls:\n" msgstr "" -#: elf32-spu.c:4338 +#: elf32-spu.c:4342 #, c-format msgid "%s duplicated in %s\n" msgstr "" -#: elf32-spu.c:4342 +#: elf32-spu.c:4346 #, c-format msgid "%s duplicated\n" msgstr "" -#: elf32-spu.c:4349 +#: elf32-spu.c:4353 msgid "sorry, no support for duplicate object files in auto-overlay script\n" msgstr "" -#: elf32-spu.c:4391 +#: elf32-spu.c:4395 #, c-format msgid "" "non-overlay size of 0x%v plus maximum overlay size of 0x%v exceeds local " "store\n" msgstr "" -#: elf32-spu.c:4547 +#: elf32-spu.c:4551 #, c-format msgid "%pB:%pA%s exceeds overlay size\n" msgstr "" -#: elf32-spu.c:4688 -msgid "%F%P: auto overlay error: %E\n" +#: elf32-spu.c:4692 +msgid "%P: auto overlay error: %E\n" msgstr "" -#: elf32-spu.c:4709 +#: elf32-spu.c:4712 msgid "Stack size for call graph root nodes.\n" msgstr "" -#: elf32-spu.c:4710 +#: elf32-spu.c:4713 msgid "" "\n" "Stack size for functions. Annotations: '*' max stack, 't' tail call\n" msgstr "" -#: elf32-spu.c:4720 +#: elf32-spu.c:4723 msgid "Maximum stack required is 0x%v\n" msgstr "" -#: elf32-spu.c:4739 +#: elf32-spu.c:4742 msgid "%X%P: stack/lrlive analysis error: %E\n" msgstr "" -#: elf32-spu.c:4742 -msgid "%F%P: can not build overlay stubs: %E\n" +#: elf32-spu.c:4745 +msgid "%P: can not build overlay stubs: %E\n" msgstr "" -#: elf32-spu.c:4811 +#: elf32-spu.c:4814 msgid "fatal error while creating .fixup" msgstr "" -#: elf32-spu.c:5047 +#: elf32-spu.c:5050 #, c-format msgid "%pB(%s+%#<PRIx64>): unresolvable %s relocation against symbol `%s'" msgstr "" @@ -4042,51 +4073,51 @@ msgstr "" msgid "%pB: SB-relative relocation but __c6xabi_DSBT_BASE not defined" msgstr "" -#: elf32-tic6x.c:3490 +#: elf32-tic6x.c:3492 #, c-format msgid "%pB: error: unknown mandatory EABI object attribute %d" msgstr "" -#: elf32-tic6x.c:3499 +#: elf32-tic6x.c:3501 #, c-format msgid "%pB: warning: unknown EABI object attribute %d" msgstr "" -#: elf32-tic6x.c:3617 elf32-tic6x.c:3626 +#: elf32-tic6x.c:3619 elf32-tic6x.c:3628 #, c-format msgid "error: %pB requires more stack alignment than %pB preserves" msgstr "" -#: elf32-tic6x.c:3636 elf32-tic6x.c:3645 +#: elf32-tic6x.c:3638 elf32-tic6x.c:3647 #, c-format msgid "error: unknown Tag_ABI_array_object_alignment value in %pB" msgstr "" -#: elf32-tic6x.c:3654 elf32-tic6x.c:3663 +#: elf32-tic6x.c:3656 elf32-tic6x.c:3665 #, c-format msgid "error: unknown Tag_ABI_array_object_align_expected value in %pB" msgstr "" -#: elf32-tic6x.c:3672 elf32-tic6x.c:3680 +#: elf32-tic6x.c:3674 elf32-tic6x.c:3682 #, c-format msgid "error: %pB requires more array alignment than %pB preserves" msgstr "" -#: elf32-tic6x.c:3703 +#: elf32-tic6x.c:3705 #, c-format msgid "warning: %pB and %pB differ in wchar_t size" msgstr "" -#: elf32-tic6x.c:3722 +#: elf32-tic6x.c:3724 #, c-format msgid "warning: %pB and %pB differ in whether code is compiled for DSBT" msgstr "" -#: elf32-tilepro.c:3624 elfxx-tilegx.c:4017 elfxx-x86.c:2773 -#: elfnn-aarch64.c:10343 -#: elfnn-kvx.c:4628 -#: elfnn-loongarch.c:6062 -#: elfnn-riscv.c:3615 +#: elf32-tilepro.c:3626 elfxx-tilegx.c:4019 elfxx-x86.c:2762 +#: elfnn-aarch64.c:10375 +#: elfnn-kvx.c:4631 +#: elfnn-loongarch.c:6379 +#: elfnn-riscv.c:3801 #, c-format msgid "discarded output section: `%pA'" msgstr "" @@ -4136,174 +4167,174 @@ msgstr "" msgid "could not locate special linker symbol __ctbp" msgstr "" -#: elf32-v850.c:2538 +#: elf32-v850.c:2539 #, c-format msgid "error: %pB needs 8-byte alignment but %pB is set for 4-byte alignment" msgstr "" -#: elf32-v850.c:2554 +#: elf32-v850.c:2555 #, c-format msgid "error: %pB uses 64-bit doubles but %pB uses 32-bit doubles" msgstr "" -#: elf32-v850.c:2569 +#: elf32-v850.c:2570 #, c-format msgid "error: %pB uses FPU-3.0 but %pB only supports FPU-2.0" msgstr "" -#: elf32-v850.c:2601 +#: elf32-v850.c:2602 #, c-format msgid " alignment of 8-byte entities: " msgstr "" -#: elf32-v850.c:2604 +#: elf32-v850.c:2605 #, c-format msgid "4-byte" msgstr "" -#: elf32-v850.c:2605 +#: elf32-v850.c:2606 #, c-format msgid "8-byte" msgstr "" -#: elf32-v850.c:2606 elf32-v850.c:2618 +#: elf32-v850.c:2607 elf32-v850.c:2619 #, c-format msgid "not set" msgstr "" -#: elf32-v850.c:2607 elf32-v850.c:2619 elf32-v850.c:2631 elf32-v850.c:2642 -#: elf32-v850.c:2653 elf32-v850.c:2664 +#: elf32-v850.c:2608 elf32-v850.c:2620 elf32-v850.c:2632 elf32-v850.c:2643 +#: elf32-v850.c:2654 elf32-v850.c:2665 #, c-format msgid "unknown: %x" msgstr "" -#: elf32-v850.c:2613 +#: elf32-v850.c:2614 #, c-format msgid " size of doubles: " msgstr "" -#: elf32-v850.c:2616 +#: elf32-v850.c:2617 #, c-format msgid "4-bytes" msgstr "" -#: elf32-v850.c:2617 +#: elf32-v850.c:2618 #, c-format msgid "8-bytes" msgstr "" -#: elf32-v850.c:2625 +#: elf32-v850.c:2626 #, c-format msgid " FPU support required: " msgstr "" -#: elf32-v850.c:2628 +#: elf32-v850.c:2629 #, c-format msgid "FPU-2.0" msgstr "" -#: elf32-v850.c:2629 +#: elf32-v850.c:2630 #, c-format msgid "FPU-3.0" msgstr "" -#: elf32-v850.c:2630 +#: elf32-v850.c:2631 #, c-format msgid "none" msgstr "" -#: elf32-v850.c:2637 +#: elf32-v850.c:2638 #, c-format msgid "SIMD use: " msgstr "" -#: elf32-v850.c:2640 elf32-v850.c:2651 elf32-v850.c:2662 +#: elf32-v850.c:2641 elf32-v850.c:2652 elf32-v850.c:2663 #, c-format msgid "yes" msgstr "" -#: elf32-v850.c:2641 elf32-v850.c:2652 elf32-v850.c:2663 +#: elf32-v850.c:2642 elf32-v850.c:2653 elf32-v850.c:2664 #, c-format msgid "no" msgstr "" -#: elf32-v850.c:2648 +#: elf32-v850.c:2649 #, c-format msgid "CACHE use: " msgstr "" -#: elf32-v850.c:2659 +#: elf32-v850.c:2660 #, c-format msgid "MMU use: " msgstr "" -#: elf32-v850.c:2826 elf32-v850.c:2882 +#: elf32-v850.c:2827 elf32-v850.c:2883 #, c-format msgid "%pB: architecture mismatch with previous modules" msgstr "" #. xgettext:c-format. -#: elf32-v850.c:2900 +#: elf32-v850.c:2901 #, c-format msgid "private flags = %lx: " msgstr "" -#: elf32-v850.c:2905 +#: elf32-v850.c:2906 #, c-format msgid "unknown v850 architecture" msgstr "" -#: elf32-v850.c:2907 +#: elf32-v850.c:2908 #, c-format msgid "v850 E3 architecture" msgstr "" -#: elf32-v850.c:2909 elf32-v850.c:2916 +#: elf32-v850.c:2910 elf32-v850.c:2917 #, c-format msgid "v850 architecture" msgstr "" -#: elf32-v850.c:2917 +#: elf32-v850.c:2918 #, c-format msgid "v850e architecture" msgstr "" -#: elf32-v850.c:2918 +#: elf32-v850.c:2919 #, c-format msgid "v850e1 architecture" msgstr "" -#: elf32-v850.c:2919 +#: elf32-v850.c:2920 #, c-format msgid "v850e2 architecture" msgstr "" -#: elf32-v850.c:2920 +#: elf32-v850.c:2921 #, c-format msgid "v850e2v3 architecture" msgstr "" -#: elf32-v850.c:2921 +#: elf32-v850.c:2922 #, c-format msgid "v850e3v5 architecture" msgstr "" -#: elf32-v850.c:3595 elf32-v850.c:3834 +#: elf32-v850.c:3596 elf32-v850.c:3835 #, c-format msgid "%pB: %#<PRIx64>: warning: %s points to unrecognized insns" msgstr "" -#: elf32-v850.c:3605 elf32-v850.c:3844 +#: elf32-v850.c:3606 elf32-v850.c:3845 #, c-format msgid "%pB: %#<PRIx64>: warning: %s points to unrecognized insn %#x" msgstr "" -#: elf32-v850.c:3651 elf32-v850.c:3879 +#: elf32-v850.c:3652 elf32-v850.c:3880 #, c-format msgid "%pB: %#<PRIx64>: warning: %s points to unrecognized reloc" msgstr "" -#: elf32-v850.c:3691 +#: elf32-v850.c:3692 #, c-format msgid "%pB: %#<PRIx64>: warning: %s points to unrecognized reloc %#<PRIx64>" msgstr "" @@ -4330,17 +4361,17 @@ msgid "" "addend of %<PRId64>" msgstr "" -#: elf32-vax.c:1387 +#: elf32-vax.c:1389 #, c-format msgid "%pB: warning: PLT addend of %<PRId64> to `%s' from %pA section ignored" msgstr "" -#: elf32-vax.c:1513 +#: elf32-vax.c:1515 #, c-format msgid "%pB: warning: %s relocation against symbol `%s' from %pA section" msgstr "" -#: elf32-vax.c:1520 +#: elf32-vax.c:1522 #, c-format msgid "%pB: warning: %s relocation to %#<PRIx64> from %pA section" msgstr "" @@ -4361,7 +4392,7 @@ msgstr "" msgid "error reading cpu type from elf private data" msgstr "" -#: elf32-xstormy16.c:457 elf64-ia64-vms.c:2076 +#: elf32-xstormy16.c:457 elf64-ia64-vms.c:2077 #: elfnn-ia64.c:2345 msgid "non-zero addend in @fptr reloc" msgstr "" @@ -4371,55 +4402,55 @@ msgstr "" msgid "%pB(%pA): invalid property table" msgstr "" -#: elf32-xtensa.c:2730 +#: elf32-xtensa.c:2732 #, c-format msgid "%pB(%pA+%#<PRIx64>): relocation offset out of range (size=%#<PRIx64>)" msgstr "" -#: elf32-xtensa.c:2813 elf32-xtensa.c:2936 +#: elf32-xtensa.c:2815 elf32-xtensa.c:2938 msgid "dynamic relocation in read-only section" msgstr "" -#: elf32-xtensa.c:2913 +#: elf32-xtensa.c:2915 msgid "TLS relocation invalid without dynamic sections" msgstr "" -#: elf32-xtensa.c:3126 +#: elf32-xtensa.c:3128 msgid "internal inconsistency in size of .got.loc section" msgstr "" -#: elf32-xtensa.c:3432 +#: elf32-xtensa.c:3434 #, c-format msgid "%pB: incompatible machine type; output is 0x%x; input is 0x%x" msgstr "" -#: elf32-xtensa.c:4731 elf32-xtensa.c:4739 +#: elf32-xtensa.c:4733 elf32-xtensa.c:4741 msgid "attempt to convert L32R/CALLX to CALL failed" msgstr "" -#: elf32-xtensa.c:6567 elf32-xtensa.c:6646 elf32-xtensa.c:8072 +#: elf32-xtensa.c:6569 elf32-xtensa.c:6648 elf32-xtensa.c:8074 #, c-format msgid "" "%pB(%pA+%#<PRIx64>): could not decode instruction; possible configuration " "mismatch" msgstr "" -#: elf32-xtensa.c:7813 +#: elf32-xtensa.c:7815 #, c-format msgid "" "%pB(%pA+%#<PRIx64>): could not decode instruction for XTENSA_ASM_SIMPLIFY " "relocation; possible configuration mismatch" msgstr "" -#: elf32-xtensa.c:9671 +#: elf32-xtensa.c:9673 msgid "invalid relocation address" msgstr "" -#: elf32-xtensa.c:9762 +#: elf32-xtensa.c:9764 msgid "overflow after relaxation" msgstr "" -#: elf32-xtensa.c:10908 +#: elf32-xtensa.c:10910 #, c-format msgid "%pB(%pA+%#<PRIx64>): unexpected fix for %s relocation" msgstr "" @@ -4454,57 +4485,57 @@ msgstr "" msgid "%pB: .got subsegment exceeds 64K (size %d)" msgstr "" -#: elf64-alpha.c:2678 elflink.c:15697 -#: elfnn-kvx.c:4015 -#: elfnn-loongarch.c:2007 +#: elf64-alpha.c:2679 elflink.c:15752 +#: elfnn-kvx.c:4016 +#: elfnn-loongarch.c:2016 #, c-format msgid "%pB: dynamic relocation against `%pT' in read-only section `%pA'\n" msgstr "" -#: elf64-alpha.c:2974 elf64-alpha.c:3169 +#: elf64-alpha.c:2977 elf64-alpha.c:3172 #, c-format msgid "%pB: %pA+%#<PRIx64>: warning: %s relocation against unexpected insn" msgstr "" -#: elf64-alpha.c:4369 elf64-alpha.c:4382 +#: elf64-alpha.c:4372 elf64-alpha.c:4385 #, c-format msgid "%pB: gp-relative relocation against dynamic symbol %s" msgstr "" -#: elf64-alpha.c:4438 +#: elf64-alpha.c:4441 #, c-format msgid "%pB: change in gp: BRSGP %s" msgstr "" -#: elf64-alpha.c:4463 mach-o.c:625 -#: elfnn-loongarch.c:908 -#: elfnn-riscv.c:724 -#: elfnn-riscv.c:929 -#: elfnn-riscv.c:971 +#: elf64-alpha.c:4466 mach-o.c:627 +#: elfnn-loongarch.c:917 +#: elfnn-riscv.c:917 +#: elfnn-riscv.c:1122 +#: elfnn-riscv.c:1164 msgid "<unknown>" msgstr "" -#: elf64-alpha.c:4469 +#: elf64-alpha.c:4472 #, c-format msgid "%pB: !samegp reloc against symbol without .prologue: %s" msgstr "" -#: elf64-alpha.c:4527 +#: elf64-alpha.c:4530 #, c-format msgid "%pB: unhandled dynamic relocation against %s" msgstr "" -#: elf64-alpha.c:4562 +#: elf64-alpha.c:4565 #, c-format msgid "%pB: pc-relative relocation against undefined weak symbol %s" msgstr "" -#: elf64-alpha.c:4628 +#: elf64-alpha.c:4631 #, c-format msgid "%pB: dtp-relative relocation against dynamic symbol %s" msgstr "" -#: elf64-alpha.c:4653 +#: elf64-alpha.c:4656 #, c-format msgid "%pB: tp-relative relocation against dynamic symbol %s" msgstr "" @@ -4519,12 +4550,12 @@ msgstr "" msgid "%pB: Relocations in generic ELF (EM: %d)" msgstr "" -#: elf64-hppa.c:2035 +#: elf64-hppa.c:2037 #, c-format msgid "stub entry for %s cannot load .plt, dp offset = %<PRId64>" msgstr "" -#: elf64-hppa.c:3239 +#: elf64-hppa.c:3241 #, c-format msgid "%pB(%pA+%#<PRIx64>): cannot reach %s" msgstr "" @@ -4537,123 +4568,123 @@ msgid "" "indirect branch" msgstr "" -#: elf64-ia64-vms.c:2031 +#: elf64-ia64-vms.c:2032 #: elfnn-ia64.c:2293 msgid "@pltoff reloc against local symbol" msgstr "" -#: elf64-ia64-vms.c:3278 -#: elfnn-ia64.c:3671 +#: elf64-ia64-vms.c:3280 +#: elfnn-ia64.c:3673 #, c-format msgid "%pB: short data segment overflowed (%#<PRIx64> >= 0x400000)" msgstr "" -#: elf64-ia64-vms.c:3288 -#: elfnn-ia64.c:3681 +#: elf64-ia64-vms.c:3290 +#: elfnn-ia64.c:3683 #, c-format msgid "%pB: __gp does not cover short data segment" msgstr "" -#: elf64-ia64-vms.c:3558 -#: elfnn-ia64.c:3954 +#: elf64-ia64-vms.c:3560 +#: elfnn-ia64.c:3956 #, c-format msgid "%pB: non-pic code with imm relocation against dynamic symbol `%s'" msgstr "" -#: elf64-ia64-vms.c:3622 -#: elfnn-ia64.c:4022 +#: elf64-ia64-vms.c:3624 +#: elfnn-ia64.c:4024 #, c-format msgid "%pB: @gprel relocation against dynamic symbol %s" msgstr "" -#: elf64-ia64-vms.c:3681 -#: elfnn-ia64.c:4085 +#: elf64-ia64-vms.c:3683 +#: elfnn-ia64.c:4087 #, c-format msgid "%pB: linking non-pic code in a position independent executable" msgstr "" -#: elf64-ia64-vms.c:3783 -#: elfnn-ia64.c:4223 +#: elf64-ia64-vms.c:3785 +#: elfnn-ia64.c:4225 #, c-format msgid "%pB: @internal branch to dynamic symbol %s" msgstr "" -#: elf64-ia64-vms.c:3786 -#: elfnn-ia64.c:4226 +#: elf64-ia64-vms.c:3788 +#: elfnn-ia64.c:4228 #, c-format msgid "%pB: speculation fixup to dynamic symbol %s" msgstr "" -#: elf64-ia64-vms.c:3789 -#: elfnn-ia64.c:4229 +#: elf64-ia64-vms.c:3791 +#: elfnn-ia64.c:4231 #, c-format msgid "%pB: @pcrel relocation against dynamic symbol %s" msgstr "" -#: elf64-ia64-vms.c:3913 -#: elfnn-ia64.c:4426 +#: elf64-ia64-vms.c:3915 +#: elfnn-ia64.c:4428 msgid "unsupported reloc" msgstr "" -#: elf64-ia64-vms.c:3950 -#: elfnn-ia64.c:4464 +#: elf64-ia64-vms.c:3952 +#: elfnn-ia64.c:4466 #, c-format msgid "" "%pB: missing TLS section for relocation %s against `%s' at %#<PRIx64> in " "section `%pA'." msgstr "" -#: elf64-ia64-vms.c:3967 -#: elfnn-ia64.c:4481 +#: elf64-ia64-vms.c:3969 +#: elfnn-ia64.c:4483 #, c-format msgid "" "%pB: Can't relax br (%s) to `%s' at %#<PRIx64> in section `%pA' with size %" "#<PRIx64> (> 0x1000000)." msgstr "" -#: elf64-ia64-vms.c:4261 -#: elfnn-ia64.c:4740 +#: elf64-ia64-vms.c:4263 +#: elfnn-ia64.c:4742 #, c-format msgid "%pB: linking trap-on-NULL-dereference with non-trapping files" msgstr "" -#: elf64-ia64-vms.c:4270 -#: elfnn-ia64.c:4749 +#: elf64-ia64-vms.c:4272 +#: elfnn-ia64.c:4751 #, c-format msgid "%pB: linking big-endian files with little-endian files" msgstr "" -#: elf64-ia64-vms.c:4279 -#: elfnn-ia64.c:4758 +#: elf64-ia64-vms.c:4281 +#: elfnn-ia64.c:4760 #, c-format msgid "%pB: linking 64-bit files with 32-bit files" msgstr "" -#: elf64-ia64-vms.c:4288 -#: elfnn-ia64.c:4767 +#: elf64-ia64-vms.c:4290 +#: elfnn-ia64.c:4769 #, c-format msgid "%pB: linking constant-gp files with non-constant-gp files" msgstr "" -#: elf64-ia64-vms.c:4298 -#: elfnn-ia64.c:4777 +#: elf64-ia64-vms.c:4300 +#: elfnn-ia64.c:4779 #, c-format msgid "%pB: linking auto-pic files with non-auto-pic files" msgstr "" -#: elf64-ia64-vms.c:5148 elflink.c:5491 +#: elf64-ia64-vms.c:5150 elflink.c:5518 #, c-format msgid "" "warning: alignment %u of common symbol `%s' in %pB is greater than the " "alignment (%u) of its section %pA" msgstr "" -#: elf64-ia64-vms.c:5155 +#: elf64-ia64-vms.c:5157 #, c-format msgid "warning: alignment %u of symbol `%s' in %pB is smaller than %u in %pB" msgstr "" -#: elf64-ia64-vms.c:5171 elflink.c:5520 +#: elf64-ia64-vms.c:5173 elflink.c:5547 #, c-format msgid "" "warning: size of symbol `%s' changed from %<PRIu64> in %pB to %<PRIu64> in %" @@ -4730,7 +4761,7 @@ msgstr "" msgid "register section has contents\n" msgstr "" -#: elf64-mmix.c:2398 +#: elf64-mmix.c:2399 #, c-format msgid "" "internal inconsistency: remaining %lu != max %lu; please report this bug" @@ -4775,33 +4806,33 @@ msgstr "" msgid " [abiv%ld]" msgstr "" -#: elf64-ppc.c:6844 +#: elf64-ppc.c:6845 msgid "" "%P: copy reloc against `%pT' requires lazy plt linking; avoid setting " "LD_BIND_NOW=1 or upgrade gcc\n" msgstr "" -#: elf64-ppc.c:7111 +#: elf64-ppc.c:7112 #, c-format msgid "%pB: undefined symbol on R_PPC64_TOCSAVE relocation" msgstr "" -#: elf64-ppc.c:7362 +#: elf64-ppc.c:7363 #, c-format msgid "dynreloc miscount for %pB, section %pA" msgstr "" -#: elf64-ppc.c:7453 +#: elf64-ppc.c:7454 #, c-format msgid "%pB: .opd is not a regular array of opd entries" msgstr "" -#: elf64-ppc.c:7463 +#: elf64-ppc.c:7464 #, c-format msgid "%pB: unexpected reloc type %u in .opd section" msgstr "" -#: elf64-ppc.c:7485 +#: elf64-ppc.c:7486 #, c-format msgid "%pB: undefined sym `%s' in .opd section" msgstr "" @@ -4813,86 +4844,86 @@ msgstr "" #. __glink_PLTresolve save of r2 is incompatible with code #. making tail calls, because the tail call might go via the #. resolver and thus overwrite the proper saved r2. -#: elf64-ppc.c:7986 +#: elf64-ppc.c:7987 msgid "warning: --plt-localentry is incompatible with power10 pc-relative code" msgstr "" -#: elf64-ppc.c:7994 +#: elf64-ppc.c:7995 msgid "" "warning: --plt-localentry is especially dangerous without ld.so support to " "detect ABI violations" msgstr "" -#: elf64-ppc.c:8310 +#: elf64-ppc.c:8311 msgid "%H __tls_get_addr lost arg, TLS optimization disabled\n" msgstr "" -#: elf64-ppc.c:8745 elf64-ppc.c:9461 +#: elf64-ppc.c:8746 elf64-ppc.c:9462 #, c-format msgid "%s defined on removed toc entry" msgstr "" -#: elf64-ppc.c:9418 +#: elf64-ppc.c:9419 #, c-format msgid "%H: %s references optimized away TOC entry\n" msgstr "" -#: elf64-ppc.c:9639 +#: elf64-ppc.c:9640 #, c-format msgid "%H: got/toc optimization is not supported for %s instruction\n" msgstr "" -#: elf64-ppc.c:10534 +#: elf64-ppc.c:10536 #, c-format msgid "warning: discarding dynamic section %s" msgstr "" -#: elf64-ppc.c:11687 +#: elf64-ppc.c:11692 msgid "%P: cannot find opd entry toc for `%pT'\n" msgstr "" -#: elf64-ppc.c:11837 +#: elf64-ppc.c:11842 #, c-format msgid "long branch stub `%s' offset overflow" msgstr "" -#: elf64-ppc.c:11864 +#: elf64-ppc.c:11869 #, c-format msgid "can't find branch stub `%s'" msgstr "" -#: elf64-ppc.c:11925 elf64-ppc.c:12177 elf64-ppc.c:14742 +#: elf64-ppc.c:11930 elf64-ppc.c:12182 elf64-ppc.c:14748 #, c-format msgid "%P: linkage table error against `%pT'\n" msgstr "" -#: elf64-ppc.c:12376 +#: elf64-ppc.c:12381 #, c-format msgid "can't build branch stub `%s'" msgstr "" -#: elf64-ppc.c:13407 +#: elf64-ppc.c:13412 #, c-format msgid "%pB section %pA exceeds stub group size" msgstr "" -#: elf64-ppc.c:14923 +#: elf64-ppc.c:14929 msgid "__tls_get_addr call offset overflow" msgstr "" -#: elf64-ppc.c:15263 elf64-ppc.c:15282 +#: elf64-ppc.c:15272 elf64-ppc.c:15291 #, c-format msgid "%s offset too large for .eh_frame sdata4 encoding" msgstr "" -#: elf64-ppc.c:15370 +#: elf64-ppc.c:15380 #, c-format msgid "linker stubs in %u group" msgid_plural "linker stubs in %u groups" msgstr[0] "" msgstr[1] "" -#: elf64-ppc.c:15377 +#: elf64-ppc.c:15387 #, c-format msgid "" "%s, iter %u\n" @@ -4902,74 +4933,75 @@ msgid "" " global entry %lu" msgstr "" -#: elf64-ppc.c:15759 +#: elf64-ppc.c:15769 #, c-format msgid "%H: %s used with TLS symbol `%pT'\n" msgstr "" -#: elf64-ppc.c:15761 +#: elf64-ppc.c:15771 #, c-format msgid "%H: %s used with non-TLS symbol `%pT'\n" msgstr "" -#: elf64-ppc.c:16545 +#: elf64-ppc.c:16555 #, c-format msgid "%H: call to `%pT' lacks nop, can't restore toc; (plt call stub)\n" msgstr "" -#: elf64-ppc.c:16551 +#: elf64-ppc.c:16561 #, c-format msgid "" "%H: call to `%pT' lacks nop, can't restore toc; (toc save/adjust stub)\n" msgstr "" -#: elf64-ppc.c:17202 +#: elf64-ppc.c:17212 #, c-format msgid "%H: %s against %pT is not supported\n" msgstr "" -#: elf64-ppc.c:17478 +#: elf64-ppc.c:17488 #, c-format msgid "%H: %s for indirect function `%pT' unsupported\n" msgstr "" -#: elf64-ppc.c:17565 +#: elf64-ppc.c:17575 #, c-format msgid "" "%X%P: %pB: %s against %pT is not supported by glibc as a dynamic relocation\n" msgstr "" -#: elf64-ppc.c:17620 +#: elf64-ppc.c:17630 #, c-format msgid "%P: %pB: %s is not supported for `%pT'\n" msgstr "" -#: elf64-ppc.c:17889 +#: elf64-ppc.c:17899 #, c-format msgid "%H: error: %s not a multiple of %u\n" msgstr "" -#: elf64-ppc.c:17912 +#: elf64-ppc.c:17922 #, c-format msgid "%H: unresolvable %s against `%pT'\n" msgstr "" -#: elf64-ppc.c:18057 +#: elf64-ppc.c:18067 #, c-format msgid "%H: %s against `%pT': error %d\n" msgstr "" -#: elf64-s390.c:2490 +#: elf64-s390.c:2752 #, c-format msgid "" "%pB: `%s' non-PLT reloc for symbol defined in shared library and accessed " "from executable (rebuild file with -fPIC ?)" msgstr "" -#: elf64-s390.c:3153 +#: elf64-s390.c:3415 #, c-format msgid "" -"%pB(%pA+%#<PRIx64>): misaligned symbol `%s' (%#<PRIx64>) for relocation %s" +"%pB(%pA+%#<PRIx64>): relocation %s against misaligned symbol `%s' (%" +"#<PRIx64>) in %pB" msgstr "" #: elf64-sparc.c:134 elfcode.h:1601 @@ -5002,122 +5034,134 @@ msgstr "" msgid "%pB: linking UltraSPARC specific with HAL specific code" msgstr "" -#: elf64-x86-64.c:1660 +#: elf64-x86-64.c:1690 msgid "hidden symbol " msgstr "" -#: elf64-x86-64.c:1663 +#: elf64-x86-64.c:1693 msgid "internal symbol " msgstr "" -#: elf64-x86-64.c:1666 elf64-x86-64.c:1670 +#: elf64-x86-64.c:1696 elf64-x86-64.c:1700 msgid "protected symbol " msgstr "" -#: elf64-x86-64.c:1672 +#: elf64-x86-64.c:1702 msgid "symbol " msgstr "" -#: elf64-x86-64.c:1678 +#: elf64-x86-64.c:1708 msgid "undefined " msgstr "" -#: elf64-x86-64.c:1688 -#: elfnn-loongarch.c:892 +#: elf64-x86-64.c:1718 +#: elfnn-loongarch.c:901 msgid "a shared object" msgstr "" -#: elf64-x86-64.c:1690 +#: elf64-x86-64.c:1720 msgid "; recompile with -fPIC" msgstr "" -#: elf64-x86-64.c:1695 -#: elfnn-loongarch.c:898 +#: elf64-x86-64.c:1725 +#: elfnn-loongarch.c:907 msgid "a PIE object" msgstr "" -#: elf64-x86-64.c:1697 -#: elfnn-loongarch.c:900 +#: elf64-x86-64.c:1727 +#: elfnn-loongarch.c:909 msgid "a PDE object" msgstr "" -#: elf64-x86-64.c:1699 +#: elf64-x86-64.c:1729 msgid "; recompile with -fPIE" msgstr "" -#: elf64-x86-64.c:1703 +#: elf64-x86-64.c:1733 #, c-format msgid "%pB: relocation %s against %s%s`%s' can not be used when making %s%s" msgstr "" -#: elf64-x86-64.c:2239 +#: elf64-x86-64.c:2566 +#, c-format +msgid "%pB: bad reloc offset (%#<PRIx64> > %#<PRIx64>) for section `%pA'" +msgstr "" + +#: elf64-x86-64.c:2630 #, c-format msgid "%pB: relocation %s against symbol `%s' isn't supported in x32 mode" msgstr "" -#: elf64-x86-64.c:2394 +#: elf64-x86-64.c:2791 #, c-format msgid "%pB: '%s' accessed both as normal and thread local symbol" msgstr "" -#: elf64-x86-64.c:2652 +#: elf64-x86-64.c:3046 #, c-format msgid "%pB: unsupported relocation %s against symbol `%s'" msgstr "" -#: elf64-x86-64.c:3076 -#: elfnn-aarch64.c:5766 -#: elfnn-riscv.c:2374 +#: elf64-x86-64.c:3472 +#: elfnn-aarch64.c:5784 +#: elfnn-riscv.c:2572 #, c-format msgid "" "%pB: relocation %s against STT_GNU_IFUNC symbol `%s' has non-zero addend: %" "<PRId64>" msgstr "" -#: elf64-x86-64.c:3339 +#: elf64-x86-64.c:3741 #, c-format msgid "" "%pB: relocation R_X86_64_GOTOFF64 against undefined %s `%s' can not be used " "when making a shared object" msgstr "" -#: elf64-x86-64.c:3353 +#: elf64-x86-64.c:3755 #, c-format msgid "" "%pB: relocation R_X86_64_GOTOFF64 against protected %s `%s' can not be used " "when making a shared object" msgstr "" -#: elf64-x86-64.c:3643 +#: elf64-x86-64.c:4045 #, c-format msgid "" "%pB: addend %s%#x in relocation %s against symbol `%s' at %#<PRIx64> in " "section `%pA' is out of range" msgstr "" -#: elf64-x86-64.c:3794 elflink.c:14005 -msgid "%F%P: corrupt input: %pB\n" +#: elf64-x86-64.c:4197 +msgid "%P: corrupt input: %pB\n" msgstr "" -#: elf64-x86-64.c:4605 +#: elf64-x86-64.c:5066 #, c-format msgid "" " failed to convert GOTPCREL relocation against '%s'; relink with --no-relax\n" msgstr "" -#: elf64-x86-64.c:4764 +#: elf64-x86-64.c:5225 +#, c-format +msgid "%pB: PC-relative offset overflow in PLT entry for `%s'\n" +msgstr "" + +#: elf64-x86-64.c:5301 #, c-format -msgid "%F%pB: PC-relative offset overflow in PLT entry for `%s'\n" +msgid "%pB: branch displacement overflow in PLT entry for `%s'\n" msgstr "" -#: elf64-x86-64.c:4837 +#: elf64-x86-64.c:5354 #, c-format -msgid "%F%pB: branch displacement overflow in PLT entry for `%s'\n" +msgid "%pB: PC-relative offset overflow in GOT PLT entry for `%s'\n" msgstr "" -#: elf64-x86-64.c:4890 +#: elf64-x86-64.c:5505 #, c-format -msgid "%F%pB: PC-relative offset overflow in GOT PLT entry for `%s'\n" +msgid "" +"%pB: Unable to generate dynamic relocs because a suitable section does not " +"exist\n" msgstr "" #: elfcode.h:342 @@ -5150,368 +5194,373 @@ msgstr "" msgid "warning: %pB has a segment extending past end of file" msgstr "" -#: elflink.c:1438 +#: elflink.c:1477 #, c-format msgid "" "%s: TLS definition in %pB section %pA mismatches non-TLS definition in %pB " "section %pA" msgstr "" -#: elflink.c:1444 +#: elflink.c:1483 #, c-format msgid "%s: TLS reference in %pB mismatches non-TLS reference in %pB" msgstr "" -#: elflink.c:1450 +#: elflink.c:1489 #, c-format msgid "" "%s: TLS definition in %pB section %pA mismatches non-TLS reference in %pB" msgstr "" -#: elflink.c:1456 +#: elflink.c:1495 #, c-format msgid "" "%s: TLS reference in %pB mismatches non-TLS definition in %pB section %pA" msgstr "" -#: elflink.c:2168 +#: elflink.c:2207 #, c-format msgid "%pB: unexpected redefinition of indirect versioned symbol `%s'" msgstr "" -#: elflink.c:2681 +#: elflink.c:2720 #, c-format msgid "%pB: version node not found for symbol %s" msgstr "" -#: elflink.c:2780 +#: elflink.c:2819 #, c-format msgid "" "%pB: bad reloc symbol index (%#<PRIx64> >= %#lx) for offset %#<PRIx64> in " "section `%pA'" msgstr "" -#: elflink.c:2792 +#: elflink.c:2831 #, c-format msgid "" "%pB: non-zero symbol index (%#<PRIx64>) for offset %#<PRIx64> in section `%" "pA' when the object file has no symbol table" msgstr "" -#: elflink.c:2989 +#: elflink.c:3017 #, c-format msgid "%pB: relocation size mismatch in %pB section %pA" msgstr "" -#: elflink.c:3322 +#: elflink.c:3350 #, c-format msgid "warning: type and size of dynamic symbol `%s' are not defined" msgstr "" -#: elflink.c:3382 +#: elflink.c:3407 msgid "%P: copy reloc against protected `%pT' is dangerous\n" msgstr "" -#: elflink.c:4338 -msgid "%F%P: %pB: failed to add %s to first hash\n" +#: elflink.c:4363 +msgid "%P: %pB: failed to add %s to first hash\n" msgstr "" -#: elflink.c:4406 -msgid "%F%P: first_hash failed to create: %E\n" +#: elflink.c:4431 +msgid "%P: first_hash failed to create: %E\n" msgstr "" -#: elflink.c:4437 +#: elflink.c:4462 #, c-format msgid "alternate ELF machine code found (%d) in %pB, expecting %d" msgstr "" -#: elflink.c:4920 +#: elflink.c:4945 #, c-format msgid "%pB: invalid version offset %lx (max %lx)" msgstr "" -#: elflink.c:4989 +#: elflink.c:5015 #, c-format msgid "%pB: %s local symbol at index %lu (>= sh_info of %lu)" msgstr "" -#: elflink.c:5137 +#: elflink.c:5164 #, c-format msgid "%pB: not enough version information" msgstr "" -#: elflink.c:5175 +#: elflink.c:5202 #, c-format msgid "%pB: %s: invalid version %u (max %d)" msgstr "" -#: elflink.c:5212 +#: elflink.c:5239 #, c-format msgid "%pB: %s: invalid needed version %d" msgstr "" -#: elflink.c:5498 +#: elflink.c:5525 #, c-format msgid "" "warning: alignment %u of normal symbol `%s' in %pB is smaller than %u used " "by the common definition in %pB" msgstr "" -#: elflink.c:5505 +#: elflink.c:5532 msgid "" "warning: NOTE: alignment discrepancies can cause real problems. " "Investigation is advised." msgstr "" -#: elflink.c:5527 +#: elflink.c:5554 msgid "" "warning: NOTE: size discrepancies can cause real problems. Investigation is " "advised." msgstr "" -#: elflink.c:5670 +#: elflink.c:5697 #, c-format msgid "%pB: undefined reference to symbol '%s'" msgstr "" -#: elflink.c:6759 +#: elflink.c:6812 #, c-format msgid "%pB: stack size specified and %s set" msgstr "" -#: elflink.c:6763 +#: elflink.c:6816 #, c-format msgid "%pB: %s not absolute" msgstr "" -#: elflink.c:6975 +#: elflink.c:7028 #, c-format msgid "%s: undefined version: %s" msgstr "" -#: elflink.c:7364 +#: elflink.c:7419 msgid "" "error: creating an executable stack because of -z execstack command line " "option" msgstr "" -#: elflink.c:7370 +#: elflink.c:7425 msgid "" "warning: enabling an executable stack because of -z execstack command line " "option" msgstr "" -#: elflink.c:7432 +#: elflink.c:7487 #, c-format msgid "" "error: %s: is triggering the generation of an executable stack (because it " "has an executable .note.GNU-stack section)" msgstr "" -#: elflink.c:7438 +#: elflink.c:7493 #, c-format msgid "" "warning: %s: requires executable stack (because the .note.GNU-stack section " "is executable)" msgstr "" -#: elflink.c:7446 +#: elflink.c:7501 #, c-format msgid "" "error: %s: is triggering the generation of an executable stack because it " "does not have a .note.GNU-stack section" msgstr "" -#: elflink.c:7452 +#: elflink.c:7507 #, c-format msgid "warning: %s: missing .note.GNU-stack section implies executable stack" msgstr "" -#: elflink.c:7455 +#: elflink.c:7510 msgid "" "NOTE: This behaviour is deprecated and will be removed in a future version " "of the linker" msgstr "" -#: elflink.c:7609 +#: elflink.c:7664 #, c-format msgid "%pB: .preinit_array section is not allowed in DSO" msgstr "" -#: elflink.c:9218 +#: elflink.c:9284 #, c-format msgid "undefined %s reference in complex symbol: %s" msgstr "" -#: elflink.c:9381 elflink.c:9389 +#: elflink.c:9447 elflink.c:9455 msgid "division by zero" msgstr "" -#: elflink.c:9403 +#: elflink.c:9469 #, c-format msgid "unknown operator '%c' in complex symbol" msgstr "" #. PR 21524: Let the user know if a symbol was removed by garbage collection. -#: elflink.c:9739 +#: elflink.c:9805 #, c-format msgid "" "%pB:%pA: error: relocation references symbol %s which was removed by garbage " "collection" msgstr "" -#: elflink.c:9742 +#: elflink.c:9808 #, c-format msgid "%pB:%pA: error: try relinking with --gc-keep-exported enabled" msgstr "" -#: elflink.c:9993 elflink.c:10011 elflink.c:10050 elflink.c:10068 +#: elflink.c:10059 elflink.c:10077 elflink.c:10116 elflink.c:10134 #, c-format msgid "%pB: unable to sort relocs - they are in more than one size" msgstr "" #. The section size is not divisible by either - #. something is wrong. -#: elflink.c:10027 elflink.c:10084 +#: elflink.c:10093 elflink.c:10150 #, c-format msgid "%pB: unable to sort relocs - they are of an unknown size" msgstr "" -#: elflink.c:10136 +#: elflink.c:10202 msgid "not enough memory to sort relocations" msgstr "" -#: elflink.c:10470 +#: elflink.c:10536 #, c-format msgid "%pB: too many sections: %d (>= %d)" msgstr "" -#: elflink.c:10746 +#: elflink.c:10812 #, c-format msgid "%pB: internal symbol `%s' in %pB is referenced by DSO" msgstr "" -#: elflink.c:10749 +#: elflink.c:10815 #, c-format msgid "%pB: hidden symbol `%s' in %pB is referenced by DSO" msgstr "" -#: elflink.c:10752 +#: elflink.c:10818 #, c-format msgid "%pB: local symbol `%s' in %pB is referenced by DSO" msgstr "" -#: elflink.c:10845 +#: elflink.c:10911 #, c-format msgid "%pB: could not find output section %pA for input section %pA" msgstr "" -#: elflink.c:11003 +#: elflink.c:11069 #, c-format msgid "%pB: protected symbol `%s' isn't defined" msgstr "" -#: elflink.c:11006 +#: elflink.c:11072 #, c-format msgid "%pB: internal symbol `%s' isn't defined" msgstr "" -#: elflink.c:11009 +#: elflink.c:11075 #, c-format msgid "%pB: hidden symbol `%s' isn't defined" msgstr "" -#: elflink.c:11041 +#: elflink.c:11107 #, c-format msgid "%pB: no symbol version section for versioned symbol `%s'" msgstr "" -#: elflink.c:11723 +#: elflink.c:11649 +#, c-format +msgid "error: %pB: unable to create group section symbol" +msgstr "" + +#: elflink.c:11798 #, c-format msgid "" -"error: %pB contains a reloc (%#<PRIx64>) for section %pA that references a " +"error: %pB contains a reloc (%#<PRIx64>) for section '%pA' that references a " "non-existent global symbol" msgstr "" -#: elflink.c:12193 +#: elflink.c:12264 #, c-format msgid "error: %pB: size of section %pA is not multiple of address size" msgstr "" -#: elflink.c:12473 +#: elflink.c:12544 #, c-format msgid "%pB: no symbol found for import library" msgstr "" -#: elflink.c:13078 -msgid "%F%P: %pB: failed to finish relative relocations\n" +#: elflink.c:13150 +msgid "%P: %pB: failed to finish relative relocations\n" msgstr "" -#: elflink.c:13155 +#: elflink.c:13227 #, c-format msgid "%pB: file class %s incompatible with %s" msgstr "" -#: elflink.c:13377 +#: elflink.c:13449 #, c-format msgid "%pB: failed to generate import library" msgstr "" -#: elflink.c:13538 +#: elflink.c:13610 #, c-format msgid "warning: %s section has zero size" msgstr "" -#: elflink.c:13586 +#: elflink.c:13658 #, c-format msgid "warning: section '%s' is being made into a note" msgstr "" -#: elflink.c:13680 +#: elflink.c:13752 msgid "%P%X: read-only segment has dynamic relocations\n" msgstr "" -#: elflink.c:13683 +#: elflink.c:13755 msgid "%P: warning: creating DT_TEXTREL in a shared object\n" msgstr "" -#: elflink.c:13686 +#: elflink.c:13758 msgid "%P: warning: creating DT_TEXTREL in a PDE\n" msgstr "" -#: elflink.c:13689 +#: elflink.c:13761 msgid "%P: warning: creating DT_TEXTREL in a PIE\n" msgstr "" -#: elflink.c:13825 +#: elflink.c:13890 msgid "%P%X: can not read symbols: %E\n" msgstr "" -#: elflink.c:14258 -msgid "%F%P: %pB(%pA): error: need linked-to section for --gc-sections\n" +#: elflink.c:14312 +msgid "%P: %pB(%pA): error: need linked-to section for --gc-sections\n" msgstr "" -#: elflink.c:14738 +#: elflink.c:14793 #, c-format msgid "%pB: %pA+%#<PRIx64>: no symbol found for INHERIT" msgstr "" -#: elflink.c:14779 +#: elflink.c:14834 #, c-format msgid "%pB: section '%pA': corrupt VTENTRY entry" msgstr "" -#: elflink.c:14922 +#: elflink.c:14977 #, c-format msgid "unrecognized INPUT_SECTION_FLAG %s\n" msgstr "" -#: elflink.c:15703 +#: elflink.c:15758 #, c-format msgid "%P: %pB: warning: relocation against `%s' in read-only section `%pA'\n" msgstr "" -#: elflink.c:15792 +#: elflink.c:15847 msgid "" "%P: warning: GNU indirect functions with DT_TEXTREL may result in a segfault " "at runtime; recompile with %s\n" @@ -5523,64 +5572,64 @@ msgid "" "%pB: warning: Weak TLS is implementation defined and may not work as expected" msgstr "" -#: elfxx-aarch64.c:773 +#: elfxx-aarch64.c:786 #, c-format msgid "" "%Xerror: found a total of %d inputs incompatible with BTI requirements.\n" msgstr "" -#: elfxx-aarch64.c:775 +#: elfxx-aarch64.c:788 #, c-format msgid "" "warning: found a total of %d inputs incompatible with BTI requirements.\n" msgstr "" -#: elfxx-aarch64.c:785 +#: elfxx-aarch64.c:798 #, c-format msgid "" "%Xerror: found a total of %d inputs incompatible with GCS requirements.\n" msgstr "" -#: elfxx-aarch64.c:787 +#: elfxx-aarch64.c:800 #, c-format msgid "" "warning: found a total of %d inputs incompatible with GCS requirements.\n" msgstr "" -#: elfxx-aarch64.c:797 +#: elfxx-aarch64.c:810 #, c-format msgid "" "%Xerror: found a total of %d dynamically-linked objects incompatible with " "GCS requirements.\n" msgstr "" -#: elfxx-aarch64.c:799 +#: elfxx-aarch64.c:812 #, c-format msgid "" "warning: found a total of %d dynamically-linked objects incompatible with " "GCS requirements.\n" msgstr "" -#: elfxx-aarch64.c:960 +#: elfxx-aarch64.c:971 #, c-format msgid "error: %pB: <corrupt AArch64 used size: 0x%x>" msgstr "" -#: elfxx-aarch64.c:1104 +#: elfxx-aarch64.c:1115 #, c-format msgid "" "%pB: warning: BTI is required by -z force-bti, but this input object file " "lacks the necessary property note.\n" msgstr "" -#: elfxx-aarch64.c:1106 +#: elfxx-aarch64.c:1117 #, c-format msgid "" "%X%pB: error: BTI is required by -z force-bti, but this input object file " "lacks the necessary property note.\n" msgstr "" -#: elfxx-aarch64.c:1138 +#: elfxx-aarch64.c:1149 #, c-format msgid "" "%pB: warning: GCS is required by -z gcs, but this shared library lacks the " @@ -5589,7 +5638,7 @@ msgid "" "marking.\n" msgstr "" -#: elfxx-aarch64.c:1142 +#: elfxx-aarch64.c:1153 #, c-format msgid "" "%X%pB: error: GCS is required by -z gcs, but this shared library lacks the " @@ -5598,14 +5647,14 @@ msgid "" "marking.\n" msgstr "" -#: elfxx-aarch64.c:1148 +#: elfxx-aarch64.c:1159 #, c-format msgid "" "%pB: warning: GCS is required by -z gcs, but this input object file lacks " "the necessary property note.\n" msgstr "" -#: elfxx-aarch64.c:1150 +#: elfxx-aarch64.c:1161 #, c-format msgid "" "%X%pB: error: GCS is required by -z gcs, but this input object file lacks " @@ -5636,819 +5685,862 @@ msgstr "" msgid "static procedure (no name)" msgstr "" -#: elfxx-mips.c:5849 +#: elfxx-mips.c:5895 msgid "MIPS16 and microMIPS functions cannot call each other" msgstr "" -#: elfxx-mips.c:6619 +#: elfxx-mips.c:6665 msgid "%X%H: unsupported JALX to the same ISA mode\n" msgstr "" -#: elfxx-mips.c:6652 +#: elfxx-mips.c:6698 msgid "" "%X%H: unsupported jump between ISA modes; consider recompiling with " "interlinking enabled\n" msgstr "" -#: elfxx-mips.c:6697 +#: elfxx-mips.c:6743 msgid "" "%X%H: cannot convert branch between ISA modes to JALX: relocation out of " "range\n" msgstr "" -#: elfxx-mips.c:6709 +#: elfxx-mips.c:6755 msgid "%X%H: unsupported branch between ISA modes\n" msgstr "" -#: elfxx-mips.c:7355 +#: elfxx-mips.c:7401 #, c-format msgid "" "%pB: incorrect `.reginfo' section size; expected %<PRIu64>, got %<PRIu64>" msgstr "" -#: elfxx-mips.c:7399 +#: elfxx-mips.c:7445 #, c-format msgid "%pB: warning: bad `%s' option size %u smaller than its header" msgstr "" -#: elfxx-mips.c:7635 +#: elfxx-mips.c:7681 #, c-format msgid "%pB: warning: truncated `%s' option" msgstr "" -#: elfxx-mips.c:8453 elfxx-mips.c:8579 +#: elfxx-mips.c:8533 elfxx-mips.c:8659 #, c-format msgid "" "%pB: warning: cannot determine the target function for stub section `%s'" msgstr "" -#: elfxx-mips.c:8711 +#: elfxx-mips.c:8791 #, c-format msgid "%pB: malformed reloc detected for section %s" msgstr "" -#: elfxx-mips.c:8811 +#: elfxx-mips.c:8891 #, c-format msgid "%pB: GOT reloc at %#<PRIx64> not expected in executables" msgstr "" -#: elfxx-mips.c:8951 +#: elfxx-mips.c:9031 #, c-format msgid "%pB: CALL16 reloc at %#<PRIx64> not against global symbol" msgstr "" -#: elfxx-mips.c:9254 +#: elfxx-mips.c:9334 #, c-format msgid "" "%X%H: relocation %s against `%s' cannot be used when making a shared object; " "recompile with -fPIC\n" msgstr "" -#: elfxx-mips.c:9380 +#: elfxx-mips.c:9460 #, c-format msgid "IFUNC symbol %s in dynamic symbol table - IFUNCS are not supported" msgstr "" -#: elfxx-mips.c:9383 +#: elfxx-mips.c:9463 #, c-format msgid "non-dynamic symbol %s in dynamic symbol table" msgstr "" -#: elfxx-mips.c:9603 +#: elfxx-mips.c:9683 #, c-format msgid "non-dynamic relocations refer to dynamic symbol %s" msgstr "" -#: elfxx-mips.c:10523 +#: elfxx-mips.c:10606 #, c-format msgid "" "%pB: can't find matching LO16 reloc against `%s' for %s at %#<PRIx64> in " "section `%pA'" msgstr "" -#: elfxx-mips.c:10663 +#: elfxx-mips.c:10748 msgid "" "small-data section too large; lower small-data size limit (see option -G)" msgstr "" -#: elfxx-mips.c:10682 +#: elfxx-mips.c:10767 msgid "cannot convert a jump to JALX for a non-word-aligned address" msgstr "" -#: elfxx-mips.c:10685 +#: elfxx-mips.c:10770 msgid "jump to a non-word-aligned address" msgstr "" -#: elfxx-mips.c:10686 +#: elfxx-mips.c:10771 msgid "jump to a non-instruction-aligned address" msgstr "" -#: elfxx-mips.c:10689 +#: elfxx-mips.c:10774 msgid "cannot convert a branch to JALX for a non-word-aligned address" msgstr "" -#: elfxx-mips.c:10691 +#: elfxx-mips.c:10776 msgid "branch to a non-instruction-aligned address" msgstr "" -#: elfxx-mips.c:10693 +#: elfxx-mips.c:10778 msgid "PC-relative load from unaligned address" msgstr "" -#: elfxx-mips.c:10993 +#: elfxx-mips.c:11078 #, c-format msgid "" "%pB: `%pA' entry VMA of %#<PRIx64> outside the 32-bit range supported; " "consider using `-Ttext-segment=...'" msgstr "" -#: elfxx-mips.c:11108 elfxx-mips.c:11701 +#: elfxx-mips.c:11193 elfxx-mips.c:11786 #, c-format msgid "%pB: `%pA' offset of %<PRId64> from `%pA' beyond the range of ADDIUPC" msgstr "" -#: elfxx-mips.c:11673 +#: elfxx-mips.c:11758 #, c-format msgid "" "%pB: `%pA' start VMA of %#<PRIx64> outside the 32-bit range supported; " "consider using `-Ttext-segment=...'" msgstr "" -#: elfxx-mips.c:13418 reloc.c:8518 +#: elfxx-mips.c:13503 reloc.c:8524 #, c-format msgid "%X%P: %pB(%pA): error: relocation for offset %V has no value\n" msgstr "" -#: elfxx-mips.c:14729 +#: elfxx-mips.c:14814 #, c-format msgid "%pB: unknown architecture %s" msgstr "" -#: elfxx-mips.c:15257 +#: elfxx-mips.c:15342 #, c-format msgid "%pB: illegal section name `%pA'" msgstr "" -#: elfxx-mips.c:15534 +#: elfxx-mips.c:15620 #, c-format msgid "%pB: warning: linking abicalls files with non-abicalls files" msgstr "" -#: elfxx-mips.c:15551 +#: elfxx-mips.c:15637 #, c-format msgid "%pB: linking 32-bit code with 64-bit code" msgstr "" -#: elfxx-mips.c:15583 elfxx-mips.c:15649 elfxx-mips.c:15664 +#: elfxx-mips.c:15669 elfxx-mips.c:15735 elfxx-mips.c:15750 #, c-format msgid "%pB: linking %s module with previous %s modules" msgstr "" -#: elfxx-mips.c:15607 +#: elfxx-mips.c:15693 #, c-format msgid "%pB: ABI mismatch: linking %s module with previous %s modules" msgstr "" -#: elfxx-mips.c:15632 +#: elfxx-mips.c:15718 #, c-format msgid "%pB: ASE mismatch: linking %s module with previous %s modules" msgstr "" -#: elfxx-mips.c:15766 +#: elfxx-mips.c:15852 #, c-format msgid "" "warning: %pB uses unknown floating point ABI %d (set by %pB), %pB uses " "unknown floating point ABI %d" msgstr "" -#: elfxx-mips.c:15772 +#: elfxx-mips.c:15858 #, c-format msgid "" "warning: %pB uses unknown floating point ABI %d (set by %pB), %pB uses %s" msgstr "" -#: elfxx-mips.c:15778 +#: elfxx-mips.c:15864 #, c-format msgid "" "warning: %pB uses %s (set by %pB), %pB uses unknown floating point ABI %d" msgstr "" -#: elfxx-mips.c:15792 +#: elfxx-mips.c:15878 #, c-format msgid "warning: %pB uses %s (set by %pB), %pB uses %s" msgstr "" -#: elfxx-mips.c:15811 +#: elfxx-mips.c:15897 #, c-format msgid "warning: %pB uses %s (set by %pB), %pB uses unknown MSA ABI %d" msgstr "" -#: elfxx-mips.c:15823 +#: elfxx-mips.c:15909 #, c-format msgid "warning: %pB uses unknown MSA ABI %d (set by %pB), %pB uses %s" msgstr "" -#: elfxx-mips.c:15832 +#: elfxx-mips.c:15918 #, c-format msgid "" "warning: %pB uses unknown MSA ABI %d (set by %pB), %pB uses unknown MSA ABI %" "d" msgstr "" -#: elfxx-mips.c:15894 +#: elfxx-mips.c:15980 #, c-format msgid "%pB: endianness incompatible with that of the selected emulation" msgstr "" -#: elfxx-mips.c:15908 +#: elfxx-mips.c:15994 #, c-format msgid "%pB: ABI is incompatible with that of the selected emulation" msgstr "" -#: elfxx-mips.c:15961 +#: elfxx-mips.c:16047 #, c-format msgid "%pB: warning: inconsistent ISA between e_flags and .MIPS.abiflags" msgstr "" -#: elfxx-mips.c:15966 +#: elfxx-mips.c:16052 #, c-format msgid "" "%pB: warning: inconsistent FP ABI between .gnu.attributes and .MIPS.abiflags" msgstr "" -#: elfxx-mips.c:15970 +#: elfxx-mips.c:16056 #, c-format msgid "%pB: warning: inconsistent ASEs between e_flags and .MIPS.abiflags" msgstr "" -#: elfxx-mips.c:15977 +#: elfxx-mips.c:16063 #, c-format msgid "" "%pB: warning: inconsistent ISA extensions between e_flags and .MIPS.abiflags" msgstr "" -#: elfxx-mips.c:15981 +#: elfxx-mips.c:16067 #, c-format msgid "" "%pB: warning: unexpected flag in the flags2 field of .MIPS.abiflags (0x%lx)" msgstr "" -#: elfxx-mips.c:16172 +#: elfxx-mips.c:16258 msgid "-mips32r2 -mfp64 (12 callee-saved)" msgstr "" -#: elfxx-mips.c:16234 elfxx-mips.c:16245 +#: elfxx-mips.c:16320 elfxx-mips.c:16331 msgid "None" msgstr "" -#: elfxx-mips.c:16236 elfxx-mips.c:16305 +#: elfxx-mips.c:16322 elfxx-mips.c:16391 msgid "Unknown" msgstr "" -#: elfxx-mips.c:16316 +#: elfxx-mips.c:16402 #, c-format msgid "Hard or soft float\n" msgstr "" -#: elfxx-mips.c:16319 +#: elfxx-mips.c:16405 #, c-format msgid "Hard float (double precision)\n" msgstr "" -#: elfxx-mips.c:16322 +#: elfxx-mips.c:16408 #, c-format msgid "Hard float (single precision)\n" msgstr "" -#: elfxx-mips.c:16325 +#: elfxx-mips.c:16411 #, c-format msgid "Soft float\n" msgstr "" -#: elfxx-mips.c:16328 +#: elfxx-mips.c:16414 #, c-format msgid "Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n" msgstr "" -#: elfxx-mips.c:16331 +#: elfxx-mips.c:16417 #, c-format msgid "Hard float (32-bit CPU, Any FPU)\n" msgstr "" -#: elfxx-mips.c:16334 +#: elfxx-mips.c:16420 #, c-format msgid "Hard float (32-bit CPU, 64-bit FPU)\n" msgstr "" -#: elfxx-mips.c:16337 +#: elfxx-mips.c:16423 #, c-format msgid "Hard float compat (32-bit CPU, 64-bit FPU)\n" msgstr "" -#: elfxx-mips.c:16369 +#: elfxx-mips.c:16455 #, c-format msgid " [abi=O32]" msgstr "" -#: elfxx-mips.c:16371 +#: elfxx-mips.c:16457 #, c-format msgid " [abi=O64]" msgstr "" -#: elfxx-mips.c:16373 +#: elfxx-mips.c:16459 #, c-format msgid " [abi=EABI32]" msgstr "" -#: elfxx-mips.c:16375 +#: elfxx-mips.c:16461 #, c-format msgid " [abi=EABI64]" msgstr "" -#: elfxx-mips.c:16377 +#: elfxx-mips.c:16463 #, c-format msgid " [abi unknown]" msgstr "" -#: elfxx-mips.c:16379 +#: elfxx-mips.c:16465 #, c-format msgid " [abi=N32]" msgstr "" -#: elfxx-mips.c:16381 +#: elfxx-mips.c:16467 #, c-format msgid " [abi=64]" msgstr "" -#: elfxx-mips.c:16383 +#: elfxx-mips.c:16469 #, c-format msgid " [no abi set]" msgstr "" -#: elfxx-mips.c:16408 +#: elfxx-mips.c:16494 #, c-format msgid " [unknown ISA]" msgstr "" -#: elfxx-mips.c:16428 +#: elfxx-mips.c:16514 #, c-format msgid " [not 32bitmode]" msgstr "" -#: elfxx-riscv.c:1827 +#: elfxx-riscv.c:1950 #, c-format msgid "x ISA extension `%s' must be set with the versions" msgstr "" -#: elfxx-riscv.c:1833 +#: elfxx-riscv.c:1956 #, c-format msgid "cannot find default versions of the ISA extension `%s'" msgstr "" -#: elfxx-riscv.c:1939 +#: elfxx-riscv.c:2063 #, c-format msgid "%s: first ISA extension must be `e', `i' or `g'" msgstr "" -#: elfxx-riscv.c:1963 +#: elfxx-riscv.c:2087 #, c-format msgid "%s: unknown standard ISA extension or prefix class `%c'" msgstr "" -#: elfxx-riscv.c:1999 +#: elfxx-riscv.c:2123 #, c-format msgid "%s: invalid prefixed ISA extension `%s' ends with <number>p" msgstr "" -#: elfxx-riscv.c:2023 +#: elfxx-riscv.c:2147 #, c-format msgid "%s: unknown prefixed ISA extension `%s'" msgstr "" -#: elfxx-riscv.c:2047 +#: elfxx-riscv.c:2171 #, c-format msgid "%s: prefixed ISA extension must separate with _" msgstr "" -#: elfxx-riscv.c:2087 +#: elfxx-riscv.c:2211 #, c-format msgid "rv%de does not support the `h' extension" msgstr "" -#: elfxx-riscv.c:2095 +#: elfxx-riscv.c:2219 #, c-format msgid "rv%d does not support the `q' extension" msgstr "" -#: elfxx-riscv.c:2102 -msgid "zcmp' is incompatible with `d/zcd' extension" +#: elfxx-riscv.c:2226 +msgid "zcmp' is incompatible with `d' and `c', or `zcd' extension" msgstr "" -#: elfxx-riscv.c:2109 +#: elfxx-riscv.c:2233 #, c-format msgid "rv%d does not support the `zcf' extension" msgstr "" -#: elfxx-riscv.c:2116 +#: elfxx-riscv.c:2240 msgid "`zfinx' is conflict with the `f/d/q/zfh/zfhmin' extension" msgstr "" -#: elfxx-riscv.c:2123 -msgid "`xtheadvector' is conflict with the `v' extension" +#: elfxx-riscv.c:2247 +msgid "`xtheadvector' is conflict with the `v/zve32x' extension" +msgstr "" + +#: elfxx-riscv.c:2256 +msgid "`zclsd' is conflict with the `c+f'/ `zcf' extension" +msgstr "" + +#: elfxx-riscv.c:2261 +#, c-format +msgid "rv%d does not support the `ssnpm' extension" +msgstr "" + +#: elfxx-riscv.c:2267 +#, c-format +msgid "rv%d does not support the `smnpm' extension" +msgstr "" + +#: elfxx-riscv.c:2273 +#, c-format +msgid "rv%d does not support the `smmpm' extension" msgstr "" -#: elfxx-riscv.c:2144 +#: elfxx-riscv.c:2279 +#, c-format +msgid "rv%d does not support the `sspm' extension" +msgstr "" + +#: elfxx-riscv.c:2285 +#, c-format +msgid "rv%d does not support the `supm' extension" +msgstr "" + +#: elfxx-riscv.c:2307 msgid "zvl*b extensions need to enable either `v' or `zve' extension" msgstr "" -#: elfxx-riscv.c:2206 +#: elfxx-riscv.c:2364 +msgid "Warning: should use \"_\" to contact Profiles with other extensions" +msgstr "" + +#: elfxx-riscv.c:2405 #, c-format msgid "%s: ISA string cannot contain uppercase letters" msgstr "" -#: elfxx-riscv.c:2234 +#: elfxx-riscv.c:2439 #, c-format -msgid "%s: ISA string must begin with rv32 or rv64" +msgid "%s: ISA string must begin with rv32, rv64 or Profiles" msgstr "" -#: elfxx-riscv.c:2417 +#: elfxx-riscv.c:2629 msgid "internal: " msgstr "" -#: elfxx-riscv.c:2471 +#: elfxx-riscv.c:2683 #, c-format msgid "%sinvalid ISA extension ends with <number>p in %s `%s'" msgstr "" -#: elfxx-riscv.c:2494 +#: elfxx-riscv.c:2706 #, c-format msgid "%sunknown ISA extension `%s' in %s `%s'" msgstr "" -#: elfxx-riscv.c:2506 +#: elfxx-riscv.c:2717 +#, c-format +msgid "%sdeprecated - extension `%s' in %s `%s'" +msgstr "" + +#: elfxx-riscv.c:2727 #, c-format -msgid "%scannot + or - base extension `%s' in %s `%s'" +msgid "%scannot + base extension `%s' in %s `%s'" msgstr "" -#: elfxx-riscv.c:2817 elfxx-riscv.c:3112 +#: elfxx-riscv.c:3059 elfxx-riscv.c:3343 msgid "internal: unreachable INSN_CLASS_*" msgstr "" -#: elfxx-riscv.c:2851 +#: elfxx-riscv.c:3093 msgid "zicfiss' and `zcmop" msgstr "" -#: elfxx-riscv.c:2865 +#: elfxx-riscv.c:3106 msgid "zihintntl' and `c', or `zihintntl' and `zca" msgstr "" -#: elfxx-riscv.c:2870 elfxx-riscv.c:2896 +#: elfxx-riscv.c:3111 elfxx-riscv.c:3137 msgid "c' or `zca" msgstr "" -#: elfxx-riscv.c:2878 +#: elfxx-riscv.c:3119 msgid "m' or `zmmul" msgstr "" -#: elfxx-riscv.c:2902 -msgid "f' and `c', or `f' and `zcf" +#: elfxx-riscv.c:3139 +msgid "f' and `c', or `zcf" msgstr "" -#: elfxx-riscv.c:2907 -msgid "c' or `zcf" +#: elfxx-riscv.c:3141 +msgid "d' and `c', or `zcd" msgstr "" -#: elfxx-riscv.c:2913 -msgid "d' and `c', or `d' and `zcd" -msgstr "" - -#: elfxx-riscv.c:2918 -msgid "c' or `zcd" -msgstr "" - -#: elfxx-riscv.c:2920 +#: elfxx-riscv.c:3143 msgid "f' or `zfinx" msgstr "" -#: elfxx-riscv.c:2922 +#: elfxx-riscv.c:3145 msgid "d' or `zdinx" msgstr "" -#: elfxx-riscv.c:2924 +#: elfxx-riscv.c:3147 msgid "q' or `zqinx" msgstr "" -#: elfxx-riscv.c:2926 +#: elfxx-riscv.c:3149 msgid "zfh' or `zhinx" msgstr "" -#: elfxx-riscv.c:2930 +#: elfxx-riscv.c:3153 msgid "zfhmin' or `zhinxmin" msgstr "" -#: elfxx-riscv.c:2941 +#: elfxx-riscv.c:3164 msgid "zfhmin' and `d', or `zhinxmin' and `zdinx" msgstr "" -#: elfxx-riscv.c:2952 +#: elfxx-riscv.c:3175 msgid "zfhmin' and `q', or `zhinxmin' and `zqinx" msgstr "" -#: elfxx-riscv.c:2960 +#: elfxx-riscv.c:3183 msgid "d' and `zfa" msgstr "" -#: elfxx-riscv.c:2968 +#: elfxx-riscv.c:3191 msgid "q' and `zfa" msgstr "" -#: elfxx-riscv.c:2976 +#: elfxx-riscv.c:3199 msgid "zfh' and `zfa" msgstr "" -#: elfxx-riscv.c:2986 +#: elfxx-riscv.c:3209 msgid "zfh' and `zfa', or `zvfh' and `zfa" msgstr "" -#: elfxx-riscv.c:2991 +#: elfxx-riscv.c:3214 msgid "zfh' or `zvfh" msgstr "" -#: elfxx-riscv.c:3007 +#: elfxx-riscv.c:3230 msgid "zbb' or `zbkb" msgstr "" -#: elfxx-riscv.c:3009 +#: elfxx-riscv.c:3232 msgid "zbc' or `zbkc" msgstr "" -#: elfxx-riscv.c:3017 +#: elfxx-riscv.c:3240 msgid "zknd' or `zkne" msgstr "" -#: elfxx-riscv.c:3023 +#: elfxx-riscv.c:3246 msgid "v' or `zve64x' or `zve32x" msgstr "" -#: elfxx-riscv.c:3025 +#: elfxx-riscv.c:3248 msgid "v' or `zve64d' or `zve64f' or `zve32f" msgstr "" -#: elfxx-riscv.c:3027 +#: elfxx-riscv.c:3250 msgid "zvbb" msgstr "" -#: elfxx-riscv.c:3029 +#: elfxx-riscv.c:3252 msgid "zvbc" msgstr "" -#: elfxx-riscv.c:3035 +#: elfxx-riscv.c:3258 msgid "zvkb" msgstr "" -#: elfxx-riscv.c:3037 +#: elfxx-riscv.c:3260 msgid "zvkg" msgstr "" -#: elfxx-riscv.c:3039 +#: elfxx-riscv.c:3262 msgid "zvkned" msgstr "" -#: elfxx-riscv.c:3041 +#: elfxx-riscv.c:3264 msgid "zvknha' or `zvknhb" msgstr "" -#: elfxx-riscv.c:3043 +#: elfxx-riscv.c:3266 msgid "zvksed" msgstr "" -#: elfxx-riscv.c:3045 +#: elfxx-riscv.c:3268 msgid "zvksh" msgstr "" -#: elfxx-riscv.c:3049 +#: elfxx-riscv.c:3272 msgid "zcb' and `zba" msgstr "" -#: elfxx-riscv.c:3051 +#: elfxx-riscv.c:3274 msgid "zcb' and `zbb" msgstr "" -#: elfxx-riscv.c:3053 +#: elfxx-riscv.c:3276 msgid "zcb' and `zmmul', or `zcb' and `m" msgstr "" -#: elfxx-riscv.c:3061 +#: elfxx-riscv.c:3284 msgid "smctr' or `ssctr" msgstr "" -#: elfxx-riscv.c:3065 +#: elfxx-riscv.c:3294 msgid "h" msgstr "" -#: elfxx-sparc.c:3017 -#: elfnn-aarch64.c:5750 +#: elfxx-riscv.c:3441 +msgid "%F%P: failed to create GNU property section\n" +msgstr "" + +#: elfxx-riscv.c:3485 +#, c-format +msgid "error: %pB: <corrupt RISC-V used size: 0x%x>" +msgstr "" + +#: elfxx-sparc.c:3028 +#: elfnn-aarch64.c:5768 #, c-format msgid "" "%pB: relocation %s against STT_GNU_IFUNC symbol `%s' isn't handled by %s" msgstr "" -#: elfxx-tilegx.c:4126 +#: elfxx-tilegx.c:4128 #, c-format msgid "%pB: cannot link together %s and %s objects" msgstr "" -#: elfxx-x86.c:534 elfxx-x86.c:3597 +#: elfxx-x86.c:534 elfxx-x86.c:3586 #, c-format msgid "" -"%F%P: %pB: copy relocation against non-copyable protected symbol `%s' in %" -"pB\n" +"%P: %pB: copy relocation against non-copyable protected symbol `%s' in %pB\n" msgstr "" -#: elfxx-x86.c:1044 +#: elfxx-x86.c:1027 #, c-format -msgid "%F%P: %pB: failed to allocate relative reloc record\n" +msgid "%P: %pB: failed to allocate relative reloc record\n" msgstr "" -#: elfxx-x86.c:1403 +#: elfxx-x86.c:1388 #, c-format -msgid "%F%P: %pB: failed to allocate 64-bit DT_RELR bitmap\n" +msgid "%P: %pB: failed to allocate 64-bit DT_RELR bitmap\n" msgstr "" -#: elfxx-x86.c:1439 +#: elfxx-x86.c:1424 #, c-format -msgid "%F%P: %pB: failed to allocate 32-bit DT_RELR bitmap\n" +msgid "%P: %pB: failed to allocate 32-bit DT_RELR bitmap\n" msgstr "" -#: elfxx-x86.c:1578 +#: elfxx-x86.c:1563 #, c-format -msgid "%F%P: %pB: failed to allocate memory for section `%pA'\n" +msgid "%P: %pB: failed to allocate memory for section `%pA'\n" msgstr "" -#: elfxx-x86.c:1765 +#: elfxx-x86.c:1750 #, c-format msgid "" -"%F%P: %pB: size of compact relative reloc section is changed: new (%lu) != " -"old (%lu)\n" +"%P: %pB: size of compact relative reloc section is changed: new (%lu) != old " +"(%lu)\n" msgstr "" -#: elfxx-x86.c:1787 +#: elfxx-x86.c:1772 #, c-format -msgid "%F%P: %pB: failed to allocate compact relative reloc section\n" +msgid "%P: %pB: failed to allocate compact relative reloc section\n" msgstr "" -#: elfxx-x86.c:2256 +#: elfxx-x86.c:2243 #, c-format msgid "" -"%F%P: %pB: relocation %s against absolute symbol `%s' in section `%pA' is " +"%P: %pB: relocation %s against absolute symbol `%s' in section `%pA' is " "disallowed\n" msgstr "" -#: elfxx-x86.c:2338 +#: elfxx-x86.c:2325 msgid "%P: %pB: warning: relocation in read-only section `%pA'\n" msgstr "" -#: elfxx-x86.c:3265 +#: elfxx-x86.c:3254 msgid "" "%pB: %s (offset: 0x%v, info: 0x%v, addend: 0x%v) against '%s' for section '%" "pA' in %pB\n" msgstr "" -#: elfxx-x86.c:3271 +#: elfxx-x86.c:3260 msgid "" "%pB: %s (offset: 0x%v, info: 0x%v) against '%s' for section '%pA' in %pB\n" msgstr "" -#: elfxx-x86.c:3307 +#: elfxx-x86.c:3296 #, c-format msgid "" "%pB: TLS transition from %s to %s against `%s' at 0x%v in section `%pA' " "failed\n" msgstr "" -#: elfxx-x86.c:3316 +#: elfxx-x86.c:3305 #, c-format -msgid "%pB(%pA+0x%v): relocation %s against `%s' must be used in ADD only\n" +msgid "" +"%pB(%pA+0x%v): relocation %s against `%s' must be used in ADD or MOV only\n" msgstr "" -#: elfxx-x86.c:3324 +#: elfxx-x86.c:3313 #, c-format msgid "" -"%pB(%pA+0x%v): relocation %s against `%s' must be used in ADD or MOV only\n" +"%pB(%pA+0x%v): relocation %s against `%s' must be used in ADD or MOVRS only\n" msgstr "" -#: elfxx-x86.c:3332 +#: elfxx-x86.c:3321 #, c-format msgid "" "%pB(%pA+0x%v): relocation %s against `%s' must be used in ADD, SUB or MOV " "only\n" msgstr "" -#: elfxx-x86.c:3340 +#: elfxx-x86.c:3329 #, c-format msgid "" "%pB(%pA+0x%v): relocation %s against `%s' must be used in indirect CALL with " "%s register only\n" msgstr "" -#: elfxx-x86.c:3349 +#: elfxx-x86.c:3338 #, c-format msgid "%pB(%pA+0x%v): relocation %s against `%s' must be used in LEA only\n" msgstr "" -#: elfxx-x86.c:3976 +#: elfxx-x86.c:3965 #, c-format msgid "error: %pB: <corrupt x86 property (0x%x) size: 0x%x>" msgstr "" -#: elfxx-x86.c:4189 +#: elfxx-x86.c:4178 #, c-format msgid "%pB: x86 ISA needed: " msgstr "" -#: elfxx-x86.c:4191 +#: elfxx-x86.c:4180 #, c-format msgid "%pB: x86 ISA used: " msgstr "" -#: elfxx-x86.c:4213 +#: elfxx-x86.c:4202 #, c-format msgid "<unknown: %x>" msgstr "" -#: elfxx-x86.c:4368 +#: elfxx-x86.c:4338 +msgid "%P: failed to create %sn" +msgstr "" + +#: elfxx-x86.c:4352 msgid "%P: %pB: warning: missing %s\n" msgstr "" -#: elfxx-x86.c:4369 +#: elfxx-x86.c:4353 msgid "%X%P: %pB: error: missing %s\n" msgstr "" -#: elfxx-x86.c:4475 +#: elfxx-x86.c:4459 msgid "IBT and SHSTK properties" msgstr "" -#: elfxx-x86.c:4477 +#: elfxx-x86.c:4461 msgid "IBT property" msgstr "" -#: elfxx-x86.c:4479 +#: elfxx-x86.c:4463 msgid "SHSTK property" msgstr "" -#: elfxx-x86.c:4484 +#: elfxx-x86.c:4468 msgid "LAM_U48 property" msgstr "" -#: elfxx-x86.c:4489 +#: elfxx-x86.c:4473 msgid "LAM_U57 property" msgstr "" -#: elfxx-x86.c:4667 -msgid "%F%P: failed to create VxWorks dynamic sections\n" +#: elfxx-x86.c:4651 +msgid "%P: failed to create VxWorks dynamic sections\n" msgstr "" -#: elfxx-x86.c:4676 -msgid "%F%P: failed to create GOT sections\n" +#: elfxx-x86.c:4660 +msgid "%P: failed to create GOT sections\n" msgstr "" -#: elfxx-x86.c:4694 -msgid "%F%P: failed to create ifunc sections\n" +#: elfxx-x86.c:4678 +msgid "%P: failed to create ifunc sections\n" msgstr "" -#: elfxx-x86.c:4731 -msgid "%F%P: failed to create GOT PLT section\n" +#: elfxx-x86.c:4717 +msgid "%P: failed to create GOT PLT section\n" msgstr "" -#: elfxx-x86.c:4750 -msgid "%F%P: failed to create IBT-enabled PLT section\n" +#: elfxx-x86.c:4734 +msgid "%P: failed to create IBT-enabled PLT section\n" msgstr "" -#: elfxx-x86.c:4770 -msgid "%F%P: failed to create PLT .eh_frame section\n" +#: elfxx-x86.c:4752 +msgid "%P: failed to create PLT .eh_frame section\n" msgstr "" -#: elfxx-x86.c:4783 -msgid "%F%P: failed to create GOT PLT .eh_frame section\n" +#: elfxx-x86.c:4763 +msgid "%P: failed to create GOT PLT .eh_frame section\n" msgstr "" -#: elfxx-x86.c:4797 -msgid "%F%P: failed to create the second PLT .eh_frame section\n" +#: elfxx-x86.c:4775 +msgid "%P: failed to create the second PLT .eh_frame section\n" msgstr "" -#: elfxx-x86.c:4817 -msgid "%F%P: failed to create PLT .sframe section\n" +#: elfxx-x86.c:4790 +msgid "%P: failed to create PLT .sframe section\n" msgstr "" -#: elfxx-x86.c:4832 -msgid "%F%P: failed to create second PLT .sframe section\n" +#: elfxx-x86.c:4806 +msgid "%P: failed to create second PLT .sframe section\n" msgstr "" -#: elfxx-x86.c:4844 -msgid "%F%P: failed to create PLT GOT .sframe section\n" +#: elfxx-x86.c:4819 +msgid "%P: failed to create PLT GOT .sframe section\n" msgstr "" -#: elfxx-x86.c:4883 +#: elfxx-x86.c:4859 msgid "%X%P: attempted static link of dynamic object `%pB'\n" msgstr "" @@ -6517,48 +6609,48 @@ msgstr "" msgid "%pB: mapped section %pA has non-NULL buffer" msgstr "" -#: linker.c:1731 +#: linker.c:1749 #, c-format msgid "%pB: indirect symbol `%s' to `%s' is a loop" msgstr "" -#: linker.c:1811 +#: linker.c:1829 msgid "" "%P: %pB: note: the message above does not take linker garbage collection " "into account\n" msgstr "" -#: linker.c:2617 +#: linker.c:2663 #, c-format msgid "attempt to do relocatable link with %s input and %s output" msgstr "" -#: linker.c:2896 +#: linker.c:2942 #, c-format msgid "%pB: ignoring duplicate section `%pA'\n" msgstr "" -#: linker.c:2906 linker.c:2916 +#: linker.c:2952 linker.c:2962 #, c-format msgid "%pB: duplicate section `%pA' has different size\n" msgstr "" -#: linker.c:2930 linker.c:2938 +#: linker.c:2976 linker.c:2984 #, c-format msgid "%pB: could not read contents of section `%pA'\n" msgstr "" -#: linker.c:2947 +#: linker.c:2993 #, c-format msgid "%pB: duplicate section `%pA' has different contents\n" msgstr "" -#: linker.c:3466 +#: linker.c:3517 #, c-format msgid "%pB: compiled for a big endian system and target is little endian" msgstr "" -#: linker.c:3469 +#: linker.c:3520 #, c-format msgid "%pB: compiled for a little endian system and target is big endian" msgstr "" @@ -6597,151 +6689,151 @@ msgstr "" msgid "malformed mach-o ARM reloc: unknown reloc type: %d" msgstr "" -#: mach-o.c:640 +#: mach-o.c:642 #, c-format msgid "<unknown mask flags>" msgstr "" -#: mach-o.c:695 +#: mach-o.c:697 msgid " (<unknown>)" msgstr "" -#: mach-o.c:707 +#: mach-o.c:709 #, c-format msgid " MACH-O header:\n" msgstr "" -#: mach-o.c:708 +#: mach-o.c:710 #, c-format msgid " magic: %#lx\n" msgstr "" -#: mach-o.c:709 +#: mach-o.c:711 #, c-format msgid " cputype: %#lx (%s)\n" msgstr "" -#: mach-o.c:711 +#: mach-o.c:713 #, c-format msgid " cpusubtype: %#lx%s\n" msgstr "" -#: mach-o.c:713 +#: mach-o.c:715 #, c-format msgid " filetype: %#lx\n" msgstr "" -#: mach-o.c:714 +#: mach-o.c:716 #, c-format msgid " ncmds: %#lx\n" msgstr "" -#: mach-o.c:715 +#: mach-o.c:717 #, c-format msgid " sizeocmds: %#lx\n" msgstr "" -#: mach-o.c:716 +#: mach-o.c:718 #, c-format msgid " flags: %#lx\n" msgstr "" -#: mach-o.c:717 +#: mach-o.c:719 #, c-format msgid " version: %x\n" msgstr "" #. Urg - what has happened ? -#: mach-o.c:752 +#: mach-o.c:754 #, c-format msgid "incompatible cputypes in mach-o files: %ld vs %ld" msgstr "" -#: mach-o.c:921 +#: mach-o.c:923 msgid "bfd_mach_o_canonicalize_symtab: unable to load symbols" msgstr "" -#: mach-o.c:1513 +#: mach-o.c:1515 msgid "" "malformed mach-o reloc: section index is greater than the number of sections" msgstr "" -#: mach-o.c:2155 +#: mach-o.c:2157 msgid "" "sorry: modtab, toc and extrefsyms are not yet implemented for dysymtab " "commands." msgstr "" -#: mach-o.c:2603 +#: mach-o.c:2605 #, c-format msgid "mach-o: there are too many sections (%u) maximum is 255,\n" msgstr "" -#: mach-o.c:2695 +#: mach-o.c:2697 #, c-format msgid "unable to allocate data for load command %#x" msgstr "" -#: mach-o.c:2800 +#: mach-o.c:2802 #, c-format msgid "unable to write unknown load command %#x" msgstr "" -#: mach-o.c:2984 +#: mach-o.c:2986 #, c-format msgid "section address (%#<PRIx64>) below start of segment (%#<PRIx64>)" msgstr "" -#: mach-o.c:3126 +#: mach-o.c:3128 #, c-format msgid "unable to layout unknown load command %#x" msgstr "" -#: mach-o.c:3652 +#: mach-o.c:3654 #, c-format msgid "bfd_mach_o_read_section_32: overlarge alignment value: %#lx" msgstr "" -#: mach-o.c:3695 +#: mach-o.c:3697 #, c-format msgid "bfd_mach_o_read_section_64: overlarge alignment value: %#lx" msgstr "" -#: mach-o.c:3746 +#: mach-o.c:3748 #, c-format msgid "bfd_mach_o_read_symtab_symbol: unable to read %d bytes at %u" msgstr "" -#: mach-o.c:3765 +#: mach-o.c:3767 #, c-format msgid "bfd_mach_o_read_symtab_symbol: name out of range (%lu >= %u)" msgstr "" -#: mach-o.c:3848 +#: mach-o.c:3850 #, c-format msgid "" "bfd_mach_o_read_symtab_symbol: symbol \"%s\" specified invalid section %d " "(max %lu): setting to undefined" msgstr "" -#: mach-o.c:3867 +#: mach-o.c:3869 #, c-format msgid "" "bfd_mach_o_read_symtab_symbol: symbol \"%s\" specified invalid type field 0x%" "x: setting to undefined" msgstr "" -#: mach-o.c:5066 +#: mach-o.c:5068 #, c-format msgid "%pB: unknown load command %#x" msgstr "" -#: mach-o.c:5264 +#: mach-o.c:5266 #, c-format msgid "bfd_mach_o_scan: unknown architecture 0x%lx/0x%lx" msgstr "" -#: mach-o.c:5389 +#: mach-o.c:5391 #, c-format msgid "unknown header byte-order value %#x" msgstr "" @@ -6914,57 +7006,57 @@ msgstr "" msgid "bfd_pef_scan: unknown architecture 0x%lx" msgstr "" -#: pei-x86_64.c:174 pei-x86_64.c:228 pei-x86_64.c:238 pei-x86_64.c:263 -#: pei-x86_64.c:275 pei-x86_64.c:289 pei-x86_64.c:307 pei-x86_64.c:319 -#: pei-x86_64.c:331 +#: pei-x86_64.c:176 pei-x86_64.c:230 pei-x86_64.c:240 pei-x86_64.c:265 +#: pei-x86_64.c:277 pei-x86_64.c:291 pei-x86_64.c:309 pei-x86_64.c:321 +#: pei-x86_64.c:333 #, c-format msgid "warning: corrupt unwind data\n" msgstr "" #. PR 17512: file: 2245-7442-0.004. -#: pei-x86_64.c:352 +#: pei-x86_64.c:354 #, c-format msgid "Unknown: %x" msgstr "" -#: pei-x86_64.c:403 pei-x86_64.c:413 pei-x86_64.c:422 +#: pei-x86_64.c:405 pei-x86_64.c:415 pei-x86_64.c:424 #, c-format msgid "warning: xdata section corrupt\n" msgstr "" -#: pei-x86_64.c:477 +#: pei-x86_64.c:479 #, c-format msgid "Too many unwind codes (%ld)\n" msgstr "" -#: pei-x86_64.c:563 +#: pei-x86_64.c:565 #, c-format msgid "Warning: %s section size (%ld) is not a multiple of %d\n" msgstr "" -#: pei-x86_64.c:570 +#: pei-x86_64.c:572 #, c-format msgid "Warning: %s section size is zero\n" msgstr "" -#: pei-x86_64.c:585 +#: pei-x86_64.c:587 #, c-format msgid "Warning: %s section size (%ld) is smaller than virtual size (%ld)\n" msgstr "" -#: pei-x86_64.c:594 +#: pei-x86_64.c:596 #, c-format msgid "" "\n" "The Function Table (interpreted %s section contents)\n" msgstr "" -#: pei-x86_64.c:597 +#: pei-x86_64.c:599 #, c-format msgid "vma:\t\t\tBeginAddress\t EndAddress\t UnwindData\n" msgstr "" -#: pei-x86_64.c:722 +#: pei-x86_64.c:724 #, c-format msgid "" "\n" @@ -6986,74 +7078,74 @@ msgstr "" msgid "%pB: unrecognized import name type; %x" msgstr "" -#: peicode.h:1298 +#: peicode.h:1299 #, c-format msgid "%pB: unrecognised machine type (0x%x) in Import Library Format archive" msgstr "" -#: peicode.h:1311 +#: peicode.h:1312 #, c-format msgid "" "%pB: recognised but unhandled machine type (0x%x) in Import Library Format " "archive" msgstr "" -#: peicode.h:1329 +#: peicode.h:1330 #, c-format msgid "%pB: size field is zero in Import Library Format header" msgstr "" -#: peicode.h:1355 +#: peicode.h:1356 #, c-format msgid "%pB: string not null terminated in ILF object file" msgstr "" -#: peicode.h:1426 +#: peicode.h:1427 #, c-format msgid "%pB: error: debug data ends beyond end of debug directory" msgstr "" -#: peicode.h:1598 +#: peicode.h:1599 #, c-format msgid "%pB: adjusting invalid SectionAlignment" msgstr "" -#: peicode.h:1608 +#: peicode.h:1609 #, c-format msgid "%pB: adjusting invalid FileAlignment" msgstr "" -#: peicode.h:1616 +#: peicode.h:1617 #, c-format msgid "%pB: invalid NumberOfRvaAndSizes" msgstr "" -#: plugin.c:197 +#: plugin.c:195 #, c-format msgid "%s: failed to open to extract object only section: %s" msgstr "" -#: plugin.c:214 +#: plugin.c:212 #, c-format msgid "%pB: invalid file to extract object only section: %s" msgstr "" -#: plugin.c:227 +#: plugin.c:225 #, c-format msgid "%pB: failed to extract object only section: %s" msgstr "" -#: plugin.c:247 +#: plugin.c:245 #, c-format msgid "%pB: failed to open object only section: %s" msgstr "" -#: plugin.c:257 +#: plugin.c:255 #, c-format msgid "%pB: failed to get symbol table in object only section: %s" msgstr "" -#: plugin.c:413 +#: plugin.c:411 msgid "" "plugin framework: out of file descriptors. Try using fewer objects/archives\n" msgstr "" @@ -7107,17 +7199,17 @@ msgstr "" msgid "Partition[%d] length = 0x%.8lx (%ld)\n" msgstr "" -#: reloc.c:8417 +#: reloc.c:8423 msgid "INPUT_SECTION_FLAGS are not supported" msgstr "" -#: reloc.c:8683 +#: reloc.c:8689 #, c-format msgid "%pB: unrecognized relocation type %#x in section `%pA'" msgstr "" #. PR 21803: Suggest the most likely cause of this error. -#: reloc.c:8687 +#: reloc.c:8693 #, c-format msgid "is this version of the linker - %s - out of date ?" msgstr "" @@ -7143,14 +7235,14 @@ msgstr "" msgid "%pB[%pA]: no output section for space %pA" msgstr "" -#: som.c:5449 +#: som.c:5450 #, c-format msgid "" "\n" "Exec Auxiliary Header\n" msgstr "" -#: som.c:5758 +#: som.c:5759 msgid "som_sizeof_headers unimplemented" msgstr "" @@ -7174,7 +7266,7 @@ msgstr "" msgid "%pB(%pA+%#lx): stabs entry has invalid string index" msgstr "" -#: syms.c:1120 +#: syms.c:1121 msgid "unsupported .stab relocation" msgstr "" @@ -9179,11 +9271,11 @@ msgstr "" #. FIXME: we do not yet support relocatable link. It is not obvious #. how to do it for debug infos. -#: vms-alpha.c:9570 +#: vms-alpha.c:9571 msgid "%P: relocatable link is not supported\n" msgstr "" -#: vms-alpha.c:9641 +#: vms-alpha.c:9642 #, c-format msgid "%P: multiple entry points: in modules %pB and %pB\n" msgstr "" @@ -9201,122 +9293,122 @@ msgstr "" msgid "_bfd_vms_output_counted called with too many bytes" msgstr "" -#: xcofflink.c:462 +#: xcofflink.c:505 #, c-format msgid "%pB: warning: illegal symbol index %lu in relocs" msgstr "" -#: xcofflink.c:881 +#: xcofflink.c:924 #, c-format msgid "%pB: XCOFF shared object when not producing XCOFF output" msgstr "" -#: xcofflink.c:902 +#: xcofflink.c:945 #, c-format msgid "%pB: dynamic object with no .loader section" msgstr "" -#: xcofflink.c:1484 +#: xcofflink.c:1527 #, c-format msgid "%pB: `%s' has line numbers but no enclosing section" msgstr "" -#: xcofflink.c:1540 +#: xcofflink.c:1583 #, c-format msgid "%pB: class %d symbol `%s' has no aux entries" msgstr "" -#: xcofflink.c:1563 +#: xcofflink.c:1606 #, c-format msgid "%pB: symbol `%s' has unrecognized csect type %d" msgstr "" -#: xcofflink.c:1576 +#: xcofflink.c:1619 #, c-format msgid "%pB: bad XTY_ER symbol `%s': class %d scnum %d scnlen %<PRId64>" msgstr "" -#: xcofflink.c:1607 +#: xcofflink.c:1650 #, c-format msgid "%pB: XMC_TC0 symbol `%s' is class %d scnlen %<PRIu64>" msgstr "" -#: xcofflink.c:1742 +#: xcofflink.c:1785 #, c-format msgid "%pB: TOC entry `%s' has a R_TLSMLrelocation not targeting itself" msgstr "" -#: xcofflink.c:1776 +#: xcofflink.c:1819 #, c-format msgid "%pB: csect `%s' not in enclosing section" msgstr "" -#: xcofflink.c:1885 +#: xcofflink.c:1928 #, c-format msgid "%pB: misplaced XTY_LD `%s'" msgstr "" -#: xcofflink.c:2228 +#: xcofflink.c:2271 #, c-format msgid "%pB: reloc %s:%<PRId64> not in csect" msgstr "" -#: xcofflink.c:3337 +#: xcofflink.c:3380 #, c-format msgid "%pB: cannot export internal symbol `%s`." msgstr "" -#: xcofflink.c:3385 +#: xcofflink.c:3428 #, c-format msgid "%s: no such symbol" msgstr "" -#: xcofflink.c:3494 +#: xcofflink.c:3537 #, c-format msgid "warning: attempt to export undefined symbol `%s'" msgstr "" -#: xcofflink.c:3842 +#: xcofflink.c:3885 msgid "error: undefined symbol __rtinit" msgstr "" -#: xcofflink.c:4855 +#: xcofflink.c:4902 #, c-format msgid "" "%pB: Unable to find a stub csect in rangeof relocation at %#<PRIx64> " "targeting'%s'" msgstr "" -#: xcofflink.c:4884 +#: xcofflink.c:4931 #, c-format msgid "%pB: Cannot create stub entry '%s'" msgstr "" -#: xcofflink.c:5004 +#: xcofflink.c:5051 msgid "TOC overflow during stub generation; try -mminimal-toc when compiling" msgstr "" -#: xcofflink.c:5072 +#: xcofflink.c:5119 #, c-format msgid "%pB: loader reloc in unrecognized section `%s'" msgstr "" -#: xcofflink.c:5084 +#: xcofflink.c:5131 #, c-format msgid "%pB: `%s' in loader reloc but not loader sym" msgstr "" -#: xcofflink.c:5101 +#: xcofflink.c:5148 #, c-format msgid "%pB: loader reloc in read-only section %pA" msgstr "" -#: xcofflink.c:6180 +#: xcofflink.c:6227 #, c-format msgid "TOC overflow: %#<PRIx64> > 0x10000; try -mminimal-toc when compiling" msgstr "" -#: xcofflink.c:7296 +#: xcofflink.c:7343 #, c-format msgid "Unable to link input file: %s" msgstr "" @@ -9341,23 +9433,23 @@ msgid "%s is defined but plugin support is disabled" msgstr "" #. Not fatal, this callback cannot fail. -#: elfnn-aarch64.c:2878 -#: elfnn-riscv.c:5739 +#: elfnn-aarch64.c:2889 +#: elfnn-riscv.c:5940 #, c-format msgid "unknown attribute for symbol `%s': 0x%02x" msgstr "" -#: elfnn-aarch64.c:5468 +#: elfnn-aarch64.c:5486 #, c-format msgid "%pB: error: erratum 835769 stub out of range (input file too large)" msgstr "" -#: elfnn-aarch64.c:5560 +#: elfnn-aarch64.c:5578 #, c-format msgid "%pB: error: erratum 843419 stub out of range (input file too large)" msgstr "" -#: elfnn-aarch64.c:5573 +#: elfnn-aarch64.c:5591 #, c-format msgid "" "%pB: error: erratum 843419 immediate 0x%<PRIx64> out of range for ADR (input " @@ -9365,257 +9457,264 @@ msgid "" "fix-cortex-a53-843419=full instead" msgstr "" -#: elfnn-aarch64.c:6116 +#: elfnn-aarch64.c:6134 #, c-format msgid "" "%pB: relocation %s against symbol `%s' which may bind externally can not be " "used when making a shared object; recompile with -fPIC" msgstr "" -#: elfnn-aarch64.c:6136 +#: elfnn-aarch64.c:6154 #, c-format msgid "%pB: conditional branch to undefined symbol `%s' not allowed" msgstr "" -#: elfnn-aarch64.c:6224 -#: elfnn-kvx.c:2381 +#: elfnn-aarch64.c:6242 +#: elfnn-kvx.c:2382 #, c-format msgid "" "%pB: local symbol descriptor table be NULL when applying relocation %s " "against local symbol" msgstr "" -#: elfnn-aarch64.c:6338 -#: elfnn-aarch64.c:6375 +#: elfnn-aarch64.c:6356 +#: elfnn-aarch64.c:6393 #, c-format msgid "%pB: TLS relocation %s against undefined symbol `%s'" msgstr "" -#: elfnn-aarch64.c:7366 +#: elfnn-aarch64.c:7384 msgid "too many GOT entries for -fpic, please recompile with -fPIC" msgstr "" -#: elfnn-aarch64.c:7394 +#: elfnn-aarch64.c:7412 msgid "" "one possible cause of this error is that the symbol is being referenced in " "the indicated code as if it had a larger alignment than was declared where " "it was defined" msgstr "" -#: elfnn-aarch64.c:7961 +#: elfnn-aarch64.c:7979 #, c-format msgid "" "%pB: relocation %s against `%s' can not be used when making a shared object" msgstr "" -#: elfnn-aarch64.c:8922 +#: elfnn-aarch64.c:8940 #, c-format -msgid "%F%P: %pB: copy relocation against non-copyable protected symbol `%s'\n" +msgid "%P: %pB: copy relocation against non-copyable protected symbol `%s'\n" msgstr "" #: elfnn-kvx.c:929 msgid "" -"%F%P: Could not assign '%pA' to an output section. Retry without --enable-" -"non-contiguous-regions.\n" +"%P: Could not assign '%pA' to an output section. Retry without --enable-non-" +"contiguous-regions.\n" msgstr "" -#: elfnn-kvx.c:2126 +#: elfnn-kvx.c:2127 #, c-format msgid "%pB(%pA+%#<PRIx64>): unresolvable %s relocation in section `%s'" msgstr "" -#: elfnn-kvx.c:2850 +#: elfnn-kvx.c:2851 #, c-format msgid "%s: Bad ELF id: `%d'" msgstr "" -#: elfnn-kvx.c:2905 +#: elfnn-kvx.c:2906 #, c-format msgid "%s: compiled as 32-bit object and %s is 64-bit" msgstr "" -#: elfnn-kvx.c:2908 +#: elfnn-kvx.c:2909 #, c-format msgid "%s: compiled as 64-bit object and %s is 32-bit" msgstr "" -#: elfnn-kvx.c:2910 +#: elfnn-kvx.c:2911 #, c-format msgid "%s: object size does not match that of target %s" msgstr "" #. Ignore init flag - it may not be set, despite the flags field #. containing valid data. -#: elfnn-kvx.c:2998 +#: elfnn-kvx.c:2999 #, c-format msgid "Private flags = 0x%lx : " msgstr "" -#: elfnn-kvx.c:3002 +#: elfnn-kvx.c:3003 #, c-format msgid "Coolidge (kv3) V1 64 bits" msgstr "" -#: elfnn-kvx.c:3004 +#: elfnn-kvx.c:3005 #, c-format msgid "Coolidge (kv3) V2 64 bits" msgstr "" -#: elfnn-kvx.c:3006 +#: elfnn-kvx.c:3007 #, c-format msgid "Coolidge (kv4) V1 64 bits" msgstr "" -#: elfnn-kvx.c:3011 +#: elfnn-kvx.c:3012 #, c-format msgid "Coolidge (kv3) V1 32 bits" msgstr "" -#: elfnn-kvx.c:3013 +#: elfnn-kvx.c:3014 #, c-format msgid "Coolidge (kv3) V2 32 bits" msgstr "" -#: elfnn-kvx.c:3015 +#: elfnn-kvx.c:3016 #, c-format msgid "Coolidge (kv4) V1 32 bits" msgstr "" -#: elfnn-kvx.c:3847 +#: elfnn-kvx.c:3848 #, c-format msgid "relocation against `%s' has faulty GOT type " msgstr "" -#: elfnn-loongarch.c:294 -#: elfnn-loongarch.c:346 +#: elfnn-loongarch.c:303 +#: elfnn-loongarch.c:355 #, c-format msgid "%#<PRIx64> invaild imm" msgstr "" -#: elfnn-loongarch.c:528 -#: elfnn-riscv.c:4182 +#: elfnn-loongarch.c:537 +#: elfnn-riscv.c:4383 #, c-format msgid "" "%pB: ABI is incompatible with that of the selected emulation:\n" " target emulation `%s' does not match `%s'" msgstr "" -#: elfnn-loongarch.c:583 +#: elfnn-loongarch.c:592 #, c-format msgid "%pB: can't link different ABI object." msgstr "" -#: elfnn-loongarch.c:726 +#: elfnn-loongarch.c:735 msgid "Internal error: unreachable." msgstr "" -#: elfnn-loongarch.c:906 +#: elfnn-loongarch.c:915 #, c-format msgid "" "%pB:(%pA+%#lx): relocation %s against `%s` can not be used when making %s; " "recompile with %s%s" msgstr "" -#: elfnn-loongarch.c:910 +#: elfnn-loongarch.c:919 msgid " and check the symbol visibility" msgstr "" -#: elfnn-loongarch.c:1036 +#: elfnn-loongarch.c:1045 #, c-format msgid "" "%pB: stack based reloc type (%u) is not supported with -z pack-relative-" "relocs" msgstr "" -#: elfnn-loongarch.c:1231 +#: elfnn-loongarch.c:1240 #, c-format msgid "" "%pB: relocation R_LARCH_32 against non-absolute symbol `%s' cannot be used " "in ELFCLASS64 when making a shared object or PIE" msgstr "" -#: elfnn-loongarch.c:1296 +#: elfnn-loongarch.c:1305 #, c-format msgid "" "%pB: R_LARCH_ALIGN with offset %<PRId64> not aligned to instruction boundary" msgstr "" -#: elfnn-loongarch.c:4174 +#: elfnn-loongarch.c:4196 msgid "" "cannot resolve R_LARCH_PCREL20_S2 against undefined weak symbol with addend " "out of [-2048, 2048)" msgstr "" -#: elfnn-loongarch.c:4684 +#: elfnn-loongarch.c:4706 msgid "recompile with 'gcc -mno-relax' or 'as -mno-relax' or 'ld --no-relax'" msgstr "" -#: elfnn-loongarch.c:5301 -#: elfnn-riscv.c:4967 +#: elfnn-loongarch.c:5584 +#: elfnn-riscv.c:5168 #, c-format msgid "" "%pB(%pA+%#<PRIx64>): %<PRId64> bytes required for alignment to %<PRId64>-" "byte boundary, but only %<PRId64> present" msgstr "" -#: elfnn-riscv.c:329 -#: elfnn-riscv.c:364 +#: elfnn-riscv.c:385 +#: elfnn-riscv.c:436 +#: elfnn-riscv.c:484 +#: elfnn-riscv.c:520 #, c-format msgid "%pB: warning: RVE PLT generation not supported" msgstr "" -#: elfnn-riscv.c:927 +#: elfnn-riscv.c:675 +#, c-format +msgid "%pB: error: unsupported PLT type: %u" +msgstr "" + +#: elfnn-riscv.c:1120 #, c-format msgid "" "%pB: relocation %s against absolute symbol `%s' can not be used when making " "a shared object" msgstr "" -#: elfnn-riscv.c:969 +#: elfnn-riscv.c:1162 #, c-format msgid "" "%pB: relocation %s against non-absolute symbol `%s' can not be used in RV32 " "when making a shared object" msgstr "" -#: elfnn-riscv.c:1898 +#: elfnn-riscv.c:2095 #, c-format msgid "" "final size of uleb128 value at offset 0x%lx in %pA from %pB exceeds " "available space" msgstr "" -#: elfnn-riscv.c:2140 +#: elfnn-riscv.c:2337 #, c-format msgid "%pcrel_lo missing matching %pcrel_hi" msgstr "" -#: elfnn-riscv.c:2143 +#: elfnn-riscv.c:2340 #, c-format msgid "%pcrel_lo with addend isn't allowed for R_RISCV_GOT_HI20" msgstr "" #. Check the overflow when adding reloc addend. -#: elfnn-riscv.c:2148 +#: elfnn-riscv.c:2345 #, c-format msgid "" "%%pcrel_lo overflow with an addend, the value of %%pcrel_hi is 0x%<PRIx64> " "without any addend, but may be 0x%<PRIx64> after adding the %%pcrel_lo addend" msgstr "" -#: elfnn-riscv.c:2156 +#: elfnn-riscv.c:2353 #, c-format msgid "%pcrel_lo overflow with an addend" msgstr "" -#: elfnn-riscv.c:2639 +#: elfnn-riscv.c:2843 #, c-format msgid "" "%pB: warning: R_RISCV_SUB_ULEB128 with non-zero addend, please rebuild by " "binutils 2.42 or up" msgstr "" -#: elfnn-riscv.c:2719 +#: elfnn-riscv.c:2923 msgid "The addend isn't allowed for R_RISCV_GOT_HI20" msgstr "" @@ -9633,99 +9732,99 @@ msgstr "" #. #. Perhaps we also need the similar checks for the #. R_RISCV_BRANCH and R_RISCV_RVC_BRANCH relocations. -#: elfnn-riscv.c:2820 +#: elfnn-riscv.c:3022 #, c-format msgid "" "%%X%%P: relocation %s against `%s' which may bind externally can not be used " "when making a shared object; recompile with -fPIC\n" msgstr "" -#: elfnn-riscv.c:2902 +#: elfnn-riscv.c:3103 #, c-format msgid "%pcrel_lo section symbol with an addend" msgstr "" -#: elfnn-riscv.c:2923 +#: elfnn-riscv.c:3124 #, c-format msgid "%tlsdesc_lo with addend" msgstr "" -#: elfnn-riscv.c:3156 +#: elfnn-riscv.c:3357 #, c-format msgid "%%X%%P: unresolvable %s relocation against symbol `%s'\n" msgstr "" -#: elfnn-riscv.c:3191 +#: elfnn-riscv.c:3392 msgid "%X%P: internal error: out of range error\n" msgstr "" -#: elfnn-riscv.c:3196 +#: elfnn-riscv.c:3397 msgid "%X%P: internal error: unsupported relocation error\n" msgstr "" -#: elfnn-riscv.c:3202 +#: elfnn-riscv.c:3403 msgid "dangerous relocation error" msgstr "" -#: elfnn-riscv.c:3208 +#: elfnn-riscv.c:3409 msgid "%X%P: internal error: unknown error\n" msgstr "" -#: elfnn-riscv.c:3785 +#: elfnn-riscv.c:3982 #, c-format msgid "" "error: %pB: corrupted ISA string '%s'. First letter should be 'i' or 'e' " "but got '%s'" msgstr "" -#: elfnn-riscv.c:3828 +#: elfnn-riscv.c:4025 #, c-format msgid "error: %pB: mis-matched ISA string to merge '%s' and '%s'" msgstr "" -#: elfnn-riscv.c:3965 +#: elfnn-riscv.c:4162 #, c-format msgid "error: %pB: ISA string of input (%s) doesn't match output (%s)" msgstr "" -#: elfnn-riscv.c:3985 +#: elfnn-riscv.c:4182 #, c-format msgid "error: %pB: XLEN of input (%u) doesn't match output (%u)" msgstr "" -#: elfnn-riscv.c:3993 +#: elfnn-riscv.c:4190 #, c-format msgid "error: %pB: unsupported XLEN (%u), you might be using wrong emulation" msgstr "" -#: elfnn-riscv.c:4113 +#: elfnn-riscv.c:4314 msgid "" "warning: privileged spec version 1.9.1 can not be linked with other spec " "versions" msgstr "" -#: elfnn-riscv.c:4141 +#: elfnn-riscv.c:4342 #, c-format msgid "" "error: %pB use %u-byte stack aligned but the output use %u-byte stack aligned" msgstr "" -#: elfnn-riscv.c:4238 +#: elfnn-riscv.c:4439 #, c-format msgid "%pB: can't link %s modules with %s modules" msgstr "" -#: elfnn-riscv.c:4248 +#: elfnn-riscv.c:4449 #, c-format msgid "%pB: can't link RVE with other target" msgstr "" -#: elfnn-riscv.c:4272 +#: elfnn-riscv.c:4473 #, c-format msgid "warning: %pB: unknown RISCV ABI object attribute %d" msgstr "" -#: elfnn-riscv.c:969 +#: elfnn-riscv.c:1162 #, c-format msgid "" "%pB: relocation %s against non-absolute symbol `%s' can not be used in RV64 " @@ -9747,175 +9846,175 @@ msgstr "" msgid "%pB: unable to create fake empty section" msgstr "" -#: peXXigen.c:924 peXXigen.c:924 +#: peXXigen.c:928 peXXigen.c:928 #, c-format msgid "%pB:%.8s: section below image base" msgstr "" -#: peXXigen.c:929 peXXigen.c:929 +#: peXXigen.c:933 peXXigen.c:933 #, c-format msgid "%pB:%.8s: RVA truncated" msgstr "" -#: peXXigen.c:1061 peXXigen.c:1061 +#: peXXigen.c:1066 peXXigen.c:1066 #, c-format msgid "%pB: line number overflow: 0x%lx > 0xffff" msgstr "" -#: peXXigen.c:1227 peXXigen.c:1227 +#: peXXigen.c:1232 peXXigen.c:1232 msgid "Export Directory [.edata (or where ever we found it)]" msgstr "" -#: peXXigen.c:1228 peXXigen.c:1228 +#: peXXigen.c:1233 peXXigen.c:1233 msgid "Import Directory [parts of .idata]" msgstr "" -#: peXXigen.c:1229 peXXigen.c:1229 +#: peXXigen.c:1234 peXXigen.c:1234 msgid "Resource Directory [.rsrc]" msgstr "" -#: peXXigen.c:1230 peXXigen.c:1230 +#: peXXigen.c:1235 peXXigen.c:1235 msgid "Exception Directory [.pdata]" msgstr "" -#: peXXigen.c:1231 peXXigen.c:1231 +#: peXXigen.c:1236 peXXigen.c:1236 msgid "Security Directory" msgstr "" -#: peXXigen.c:1232 peXXigen.c:1232 +#: peXXigen.c:1237 peXXigen.c:1237 msgid "Base Relocation Directory [.reloc]" msgstr "" -#: peXXigen.c:1233 peXXigen.c:1233 +#: peXXigen.c:1238 peXXigen.c:1238 msgid "Debug Directory" msgstr "" -#: peXXigen.c:1234 peXXigen.c:1234 +#: peXXigen.c:1239 peXXigen.c:1239 msgid "Description Directory" msgstr "" -#: peXXigen.c:1235 peXXigen.c:1235 +#: peXXigen.c:1240 peXXigen.c:1240 msgid "Special Directory" msgstr "" -#: peXXigen.c:1236 peXXigen.c:1236 +#: peXXigen.c:1241 peXXigen.c:1241 msgid "Thread Storage Directory [.tls]" msgstr "" -#: peXXigen.c:1237 peXXigen.c:1237 +#: peXXigen.c:1242 peXXigen.c:1242 msgid "Load Configuration Directory" msgstr "" -#: peXXigen.c:1238 peXXigen.c:1238 +#: peXXigen.c:1243 peXXigen.c:1243 msgid "Bound Import Directory" msgstr "" -#: peXXigen.c:1239 peXXigen.c:1239 +#: peXXigen.c:1244 peXXigen.c:1244 msgid "Import Address Table Directory" msgstr "" -#: peXXigen.c:1240 peXXigen.c:1240 +#: peXXigen.c:1245 peXXigen.c:1245 msgid "Delay Import Directory" msgstr "" -#: peXXigen.c:1241 peXXigen.c:1241 +#: peXXigen.c:1246 peXXigen.c:1246 msgid "CLR Runtime Header" msgstr "" -#: peXXigen.c:1242 peXXigen.c:1242 +#: peXXigen.c:1247 peXXigen.c:1247 msgid "Reserved" msgstr "" -#: peXXigen.c:1307 peXXigen.c:1307 +#: peXXigen.c:1312 peXXigen.c:1312 #, c-format msgid "" "\n" "There is an import table, but the section containing it could not be found\n" msgstr "" -#: peXXigen.c:1313 peXXigen.c:1313 +#: peXXigen.c:1318 peXXigen.c:1318 #, c-format msgid "" "\n" "There is an import table in %s, but that section has no contents\n" msgstr "" -#: peXXigen.c:1320 peXXigen.c:1320 +#: peXXigen.c:1325 peXXigen.c:1325 #, c-format msgid "" "\n" "There is an import table in %s at 0x%lx\n" msgstr "" -#: peXXigen.c:1326 peXXigen.c:1326 +#: peXXigen.c:1331 peXXigen.c:1331 #, c-format msgid "" "\n" "The Import Tables (interpreted %s section contents)\n" msgstr "" -#: peXXigen.c:1329 peXXigen.c:1329 +#: peXXigen.c:1334 peXXigen.c:1334 #, c-format msgid "" " vma: Hint Time Forward DLL First\n" " Table Stamp Chain Name Thunk\n" msgstr "" -#: peXXigen.c:1378 peXXigen.c:1378 +#: peXXigen.c:1383 peXXigen.c:1383 #, c-format msgid "" "\n" "\tDLL Name: %.*s\n" msgstr "" -#: peXXigen.c:1394 peXXigen.c:1394 +#: peXXigen.c:1399 peXXigen.c:1399 #, c-format msgid "\tvma: Ordinal Hint Member-Name Bound-To\n" msgstr "" -#: peXXigen.c:1419 peXXigen.c:1419 +#: peXXigen.c:1424 peXXigen.c:1424 #, c-format msgid "" "\n" "There is a first thunk, but the section containing it could not be found\n" msgstr "" -#: peXXigen.c:1469 -#: peXXigen.c:1514 peXXigen.c:1469 -#: peXXigen.c:1514 +#: peXXigen.c:1474 +#: peXXigen.c:1519 peXXigen.c:1474 +#: peXXigen.c:1519 #, c-format msgid "\t<corrupt: 0x%08lx>" msgstr "" -#: peXXigen.c:1608 peXXigen.c:1608 +#: peXXigen.c:1613 peXXigen.c:1613 #, c-format msgid "" "\n" "There is an export table, but the section containing it could not be found\n" msgstr "" -#: peXXigen.c:1621 peXXigen.c:1621 +#: peXXigen.c:1626 peXXigen.c:1626 #, c-format msgid "" "\n" "There is an export table in %s, but it is too small (%d)\n" msgstr "" -#: peXXigen.c:1629 peXXigen.c:1629 +#: peXXigen.c:1634 peXXigen.c:1634 #, c-format msgid "" "\n" "There is an export table in %s, but contents cannot be read\n" msgstr "" -#: peXXigen.c:1635 peXXigen.c:1635 +#: peXXigen.c:1640 peXXigen.c:1640 #, c-format msgid "" "\n" "There is an export table in %s at 0x%lx\n" msgstr "" -#: peXXigen.c:1666 peXXigen.c:1666 +#: peXXigen.c:1671 peXXigen.c:1671 #, c-format msgid "" "\n" @@ -9923,149 +10022,149 @@ msgid "" "\n" msgstr "" -#: peXXigen.c:1670 peXXigen.c:1670 +#: peXXigen.c:1675 peXXigen.c:1675 #, c-format msgid "Export Flags \t\t\t%lx\n" msgstr "" -#: peXXigen.c:1673 peXXigen.c:1673 +#: peXXigen.c:1678 peXXigen.c:1678 #, c-format msgid "Time/Date stamp \t\t%lx\n" msgstr "" -#: peXXigen.c:1677 peXXigen.c:1677 +#: peXXigen.c:1682 peXXigen.c:1682 #, c-format msgid "Major/Minor \t\t\t%d/%d\n" msgstr "" -#: peXXigen.c:1680 peXXigen.c:1680 +#: peXXigen.c:1685 peXXigen.c:1685 #, c-format msgid "Name \t\t\t\t" msgstr "" -#: peXXigen.c:1691 peXXigen.c:1691 +#: peXXigen.c:1696 peXXigen.c:1696 #, c-format msgid "Ordinal Base \t\t\t%ld\n" msgstr "" -#: peXXigen.c:1694 peXXigen.c:1694 +#: peXXigen.c:1699 peXXigen.c:1699 #, c-format msgid "Number in:\n" msgstr "" -#: peXXigen.c:1697 peXXigen.c:1697 +#: peXXigen.c:1702 peXXigen.c:1702 #, c-format msgid "\tExport Address Table \t\t%08lx\n" msgstr "" -#: peXXigen.c:1701 peXXigen.c:1701 +#: peXXigen.c:1706 peXXigen.c:1706 #, c-format msgid "\t[Name Pointer/Ordinal] Table\t%08lx\n" msgstr "" -#: peXXigen.c:1704 peXXigen.c:1704 +#: peXXigen.c:1709 peXXigen.c:1709 #, c-format msgid "Table Addresses\n" msgstr "" -#: peXXigen.c:1707 peXXigen.c:1707 +#: peXXigen.c:1712 peXXigen.c:1712 #, c-format msgid "\tExport Address Table \t\t" msgstr "" -#: peXXigen.c:1712 peXXigen.c:1712 +#: peXXigen.c:1717 peXXigen.c:1717 #, c-format msgid "\tName Pointer Table \t\t" msgstr "" -#: peXXigen.c:1717 peXXigen.c:1717 +#: peXXigen.c:1722 peXXigen.c:1722 #, c-format msgid "\tOrdinal Table \t\t\t" msgstr "" -#: peXXigen.c:1731 peXXigen.c:1731 +#: peXXigen.c:1736 peXXigen.c:1736 #, c-format msgid "" "\n" "Export Address Table -- Ordinal Base %ld\n" msgstr "" -#: peXXigen.c:1741 peXXigen.c:1741 +#: peXXigen.c:1746 peXXigen.c:1746 #, c-format msgid "\tInvalid Export Address Table rva (0x%lx) or entry count (0x%lx)\n" msgstr "" -#: peXXigen.c:1760 peXXigen.c:1760 +#: peXXigen.c:1765 peXXigen.c:1765 msgid "Forwarder RVA" msgstr "" -#: peXXigen.c:1772 peXXigen.c:1772 +#: peXXigen.c:1777 peXXigen.c:1777 msgid "Export RVA" msgstr "" -#: peXXigen.c:1779 peXXigen.c:1779 +#: peXXigen.c:1784 peXXigen.c:1784 #, c-format msgid "" "\n" "[Ordinal/Name Pointer] Table -- Ordinal Base %ld\n" msgstr "" -#: peXXigen.c:1789 peXXigen.c:1789 +#: peXXigen.c:1794 peXXigen.c:1794 #, c-format msgid "\tInvalid Name Pointer Table rva (0x%lx) or entry count (0x%lx)\n" msgstr "" -#: peXXigen.c:1796 peXXigen.c:1796 +#: peXXigen.c:1801 peXXigen.c:1801 #, c-format msgid "\tInvalid Ordinal Table rva (0x%lx) or entry count (0x%lx)\n" msgstr "" -#: peXXigen.c:1810 peXXigen.c:1810 +#: peXXigen.c:1815 peXXigen.c:1815 #, c-format msgid "\t[%4ld] +base[%4ld] %04lx <corrupt offset: %lx>\n" msgstr "" -#: peXXigen.c:1867 -#: peXXigen.c:2037 peXXigen.c:1867 -#: peXXigen.c:2037 +#: peXXigen.c:1872 +#: peXXigen.c:2042 peXXigen.c:1872 +#: peXXigen.c:2042 #, c-format msgid "warning, .pdata section size (%ld) is not a multiple of %d\n" msgstr "" -#: peXXigen.c:1871 -#: peXXigen.c:2041 peXXigen.c:1871 -#: peXXigen.c:2041 +#: peXXigen.c:1876 +#: peXXigen.c:2046 peXXigen.c:1876 +#: peXXigen.c:2046 #, c-format msgid "" "\n" "The Function Table (interpreted .pdata section contents)\n" msgstr "" -#: peXXigen.c:1874 peXXigen.c:1874 +#: peXXigen.c:1879 peXXigen.c:1879 #, c-format msgid " vma:\t\t\tBegin Address End Address Unwind Info\n" msgstr "" -#: peXXigen.c:1876 peXXigen.c:1876 +#: peXXigen.c:1881 peXXigen.c:1881 #, c-format msgid "" " vma:\t\tBegin End EH EH PrologEnd Exception\n" " \t\tAddress Address Handler Data Address Mask\n" msgstr "" -#: peXXigen.c:1889 peXXigen.c:1889 +#: peXXigen.c:1894 peXXigen.c:1894 #, c-format msgid "Virtual size of .pdata section (%ld) larger than real size (%ld)\n" msgstr "" -#: peXXigen.c:2043 peXXigen.c:2043 +#: peXXigen.c:2048 peXXigen.c:2048 #, c-format msgid "" " vma:\t\tBegin Prolog Function Flags Exception EH\n" " \t\tAddress Length Length 32b exc Handler Data\n" msgstr "" -#: peXXigen.c:2168 peXXigen.c:2168 +#: peXXigen.c:2173 peXXigen.c:2173 #, c-format msgid "" "\n" @@ -10073,86 +10172,86 @@ msgid "" "PE File Base Relocations (interpreted .reloc section contents)\n" msgstr "" -#: peXXigen.c:2197 peXXigen.c:2197 +#: peXXigen.c:2202 peXXigen.c:2202 #, c-format msgid "" "\n" "Virtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n" msgstr "" -#: peXXigen.c:2215 peXXigen.c:2215 +#: peXXigen.c:2220 peXXigen.c:2220 #, c-format msgid "\treloc %4d offset %4x [%4lx] %s" msgstr "" -#: peXXigen.c:2276 peXXigen.c:2276 +#: peXXigen.c:2281 peXXigen.c:2281 #, c-format msgid "%03x %*.s Entry: " msgstr "" -#: peXXigen.c:2300 peXXigen.c:2300 +#: peXXigen.c:2305 peXXigen.c:2305 #, c-format msgid "name: [val: %08lx len %d]: " msgstr "" -#: peXXigen.c:2320 peXXigen.c:2320 +#: peXXigen.c:2325 peXXigen.c:2325 #, c-format msgid "<corrupt string length: %#x>\n" msgstr "" -#: peXXigen.c:2330 peXXigen.c:2330 +#: peXXigen.c:2335 peXXigen.c:2335 #, c-format msgid "<corrupt string offset: %#lx>\n" msgstr "" -#: peXXigen.c:2335 peXXigen.c:2335 +#: peXXigen.c:2340 peXXigen.c:2340 #, c-format msgid "ID: %#08lx" msgstr "" -#: peXXigen.c:2338 peXXigen.c:2338 +#: peXXigen.c:2343 peXXigen.c:2343 #, c-format msgid ", Value: %#08lx\n" msgstr "" -#: peXXigen.c:2360 peXXigen.c:2360 +#: peXXigen.c:2365 peXXigen.c:2365 #, c-format msgid "%03x %*.s Leaf: Addr: %#08lx, Size: %#08lx, Codepage: %d\n" msgstr "" -#: peXXigen.c:2402 peXXigen.c:2402 +#: peXXigen.c:2407 peXXigen.c:2407 #, c-format msgid "<unknown directory type: %d>\n" msgstr "" -#: peXXigen.c:2410 peXXigen.c:2410 +#: peXXigen.c:2415 peXXigen.c:2415 #, c-format msgid " Table: Char: %d, Time: %08lx, Ver: %d/%d, Num Names: %d, IDs: %d\n" msgstr "" -#: peXXigen.c:2498 peXXigen.c:2498 +#: peXXigen.c:2503 peXXigen.c:2503 #, c-format msgid "Corrupt .rsrc section detected!\n" msgstr "" -#: peXXigen.c:2522 peXXigen.c:2522 +#: peXXigen.c:2527 peXXigen.c:2527 #, c-format msgid "" "\n" "WARNING: Extra data in .rsrc section - it will be ignored by Windows:\n" msgstr "" -#: peXXigen.c:2528 peXXigen.c:2528 +#: peXXigen.c:2533 peXXigen.c:2533 #, c-format msgid " String table starts at offset: %#03x\n" msgstr "" -#: peXXigen.c:2531 peXXigen.c:2531 +#: peXXigen.c:2536 peXXigen.c:2536 #, c-format msgid " Resources start at offset: %#03x\n" msgstr "" -#: peXXigen.c:2588 peXXigen.c:2588 +#: peXXigen.c:2593 peXXigen.c:2593 #, c-format msgid "" "\n" @@ -10160,14 +10259,14 @@ msgid "" "found\n" msgstr "" -#: peXXigen.c:2594 peXXigen.c:2594 +#: peXXigen.c:2599 peXXigen.c:2599 #, c-format msgid "" "\n" "There is a debug directory in %s, but that section has no contents\n" msgstr "" -#: peXXigen.c:2601 peXXigen.c:2601 +#: peXXigen.c:2606 peXXigen.c:2606 #, c-format msgid "" "\n" @@ -10175,7 +10274,7 @@ msgid "" "small\n" msgstr "" -#: peXXigen.c:2606 peXXigen.c:2606 +#: peXXigen.c:2611 peXXigen.c:2611 #, c-format msgid "" "\n" @@ -10183,23 +10282,23 @@ msgid "" "\n" msgstr "" -#: peXXigen.c:2613 peXXigen.c:2613 +#: peXXigen.c:2618 peXXigen.c:2618 #, c-format msgid "" "The debug data size field in the data directory is too big for the section" msgstr "" -#: peXXigen.c:2618 peXXigen.c:2618 +#: peXXigen.c:2623 peXXigen.c:2623 #, c-format msgid "Type Size Rva Offset\n" msgstr "" -#: peXXigen.c:2666 peXXigen.c:2666 +#: peXXigen.c:2671 peXXigen.c:2671 #, c-format msgid "(format %c%c%c%c signature %s age %ld pdb %s)\n" msgstr "" -#: peXXigen.c:2678 peXXigen.c:2678 +#: peXXigen.c:2683 peXXigen.c:2683 #, c-format msgid "" "The debug directory size is not a multiple of the debug directory entry " @@ -10209,100 +10308,101 @@ msgstr "" #. The MS dumpbin program reportedly ands with 0xff0f before #. printing the characteristics field. Not sure why. No reason to #. emulate it here. -#: peXXigen.c:2762 peXXigen.c:2762 +#: peXXigen.c:2767 peXXigen.c:2767 #, c-format msgid "" "\n" "Characteristics 0x%x\n" msgstr "" -#: peXXigen.c:3047 peXXigen.c:3047 +#: peXXigen.c:3052 peXXigen.c:3052 #, c-format msgid "" "%pB: Data Directory (%lx bytes at %<PRIx64>) extends across section boundary " "at %<PRIx64>" msgstr "" -#: peXXigen.c:3088 peXXigen.c:3088 +#: peXXigen.c:3093 peXXigen.c:3093 msgid "failed to update file offsets in debug directory" msgstr "" -#: peXXigen.c:3097 peXXigen.c:3097 +#: peXXigen.c:3102 peXXigen.c:3102 #, c-format msgid "%pB: failed to read debug data section" msgstr "" -#: peXXigen.c:3900 peXXigen.c:3900 +#: peXXigen.c:3907 peXXigen.c:3907 #, c-format msgid ".rsrc merge failure: duplicate string resource: %d" msgstr "" -#: peXXigen.c:4035 peXXigen.c:4035 +#: peXXigen.c:4042 peXXigen.c:4042 msgid ".rsrc merge failure: multiple non-default manifests" msgstr "" -#: peXXigen.c:4053 peXXigen.c:4053 +#: peXXigen.c:4060 peXXigen.c:4060 msgid ".rsrc merge failure: a directory matches a leaf" msgstr "" -#: peXXigen.c:4095 peXXigen.c:4095 +#: peXXigen.c:4102 peXXigen.c:4102 msgid ".rsrc merge failure: duplicate leaf" msgstr "" -#: peXXigen.c:4100 peXXigen.c:4100 +#: peXXigen.c:4107 peXXigen.c:4107 #, c-format msgid ".rsrc merge failure: duplicate leaf: %s" msgstr "" -#: peXXigen.c:4167 peXXigen.c:4167 +#: peXXigen.c:4174 peXXigen.c:4174 msgid ".rsrc merge failure: dirs with differing characteristics" msgstr "" -#: peXXigen.c:4174 peXXigen.c:4174 +#: peXXigen.c:4181 peXXigen.c:4181 msgid ".rsrc merge failure: differing directory versions" msgstr "" #. Corrupted .rsrc section - cannot merge. -#: peXXigen.c:4286 peXXigen.c:4286 +#: peXXigen.c:4293 peXXigen.c:4293 #, c-format msgid "%pB: .rsrc merge failure: corrupt .rsrc section" msgstr "" -#: peXXigen.c:4294 peXXigen.c:4294 +#: peXXigen.c:4301 peXXigen.c:4301 #, c-format msgid "%pB: .rsrc merge failure: unexpected .rsrc size" msgstr "" -#: peXXigen.c:4433 peXXigen.c:4433 -#, c-format -msgid "%pB: unable to fill in DataDictionary[1] because .idata$2 is missing" -msgstr "" - -#: peXXigen.c:4453 peXXigen.c:4453 +#: peXXigen.c:4441 +#: peXXigen.c:4461 +#: peXXigen.c:4482 +#: peXXigen.c:4502 peXXigen.c:4441 +#: peXXigen.c:4461 peXXigen.c:4482 peXXigen.c:4502 #, c-format -msgid "%pB: unable to fill in DataDictionary[1] because .idata$4 is missing" +msgid "%pB: unable to fill in DataDirectory[%d]: %s is missing" msgstr "" -#: peXXigen.c:4474 peXXigen.c:4474 +#: peXXigen.c:4544 +#: peXXigen.c:4590 +#: peXXigen.c:4614 +#: peXXigen.c:4698 peXXigen.c:4544 +#: peXXigen.c:4590 peXXigen.c:4614 peXXigen.c:4698 #, c-format -msgid "%pB: unable to fill in DataDictionary[12] because .idata$5 is missing" +msgid "%pB: unable to fill in DataDirectory[%d]: %s not defined correctly" msgstr "" -#: peXXigen.c:4494 peXXigen.c:4494 +#: peXXigen.c:4651 peXXigen.c:4651 #, c-format -msgid "" -"%pB: unable to fill in DataDictionary[PE_IMPORT_ADDRESS_TABLE (12)] because ." -"idata$6 is missing" +msgid "%pB: unable to fill in DataDirectory[%d]: %s not properly aligned" msgstr "" -#: peXXigen.c:4536 peXXigen.c:4536 +#: peXXigen.c:4682 peXXigen.c:4682 #, c-format msgid "" -"%pB: unable to fill in DataDictionary[PE_IMPORT_ADDRESS_TABLE(12)] because ." -"idata$6 is missing" +"%pB: unable to fill in DataDirectory[%d]: size too large for the containing " +"section" msgstr "" -#: peXXigen.c:4561 peXXigen.c:4561 +#: peXXigen.c:4690 peXXigen.c:4690 #, c-format -msgid "%pB: unable to fill in DataDictionary[9] because __tls_used is missing" +msgid "%pB: unable to fill in DataDirectory[%d]: size can't be read from %s" msgstr "" diff --git a/bfd/version.h b/bfd/version.h index 761f1f4..8973126 100644 --- a/bfd/version.h +++ b/bfd/version.h @@ -16,7 +16,7 @@ In releases, the date is not included in either version strings or sonames. */ -#define BFD_VERSION_DATE 20250711 +#define BFD_VERSION_DATE 20250713 #define BFD_VERSION @bfd_version@ #define BFD_VERSION_STRING @bfd_version_package@ @bfd_version_string@ #define REPORT_BUGS_TO @report_bugs_to@ diff --git a/bfd/version.m4 b/bfd/version.m4 index 14f7756..5cb6993 100644 --- a/bfd/version.m4 +++ b/bfd/version.m4 @@ -1 +1 @@ -m4_define([BFD_VERSION], [2.44.50]) +m4_define([BFD_VERSION], [2.45.50]) diff --git a/binutils/BRANCHES b/binutils/BRANCHES index b3cdeeb..dfab2dd 100644 --- a/binutils/BRANCHES +++ b/binutils/BRANCHES @@ -60,6 +60,7 @@ binutils-2_41-branch binutils-2_42-branch binutils-2_43-branch binutils-2_44-branch +binutils-2_45-branch Copyright (C) 2012-2025 Free Software Foundation, Inc. diff --git a/binutils/ChangeLog b/binutils/ChangeLog index b0bd1e2..0577cf9 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2025-07-13 Nick Clifton <nickc@redhat.com> + + * 2.45 Branch point. + 2025-01-19 Nick Clifton <nickc@redhat.com> * 2.44 Branch point. diff --git a/binutils/NEWS b/binutils/NEWS index 0635687..281de00 100644 --- a/binutils/NEWS +++ b/binutils/NEWS @@ -1,5 +1,19 @@ -*- text -*- +Changes in 2.45: + +* New versioned release of libsframe: libsframe.so.2. This release introduces + versioned symbols with version node name LIBSFRAME_2.0. Some new symbols + have been added to support the new flag SFRAME_F_FDE_FUNC_START_PCREL and + retrieving flags from SFrame decoder and encoder objects: + - Addition of sframe_decoder_get_flags, + sframe_decoder_get_offsetof_fde_start_addr, sframe_encoder_get_flags, + sframe_encoder_get_offsetof_fde_start_addr. + This release also includes backward-incompatible ABI changes: + - Removal of sframe_get_funcdesc_with_addr. + - Change in the behavior of sframe_decoder_get_funcdesc_v2, + sframe_encoder_add_funcdesc_v2 and sframe_encoder_write. + * On s390 64-bit (s390x), gas, ld, objdump, and readelf now support generating and processing SFrame V2 stack trace information (.sframe). The assembler generates SFrame info from CFI directives with option "--gsframe". The @@ -24,6 +38,10 @@ * For RISC-V dis-assembler, the definition of mapping symbol $x is changed, so the file needs to be rebuilt since 2.45 once used .option arch directives. +* The LoongArch disassembler now properly accepts multiple disassembly + options given by -M, such as "-M no-aliases,numeric". (Previously only the + first option took effect.) + Changes in 2.44: * Support for Nios II targets has been removed except in the readelf utility, diff --git a/binutils/README-how-to-make-a-release b/binutils/README-how-to-make-a-release index 574aa9d..5e7ecac 100644 --- a/binutils/README-how-to-make-a-release +++ b/binutils/README-how-to-make-a-release @@ -55,8 +55,8 @@ Approx time to complete from here: 2 hours ... 4. Create the release branch using: - git branch binutils-2_45-branch - git push origin binutils-2_45-branch + git branch binutils-2_46-branch + git push origin binutils-2_46-branch If you get a message like: @@ -66,7 +66,7 @@ Approx time to complete from here: 2 hours ... 5. Make sure that the branch is there. IE check out the branch sources: - git clone ssh://sourceware.org/git/binutils-gdb.git -b binutils-2_45-branch 2.45 + git clone ssh://sourceware.org/git/binutils-gdb.git -b binutils-2_46-branch 2.46 If you get a message about being in a "detached head" state, something has gone wrong... @@ -88,8 +88,8 @@ Approx time to complete from here: 2 hours ... ask Joel Brobecker <brobecker AT adacore DOT com>. 7. Rename the current HEAD version entry in Bugzilla, and create a - new one. E.g. rename "2.45 (HEAD)" to 2.45, and create - "2.46 (HEAD)": + new one. E.g. rename "2.46 (HEAD)" to 2.46, and create + "2.47 (HEAD)": https://sourceware.org/bugzilla/editversions.cgi?product=binutils @@ -97,18 +97,18 @@ Approx time to complete from here: 2 hours ... of the next release and the BRANCH to indicate that it is almost ready for the release. - So if the release is going to be 2.45 then the version number on - the BRANCH should be set to 2.44.90 - ie almost, but not quite 2.45, - and the version number on the MAINLINE should be set to 2.45.50 - - ie half way to 2.46 release. + So if the release is going to be 2.46 then the version number on + the BRANCH should be set to 2.45.90 - ie almost, but not quite 2.46, + and the version number on the MAINLINE should be set to 2.46.50 - + ie half way to 2.47 release. So the BRANCH bfd/version.m4 has: - m4_define([BFD_VERSION], [2.44.90]) + m4_define([BFD_VERSION], [2.45.90]) and the MAINLINE has: - m4_define([BFD_VERSION], [2.45.50]) + m4_define([BFD_VERSION], [2.46.50]) Regenerate various files on both branch and HEAD by configuring with "--enable-maintainer-mode --enable-gold --enable-shared" and then building @@ -140,10 +140,10 @@ Approx time to complete from here: 2 hours ... Add a .dirstamp file to the gas/doc subdirectory: - touch -d `date +%Y-%m-%d` binutils-2.44.90/gas/doc/.dirstamp - tar rvf binutils-2.44.90.tar binutils-2.44.90/gas/doc/.dirstamp - rm binutils-2.44.90.tar.xz - xz -9 -k binutils-2.44.90.tar + touch -d `date +%Y-%m-%d` binutils-2.45.90/gas/doc/.dirstamp + tar rvf binutils-2.45.90.tar binutils-2.45.90/gas/doc/.dirstamp + rm binutils-2.45.90.tar.xz + xz -9 -k binutils-2.45.90.tar ...END OF FIXME @@ -154,7 +154,12 @@ Approx time to complete from here: 2 hours ... tar xvf binutils-*.tar.xz mkdir build cd build + + For EVEN numbered releases: ../binutils-*/configure --quiet --enable-gold + For ODD numbered releases: + ../binutils-*/configure --quiet + make popd @@ -162,8 +167,8 @@ Approx time to complete from here: 2 hours ... d. Upload the pre-release snapshot to the sourceware FTP site: - scp binutils-2.44.90.tar.xz sourceware.org:/var/ftp/pub/binutils/snapshots - ssh sourceware.org sha256sum ~ftp/pub/binutils/snapshots/binutils-2.44.90.tar.xz + scp binutils-2.45.90.tar.xz sourceware.org:/var/ftp/pub/binutils/snapshots + ssh sourceware.org sha256sum ~ftp/pub/binutils/snapshots/binutils-2.45.90.tar.xz Paranoia: Compare the checksum with the local version. @@ -182,7 +187,7 @@ Dear Translation Project A snapshot of the branch sources can be found here: - https://sourceware.org/pub/binutils/snapshots/binutils-2.44.90.tar.xz + https://sourceware.org/pub/binutils/snapshots/binutils-2.45.90.tar.xz We hope to make the official release of the sources on the <DATE> although that could change if there are important bugs that need to diff --git a/binutils/configure b/binutils/configure index 4b24376..6f54be9 100755 --- a/binutils/configure +++ b/binutils/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for binutils 2.44.50. +# Generated by GNU Autoconf 2.69 for binutils 2.45.50. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -587,8 +587,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='binutils' PACKAGE_TARNAME='binutils' -PACKAGE_VERSION='2.44.50' -PACKAGE_STRING='binutils 2.44.50' +PACKAGE_VERSION='2.45.50' +PACKAGE_STRING='binutils 2.45.50' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1407,7 +1407,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures binutils 2.44.50 to adapt to many kinds of systems. +\`configure' configures binutils 2.45.50 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1478,7 +1478,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of binutils 2.44.50:";; + short | recursive ) echo "Configuration of binutils 2.45.50:";; esac cat <<\_ACEOF @@ -1640,7 +1640,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -binutils configure 2.44.50 +binutils configure 2.45.50 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2108,7 +2108,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by binutils $as_me 2.44.50, which was +It was created by binutils $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3091,7 +3091,7 @@ fi # Define the identity of the package. PACKAGE='binutils' - VERSION='2.44.50' + VERSION='2.45.50' cat >>confdefs.h <<_ACEOF @@ -16879,7 +16879,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by binutils $as_me 2.44.50, which was +This file was extended by binutils $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -16945,7 +16945,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -binutils config.status 2.44.50 +binutils config.status 2.45.50 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/binutils/dwarf.c b/binutils/dwarf.c index e0e202f..f4bcb67 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -8582,6 +8582,8 @@ typedef struct Frame_Chunk } Frame_Chunk; +typedef bool (*is_mach_augmentation_ftype) (char c); +static is_mach_augmentation_ftype is_mach_augmentation; typedef const char *(*dwarf_regname_lookup_ftype) (unsigned int); static dwarf_regname_lookup_ftype dwarf_regnames_lookup_func; static const char *const *dwarf_regnames; @@ -8894,9 +8896,22 @@ init_dwarf_regnames_loongarch (void) dwarf_regnames_lookup_func = regname_internal_by_table_only; } +static bool +is_nomach_augmentation (char c ATTRIBUTE_UNUSED) +{ + return false; +} + +static bool +is_aarch64_augmentation (char c) +{ + return (c == 'B' || c == 'G'); +} + void -init_dwarf_regnames_by_elf_machine_code (unsigned int e_machine) +init_dwarf_by_elf_machine_code (unsigned int e_machine) { + is_mach_augmentation = is_nomach_augmentation; dwarf_regnames_lookup_func = NULL; is_aarch64 = false; @@ -8918,6 +8933,7 @@ init_dwarf_regnames_by_elf_machine_code (unsigned int e_machine) case EM_AARCH64: init_dwarf_regnames_aarch64 (); + is_mach_augmentation = is_aarch64_augmentation; break; case EM_S390: @@ -8941,9 +8957,10 @@ init_dwarf_regnames_by_elf_machine_code (unsigned int e_machine) architecture and specific machine type of a BFD. */ void -init_dwarf_regnames_by_bfd_arch_and_mach (enum bfd_architecture arch, - unsigned long mach) +init_dwarf_by_bfd_arch_and_mach (enum bfd_architecture arch, + unsigned long mach) { + is_mach_augmentation = is_nomach_augmentation; dwarf_regnames_lookup_func = NULL; is_aarch64 = false; @@ -8971,6 +8988,7 @@ init_dwarf_regnames_by_bfd_arch_and_mach (enum bfd_architecture arch, case bfd_arch_aarch64: init_dwarf_regnames_aarch64(); + is_mach_augmentation = is_aarch64_augmentation; break; case bfd_arch_s390: @@ -9216,7 +9234,7 @@ read_cie (unsigned char *start, unsigned char *end, fc->fde_encoding = *q++; else if (*p == 'S') ; - else if (*p == 'B') + else if (is_mach_augmentation (*p)) ; else break; diff --git a/binutils/dwarf.h b/binutils/dwarf.h index 6f693b1..13afb4a 100644 --- a/binutils/dwarf.h +++ b/binutils/dwarf.h @@ -241,9 +241,9 @@ extern unsigned long dwarf_start_die; extern int dwarf_check; -extern void init_dwarf_regnames_by_elf_machine_code (unsigned int); -extern void init_dwarf_regnames_by_bfd_arch_and_mach (enum bfd_architecture arch, - unsigned long mach); +extern void init_dwarf_by_elf_machine_code (unsigned int); +extern void init_dwarf_by_bfd_arch_and_mach (enum bfd_architecture arch, + unsigned long mach); extern bool load_debug_section (enum dwarf_section_display_enum, void *); extern void free_debug_section (enum dwarf_section_display_enum); diff --git a/binutils/objdump.c b/binutils/objdump.c index 7bb6d76..98d3049 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -4551,8 +4551,8 @@ dump_dwarf (bfd *abfd, bool is_mainfile) break; } - init_dwarf_regnames_by_bfd_arch_and_mach (bfd_get_arch (abfd), - bfd_get_mach (abfd)); + init_dwarf_by_bfd_arch_and_mach (bfd_get_arch (abfd), + bfd_get_mach (abfd)); bfd_map_over_sections (abfd, dump_dwarf_section, (void *) &is_mainfile); } diff --git a/binutils/po/binutils.pot b/binutils/po/binutils.pot index e9a21df..2760c4c 100644 --- a/binutils/po/binutils.pot +++ b/binutils/po/binutils.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n" -"POT-Creation-Date: 2025-01-19 12:23+0000\n" +"POT-Creation-Date: 2025-07-13 08:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -56,10 +56,10 @@ msgid "" "\n" msgstr "" -#: addr2line.c:111 ar.c:354 ar.c:391 coffdump.c:470 dlltool.c:3724 -#: dllwrap.c:518 elfedit.c:976 objcopy.c:706 objcopy.c:762 readelf.c:6328 +#: addr2line.c:111 ar.c:356 ar.c:393 coffdump.c:470 dlltool.c:3770 +#: dllwrap.c:518 elfedit.c:987 objcopy.c:717 objcopy.c:777 readelf.c:6332 #: size.c:110 srconv.c:1705 strings.c:1361 sysdump.c:655 windmc.c:227 -#: windres.c:690 +#: windres.c:670 #, c-format msgid "Report bugs to %s\n" msgstr "" @@ -95,266 +95,266 @@ msgstr "" msgid "%s: cannot find section %s" msgstr "" -#: addr2line.c:514 ar.c:750 dlltool.c:3240 nm.c:1981 objcopy.c:6222 -#: objdump.c:5982 size.c:152 strings.c:356 windmc.c:958 windres.c:816 +#: addr2line.c:514 ar.c:759 dlltool.c:3285 nm.c:1995 objcopy.c:6268 +#: objdump.c:6023 size.c:152 strings.c:356 windmc.c:958 windres.c:796 msgid "fatal error: libbfd ABI mismatch" msgstr "" -#: addr2line.c:541 nm.c:2007 objdump.c:6034 readelf.c:6635 +#: addr2line.c:541 nm.c:2021 objdump.c:6075 readelf.c:6647 #, c-format msgid "unknown demangling style `%s'" msgstr "" -#: ar.c:270 +#: ar.c:272 #, c-format msgid "no entry %s in archive\n" msgstr "" -#: ar.c:284 +#: ar.c:286 #, c-format msgid "" "Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoOPsSTuvV] [--plugin " "<name>] [member-name] [count] archive-file file...\n" msgstr "" -#: ar.c:290 +#: ar.c:292 #, c-format msgid "" "Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoOPsSTuvV] [member-" "name] [count] archive-file file...\n" msgstr "" -#: ar.c:298 +#: ar.c:300 #, c-format msgid " %s -M [<mri-script]\n" msgstr "" -#: ar.c:299 +#: ar.c:301 #, c-format msgid " commands:\n" msgstr "" -#: ar.c:300 +#: ar.c:302 #, c-format msgid " d - delete file(s) from the archive\n" msgstr "" -#: ar.c:301 +#: ar.c:303 #, c-format msgid " m[ab] - move file(s) in the archive\n" msgstr "" -#: ar.c:302 +#: ar.c:304 #, c-format msgid " p - print file(s) found in the archive\n" msgstr "" -#: ar.c:303 +#: ar.c:305 #, c-format msgid " q[f] - quick append file(s) to the archive\n" msgstr "" -#: ar.c:304 +#: ar.c:306 #, c-format msgid "" " r[ab][f][u] - replace existing or insert new file(s) into the archive\n" msgstr "" -#: ar.c:305 +#: ar.c:307 #, c-format msgid " s - act as ranlib\n" msgstr "" -#: ar.c:306 +#: ar.c:308 #, c-format msgid " t[O][v] - display contents of the archive\n" msgstr "" -#: ar.c:307 +#: ar.c:309 #, c-format msgid " x[o] - extract file(s) from the archive\n" msgstr "" -#: ar.c:308 +#: ar.c:310 #, c-format msgid " command specific modifiers:\n" msgstr "" -#: ar.c:309 +#: ar.c:311 #, c-format msgid " [a] - put file(s) after [member-name]\n" msgstr "" -#: ar.c:310 +#: ar.c:312 #, c-format msgid " [b] - put file(s) before [member-name] (same as [i])\n" msgstr "" -#: ar.c:313 +#: ar.c:315 #, c-format msgid " [D] - use zero for timestamps and uids/gids (default)\n" msgstr "" -#: ar.c:315 +#: ar.c:317 #, c-format msgid " [U] - use actual timestamps and uids/gids\n" msgstr "" -#: ar.c:320 +#: ar.c:322 #, c-format msgid " [D] - use zero for timestamps and uids/gids\n" msgstr "" -#: ar.c:322 +#: ar.c:324 #, c-format msgid " [U] - use actual timestamps and uids/gids (default)\n" msgstr "" -#: ar.c:325 +#: ar.c:327 #, c-format msgid " [N] - use instance [count] of name\n" msgstr "" -#: ar.c:326 +#: ar.c:328 #, c-format msgid " [f] - truncate inserted file names\n" msgstr "" -#: ar.c:327 +#: ar.c:329 #, c-format msgid " [P] - use full path names when matching\n" msgstr "" -#: ar.c:328 +#: ar.c:330 #, c-format msgid " [o] - preserve original dates\n" msgstr "" -#: ar.c:329 +#: ar.c:331 #, c-format msgid " [O] - display offsets of files in the archive\n" msgstr "" -#: ar.c:330 +#: ar.c:332 #, c-format msgid "" " [u] - only replace files that are newer than current archive " "contents\n" msgstr "" -#: ar.c:331 +#: ar.c:333 #, c-format msgid " generic modifiers:\n" msgstr "" -#: ar.c:332 +#: ar.c:334 #, c-format msgid " [c] - do not warn if the library had to be created\n" msgstr "" -#: ar.c:333 +#: ar.c:335 #, c-format msgid " [s] - create an archive index (cf. ranlib)\n" msgstr "" -#: ar.c:334 +#: ar.c:336 #, c-format msgid " [l <text> ] - specify the dependencies of this library\n" msgstr "" -#: ar.c:335 +#: ar.c:337 #, c-format msgid " [S] - do not build a symbol table\n" msgstr "" -#: ar.c:336 +#: ar.c:338 #, c-format msgid " [T] - deprecated, use --thin instead\n" msgstr "" -#: ar.c:337 +#: ar.c:339 #, c-format msgid " [v] - be verbose\n" msgstr "" -#: ar.c:338 +#: ar.c:340 #, c-format msgid " [V] - display the version number\n" msgstr "" -#: ar.c:339 +#: ar.c:341 #, c-format msgid " @<file> - read options from <file>\n" msgstr "" -#: ar.c:340 +#: ar.c:342 #, c-format msgid " --target=BFDNAME - specify the target object format as BFDNAME\n" msgstr "" -#: ar.c:341 +#: ar.c:343 #, c-format msgid "" " --output=DIRNAME - specify the output directory for extraction operations\n" msgstr "" -#: ar.c:342 +#: ar.c:344 #, c-format msgid " --record-libdeps=<text> - specify the dependencies of this library\n" msgstr "" -#: ar.c:343 +#: ar.c:345 #, c-format msgid " --thin - make a thin archive\n" msgstr "" -#: ar.c:345 +#: ar.c:347 #, c-format msgid " optional:\n" msgstr "" -#: ar.c:346 +#: ar.c:348 #, c-format msgid " --plugin <p> - load the specified plugin\n" msgstr "" -#: ar.c:367 +#: ar.c:369 #, c-format msgid "Usage: %s [options] archive\n" msgstr "" -#: ar.c:368 +#: ar.c:370 #, c-format msgid " Generate an index to speed access to archives\n" msgstr "" -#: ar.c:369 +#: ar.c:371 #, c-format msgid "" " The options are:\n" " @<file> Read options from <file>\n" msgstr "" -#: ar.c:372 +#: ar.c:374 #, c-format msgid " --plugin <name> Load the specified plugin\n" msgstr "" -#: ar.c:376 +#: ar.c:378 #, c-format msgid "" " -D Use zero for symbol map timestamp (default)\n" " -U Use an actual symbol map timestamp\n" msgstr "" -#: ar.c:380 +#: ar.c:382 #, c-format msgid "" " -D Use zero for symbol map timestamp\n" " -U Use actual symbol map timestamp (default)\n" msgstr "" -#: ar.c:383 +#: ar.c:385 #, c-format msgid "" " -t Update the archive's symbol map timestamp\n" @@ -362,134 +362,134 @@ msgid "" " -v --version Print version information\n" msgstr "" -#: ar.c:507 +#: ar.c:509 msgid "two different operation options specified" msgstr "" -#: ar.c:543 +#: ar.c:545 msgid "libdeps specified more than once" msgstr "" -#: ar.c:604 ar.c:679 nm.c:2126 +#: ar.c:606 ar.c:681 nm.c:2140 objcopy.c:4996 #, c-format msgid "sorry - this program has been built without plugin support\n" msgstr "" -#: ar.c:806 +#: ar.c:815 msgid "no operation specified" msgstr "" -#: ar.c:809 +#: ar.c:818 msgid "`u' is only meaningful with the `r' option." msgstr "" -#: ar.c:812 +#: ar.c:821 msgid "" "`u' is not meaningful with the `D' option - replacement will always happen." msgstr "" -#: ar.c:815 +#: ar.c:824 msgid "`u' modifier ignored since `D' is the default (see `U')" msgstr "" -#: ar.c:824 +#: ar.c:833 msgid "missing position arg." msgstr "" -#: ar.c:830 +#: ar.c:839 msgid "`N' is only meaningful with the `x' and `d' options." msgstr "" -#: ar.c:832 +#: ar.c:841 msgid "`N' missing value." msgstr "" -#: ar.c:835 +#: ar.c:844 msgid "Value for `N' must be positive." msgstr "" -#: ar.c:851 +#: ar.c:860 msgid "`x' cannot be used on thin archives." msgstr "" -#: ar.c:865 +#: ar.c:874 msgid "Cannot create libdeps record." msgstr "" -#: ar.c:868 +#: ar.c:877 msgid "Cannot set libdeps record type to binary." msgstr "" -#: ar.c:871 +#: ar.c:880 msgid "Cannot set libdeps object format." msgstr "" -#: ar.c:874 +#: ar.c:883 msgid "Cannot make libdeps object writable." msgstr "" -#: ar.c:877 +#: ar.c:886 msgid "Cannot write libdeps record." msgstr "" -#: ar.c:880 +#: ar.c:889 msgid "Cannot make libdeps object readable." msgstr "" -#: ar.c:883 +#: ar.c:892 msgid "Cannot reset libdeps record type." msgstr "" -#: ar.c:955 +#: ar.c:964 #, c-format msgid "internal error -- this option not implemented" msgstr "" -#: ar.c:1026 +#: ar.c:1035 #, c-format msgid "creating %s" msgstr "" -#: ar.c:1051 +#: ar.c:1060 #, c-format msgid "Cannot convert existing library %s to thin format" msgstr "" -#: ar.c:1057 +#: ar.c:1066 #, c-format msgid "Cannot convert existing thin library %s to normal format" msgstr "" -#: ar.c:1088 ar.c:1193 ar.c:1522 objcopy.c:3716 +#: ar.c:1097 ar.c:1202 ar.c:1531 objcopy.c:3742 #, c-format msgid "internal stat error on %s" msgstr "" -#: ar.c:1108 ar.c:1220 +#: ar.c:1117 ar.c:1229 #, c-format msgid "%s is not a valid archive" msgstr "" -#: ar.c:1138 +#: ar.c:1147 #, c-format msgid "illegal output pathname for archive member: %s, using '%s' instead" msgstr "" -#: ar.c:1270 +#: ar.c:1279 msgid "could not create temporary file whilst writing archive" msgstr "" -#: ar.c:1420 +#: ar.c:1429 #, c-format msgid "No member named `%s'\n" msgstr "" -#: ar.c:1473 +#: ar.c:1482 #, c-format msgid "no entry %s in archive %s!" msgstr "" -#: ar.c:1655 +#: ar.c:1664 #, c-format msgid "%s: no archive map to update" msgstr "" @@ -623,37 +623,37 @@ msgstr "" msgid "BFD header file version %s\n" msgstr "" -#: bucomm.c:461 +#: bucomm.c:462 #, c-format msgid "<time data corrupt>" msgstr "" -#: bucomm.c:606 +#: bucomm.c:607 #, c-format msgid "%s: bad number: %s" msgstr "" -#: bucomm.c:626 strings.c:469 +#: bucomm.c:627 strings.c:469 #, c-format msgid "'%s': No such file" msgstr "" -#: bucomm.c:628 strings.c:471 +#: bucomm.c:629 strings.c:471 #, c-format msgid "Warning: could not locate '%s'. reason: %s" msgstr "" -#: bucomm.c:632 strings.c:477 +#: bucomm.c:633 strings.c:477 #, c-format msgid "Warning: '%s' is a directory" msgstr "" -#: bucomm.c:634 bucomm.c:647 +#: bucomm.c:635 bucomm.c:648 #, c-format msgid "Warning: '%s' is not an ordinary file" msgstr "" -#: bucomm.c:636 +#: bucomm.c:637 #, c-format msgid "Warning: '%s' has negative size, probably it is too large" msgstr "" @@ -763,7 +763,7 @@ msgstr "" msgid "Symbol %s, tag %d, number %d" msgstr "" -#: coffdump.c:345 readelf.c:20401 readelf.c:20497 +#: coffdump.c:345 readelf.c:20372 readelf.c:20468 #, c-format msgid "Type" msgstr "" @@ -975,7 +975,7 @@ msgstr "" msgid "%s: is not a COFF format file" msgstr "" -#: cxxfilt.c:124 nm.c:380 objdump.c:465 +#: cxxfilt.c:124 nm.c:388 objdump.c:470 #, c-format msgid "Report bugs to %s.\n" msgstr "" @@ -1102,16 +1102,16 @@ msgstr "" msgid "%s: Path components stripped from image name, '%s'." msgstr "" -#: dlltool.c:1038 +#: dlltool.c:1033 #, c-format msgid "NAME: %s base: %x" msgstr "" -#: dlltool.c:1041 dlltool.c:1062 +#: dlltool.c:1036 dlltool.c:1059 msgid "Can't have LIBRARY and NAME" msgstr "" -#: dlltool.c:1059 +#: dlltool.c:1056 #, c-format msgid "LIBRARY: %s base: %x" msgstr "" @@ -1121,474 +1121,474 @@ msgstr "" msgid "VERSION %d.%d\n" msgstr "" -#: dlltool.c:1261 +#: dlltool.c:1259 #, c-format msgid "run: %s %s" msgstr "" -#: dlltool.c:1302 resrc.c:289 +#: dlltool.c:1301 resrc.c:289 #, c-format msgid "wait: %s" msgstr "" -#: dlltool.c:1307 dllwrap.c:416 resrc.c:294 +#: dlltool.c:1306 dllwrap.c:416 resrc.c:294 #, c-format msgid "subprocess got fatal signal %d" msgstr "" -#: dlltool.c:1313 dllwrap.c:423 resrc.c:301 +#: dlltool.c:1312 dllwrap.c:423 resrc.c:301 #, c-format msgid "%s exited with status %d" msgstr "" -#: dlltool.c:1344 +#: dlltool.c:1335 #, c-format msgid "Sucking in info from %s section in %s" msgstr "" -#: dlltool.c:1486 +#: dlltool.c:1473 #, c-format msgid "Excluding symbol: %s" msgstr "" -#: dlltool.c:1575 dlltool.c:1586 nm.c:1410 nm.c:1419 +#: dlltool.c:1562 dlltool.c:1573 nm.c:1424 nm.c:1433 #, c-format msgid "%s: no symbols" msgstr "" #. FIXME: we ought to read in and block out the base relocations. -#: dlltool.c:1612 +#: dlltool.c:1599 #, c-format msgid "Done reading %s" msgstr "" -#: dlltool.c:1622 +#: dlltool.c:1609 #, c-format msgid "Unable to open object file: %s: %s" msgstr "" -#: dlltool.c:1625 +#: dlltool.c:1612 #, c-format msgid "Scanning object file %s" msgstr "" -#: dlltool.c:1645 +#: dlltool.c:1632 #, c-format msgid "Cannot produce mcore-elf dll from archive file: %s" msgstr "" -#: dlltool.c:1747 +#: dlltool.c:1734 msgid "Adding exports to output file" msgstr "" -#: dlltool.c:1799 +#: dlltool.c:1786 msgid "Added exports to output file" msgstr "" -#: dlltool.c:1966 +#: dlltool.c:1948 #, c-format msgid "Generating export file: %s" msgstr "" -#: dlltool.c:1971 +#: dlltool.c:1953 #, c-format msgid "Unable to open temporary assembler file: %s" msgstr "" -#: dlltool.c:1976 +#: dlltool.c:1958 #, c-format msgid "Opened temporary file: %s" msgstr "" -#: dlltool.c:2157 +#: dlltool.c:2144 msgid "failed to read the number of entries from base file" msgstr "" -#: dlltool.c:2208 +#: dlltool.c:2196 msgid "Generated exports file" msgstr "" -#: dlltool.c:2351 +#: dlltool.c:2345 #, c-format msgid "bfd_open failed open stub file: %s: %s" msgstr "" -#: dlltool.c:2355 +#: dlltool.c:2349 #, c-format msgid "Creating stub file: %s" msgstr "" -#: dlltool.c:2698 +#: dlltool.c:2689 #, c-format msgid "bfd_open failed reopen stub file: %s: %s" msgstr "" -#: dlltool.c:2712 dlltool.c:2791 +#: dlltool.c:2703 dlltool.c:2782 #, c-format msgid "failed to open temporary head file: %s" msgstr "" -#: dlltool.c:2776 dlltool.c:2866 +#: dlltool.c:2767 dlltool.c:2859 #, c-format msgid "failed to open temporary head file: %s: %s" msgstr "" -#: dlltool.c:2881 +#: dlltool.c:2874 dlltool.c:2925 #, c-format msgid "failed to open temporary tail file: %s" msgstr "" -#: dlltool.c:2917 +#: dlltool.c:2910 dlltool.c:2961 #, c-format msgid "failed to open temporary tail file: %s: %s" msgstr "" -#: dlltool.c:2940 +#: dlltool.c:2984 #, c-format msgid "Can't create .lib file: %s: %s" msgstr "" -#: dlltool.c:2944 +#: dlltool.c:2988 #, c-format msgid "Creating library file: %s" msgstr "" -#: dlltool.c:3028 dlltool.c:3034 +#: dlltool.c:3073 dlltool.c:3079 #, c-format msgid "cannot delete %s: %s" msgstr "" -#: dlltool.c:3039 +#: dlltool.c:3084 msgid "Created lib file" msgstr "" -#: dlltool.c:3245 +#: dlltool.c:3290 #, c-format msgid "Can't open .lib file: %s: %s" msgstr "" -#: dlltool.c:3253 dlltool.c:3275 +#: dlltool.c:3298 dlltool.c:3320 #, c-format msgid "%s is not a library" msgstr "" -#: dlltool.c:3293 +#: dlltool.c:3338 #, c-format msgid "Import library `%s' specifies two or more dlls" msgstr "" -#: dlltool.c:3304 +#: dlltool.c:3349 #, c-format msgid "Unable to determine dll name for `%s' (not an import library?)" msgstr "" -#: dlltool.c:3521 +#: dlltool.c:3566 #, c-format msgid "Warning, ignoring duplicate EXPORT %s %d,%d" msgstr "" -#: dlltool.c:3527 +#: dlltool.c:3572 #, c-format msgid "Error, duplicate EXPORT with ordinals: %s" msgstr "" -#: dlltool.c:3632 +#: dlltool.c:3677 msgid "Processing definitions" msgstr "" -#: dlltool.c:3664 +#: dlltool.c:3710 msgid "Processed definitions" msgstr "" #. xgetext:c-format -#: dlltool.c:3671 dllwrap.c:477 +#: dlltool.c:3717 dllwrap.c:477 #, c-format msgid "Usage %s <option(s)> <object-file(s)>\n" msgstr "" #. xgetext:c-format -#: dlltool.c:3673 +#: dlltool.c:3719 #, c-format msgid "" " -m --machine <machine> Create as DLL for <machine>. [default: %s]\n" msgstr "" -#: dlltool.c:3674 +#: dlltool.c:3720 #, c-format msgid "" " possible <machine>: arm[_interwork], arm64, i386, mcore[-elf]{-le|-" "be}, thumb\n" msgstr "" -#: dlltool.c:3675 +#: dlltool.c:3721 #, c-format msgid " -e --output-exp <outname> Generate an export file.\n" msgstr "" -#: dlltool.c:3676 +#: dlltool.c:3722 #, c-format msgid " -l --output-lib <outname> Generate an interface library.\n" msgstr "" -#: dlltool.c:3677 +#: dlltool.c:3723 #, c-format msgid " -y --output-delaylib <outname> Create a delay-import library.\n" msgstr "" -#: dlltool.c:3678 +#: dlltool.c:3724 #, c-format msgid " --deterministic-libraries\n" msgstr "" -#: dlltool.c:3680 +#: dlltool.c:3726 #, c-format msgid "" " Use zero for timestamps and uids/gids in output " "libraries (default)\n" msgstr "" -#: dlltool.c:3682 +#: dlltool.c:3728 #, c-format msgid "" " Use zero for timestamps and uids/gids in output " "libraries\n" msgstr "" -#: dlltool.c:3683 +#: dlltool.c:3729 #, c-format msgid " --non-deterministic-libraries\n" msgstr "" -#: dlltool.c:3685 +#: dlltool.c:3731 #, c-format msgid "" " Use actual timestamps and uids/gids in output " "libraries\n" msgstr "" -#: dlltool.c:3687 +#: dlltool.c:3733 #, c-format msgid "" " Use actual timestamps and uids/gids in output " "libraries (default)\n" msgstr "" -#: dlltool.c:3688 +#: dlltool.c:3734 #, c-format msgid " -a --add-indirect Add dll indirects to export file.\n" msgstr "" -#: dlltool.c:3689 +#: dlltool.c:3735 #, c-format msgid "" " -D --dllname <name> Name of input dll to put into interface lib.\n" msgstr "" -#: dlltool.c:3690 +#: dlltool.c:3736 #, c-format msgid " -d --input-def <deffile> Name of .def file to be read in.\n" msgstr "" -#: dlltool.c:3691 +#: dlltool.c:3737 #, c-format msgid " -z --output-def <deffile> Name of .def file to be created.\n" msgstr "" -#: dlltool.c:3692 +#: dlltool.c:3738 #, c-format msgid " --export-all-symbols Export all symbols to .def\n" msgstr "" -#: dlltool.c:3693 +#: dlltool.c:3739 #, c-format msgid " --no-export-all-symbols Only export listed symbols\n" msgstr "" -#: dlltool.c:3694 +#: dlltool.c:3740 #, c-format msgid " --exclude-symbols <list> Don't export <list>\n" msgstr "" -#: dlltool.c:3695 +#: dlltool.c:3741 #, c-format msgid " --no-default-excludes Clear default exclude symbols\n" msgstr "" -#: dlltool.c:3696 +#: dlltool.c:3742 #, c-format msgid " -b --base-file <basefile> Read linker generated base file.\n" msgstr "" -#: dlltool.c:3697 +#: dlltool.c:3743 #, c-format msgid " -x --no-idata4 Don't generate idata$4 section.\n" msgstr "" -#: dlltool.c:3698 +#: dlltool.c:3744 #, c-format msgid " -c --no-idata5 Don't generate idata$5 section.\n" msgstr "" -#: dlltool.c:3699 +#: dlltool.c:3745 #, c-format msgid "" " --use-nul-prefixed-import-tables Use zero prefixed idata$4 and idata" "$5.\n" msgstr "" -#: dlltool.c:3700 +#: dlltool.c:3746 #, c-format msgid "" " -U --add-underscore Add underscores to all symbols in interface " "library.\n" msgstr "" -#: dlltool.c:3701 +#: dlltool.c:3747 #, c-format msgid "" " --add-stdcall-underscore Add underscores to stdcall symbols in " "interface library.\n" msgstr "" -#: dlltool.c:3702 +#: dlltool.c:3748 #, c-format msgid "" " --no-leading-underscore All symbols shouldn't be prefixed by an " "underscore.\n" msgstr "" -#: dlltool.c:3703 +#: dlltool.c:3749 #, c-format msgid "" " --leading-underscore All symbols should be prefixed by an " "underscore.\n" msgstr "" -#: dlltool.c:3704 +#: dlltool.c:3750 #, c-format msgid " -k --kill-at Kill @<n> from exported names.\n" msgstr "" -#: dlltool.c:3705 +#: dlltool.c:3751 #, c-format msgid " -A --add-stdcall-alias Add aliases without @<n>.\n" msgstr "" -#: dlltool.c:3706 +#: dlltool.c:3752 #, c-format msgid " -p --ext-prefix-alias <prefix> Add aliases with <prefix>.\n" msgstr "" -#: dlltool.c:3707 +#: dlltool.c:3753 #, c-format msgid " -S --as <name> Use <name> for assembler.\n" msgstr "" -#: dlltool.c:3708 +#: dlltool.c:3754 #, c-format msgid " -f --as-flags <flags> Pass <flags> to the assembler.\n" msgstr "" -#: dlltool.c:3709 +#: dlltool.c:3755 #, c-format msgid "" " -C --compat-implib Create backward compatible import library.\n" msgstr "" -#: dlltool.c:3710 +#: dlltool.c:3756 #, c-format msgid "" " -n --no-delete Keep temp files (repeat for extra " "preservation).\n" msgstr "" -#: dlltool.c:3711 +#: dlltool.c:3757 #, c-format msgid "" " -t --temp-prefix <prefix> Use <prefix> to construct temp file names.\n" msgstr "" -#: dlltool.c:3712 +#: dlltool.c:3758 #, c-format msgid "" " -I --identify <implib> Report the name of the DLL associated with " "<implib>.\n" msgstr "" -#: dlltool.c:3713 +#: dlltool.c:3759 #, c-format msgid "" " --identify-strict Causes --identify to report error when multiple " "DLLs.\n" msgstr "" -#: dlltool.c:3714 +#: dlltool.c:3760 #, c-format msgid " -v --verbose Be verbose.\n" msgstr "" -#: dlltool.c:3715 +#: dlltool.c:3761 #, c-format msgid " -V --version Display the program version.\n" msgstr "" -#: dlltool.c:3716 +#: dlltool.c:3762 #, c-format msgid " -h --help Display this information.\n" msgstr "" -#: dlltool.c:3717 +#: dlltool.c:3763 #, c-format msgid " @<file> Read options from <file>.\n" msgstr "" -#: dlltool.c:3719 +#: dlltool.c:3765 #, c-format msgid "" " -M --mcore-elf <outname> Process mcore-elf object files into <outname>.\n" msgstr "" -#: dlltool.c:3720 +#: dlltool.c:3766 #, c-format msgid " -L --linker <name> Use <name> as the linker.\n" msgstr "" -#: dlltool.c:3721 +#: dlltool.c:3767 #, c-format msgid " -F --linker-flags <flags> Pass <flags> to the linker.\n" msgstr "" -#: dlltool.c:3871 +#: dlltool.c:3917 #, c-format msgid "Unable to open def-file: %s" msgstr "" -#: dlltool.c:3876 +#: dlltool.c:3922 #, c-format msgid "Path components stripped from dllname, '%s'." msgstr "" -#: dlltool.c:3924 +#: dlltool.c:3970 #, c-format msgid "Unable to open base-file: %s" msgstr "" -#: dlltool.c:3962 +#: dlltool.c:4008 #, c-format msgid "Machine '%s' not supported" msgstr "" -#: dlltool.c:4063 +#: dlltool.c:4108 #, c-format msgid "Warning, machine type (%d) not supported for delayimport." msgstr "" -#: dlltool.c:4131 dllwrap.c:206 +#: dlltool.c:4176 dllwrap.c:206 #, c-format msgid "Tried file: %s" msgstr "" -#: dlltool.c:4138 dllwrap.c:213 +#: dlltool.c:4183 dllwrap.c:213 #, c-format msgid "Using file: %s" msgstr "" @@ -1853,20 +1853,20 @@ msgstr "" msgid "DRIVER options : %s\n" msgstr "" -#: dwarf.c:187 +#: dwarf.c:189 msgid "Encoded value extends past end of section\n" msgstr "" -#: dwarf.c:195 +#: dwarf.c:197 #, c-format msgid "Encoded size of %d is too large to read\n" msgstr "" -#: dwarf.c:203 +#: dwarf.c:205 msgid "Encoded size of 0 is too small to read\n" msgstr "" -#: dwarf.c:263 readelf.c:3943 readelf.c:12059 +#: dwarf.c:265 readelf.c:3946 readelf.c:12072 msgid "unknown" msgstr "" @@ -1878,7 +1878,7 @@ msgstr "" #. This macro cannot protect against PTR values derived from user input. #. The C standard sections 6.5.6 and 6.5.8 say attempts to do so using #. pointers is undefined behaviour. -#: dwarf.c:342 +#: dwarf.c:344 #, c-format msgid "internal error: attempt to read %d byte of data in to %d sized variable" msgid_plural "" @@ -1886,52 +1886,52 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: dwarf.c:430 dwarf.c:5574 +#: dwarf.c:432 dwarf.c:5574 msgid "Badly formed extended line op encountered!\n" msgstr "" -#: dwarf.c:436 +#: dwarf.c:438 #, c-format msgid " Extended opcode %d: " msgstr "" -#: dwarf.c:441 +#: dwarf.c:443 #, c-format msgid "" "End of Sequence\n" "\n" msgstr "" -#: dwarf.c:449 +#: dwarf.c:451 #, c-format msgid "Length (%zu) of DW_LNE_set_address op is too long\n" msgstr "" -#: dwarf.c:455 +#: dwarf.c:457 #, c-format msgid "set Address to %#<PRIx64>\n" msgstr "" -#: dwarf.c:462 +#: dwarf.c:464 #, c-format msgid "define new File Table entry\n" msgstr "" -#: dwarf.c:463 dwarf.c:4847 +#: dwarf.c:465 dwarf.c:4847 #, c-format msgid " Entry\tDir\tTime\tSize\tName\n" msgstr "" -#: dwarf.c:484 +#: dwarf.c:486 msgid "DW_LNE_define_file: Bad opcode length\n" msgstr "" -#: dwarf.c:489 +#: dwarf.c:491 #, c-format msgid "set Discriminator to %<PRIu64>\n" msgstr "" -#: dwarf.c:555 +#: dwarf.c:557 #, c-format msgid " UNKNOWN DW_LNE_HP_SFC opcode (%u)\n" msgstr "" @@ -1940,584 +1940,584 @@ msgstr "" #. the limited range of the unsigned char data type used #. for op_code. #. && op_code <= DW_LNE_hi_user -#: dwarf.c:572 +#: dwarf.c:574 #, c-format msgid "user defined: " msgstr "" -#: dwarf.c:574 +#: dwarf.c:576 #, c-format msgid "UNKNOWN: " msgstr "" -#: dwarf.c:575 +#: dwarf.c:577 #, c-format msgid "length %d [" msgstr "" -#: dwarf.c:593 dwarf.c:661 +#: dwarf.c:595 dwarf.c:663 msgid "<no .debug_str section>" msgstr "" -#: dwarf.c:597 +#: dwarf.c:599 #, c-format msgid "DW_FORM_strp offset too big: %#<PRIx64>\n" msgstr "" -#: dwarf.c:598 dwarf.c:625 dwarf.c:1796 +#: dwarf.c:600 dwarf.c:627 dwarf.c:1798 msgid "<offset is too big>" msgstr "" -#: dwarf.c:608 +#: dwarf.c:610 msgid "<no NUL byte at end of .debug_str section>" msgstr "" -#: dwarf.c:620 +#: dwarf.c:622 msgid "<no .debug_line_str section>" msgstr "" -#: dwarf.c:624 +#: dwarf.c:626 #, c-format msgid "DW_FORM_line_strp offset too big: %#<PRIx64>\n" msgstr "" -#: dwarf.c:635 +#: dwarf.c:637 msgid "<no NUL byte at end of .debug_line_str section>" msgstr "" -#: dwarf.c:656 +#: dwarf.c:658 msgid "<no .debug_str_offsets.dwo section>" msgstr "" -#: dwarf.c:657 +#: dwarf.c:659 msgid "<no .debug_str_offsets section>" msgstr "" -#: dwarf.c:660 +#: dwarf.c:662 msgid "<no .debug_str.dwo section>" msgstr "" -#: dwarf.c:671 +#: dwarf.c:673 #, c-format msgid "" "string index of %<PRIu64> converts to an offset of %#<PRIx64> which is too " "big for section %s\n" msgstr "" -#: dwarf.c:675 +#: dwarf.c:677 msgid "<string index too big>" msgstr "" -#: dwarf.c:682 +#: dwarf.c:684 #, c-format msgid "indirect offset too big: %#<PRIx64>\n" msgstr "" -#: dwarf.c:683 +#: dwarf.c:685 msgid "<indirect index offset is too big>" msgstr "" -#: dwarf.c:693 +#: dwarf.c:695 msgid "<no NUL byte at end of section>" msgstr "" -#: dwarf.c:705 +#: dwarf.c:707 msgid "Cannot fetch indexed address: the .debug_addr section is missing\n" msgstr "" -#: dwarf.c:711 +#: dwarf.c:713 #, c-format msgid "Offset into section %s too big: %#<PRIx64>\n" msgstr "" -#: dwarf.c:739 +#: dwarf.c:741 #, c-format msgid "Unable to locate %s section\n" msgstr "" -#: dwarf.c:745 +#: dwarf.c:747 #, c-format msgid "" "Section %s is too small to contain an value indexed from another section!\n" msgstr "" -#: dwarf.c:752 +#: dwarf.c:754 #, c-format msgid "Offset of %#<PRIx64> is too big for section %s\n" msgstr "" #. Report the missing single zero which ends the section. -#: dwarf.c:1027 +#: dwarf.c:1029 #, c-format msgid "%s section not zero terminated\n" msgstr "" #. PR 17531: file:4bcd9ce9. -#: dwarf.c:1054 +#: dwarf.c:1056 #, c-format msgid "" "Debug info is corrupted, abbrev size (%#<PRIx64>) is larger than abbrev " "section size (%#<PRIx64>)\n" msgstr "" -#: dwarf.c:1061 +#: dwarf.c:1063 #, c-format msgid "" "Debug info is corrupted, abbrev offset (%#<PRIx64>) is larger than abbrev " "section size (%#<PRIx64>)\n" msgstr "" -#: dwarf.c:1094 +#: dwarf.c:1096 #, c-format msgid "User TAG value: %#<PRIx64>" msgstr "" -#: dwarf.c:1097 +#: dwarf.c:1099 #, c-format msgid "Unknown TAG value: %#<PRIx64>" msgstr "" -#: dwarf.c:1118 +#: dwarf.c:1120 #, c-format msgid "Unknown FORM value: %lx" msgstr "" -#: dwarf.c:1136 +#: dwarf.c:1138 #, c-format msgid "Unknown IDX value: %lx" msgstr "" -#: dwarf.c:1150 +#: dwarf.c:1152 #, c-format msgid "%c%<PRIu64> byte block: " msgstr "" -#: dwarf.c:1487 +#: dwarf.c:1489 #, c-format msgid "(DW_OP_call_ref in frame info)" msgstr "" -#: dwarf.c:1510 +#: dwarf.c:1512 #, c-format msgid "size: %<PRIu64> " msgstr "" -#: dwarf.c:1512 +#: dwarf.c:1514 #, c-format msgid "offset: %<PRIu64> " msgstr "" -#: dwarf.c:1528 +#: dwarf.c:1530 #, c-format msgid "DW_OP_GNU_push_tls_address or DW_OP_HP_unknown" msgstr "" -#: dwarf.c:1553 +#: dwarf.c:1555 #, c-format msgid "(%s in frame info)" msgstr "" -#: dwarf.c:1656 +#: dwarf.c:1658 #, c-format msgid "(DW_OP_GNU_variable_value in frame info)" msgstr "" -#: dwarf.c:1709 +#: dwarf.c:1711 #, c-format msgid "(User defined location op %#x)" msgstr "" -#: dwarf.c:1711 +#: dwarf.c:1713 #, c-format msgid "(Unknown location op %#x)" msgstr "" -#: dwarf.c:1765 +#: dwarf.c:1767 msgid "<no links available>" msgstr "" -#: dwarf.c:1789 +#: dwarf.c:1791 msgid "<no NUL byte at end of alt .debug_str section>" msgstr "" -#: dwarf.c:1794 +#: dwarf.c:1796 #, c-format msgid "" "DW_FORM_GNU_strp_alt offset (%#<PRIx64>) too big or no string sections " "available\n" msgstr "" -#: dwarf.c:1817 +#: dwarf.c:1819 #, c-format msgid "Unknown AT value: %lx" msgstr "" -#: dwarf.c:1883 +#: dwarf.c:1885 #, c-format msgid "Corrupt attribute block length: %#<PRIx64>\n" msgstr "" -#: dwarf.c:2055 +#: dwarf.c:2057 #, c-format msgid "" "Unable to resolve ref_addr form: uvalue %<PRIx64> >= section size %<PRIx64> " "(%s)\n" msgstr "" -#: dwarf.c:2074 +#: dwarf.c:2076 #, c-format msgid "" "Unable to resolve ref form: uvalue %<PRIx64> + cu_offset %<PRIx64> > CU size " "%tx\n" msgstr "" -#: dwarf.c:2085 +#: dwarf.c:2087 #, c-format msgid "Unexpected form %lx encountered whilst finding abbreviation for type\n" msgstr "" -#: dwarf.c:2093 +#: dwarf.c:2095 #, c-format msgid "Unable to find abbreviations for CU offset %<PRIx64>\n" msgstr "" -#: dwarf.c:2099 +#: dwarf.c:2101 #, c-format msgid "Empty abbreviation list encountered for CU offset %<PRIx64>\n" msgstr "" -#: dwarf.c:2131 +#: dwarf.c:2133 #, c-format msgid "Unable to find entry for abbreviation %lu\n" msgstr "" -#: dwarf.c:2285 +#: dwarf.c:2287 msgid "corrupt discr_list - not using a block form\n" msgstr "" -#: dwarf.c:2292 +#: dwarf.c:2294 msgid "corrupt discr_list - block not long enough\n" msgstr "" -#: dwarf.c:2327 +#: dwarf.c:2329 #, c-format msgid "corrupt discr_list - unrecognized discriminant byte %#x\n" msgstr "" -#: dwarf.c:2426 +#: dwarf.c:2428 #, c-format msgid "implementation defined: %#<PRIx64>" msgstr "" -#: dwarf.c:2428 +#: dwarf.c:2430 #, c-format msgid "unknown: %#<PRIx64>" msgstr "" -#: dwarf.c:2459 +#: dwarf.c:2461 msgid "Corrupt attribute\n" msgstr "" -#: dwarf.c:2482 +#: dwarf.c:2484 msgid "Internal error: DW_FORM_ref_addr is not supported in DWARF version 1.\n" msgstr "" -#: dwarf.c:2676 +#: dwarf.c:2678 msgid "Block ends prematurely\n" msgstr "" #. We have already displayed the form name. -#: dwarf.c:2711 dwarf.c:2724 dwarf.c:2748 +#: dwarf.c:2713 dwarf.c:2726 dwarf.c:2750 #, c-format msgid "%c(offset: %#<PRIx64>): %s" msgstr "" -#: dwarf.c:2714 +#: dwarf.c:2716 #, c-format msgid "%c(indirect string, offset: %#<PRIx64>): %s" msgstr "" -#: dwarf.c:2727 +#: dwarf.c:2729 #, c-format msgid "%c(indirect line string, offset: %#<PRIx64>): %s" msgstr "" -#: dwarf.c:2751 +#: dwarf.c:2753 #, c-format msgid "%c(indexed string: %#<PRIx64>): %s" msgstr "" #. We have already displayed the form name. -#: dwarf.c:2761 +#: dwarf.c:2763 #, c-format msgid "%c(offset: %#<PRIx64>) %s" msgstr "" -#: dwarf.c:2764 +#: dwarf.c:2766 #, c-format msgid "%c(alt indirect string, offset: %#<PRIx64>) %s" msgstr "" -#: dwarf.c:2823 +#: dwarf.c:2825 #, c-format msgid "loc_offset %<PRIu64> too big\n" msgstr "" -#: dwarf.c:2853 +#: dwarf.c:2855 #, c-format msgid "%c(index: %#<PRIx64>): %#<PRIx64>" msgstr "" -#: dwarf.c:2864 +#: dwarf.c:2866 #, c-format msgid "Unrecognized form: %#lx\n" msgstr "" -#: dwarf.c:2878 +#: dwarf.c:2880 #, c-format msgid "" "CU @ %#<PRIx64> has multiple loclists_base values (%#<PRIx64> and %" "#<PRIx64>)\n" msgstr "" -#: dwarf.c:2885 +#: dwarf.c:2887 #, c-format msgid "" "CU @ %#<PRIx64> has has a negative loclists_base value of %#<PRIx64> - " "treating as zero\n" msgstr "" -#: dwarf.c:2899 +#: dwarf.c:2901 #, c-format msgid "" "CU @ %#<PRIx64> has multiple str_offsets_base values %#<PRIx64> and %" "#<PRIx64>)\n" msgstr "" -#: dwarf.c:2906 +#: dwarf.c:2908 #, c-format msgid "" "CU @ %#<PRIx64> has has a negative stroffsets_base value of %#<PRIx64> - " "treating as zero\n" msgstr "" -#: dwarf.c:2974 +#: dwarf.c:2976 msgid "More location offset attributes than DW_AT_GNU_locview attributes\n" msgstr "" -#: dwarf.c:2985 +#: dwarf.c:2987 #, c-format msgid "The number of views (%u) is greater than the number of locations (%u)\n" msgstr "" -#: dwarf.c:2992 +#: dwarf.c:2994 msgid "More DW_AT_GNU_locview attributes than location offset attributes\n" msgstr "" -#: dwarf.c:3081 dwarf.c:3115 dwarf.c:3130 +#: dwarf.c:3083 dwarf.c:3117 dwarf.c:3132 #, c-format msgid "Unsupported form (%s) for attribute %s\n" msgstr "" -#: dwarf.c:3177 +#: dwarf.c:3179 #, c-format msgid "(not inlined)" msgstr "" -#: dwarf.c:3180 +#: dwarf.c:3182 #, c-format msgid "(inlined)" msgstr "" -#: dwarf.c:3183 +#: dwarf.c:3185 #, c-format msgid "(declared as inline but ignored)" msgstr "" -#: dwarf.c:3186 +#: dwarf.c:3188 #, c-format msgid "(declared as inline and inlined)" msgstr "" -#: dwarf.c:3189 +#: dwarf.c:3191 #, c-format msgid " (Unknown inline attribute value: %#<PRIx64>)" msgstr "" -#: dwarf.c:3241 +#: dwarf.c:3243 #, c-format msgid "(user defined type)" msgstr "" -#: dwarf.c:3243 +#: dwarf.c:3245 #, c-format msgid "(unknown type)" msgstr "" -#: dwarf.c:3256 +#: dwarf.c:3258 #, c-format msgid "(unknown accessibility)" msgstr "" -#: dwarf.c:3268 +#: dwarf.c:3270 #, c-format msgid "(unknown visibility)" msgstr "" -#: dwarf.c:3281 +#: dwarf.c:3283 #, c-format msgid "(user specified)" msgstr "" -#: dwarf.c:3283 +#: dwarf.c:3285 #, c-format msgid "(unknown endianity)" msgstr "" -#: dwarf.c:3295 +#: dwarf.c:3297 #, c-format msgid "(unknown virtuality)" msgstr "" -#: dwarf.c:3307 +#: dwarf.c:3309 #, c-format msgid "(unknown case)" msgstr "" -#: dwarf.c:3325 +#: dwarf.c:3327 #, c-format msgid "(user defined)" msgstr "" -#: dwarf.c:3327 +#: dwarf.c:3329 #, c-format msgid "(unknown convention)" msgstr "" -#: dwarf.c:3336 +#: dwarf.c:3338 #, c-format msgid "(undefined)" msgstr "" -#: dwarf.c:3346 +#: dwarf.c:3348 #, c-format msgid "(unsigned)" msgstr "" -#: dwarf.c:3347 +#: dwarf.c:3349 #, c-format msgid "(leading overpunch)" msgstr "" -#: dwarf.c:3348 +#: dwarf.c:3350 #, c-format msgid "(trailing overpunch)" msgstr "" -#: dwarf.c:3349 +#: dwarf.c:3351 #, c-format msgid "(leading separate)" msgstr "" -#: dwarf.c:3350 +#: dwarf.c:3352 #, c-format msgid "(trailing separate)" msgstr "" -#: dwarf.c:3351 dwarf.c:3362 +#: dwarf.c:3353 dwarf.c:3364 #, c-format msgid "(unrecognised)" msgstr "" -#: dwarf.c:3359 +#: dwarf.c:3361 #, c-format msgid "(no)" msgstr "" -#: dwarf.c:3360 +#: dwarf.c:3362 #, c-format msgid "(in class)" msgstr "" -#: dwarf.c:3361 +#: dwarf.c:3363 #, c-format msgid "(out of class)" msgstr "" -#: dwarf.c:3400 +#: dwarf.c:3402 #, c-format msgid " (location list)" msgstr "" -#: dwarf.c:3423 dwarf.c:6830 dwarf.c:7032 dwarf.c:7207 +#: dwarf.c:3425 dwarf.c:6830 dwarf.c:7032 dwarf.c:7207 #, c-format msgid " [without DW_AT_frame_base]" msgstr "" -#: dwarf.c:3453 +#: dwarf.c:3455 #, c-format msgid "" "Offset %#<PRIx64> used as value for DW_AT_import attribute of DIE at offset %" "#tx is too big.\n" msgstr "" -#: dwarf.c:3459 +#: dwarf.c:3461 #, c-format msgid "\t[Abbrev Number: %ld" msgstr "" -#: dwarf.c:3554 +#: dwarf.c:3556 #, c-format msgid "" "Raw dump of debug contents of section %s (loaded from %s):\n" "\n" msgstr "" -#: dwarf.c:3557 +#: dwarf.c:3559 #, c-format msgid "" "Raw dump of debug contents of section %s:\n" "\n" msgstr "" -#: dwarf.c:3562 +#: dwarf.c:3564 #, c-format msgid "" "Contents of the %s section (loaded from %s):\n" "\n" msgstr "" -#: dwarf.c:3565 +#: dwarf.c:3567 #, c-format msgid "" "Contents of the %s section:\n" "\n" msgstr "" -#: dwarf.c:3692 +#: dwarf.c:3694 msgid "Unexpected form in top DIE\n" msgstr "" -#: dwarf.c:3727 +#: dwarf.c:3729 msgid "Unexpected form of DW_AT_rnglists_base in the top DIE\n" msgstr "" -#: dwarf.c:3738 +#: dwarf.c:3740 msgid "Unexpected form of DW_AT_addr_base in the top DIE\n" msgstr "" -#: dwarf.c:3785 +#: dwarf.c:3787 #, c-format msgid "Reserved length value (%#<PRIx64>) found in section %s\n" msgstr "" -#: dwarf.c:3795 +#: dwarf.c:3797 #, c-format msgid "" "Corrupt unit length (got %#<PRIx64> expected at most %#tx) in section %s\n" msgstr "" -#: dwarf.c:3805 +#: dwarf.c:3807 #, c-format msgid "No comp units in %s section ?\n" msgstr "" @@ -2671,7 +2671,7 @@ msgstr "" msgid "Only DWARF version 2, 3, 4 and 5 line info is currently supported.\n" msgstr "" -#: dwarf.c:4469 dwarf.c:7370 dwarf.c:8308 +#: dwarf.c:4469 dwarf.c:7370 dwarf.c:8349 #, c-format msgid "The %s section contains unsupported segment selector size: %d.\n" msgstr "" @@ -3108,9 +3108,9 @@ msgstr "" msgid "CU: %s:\n" msgstr "" -#: dwarf.c:5482 dwarf.c:5814 readelf.c:7978 readelf.c:8074 readelf.c:8091 -#: readelf.c:8108 readelf.c:8921 readelf.c:13160 readelf.c:13822 -#: readelf.c:13835 readelf.c:19485 readelf.c:19517 +#: dwarf.c:5482 dwarf.c:5814 readelf.c:7990 readelf.c:8086 readelf.c:8103 +#: readelf.c:8120 readelf.c:8934 readelf.c:13173 readelf.c:13835 +#: readelf.c:13848 readelf.c:19456 readelf.c:19488 msgid "<unknown>" msgstr "" @@ -3119,11 +3119,11 @@ msgstr "" msgid "directory index %u >= number of directories %u\n" msgstr "" -#: dwarf.c:5492 dwarf.c:5808 elfcomm.c:776 readelf.c:980 readelf.c:9099 -#: readelf.c:9712 readelf.c:11738 readelf.c:14129 readelf.c:14195 -#: readelf.c:14199 readelf.c:14313 readelf.c:18214 readelf.c:18304 -#: readelf.c:18897 readelf.c:18916 readelf.c:19035 readelf.c:19494 -#: readelf.c:20657 readelf.c:20660 +#: dwarf.c:5492 dwarf.c:5808 elfcomm.c:776 readelf.c:980 readelf.c:9112 +#: readelf.c:9725 readelf.c:11751 readelf.c:14142 readelf.c:14208 +#: readelf.c:14212 readelf.c:14326 readelf.c:18196 readelf.c:18286 +#: readelf.c:18879 readelf.c:18898 readelf.c:19017 readelf.c:19465 +#: readelf.c:20628 readelf.c:20631 #, c-format msgid "<corrupt>" msgstr "" @@ -3232,7 +3232,7 @@ msgstr "" msgid "Debug info is corrupted, %s header at %#lx has length %#<PRIx64>\n" msgstr "" -#: dwarf.c:6036 dwarf.c:7738 +#: dwarf.c:6036 dwarf.c:7777 #, c-format msgid "" ".debug_info offset of %#<PRIx64> in %s section does not point to a CU " @@ -3484,12 +3484,12 @@ msgstr "" msgid "Location list starting at offset %#<PRIx64> is not terminated.\n" msgstr "" -#: dwarf.c:6772 dwarf.c:6919 dwarf.c:7149 dwarf.c:8109 dwarf.c:8168 +#: dwarf.c:6772 dwarf.c:6919 dwarf.c:7149 dwarf.c:8148 dwarf.c:8209 #, c-format msgid "<End of list>\n" msgstr "" -#: dwarf.c:6784 dwarf.c:6929 dwarf.c:6964 dwarf.c:8177 dwarf.c:8201 +#: dwarf.c:6784 dwarf.c:6929 dwarf.c:6964 dwarf.c:8218 dwarf.c:8242 #, c-format msgid "(base address)\n" msgstr "" @@ -3501,11 +3501,11 @@ msgid "" " %*s " msgstr "" -#: dwarf.c:6833 dwarf.c:7035 dwarf.c:8128 dwarf.c:8234 +#: dwarf.c:6833 dwarf.c:7035 dwarf.c:8167 dwarf.c:8275 msgid " (start == end)" msgstr "" -#: dwarf.c:6835 dwarf.c:7037 dwarf.c:8130 dwarf.c:8236 +#: dwarf.c:6835 dwarf.c:7037 dwarf.c:8169 dwarf.c:8277 msgid " (start > end)" msgstr "" @@ -3554,27 +3554,27 @@ msgstr "" msgid "Table at Offset %#<PRIx64>\n" msgstr "" -#: dwarf.c:7276 dwarf.c:8299 +#: dwarf.c:7276 dwarf.c:8340 #, c-format msgid " Length: %#<PRIx64>\n" msgstr "" -#: dwarf.c:7277 dwarf.c:8300 +#: dwarf.c:7277 dwarf.c:8341 #, c-format msgid " DWARF version: %u\n" msgstr "" -#: dwarf.c:7278 dwarf.c:8301 +#: dwarf.c:7278 dwarf.c:8342 #, c-format msgid " Address size: %u\n" msgstr "" -#: dwarf.c:7279 dwarf.c:8302 +#: dwarf.c:7279 dwarf.c:8343 #, c-format msgid " Segment size: %u\n" msgstr "" -#: dwarf.c:7280 dwarf.c:8303 +#: dwarf.c:7280 dwarf.c:8344 #, c-format msgid " Offset entries: %u\n" msgstr "" @@ -3591,12 +3591,12 @@ msgid "" " Offset Entries starting at %#tx:\n" msgstr "" -#: dwarf.c:7300 dwarf.c:8330 +#: dwarf.c:7300 dwarf.c:8371 #, c-format msgid " [%6u] %#<PRIx64>\n" msgstr "" -#: dwarf.c:7339 dwarf.c:7619 dwarf.c:7836 dwarf.c:7960 dwarf.c:8368 +#: dwarf.c:7339 dwarf.c:7627 dwarf.c:7875 dwarf.c:7999 dwarf.c:8410 #, c-format msgid "" "\n" @@ -3608,18 +3608,18 @@ msgstr "" msgid "The %s section contains corrupt or unsupported version number: %d.\n" msgstr "" -#: dwarf.c:7386 dwarf.c:7842 dwarf.c:8376 +#: dwarf.c:7386 dwarf.c:7881 dwarf.c:8418 #, c-format msgid "" "Unable to load/parse the .debug_info section, so cannot interpret the %s " "section.\n" msgstr "" -#: dwarf.c:7434 +#: dwarf.c:7433 msgid "No location lists in .debug_info section!\n" msgstr "" -#: dwarf.c:7442 +#: dwarf.c:7441 #, c-format msgid "" " Warning: This section has relocations - addresses seen here may not be " @@ -3627,209 +3627,223 @@ msgid "" "\n" msgstr "" -#: dwarf.c:7445 dwarf.c:7494 +#: dwarf.c:7444 dwarf.c:7502 #, c-format msgid " Offset Begin End Expression\n" msgstr "" -#: dwarf.c:7533 dwarf.c:7537 +#: dwarf.c:7541 dwarf.c:7545 #, c-format msgid "There is a hole [%#tx - %#<PRIx64>] in %s section.\n" msgstr "" -#: dwarf.c:7542 +#: dwarf.c:7550 #, c-format msgid "There is an overlap [%#tx - %#<PRIx64>] in %s section.\n" msgstr "" -#: dwarf.c:7550 +#: dwarf.c:7558 #, c-format msgid "Offset %#<PRIx64> is bigger than %s section size.\n" msgstr "" -#: dwarf.c:7557 +#: dwarf.c:7565 #, c-format msgid "View Offset %#<PRIx64> is bigger than %s section size.\n" msgstr "" -#: dwarf.c:7574 +#: dwarf.c:7582 msgid "DWO is not yet supported.\n" msgstr "" -#: dwarf.c:7591 +#: dwarf.c:7599 msgid "Hole and overlap detection requires adjacent view lists and loclists.\n" msgstr "" -#: dwarf.c:7600 +#: dwarf.c:7608 #, c-format msgid "There is %ld unused byte at the end of section %s\n" msgid_plural "There are %ld unused bytes at the end of section %s\n" msgstr[0] "" msgstr[1] "" -#: dwarf.c:7724 +#: dwarf.c:7703 +msgid "Section name must be provided \n" +msgstr "" + +#: dwarf.c:7711 +#, c-format +msgid "SFrame decode failure: %s\n" +msgstr "" + +#: dwarf.c:7715 +#, c-format +msgid "Contents of the SFrame section %s:" +msgstr "" + +#: dwarf.c:7763 #, c-format msgid "" "Debug info is corrupted, %s header at %#<PRIx64> has length %#<PRIx64>\n" msgstr "" -#: dwarf.c:7752 +#: dwarf.c:7791 msgid "Only DWARF 2 and 3 aranges are currently supported.\n" msgstr "" -#: dwarf.c:7756 +#: dwarf.c:7795 #, c-format msgid " Length: %<PRId64>\n" msgstr "" -#: dwarf.c:7757 +#: dwarf.c:7796 #, c-format msgid " Version: %d\n" msgstr "" -#: dwarf.c:7758 +#: dwarf.c:7797 #, c-format msgid " Offset into .debug_info: %#<PRIx64>\n" msgstr "" -#: dwarf.c:7760 +#: dwarf.c:7799 #, c-format msgid " Pointer Size: %d\n" msgstr "" -#: dwarf.c:7761 +#: dwarf.c:7800 #, c-format msgid " Segment Size: %d\n" msgstr "" -#: dwarf.c:7768 +#: dwarf.c:7807 #, c-format msgid "Invalid address size in %s section!\n" msgstr "" -#: dwarf.c:7778 +#: dwarf.c:7817 msgid "Pointer size + Segment size is not a power of two.\n" msgstr "" -#: dwarf.c:7783 +#: dwarf.c:7822 #, c-format msgid "" "\n" " Address Length\n" msgstr "" -#: dwarf.c:7785 +#: dwarf.c:7824 #, c-format msgid "" "\n" " Address Length\n" msgstr "" -#: dwarf.c:7862 +#: dwarf.c:7901 #, c-format msgid "Corrupt address base (%#<PRIx64>) found in debug section %u\n" msgstr "" -#: dwarf.c:7880 +#: dwarf.c:7919 #, c-format msgid " For compilation unit at offset %#<PRIx64>:\n" msgstr "" -#: dwarf.c:7883 +#: dwarf.c:7922 #, c-format msgid "\tIndex\tAddress\n" msgstr "" -#: dwarf.c:7895 +#: dwarf.c:7934 #, c-format msgid "" "Corrupt %s section: expecting header size of 8 or 16, but found %zd instead\n" msgstr "" -#: dwarf.c:7906 +#: dwarf.c:7945 #, c-format msgid "Corrupt %s section: unit_length field of %#<PRIx64> is invalid\n" msgstr "" -#: dwarf.c:7913 +#: dwarf.c:7952 #, c-format msgid "" "Corrupt %s section: expecting version number 5 in header but found %d " "instead\n" msgstr "" -#: dwarf.c:7928 +#: dwarf.c:7967 #, c-format msgid "Corrupt %s section: address size (%x) is wrong\n" msgstr "" -#: dwarf.c:7936 +#: dwarf.c:7975 #, c-format msgid "\t%d:\t" msgstr "" -#: dwarf.c:8008 dwarf.c:8032 +#: dwarf.c:8047 dwarf.c:8071 #, c-format msgid " Length: %#<PRIx64>\n" msgstr "" -#: dwarf.c:8009 dwarf.c:8034 +#: dwarf.c:8048 dwarf.c:8073 #, c-format msgid " Index Offset [String]\n" msgstr "" -#: dwarf.c:8017 +#: dwarf.c:8056 #, c-format msgid "Section %s is too small %#<PRIx64>\n" msgstr "" -#: dwarf.c:8025 +#: dwarf.c:8064 #, c-format msgid "Unexpected version number in str_offset header: %#x\n" msgstr "" -#: dwarf.c:8030 +#: dwarf.c:8069 #, c-format msgid "Unexpected value in str_offset header's padding field: %#x\n" msgstr "" -#: dwarf.c:8033 +#: dwarf.c:8072 #, c-format msgid " Version: %#x\n" msgstr "" -#: dwarf.c:8155 +#: dwarf.c:8196 #, c-format msgid "Range list starting at offset %#<PRIx64> is not terminated.\n" msgstr "" -#: dwarf.c:8173 +#: dwarf.c:8214 #, c-format msgid "(base address index) " msgstr "" -#: dwarf.c:8213 +#: dwarf.c:8254 #, c-format msgid "Invalid range list entry type %d\n" msgstr "" -#: dwarf.c:8281 +#: dwarf.c:8322 #, c-format msgid "" "The length field (%#<PRIx64>) in the debug_rnglists header is wrong - the " "section is too small\n" msgstr "" -#: dwarf.c:8298 +#: dwarf.c:8339 #, c-format msgid " Table at Offset: %#<PRIx64>:\n" msgstr "" -#: dwarf.c:8316 +#: dwarf.c:8357 msgid "Only DWARF version 5+ debug_rnglists info is currently supported.\n" msgstr "" -#: dwarf.c:8323 +#: dwarf.c:8364 #, c-format msgid "" "\n" @@ -3838,751 +3852,746 @@ msgstr "" #. This can happen when the file was compiled with -gsplit-debug #. which removes references to range lists from the primary .o file. -#: dwarf.c:8390 +#: dwarf.c:8432 #, c-format msgid "No range lists referenced by .debug_info section.\n" msgstr "" -#: dwarf.c:8419 -#, c-format -msgid "Range lists in %s section start at %#<PRIx64>\n" -msgstr "" - -#: dwarf.c:8424 dwarf.c:8459 +#: dwarf.c:8462 dwarf.c:8498 #, c-format msgid " Offset Begin End\n" msgstr "" -#: dwarf.c:8442 +#: dwarf.c:8481 #, c-format msgid "Corrupt pointer size (%d) in debug entry at offset %#<PRIx64>\n" msgstr "" -#: dwarf.c:8449 +#: dwarf.c:8488 #, c-format msgid "Corrupt offset (%#<PRIx64>) in range entry %u\n" msgstr "" -#: dwarf.c:8476 +#: dwarf.c:8523 #, c-format msgid "There is a hole [%#tx - %#tx] in %s section.\n" msgstr "" -#: dwarf.c:8482 +#: dwarf.c:8531 #, c-format msgid "There is an overlap [%#tx - %#tx] in %s section.\n" msgstr "" -#: dwarf.c:8567 +#: dwarf.c:8621 #, c-format msgid "Unfeasibly large register number: %u\n" msgstr "" -#: dwarf.c:8581 +#: dwarf.c:8635 #, c-format msgid "Out of memory allocating %u columns in dwarf frame arrays\n" msgstr "" -#: dwarf.c:9077 +#: dwarf.c:9147 msgid "No terminator for augmentation name\n" msgstr "" -#: dwarf.c:9095 +#: dwarf.c:9165 #, c-format msgid "Invalid pointer size (%d) in CIE data\n" msgstr "" -#: dwarf.c:9103 +#: dwarf.c:9173 #, c-format msgid "Invalid segment size (%d) in CIE data\n" msgstr "" -#: dwarf.c:9139 dwarf.c:9770 +#: dwarf.c:9209 dwarf.c:9839 #, c-format msgid "Augmentation data too long: %#<PRIx64>, expected at most %#tx\n" msgstr "" -#: dwarf.c:9224 +#: dwarf.c:9294 #, c-format msgid " Augmentation data: " msgstr "" -#: dwarf.c:9382 +#: dwarf.c:9451 msgid ".eh_frame_hdr section is too small\n" msgstr "" -#: dwarf.c:9389 +#: dwarf.c:9458 #, c-format msgid "Unsupported .eh_frame_hdr version %u\n" msgstr "" -#: dwarf.c:9393 dwarf.c:11324 +#: dwarf.c:9462 dwarf.c:11394 #, c-format msgid " Version: %u\n" msgstr "" #. Strictly speaking this is the encoding format of the eh_frame_ptr field below. -#: dwarf.c:9397 +#: dwarf.c:9466 #, c-format msgid " Pointer Encoding Format: %#x (%s)\n" msgstr "" -#: dwarf.c:9400 +#: dwarf.c:9469 #, c-format msgid " Count Encoding Format: %#x (%s)\n" msgstr "" -#: dwarf.c:9403 +#: dwarf.c:9472 #, c-format msgid " Table Encoding Format: %#x (%s)\n" msgstr "" -#: dwarf.c:9412 +#: dwarf.c:9481 msgid "unable to read eh_frame_ptr field in .eh_frame_hdr section\n" msgstr "" -#: dwarf.c:9415 +#: dwarf.c:9484 #, c-format msgid " Start of frame section: %#<PRIx64>" msgstr "" -#: dwarf.c:9419 +#: dwarf.c:9488 #, c-format msgid " (offset: %#<PRIx64>)" msgstr "" -#: dwarf.c:9426 +#: dwarf.c:9495 msgid "" "It is suspicious to have a .eh_frame_hdr section with an empty search table\n" msgstr "" -#: dwarf.c:9432 +#: dwarf.c:9501 msgid "The count field format should be absolute, not relative to an address\n" msgstr "" -#: dwarf.c:9439 +#: dwarf.c:9508 msgid "unable to read fde_count field in .eh_frame_hdr section\n" msgstr "" -#: dwarf.c:9442 +#: dwarf.c:9511 #, c-format msgid " Entries in search table: %#<PRIx64>" msgstr "" -#: dwarf.c:9448 +#: dwarf.c:9517 msgid "" "It is suspicious to have a .eh_frame_hdr section an empty table but a non " "empty count field\n" msgstr "" -#: dwarf.c:9462 +#: dwarf.c:9531 #, c-format msgid "" "Failed to read location field for entry %#<PRIx64> in the .eh_frame_hdr's " "search table\n" msgstr "" -#: dwarf.c:9470 +#: dwarf.c:9539 #, c-format msgid "" "Failed to read address field for entry %#<PRIx64> in the .eh_frame_hdr's " "search table\n" msgstr "" -#: dwarf.c:9499 +#: dwarf.c:9568 msgid "bad register: " msgstr "" -#: dwarf.c:9670 +#: dwarf.c:9739 msgid "Failed to read CIE information\n" msgstr "" -#: dwarf.c:9681 dwarf.c:9702 dwarf.c:9731 +#: dwarf.c:9750 dwarf.c:9771 dwarf.c:9800 msgid "Invalid max register\n" msgstr "" #. PR 17512: file: 9e196b3e. -#: dwarf.c:9746 +#: dwarf.c:9815 #, c-format msgid "Probably corrupt segment size: %d - using 4 instead\n" msgstr "" #. Ideally translate "invalid " to 8 chars, trailing space #. is optional. -#: dwarf.c:9790 +#: dwarf.c:9859 #, c-format msgid "cie=invalid " msgstr "" -#: dwarf.c:10224 +#: dwarf.c:10293 msgid "Invalid column number in saved frame state\n" msgstr "" -#: dwarf.c:10274 dwarf.c:10298 +#: dwarf.c:10343 dwarf.c:10367 #, c-format msgid " %s: <corrupt len %<PRIu64>>\n" msgstr "" -#: dwarf.c:10447 +#: dwarf.c:10516 #, c-format msgid " DW_CFA_??? (User defined call frame op: %#x)\n" msgstr "" -#: dwarf.c:10449 +#: dwarf.c:10518 #, c-format msgid "Unsupported or unknown Dwarf Call Frame Instruction number: %#x\n" msgstr "" -#: dwarf.c:10553 +#: dwarf.c:10622 #, c-format msgid "Debug info is corrupted, %s header at %#tx has length %#<PRIx64>\n" msgstr "" -#: dwarf.c:10562 +#: dwarf.c:10631 #, c-format msgid "Version %d\n" msgstr "" -#: dwarf.c:10568 +#: dwarf.c:10637 msgid "Only DWARF version 5 .debug_names is currently supported.\n" msgstr "" -#: dwarf.c:10575 +#: dwarf.c:10644 #, c-format msgid "Padding field of .debug_names must be 0 (found 0x%x)\n" msgstr "" -#: dwarf.c:10580 +#: dwarf.c:10649 msgid "Compilation unit count must be >= 1 in .debug_names\n" msgstr "" -#: dwarf.c:10591 +#: dwarf.c:10660 #, c-format msgid "" "Augmentation string length %u must be rounded up to a multiple of 4 in ." "debug_names.\n" msgstr "" -#: dwarf.c:10599 +#: dwarf.c:10668 #, c-format msgid "Augmentation string:" msgstr "" -#: dwarf.c:10626 +#: dwarf.c:10695 #, c-format msgid "CU table:\n" msgstr "" -#: dwarf.c:10639 +#: dwarf.c:10708 #, c-format msgid "TU table:\n" msgstr "" -#: dwarf.c:10652 +#: dwarf.c:10721 #, c-format msgid "Foreign TU table:\n" msgstr "" -#: dwarf.c:10661 +#: dwarf.c:10730 #, c-format msgid "[%3u] " msgstr "" -#: dwarf.c:10672 +#: dwarf.c:10741 #, c-format msgid "" "Entry pool offset (%#<PRIx64>) exceeds unit size %#tx for unit %#tx in the " "debug_names\n" msgstr "" -#: dwarf.c:10700 +#: dwarf.c:10769 #, c-format msgid "Used %zu of %lu bucket.\n" msgid_plural "Used %zu of %lu buckets.\n" msgstr[0] "" msgstr[1] "" -#: dwarf.c:10729 +#: dwarf.c:10798 #, c-format msgid "" "Out of %<PRIu64> items there are %zu bucket clashes (longest of %zu " "entries).\n" msgstr "" -#: dwarf.c:10734 +#: dwarf.c:10803 #, c-format msgid "" "The name_count (%<PRIu64>) is not the same as the used bucket_count (%zu) + " "the hash clash count (%zu)\n" msgstr "" -#: dwarf.c:10772 +#: dwarf.c:10841 #, c-format msgid "" "Duplicate abbreviation tag %<PRIu64> in unit %#tx in the debug_names " "section\n" msgstr "" -#: dwarf.c:10794 dwarf.c:11097 +#: dwarf.c:10863 dwarf.c:11167 #, c-format msgid "" "\n" "Symbol table:\n" msgstr "" -#: dwarf.c:10827 +#: dwarf.c:10896 #, c-format msgid "Invalid entry offset value: %<PRIx64>\n" msgstr "" -#: dwarf.c:10859 +#: dwarf.c:10929 #, c-format msgid "" "Undefined abbreviation tag %<PRId64> in unit %#tx in the debug_names " "section\n" msgstr "" -#: dwarf.c:10890 +#: dwarf.c:10960 #, c-format msgid " <no entries>" msgstr "" -#: dwarf.c:10922 +#: dwarf.c:10992 msgid "The debuglink filename is corrupt/missing\n" msgstr "" -#: dwarf.c:10926 +#: dwarf.c:10996 #, c-format msgid " Separate debug info file: %s\n" msgstr "" -#: dwarf.c:10937 +#: dwarf.c:11007 msgid "CRC offset missing/truncated\n" msgstr "" -#: dwarf.c:10943 +#: dwarf.c:11013 #, c-format msgid " CRC value: %#x\n" msgstr "" -#: dwarf.c:10947 +#: dwarf.c:11017 #, c-format msgid "There are %#<PRIx64> extraneous bytes at the end of the section\n" msgstr "" -#: dwarf.c:10962 +#: dwarf.c:11032 #, c-format msgid "Build-ID is too short (%#zx bytes)\n" msgstr "" -#: dwarf.c:10966 +#: dwarf.c:11036 #, c-format msgid " Build-ID (%#zx bytes):" msgstr "" -#: dwarf.c:10998 +#: dwarf.c:11068 #, c-format msgid "Truncated header in the %s section.\n" msgstr "" -#: dwarf.c:11002 +#: dwarf.c:11072 #, c-format msgid "Version %lu\n" msgstr "" -#: dwarf.c:11008 +#: dwarf.c:11078 #, c-format msgid "Unsupported version %lu.\n" msgstr "" -#: dwarf.c:11012 +#: dwarf.c:11082 msgid "The address table data in version 3 may be wrong.\n" msgstr "" -#: dwarf.c:11014 +#: dwarf.c:11084 msgid "Version 4 does not support case insensitive lookups.\n" msgstr "" -#: dwarf.c:11016 +#: dwarf.c:11086 msgid "Version 5 does not include inlined functions.\n" msgstr "" -#: dwarf.c:11018 +#: dwarf.c:11088 msgid "Version 6 does not include symbol attributes.\n" msgstr "" -#: dwarf.c:11046 +#: dwarf.c:11116 #, c-format msgid "Corrupt header in the %s section.\n" msgstr "" -#: dwarf.c:11062 +#: dwarf.c:11132 #, c-format msgid "" "\n" "CU table:\n" msgstr "" -#: dwarf.c:11072 +#: dwarf.c:11142 #, c-format msgid "" "\n" "TU table:\n" msgstr "" -#: dwarf.c:11085 +#: dwarf.c:11155 #, c-format msgid "" "\n" "Address table:\n" msgstr "" -#: dwarf.c:11112 +#: dwarf.c:11182 #, c-format msgid "[%3u] <corrupt offset: %x>" msgstr "" -#: dwarf.c:11113 +#: dwarf.c:11183 #, c-format msgid "Corrupt name offset of 0x%x found for symbol table slot %d\n" msgstr "" -#: dwarf.c:11124 +#: dwarf.c:11194 #, c-format msgid "<invalid CU vector offset: %x>\n" msgstr "" -#: dwarf.c:11125 +#: dwarf.c:11195 #, c-format msgid "Corrupt CU vector offset of 0x%x found for symbol table slot %d\n" msgstr "" -#: dwarf.c:11136 +#: dwarf.c:11206 #, c-format msgid "Invalid number of CUs (0x%x) for symbol table slot %d\n" msgstr "" -#: dwarf.c:11161 +#: dwarf.c:11231 msgid "static" msgstr "" -#: dwarf.c:11161 +#: dwarf.c:11231 msgid "global" msgstr "" -#: dwarf.c:11173 +#: dwarf.c:11243 #, c-format msgid "" "\n" "Shortcut table:\n" msgstr "" -#: dwarf.c:11177 +#: dwarf.c:11247 #, c-format msgid "Corrupt shortcut table in the %s section.\n" msgstr "" -#: dwarf.c:11182 +#: dwarf.c:11252 #, c-format msgid "Language of main: " msgstr "" -#: dwarf.c:11186 +#: dwarf.c:11256 #, c-format msgid "Name of main: " msgstr "" -#: dwarf.c:11188 +#: dwarf.c:11258 #, c-format msgid "<unknown>\n" msgstr "" -#: dwarf.c:11194 +#: dwarf.c:11264 #, c-format msgid "<corrupt offset: %x>\n" msgstr "" -#: dwarf.c:11195 +#: dwarf.c:11265 #, c-format msgid "Corrupt name offset of 0x%x found for name of main\n" msgstr "" -#: dwarf.c:11299 +#: dwarf.c:11369 #, c-format msgid "Section %s is empty\n" msgstr "" -#: dwarf.c:11305 +#: dwarf.c:11375 #, c-format msgid "Section %s is too small to contain a CU/TU header\n" msgstr "" -#: dwarf.c:11326 +#: dwarf.c:11396 #, c-format msgid " Number of columns: %u\n" msgstr "" -#: dwarf.c:11327 +#: dwarf.c:11397 #, c-format msgid " Number of used entries: %u\n" msgstr "" -#: dwarf.c:11328 +#: dwarf.c:11398 #, c-format msgid "" " Number of slots: %u\n" "\n" msgstr "" -#: dwarf.c:11335 +#: dwarf.c:11405 #, c-format msgid "Section %s is too small for %u slot\n" msgid_plural "Section %s is too small for %u slots\n" msgstr[0] "" msgstr[1] "" -#: dwarf.c:11368 +#: dwarf.c:11438 msgid "Section index pool located before start of section\n" msgstr "" -#: dwarf.c:11372 +#: dwarf.c:11442 #, c-format msgid " [%3d] Signature: %#<PRIx64> Sections: " msgstr "" -#: dwarf.c:11378 +#: dwarf.c:11448 #, c-format msgid "Section %s too small for shndx pool\n" msgstr "" -#: dwarf.c:11421 +#: dwarf.c:11491 #, c-format msgid "Section %s too small for offset and size tables\n" msgstr "" -#: dwarf.c:11428 +#: dwarf.c:11498 #, c-format msgid " Offset table\n" msgstr "" -#: dwarf.c:11430 dwarf.c:11517 +#: dwarf.c:11500 dwarf.c:11587 msgid "signature" msgstr "" -#: dwarf.c:11430 dwarf.c:11517 +#: dwarf.c:11500 dwarf.c:11587 msgid "dwo_id" msgstr "" -#: dwarf.c:11469 +#: dwarf.c:11539 #, c-format msgid "Row index (%u) is larger than number of used entries (%u)\n" msgstr "" -#: dwarf.c:11497 dwarf.c:11568 +#: dwarf.c:11567 dwarf.c:11638 #, c-format msgid "Overlarge Dwarf section index detected: %u\n" msgstr "" -#: dwarf.c:11515 +#: dwarf.c:11585 #, c-format msgid " Size table\n" msgstr "" -#: dwarf.c:11554 +#: dwarf.c:11624 #, c-format msgid "Too many rows/columns in DWARF index section %s\n" msgstr "" -#: dwarf.c:11583 +#: dwarf.c:11653 #, c-format msgid " Unsupported version (%d)\n" msgstr "" -#: dwarf.c:11655 +#: dwarf.c:11725 #, c-format msgid "Displaying the debug contents of section %s is not yet supported.\n" msgstr "" -#: dwarf.c:11686 +#: dwarf.c:11756 #, c-format msgid "" "Attempt to allocate an array with an excessive number of elements: %" "#<PRIx64>\n" msgstr "" -#: dwarf.c:11704 +#: dwarf.c:11774 #, c-format msgid "" "Attempt to re-allocate an array with an excessive number of elements: %" "#<PRIx64>\n" msgstr "" -#: dwarf.c:11720 +#: dwarf.c:11790 #, c-format msgid "" "Attempt to allocate a zero'ed array with an excessive number of elements: %" "#<PRIx64>\n" msgstr "" -#: dwarf.c:11818 +#: dwarf.c:11888 #, c-format msgid "Unable to reopen separate debug info file: %s\n" msgstr "" -#: dwarf.c:11830 +#: dwarf.c:11900 #, c-format msgid "Separate debug info file %s found, but CRC does not match - ignoring\n" msgstr "" -#: dwarf.c:12010 +#: dwarf.c:12080 #, c-format msgid "Corrupt debuglink section: %s\n" msgstr "" -#: dwarf.c:12049 elfcomm.c:295 elfcomm.c:320 elfcomm.c:794 +#: dwarf.c:12119 elfcomm.c:295 elfcomm.c:320 elfcomm.c:794 msgid "Out of memory\n" msgstr "" #. Failed to find the file. -#: dwarf.c:12125 +#: dwarf.c:12195 #, c-format msgid "could not find separate debug file '%s'\n" msgstr "" -#: dwarf.c:12127 dwarf.c:12132 dwarf.c:12138 dwarf.c:12142 dwarf.c:12147 -#: dwarf.c:12150 dwarf.c:12153 dwarf.c:12156 +#: dwarf.c:12197 dwarf.c:12202 dwarf.c:12208 dwarf.c:12212 dwarf.c:12217 +#: dwarf.c:12220 dwarf.c:12223 dwarf.c:12226 #, c-format msgid "tried: %s\n" msgstr "" -#: dwarf.c:12166 +#: dwarf.c:12236 #, c-format msgid "tried: DEBUGINFOD_URLS=%s\n" msgstr "" -#: dwarf.c:12194 +#: dwarf.c:12264 #, c-format msgid "failed to open separate debug file: %s\n" msgstr "" -#: dwarf.c:12203 +#: dwarf.c:12273 #, c-format msgid "" "\n" "%s: Found separate debug info file: %s\n" msgstr "" -#: dwarf.c:12226 +#: dwarf.c:12296 msgid "Out of memory allocating dwo filename\n" msgstr "" -#: dwarf.c:12232 +#: dwarf.c:12302 #, c-format msgid "Unable to load dwo file: %s\n" msgstr "" #. FIXME: We should check the dwo_id. -#: dwarf.c:12239 +#: dwarf.c:12309 #, c-format msgid "" "%s: Found separate debug object file: %s\n" "\n" msgstr "" -#: dwarf.c:12271 +#: dwarf.c:12341 msgid "Unable to load the .note.gnu.build-id section\n" msgstr "" -#: dwarf.c:12277 +#: dwarf.c:12347 msgid ".note.gnu.build-id section is corrupt/empty\n" msgstr "" -#: dwarf.c:12298 +#: dwarf.c:12368 msgid ".note.gnu.build-id data size is too small\n" msgstr "" -#: dwarf.c:12304 +#: dwarf.c:12374 msgid ".note.gnu.build-id data size is too big\n" msgstr "" -#: dwarf.c:12365 +#: dwarf.c:12435 msgid ".debug_sup section is corrupt/empty\n" msgstr "" -#: dwarf.c:12375 +#: dwarf.c:12445 msgid "filename in .debug_sup section is corrupt\n" msgstr "" -#: dwarf.c:12392 +#: dwarf.c:12462 #, c-format msgid "unable to open file '%s' referenced from .debug_sup section\n" msgstr "" -#: dwarf.c:12397 +#: dwarf.c:12467 #, c-format msgid "" "%s: Found supplementary debug file: %s\n" "\n" msgstr "" -#: dwarf.c:12498 +#: dwarf.c:12568 msgid "Multiple DWO_NAMEs encountered for the same CU\n" msgstr "" -#: dwarf.c:12510 +#: dwarf.c:12580 msgid "multiple DWO_IDs encountered for the same CU\n" msgstr "" -#: dwarf.c:12515 +#: dwarf.c:12585 msgid "Unexpected DWO INFO type" msgstr "" -#: dwarf.c:12530 +#: dwarf.c:12600 #, c-format msgid "" "The %s section contains link(s) to dwo file(s):\n" "\n" msgstr "" -#: dwarf.c:12535 +#: dwarf.c:12605 #, c-format msgid " Name: %s\n" msgstr "" -#: dwarf.c:12536 +#: dwarf.c:12606 #, c-format msgid " Directory: %s\n" msgstr "" -#: dwarf.c:12536 +#: dwarf.c:12606 msgid "<not-found>" msgstr "" -#: dwarf.c:12538 +#: dwarf.c:12608 #, c-format msgid " ID: " msgstr "" -#: dwarf.c:12540 +#: dwarf.c:12610 #, c-format msgid " ID: <not specified>\n" msgstr "" -#: dwarf.c:12697 +#: dwarf.c:12768 #, c-format msgid "Unrecognized debug option '%s'\n" msgstr "" -#: dwarf.c:12741 +#: dwarf.c:12812 #, c-format msgid "Unrecognized debug letter option '%c'\n" msgstr "" -#: dwarf.h:282 +#: dwarf.h:283 msgid "end of data encountered whilst reading LEB\n" msgstr "" -#: dwarf.h:284 +#: dwarf.h:285 msgid "read LEB value is too large to store in destination variable\n" msgstr "" @@ -4672,7 +4681,7 @@ msgstr "" #. PR 24049 - we cannot use filedata->file_name as this will #. have already been freed. -#: elfcomm.c:518 elfcomm.c:752 elfedit.c:613 readelf.c:24034 +#: elfcomm.c:518 elfcomm.c:752 elfedit.c:624 readelf.c:24044 #, c-format msgid "%s: failed to read archive header\n" msgstr "" @@ -4719,7 +4728,7 @@ msgstr "" msgid "%s: failed to seek to next file name\n" msgstr "" -#: elfcomm.c:757 elfedit.c:620 readelf.c:24041 +#: elfcomm.c:757 elfedit.c:631 readelf.c:24051 #, c-format msgid "%s: did not find a valid archive header\n" msgstr "" @@ -4739,143 +4748,148 @@ msgstr "" msgid "%s: mmap () failed\n" msgstr "" -#: elfedit.c:246 +#: elfedit.c:118 +#, c-format +msgid "%s: can't read program headers\n" +msgstr "" + +#: elfedit.c:257 #, c-format msgid "%s: Invalid PT_NOTE segment\n" msgstr "" -#: elfedit.c:271 +#: elfedit.c:282 #, c-format msgid "Unknown x86 feature: %s\n" msgstr "" -#: elfedit.c:319 +#: elfedit.c:330 #, c-format msgid "%s: Unsupported EI_VERSION: %d is not %d\n" msgstr "" -#: elfedit.c:340 +#: elfedit.c:351 #, c-format msgid "%s: Unmatched input EI_CLASS: %d is not %d\n" msgstr "" -#: elfedit.c:349 +#: elfedit.c:360 #, c-format msgid "%s: Unmatched output EI_CLASS: %d is not %d\n" msgstr "" -#: elfedit.c:358 +#: elfedit.c:369 #, c-format msgid "%s: Unmatched e_machine: %d is not %d\n" msgstr "" -#: elfedit.c:369 +#: elfedit.c:380 #, c-format msgid "%s: Unmatched e_type: %d is not %d\n" msgstr "" -#: elfedit.c:380 +#: elfedit.c:391 #, c-format msgid "%s: Unmatched EI_OSABI: %d is not %d\n" msgstr "" -#: elfedit.c:392 +#: elfedit.c:403 #, c-format msgid "%s: Unmatched EI_ABIVERSION: %d is not %d\n" msgstr "" -#: elfedit.c:429 +#: elfedit.c:440 #, c-format msgid "%s: Failed to update ELF header: %s\n" msgstr "" -#: elfedit.c:499 +#: elfedit.c:510 msgid "" "This executable has been built without support for a\n" "64 bit data type and so it cannot process 64 bit ELF files.\n" msgstr "" -#: elfedit.c:540 +#: elfedit.c:551 #, c-format msgid "%s: Failed to read ELF header\n" msgstr "" -#: elfedit.c:547 +#: elfedit.c:558 #, c-format msgid "%s: Failed to seek to ELF header\n" msgstr "" -#: elfedit.c:604 readelf.c:24022 +#: elfedit.c:615 readelf.c:24032 #, c-format msgid "%s: failed to seek to next archive header\n" msgstr "" -#: elfedit.c:635 elfedit.c:644 readelf.c:24054 readelf.c:24063 +#: elfedit.c:646 elfedit.c:655 readelf.c:24064 readelf.c:24073 #, c-format msgid "%s: bad archive file name\n" msgstr "" -#: elfedit.c:667 elfedit.c:778 +#: elfedit.c:678 elfedit.c:789 #, c-format msgid "Input file '%s' is not readable\n" msgstr "" -#: elfedit.c:694 +#: elfedit.c:705 #, c-format msgid "%s: failed to seek to archive member\n" msgstr "" -#: elfedit.c:735 readelf.c:24182 +#: elfedit.c:746 readelf.c:24192 #, c-format msgid "'%s': No such file\n" msgstr "" -#: elfedit.c:737 readelf.c:24184 +#: elfedit.c:748 readelf.c:24194 #, c-format msgid "Could not locate '%s'. System error message: %s\n" msgstr "" -#: elfedit.c:758 readelf.c:24191 +#: elfedit.c:769 readelf.c:24201 #, c-format msgid "'%s' is not an ordinary file\n" msgstr "" -#: elfedit.c:784 readelf.c:24213 +#: elfedit.c:795 readelf.c:24223 #, c-format msgid "%s: Failed to read file's magic number\n" msgstr "" -#: elfedit.c:848 +#: elfedit.c:859 #, c-format msgid "Unknown OSABI: %s\n" msgstr "" -#: elfedit.c:873 +#: elfedit.c:884 #, c-format msgid "Unknown machine type: %s\n" msgstr "" -#: elfedit.c:892 +#: elfedit.c:903 #, c-format msgid "Unknown type: %s\n" msgstr "" -#: elfedit.c:943 +#: elfedit.c:954 #, c-format msgid "Usage: %s <option(s)> elffile(s)\n" msgstr "" -#: elfedit.c:945 +#: elfedit.c:956 #, c-format msgid " Update the ELF header of ELF files\n" msgstr "" -#: elfedit.c:946 nm.c:294 objcopy.c:573 objcopy.c:715 strings.c:1332 +#: elfedit.c:957 nm.c:302 objcopy.c:584 objcopy.c:726 strings.c:1332 #, c-format msgid " The options are:\n" msgstr "" -#: elfedit.c:947 +#: elfedit.c:958 #, c-format msgid "" " --input-mach [none|i386|iamcu|l1om|k1om|x86_64]\n" @@ -4894,7 +4908,7 @@ msgid "" " --output-abiversion [0-255] Set output ABIVERSION\n" msgstr "" -#: elfedit.c:964 +#: elfedit.c:975 #, c-format msgid "" " --enable-x86-feature [ibt|shstk|lam_u48|lam_u57]\n" @@ -4903,14 +4917,14 @@ msgid "" " Disable x86 feature\n" msgstr "" -#: elfedit.c:970 +#: elfedit.c:981 #, c-format msgid "" " -h --help Display this information\n" " -v --version Display the version number of %s\n" msgstr "" -#: elfedit.c:1049 elfedit.c:1060 +#: elfedit.c:1060 elfedit.c:1071 #, c-format msgid "Invalid ABIVERSION: %s\n" msgstr "" @@ -4939,69 +4953,69 @@ msgstr "" msgid "Duplicate symbol entered into keyword list." msgstr "" -#: nm.c:292 size.c:88 strings.c:1330 +#: nm.c:300 size.c:88 strings.c:1330 #, c-format msgid "Usage: %s [option(s)] [file(s)]\n" msgstr "" -#: nm.c:293 +#: nm.c:301 #, c-format msgid " List symbols in [file(s)] (a.out by default).\n" msgstr "" -#: nm.c:295 +#: nm.c:303 #, c-format msgid " -a, --debug-syms Display debugger-only symbols\n" msgstr "" -#: nm.c:297 +#: nm.c:305 #, c-format msgid "" " -A, --print-file-name Print name of the input file before every symbol\n" msgstr "" -#: nm.c:299 +#: nm.c:307 #, c-format msgid " -B Same as --format=bsd\n" msgstr "" -#: nm.c:301 +#: nm.c:309 #, c-format msgid " -C, --demangle[=STYLE] Decode mangled/processed symbol names\n" msgstr "" -#: nm.c:303 readelf.c:6202 +#: nm.c:311 readelf.c:6206 msgid " STYLE can be " msgstr "" -#: nm.c:305 +#: nm.c:313 #, c-format msgid " --no-demangle Do not demangle low-level symbol names\n" msgstr "" -#: nm.c:307 +#: nm.c:315 #, c-format msgid "" " --recurse-limit Enable a demangling recursion limit. (default)\n" msgstr "" -#: nm.c:309 +#: nm.c:317 #, c-format msgid " --no-recurse-limit Disable a demangling recursion limit.\n" msgstr "" -#: nm.c:311 +#: nm.c:319 #, c-format msgid "" " -D, --dynamic Display dynamic symbols instead of normal symbols\n" msgstr "" -#: nm.c:313 +#: nm.c:321 #, c-format msgid " -e (ignored)\n" msgstr "" -#: nm.c:315 +#: nm.c:323 #, c-format msgid "" " -f, --format=FORMAT Use the output format FORMAT. FORMAT can be " @@ -5010,111 +5024,111 @@ msgid "" " The default is `bsd'\n" msgstr "" -#: nm.c:319 +#: nm.c:327 #, c-format msgid " -g, --extern-only Display only external symbols\n" msgstr "" -#: nm.c:321 +#: nm.c:329 #, c-format msgid "" " --ifunc-chars=CHARS Characters to use when displaying ifunc symbols\n" msgstr "" -#: nm.c:323 +#: nm.c:331 #, c-format msgid " -j, --just-symbols Same as --format=just-symbols\n" msgstr "" -#: nm.c:325 +#: nm.c:333 #, c-format msgid "" " -l, --line-numbers Use debugging information to find a filename and\n" " line number for each symbol\n" msgstr "" -#: nm.c:328 +#: nm.c:336 #, c-format msgid " -n, --numeric-sort Sort symbols numerically by address\n" msgstr "" -#: nm.c:330 +#: nm.c:338 #, c-format msgid " -o Same as -A\n" msgstr "" -#: nm.c:332 +#: nm.c:340 #, c-format msgid " -p, --no-sort Do not sort the symbols\n" msgstr "" -#: nm.c:334 +#: nm.c:342 #, c-format msgid " -P, --portability Same as --format=posix\n" msgstr "" -#: nm.c:336 +#: nm.c:344 #, c-format msgid " -r, --reverse-sort Reverse the sense of the sort\n" msgstr "" -#: nm.c:339 +#: nm.c:347 #, c-format msgid " --plugin NAME Load the specified plugin\n" msgstr "" -#: nm.c:342 +#: nm.c:350 #, c-format msgid " -S, --print-size Print size of defined symbols\n" msgstr "" -#: nm.c:344 +#: nm.c:352 #, c-format msgid "" " -s, --print-armap Include index for symbols from archive members\n" msgstr "" -#: nm.c:346 +#: nm.c:354 #, c-format msgid " --quiet Suppress \"no symbols\" diagnostic\n" msgstr "" -#: nm.c:348 +#: nm.c:356 #, c-format msgid " --size-sort Sort symbols by size\n" msgstr "" -#: nm.c:350 +#: nm.c:358 #, c-format msgid " --special-syms Include special symbols in the output\n" msgstr "" -#: nm.c:352 +#: nm.c:360 #, c-format msgid " --synthetic Display synthetic symbols as well\n" msgstr "" -#: nm.c:354 +#: nm.c:362 #, c-format msgid " -t, --radix=RADIX Use RADIX for printing symbol values\n" msgstr "" -#: nm.c:356 +#: nm.c:364 #, c-format msgid " --target=BFDNAME Specify the target object format as BFDNAME\n" msgstr "" -#: nm.c:358 +#: nm.c:366 #, c-format msgid " -u, --undefined-only Display only undefined symbols\n" msgstr "" -#: nm.c:360 +#: nm.c:368 #, c-format msgid " -U, --defined-only Display only defined symbols\n" msgstr "" -#: nm.c:362 +#: nm.c:370 #, c-format msgid "" " --unicode={default|show|invalid|hex|escape|highlight}\n" @@ -5122,81 +5136,81 @@ msgid "" "characters\n" msgstr "" -#: nm.c:365 +#: nm.c:373 #, c-format msgid " -W, --no-weak Ignore weak symbols\n" msgstr "" -#: nm.c:367 +#: nm.c:375 #, c-format msgid "" " --without-symbol-versions Do not display version strings after symbol " "names\n" msgstr "" -#: nm.c:369 +#: nm.c:377 #, c-format msgid " -X 32_64 (ignored)\n" msgstr "" -#: nm.c:371 +#: nm.c:379 #, c-format msgid " @FILE Read options from FILE\n" msgstr "" -#: nm.c:373 +#: nm.c:381 #, c-format msgid " -h, --help Display this information\n" msgstr "" -#: nm.c:375 +#: nm.c:383 #, c-format msgid " -V, --version Display this program's version number\n" msgstr "" -#: nm.c:396 +#: nm.c:404 #, c-format msgid "%s: invalid radix" msgstr "" -#: nm.c:426 +#: nm.c:434 #, c-format msgid "%s: invalid output format" msgstr "" -#: nm.c:450 readelf.c:13743 readelf.c:13786 +#: nm.c:458 readelf.c:13756 readelf.c:13799 #, c-format msgid "<processor specific>: %d" msgstr "" -#: nm.c:452 readelf.c:13750 readelf.c:13803 +#: nm.c:460 readelf.c:13763 readelf.c:13816 #, c-format msgid "<OS specific>: %d" msgstr "" -#: nm.c:454 readelf.c:13753 readelf.c:13806 +#: nm.c:462 readelf.c:13766 readelf.c:13819 #, c-format msgid "<unknown>: %d" msgstr "" -#: nm.c:481 +#: nm.c:489 #, c-format msgid "<unknown>: %d/%d" msgstr "" -#: nm.c:749 +#: nm.c:757 #, c-format msgid "" "\n" "Archive index:\n" msgstr "" -#: nm.c:803 nm.c:1476 +#: nm.c:808 nm.c:1490 #, c-format msgid "%s: plugin needed to handle lto object" msgstr "" -#: nm.c:1685 +#: nm.c:1699 #, c-format msgid "" "\n" @@ -5205,7 +5219,7 @@ msgid "" "\n" msgstr "" -#: nm.c:1687 +#: nm.c:1701 #, c-format msgid "" "\n" @@ -5214,7 +5228,7 @@ msgid "" "\n" msgstr "" -#: nm.c:1689 nm.c:1750 +#: nm.c:1703 nm.c:1764 #, c-format msgid "" "Name Value Class Type Size Line " @@ -5222,7 +5236,7 @@ msgid "" "\n" msgstr "" -#: nm.c:1692 nm.c:1753 +#: nm.c:1706 nm.c:1767 #, c-format msgid "" "Name Value Class Type " @@ -5230,7 +5244,7 @@ msgid "" "\n" msgstr "" -#: nm.c:1746 +#: nm.c:1760 #, c-format msgid "" "\n" @@ -5239,7 +5253,7 @@ msgid "" "\n" msgstr "" -#: nm.c:1748 +#: nm.c:1762 #, c-format msgid "" "\n" @@ -5248,39 +5262,39 @@ msgid "" "\n" msgstr "" -#: nm.c:1832 +#: nm.c:1846 #, c-format msgid "Print width has not been initialized (%d)" msgstr "" -#: nm.c:2097 objdump.c:6330 readelf.c:6669 strings.c:314 +#: nm.c:2111 objdump.c:6387 readelf.c:6681 strings.c:314 #, c-format msgid "invalid argument to -U/--unicode: %s" msgstr "" -#: nm.c:2115 +#: nm.c:2129 msgid "Only -X 32_64 is supported" msgstr "" -#: nm.c:2147 +#: nm.c:2161 msgid "Using the --size-sort and --undefined-only options together" msgstr "" -#: nm.c:2148 +#: nm.c:2162 msgid "will produce no output, since undefined symbols have no size." msgstr "" -#: objcopy.c:571 srconv.c:1694 +#: objcopy.c:582 srconv.c:1694 #, c-format msgid "Usage: %s [option(s)] in-file [out-file]\n" msgstr "" -#: objcopy.c:572 +#: objcopy.c:583 #, c-format msgid " Copies a binary file, possibly transforming it in the process\n" msgstr "" -#: objcopy.c:574 +#: objcopy.c:585 #, c-format msgid "" " -I --input-target <bfdname> Assume input file is in format <bfdname>\n" @@ -5295,7 +5309,7 @@ msgid "" "output\n" msgstr "" -#: objcopy.c:582 objcopy.c:723 +#: objcopy.c:593 objcopy.c:734 #, c-format msgid "" " -D --enable-deterministic-archives\n" @@ -5305,7 +5319,7 @@ msgid "" " Disable -D behavior\n" msgstr "" -#: objcopy.c:588 objcopy.c:729 +#: objcopy.c:599 objcopy.c:740 #, c-format msgid "" " -D --enable-deterministic-archives\n" @@ -5315,7 +5329,7 @@ msgid "" " Disable -D behavior (default)\n" msgstr "" -#: objcopy.c:593 +#: objcopy.c:604 #, c-format msgid "" " -j --only-section <name> Only copy section <name> into the output\n" @@ -5467,17 +5481,17 @@ msgid "" "supported\n" msgstr "" -#: objcopy.c:713 +#: objcopy.c:724 #, c-format msgid "Usage: %s <option(s)> in-file(s)\n" msgstr "" -#: objcopy.c:714 +#: objcopy.c:725 #, c-format msgid " Removes symbols and sections from files\n" msgstr "" -#: objcopy.c:716 +#: objcopy.c:727 #, c-format msgid "" " -I --input-target=<bfdname> Assume input file is in format <bfdname>\n" @@ -5489,7 +5503,7 @@ msgid "" "output\n" msgstr "" -#: objcopy.c:734 +#: objcopy.c:745 #, c-format msgid "" " -R --remove-section=<name> Also remove section <name> from the " @@ -5523,703 +5537,713 @@ msgid "" " -o <file> Place stripped output into <file>\n" msgstr "" -#: objcopy.c:814 +#: objcopy.c:771 +#, c-format +msgid " --plugin NAME Load the specified plugin\n" +msgstr "" + +#: objcopy.c:829 #, c-format msgid "unrecognized section flag `%s'" msgstr "" -#: objcopy.c:815 objcopy.c:889 +#: objcopy.c:830 objcopy.c:904 #, c-format msgid "supported flags: %s" msgstr "" -#: objcopy.c:888 +#: objcopy.c:903 #, c-format msgid "unrecognized symbol flag `%s'" msgstr "" -#: objcopy.c:947 +#: objcopy.c:962 #, c-format msgid "error: %s both copied and removed" msgstr "" -#: objcopy.c:953 +#: objcopy.c:968 #, c-format msgid "error: %s both sets and alters VMA" msgstr "" -#: objcopy.c:959 +#: objcopy.c:974 #, c-format msgid "error: %s both sets and alters LMA" msgstr "" -#: objcopy.c:1122 +#: objcopy.c:1137 #, c-format msgid "cannot open '%s': %s" msgstr "" -#: objcopy.c:1125 objcopy.c:5282 +#: objcopy.c:1140 objcopy.c:5323 #, c-format msgid "%s: fread failed" msgstr "" -#: objcopy.c:1198 +#: objcopy.c:1213 #, c-format msgid "%s:%d: Ignoring rubbish found on this line" msgstr "" -#: objcopy.c:1342 +#: objcopy.c:1357 #, c-format msgid "error: section %s matches both remove and copy options" msgstr "" -#: objcopy.c:1345 +#: objcopy.c:1360 #, c-format msgid "error: section %s matches both update and remove options" msgstr "" -#: objcopy.c:1520 +#: objcopy.c:1535 #, c-format msgid "Section %s not found" msgstr "" -#: objcopy.c:1569 +#: objcopy.c:1584 msgid "redefining symbols does not work on LTO-compiled object files" msgstr "" -#: objcopy.c:1682 +#: objcopy.c:1697 #, c-format msgid "not stripping symbol `%s' because it is named in a relocation" msgstr "" -#: objcopy.c:1745 +#: objcopy.c:1760 #, c-format msgid "'before=%s' not found" msgstr "" -#: objcopy.c:1785 +#: objcopy.c:1800 #, c-format msgid "%s: Multiple redefinition of symbol \"%s\"" msgstr "" -#: objcopy.c:1789 +#: objcopy.c:1804 #, c-format msgid "%s: Symbol \"%s\" is target of more than one redefinition" msgstr "" -#: objcopy.c:1816 +#: objcopy.c:1831 #, c-format msgid "couldn't open symbol redefinition file %s (error: %s)" msgstr "" -#: objcopy.c:1894 +#: objcopy.c:1909 #, c-format msgid "%s:%d: garbage found at end of line" msgstr "" -#: objcopy.c:1897 +#: objcopy.c:1912 #, c-format msgid "%s:%d: missing new symbol name" msgstr "" -#: objcopy.c:1907 +#: objcopy.c:1922 #, c-format msgid "%s:%d: premature end of file" msgstr "" -#: objcopy.c:1933 +#: objcopy.c:1939 #, c-format msgid "stat returns negative size for `%s'" msgstr "" -#: objcopy.c:1945 +#: objcopy.c:1951 #, c-format msgid "copy from `%s' [unknown] to `%s' [unknown]\n" msgstr "" -#: objcopy.c:2193 +#: objcopy.c:2219 #, c-format msgid "%s[%s]: Cannot merge - there are relocations against this section" msgstr "" -#: objcopy.c:2215 +#: objcopy.c:2241 msgid "corrupt GNU build attribute note: description size not a factor of 4" msgstr "" -#: objcopy.c:2222 +#: objcopy.c:2248 msgid "corrupt GNU build attribute note: wrong note type" msgstr "" -#: objcopy.c:2228 +#: objcopy.c:2254 msgid "corrupt GNU build attribute note: note too big" msgstr "" -#: objcopy.c:2234 +#: objcopy.c:2260 msgid "corrupt GNU build attribute note: name too small" msgstr "" -#: objcopy.c:2257 +#: objcopy.c:2283 msgid "corrupt GNU build attribute note: unsupported version" msgstr "" -#: objcopy.c:2291 +#: objcopy.c:2317 msgid "corrupt GNU build attribute note: bad description size" msgstr "" -#: objcopy.c:2327 +#: objcopy.c:2353 msgid "corrupt GNU build attribute note: name not NUL terminated" msgstr "" -#: objcopy.c:2339 +#: objcopy.c:2365 msgid "corrupt GNU build attribute notes: excess data at end" msgstr "" -#: objcopy.c:2346 +#: objcopy.c:2372 msgid "bad GNU build attribute notes: no known versions detected" msgstr "" #. This happens with glibc. No idea why. -#: objcopy.c:2350 +#: objcopy.c:2376 #, c-format msgid "%s[%s]: Warning: version note missing - assuming version 3" msgstr "" -#: objcopy.c:2360 +#: objcopy.c:2386 msgid "bad GNU build attribute notes: multiple different versions" msgstr "" -#: objcopy.c:2608 +#: objcopy.c:2634 #, c-format msgid "%s[%s]: Note - dropping 'share' flag as output format is not COFF" msgstr "" -#: objcopy.c:2620 +#: objcopy.c:2646 #, c-format msgid "%s[%s]: 'large' flag is ELF x86-64 specific" msgstr "" #. PR 17636: Call non-fatal so that we return to our parent who #. may need to tidy temporary files. -#: objcopy.c:2666 +#: objcopy.c:2692 #, c-format msgid "unable to change endianness of '%s'" msgstr "" -#: objcopy.c:2673 +#: objcopy.c:2699 #, c-format msgid "unable to modify '%s' due to errors" msgstr "" -#: objcopy.c:2686 +#: objcopy.c:2712 #, c-format msgid "error: the input file '%s' has no sections" msgstr "" -#: objcopy.c:2714 +#: objcopy.c:2740 #, c-format msgid "" "--compress-debug-sections=[zlib|zlib-gnu|zlib-gabi|zstd] is unsupported on `%" "s'" msgstr "" -#: objcopy.c:2722 +#: objcopy.c:2748 #, c-format msgid "--elf-stt-common=[yes|no] is unsupported on `%s'" msgstr "" -#: objcopy.c:2729 +#: objcopy.c:2755 #, c-format msgid "--strip-section-headers is unsupported on `%s'" msgstr "" -#: objcopy.c:2736 +#: objcopy.c:2762 #, c-format msgid "copy from `%s' [%s] to `%s' [%s]\n" msgstr "" -#: objcopy.c:2784 +#: objcopy.c:2810 #, c-format msgid "Input file `%s' ignores binary architecture parameter." msgstr "" -#: objcopy.c:2800 +#: objcopy.c:2826 #, c-format msgid "Unable to recognise the format of the input file `%s'" msgstr "" -#: objcopy.c:2803 +#: objcopy.c:2829 #, c-format msgid "Output file cannot represent architecture `%s'" msgstr "" -#: objcopy.c:2869 +#: objcopy.c:2895 #, c-format msgid "warning: file alignment (0x%<PRIx64>) > section alignment (0x%<PRIx64>)" msgstr "" -#: objcopy.c:2943 +#: objcopy.c:2969 #, c-format msgid "can't add section '%s'" msgstr "" -#: objcopy.c:2957 +#: objcopy.c:2983 #, c-format msgid "can't create section `%s'" msgstr "" -#: objcopy.c:3005 +#: objcopy.c:3031 #, c-format msgid "error: %s not found, can't be updated" msgstr "" -#: objcopy.c:3045 +#: objcopy.c:3071 msgid "warning: could not load note section" msgstr "" -#: objcopy.c:3066 +#: objcopy.c:3092 msgid "warning: failed to set merged notes size" msgstr "" -#: objcopy.c:3092 +#: objcopy.c:3118 #, c-format msgid "can't dump section '%s' - it does not exist" msgstr "" -#: objcopy.c:3100 +#: objcopy.c:3126 msgid "can't dump section - it has no contents" msgstr "" -#: objcopy.c:3112 +#: objcopy.c:3138 msgid "could not open section dump file" msgstr "" -#: objcopy.c:3120 +#: objcopy.c:3146 #, c-format msgid "error writing section contents to %s (error: %s)" msgstr "" -#: objcopy.c:3130 +#: objcopy.c:3156 msgid "could not retrieve section contents" msgstr "" -#: objcopy.c:3144 +#: objcopy.c:3170 #, c-format msgid "%s: debuglink section already exists" msgstr "" -#: objcopy.c:3156 +#: objcopy.c:3182 #, c-format msgid "cannot create debug link section `%s'" msgstr "" -#: objcopy.c:3249 +#: objcopy.c:3275 msgid "Can't fill gap after section" msgstr "" -#: objcopy.c:3273 +#: objcopy.c:3299 msgid "can't add padding" msgstr "" -#: objcopy.c:3445 +#: objcopy.c:3471 msgid "error: failed to locate merged notes" msgstr "" -#: objcopy.c:3454 +#: objcopy.c:3480 msgid "error: failed to merge notes" msgstr "" -#: objcopy.c:3463 +#: objcopy.c:3489 msgid "error: failed to copy merged notes into output" msgstr "" -#: objcopy.c:3480 +#: objcopy.c:3506 #, c-format msgid "%s: Could not find any mergeable note sections" msgstr "" -#: objcopy.c:3489 +#: objcopy.c:3515 #, c-format msgid "cannot fill debug link section `%s'" msgstr "" -#: objcopy.c:3552 +#: objcopy.c:3578 msgid "error copying private BFD data" msgstr "" -#: objcopy.c:3563 +#: objcopy.c:3589 #, c-format msgid "this target does not support %lu alternative machine codes" msgstr "" -#: objcopy.c:3567 +#: objcopy.c:3593 msgid "treating that number as an absolute e_machine value instead" msgstr "" -#: objcopy.c:3571 +#: objcopy.c:3597 msgid "ignoring the alternative value" msgstr "" -#: objcopy.c:3632 +#: objcopy.c:3658 msgid "sorry: copying thin archives is not currently supported" msgstr "" -#: objcopy.c:3639 objcopy.c:3695 +#: objcopy.c:3665 objcopy.c:3721 #, c-format msgid "cannot create tempdir for archive copying (error: %s)" msgstr "" -#: objcopy.c:3674 +#: objcopy.c:3700 #, c-format msgid "warning: illegal pathname found in archive member: %s" msgstr "" -#: objcopy.c:3680 +#: objcopy.c:3706 #, c-format msgid "warning: using the basename of the member instead: %s" msgstr "" -#: objcopy.c:3728 +#: objcopy.c:3754 msgid "Unable to recognise the format of file" msgstr "" -#: objcopy.c:3850 +#: objcopy.c:3883 #, c-format msgid "error: the input file '%s' is empty" msgstr "" -#: objcopy.c:3885 +#: objcopy.c:3925 msgid "--compress-debug-sections=zstd: binutils is not built with zstd support" msgstr "" -#: objcopy.c:3941 +#: objcopy.c:3981 #, c-format msgid "--add-gnu-debuglink ignored for archive %s" msgstr "" -#: objcopy.c:4041 +#: objcopy.c:4095 #, c-format msgid "Multiple renames of section %s" msgstr "" -#: objcopy.c:4086 +#: objcopy.c:4140 msgid "error in private header data" msgstr "" -#: objcopy.c:4242 objcopy.c:4250 +#: objcopy.c:4273 objcopy.c:4281 msgid "failed to create output section" msgstr "" -#: objcopy.c:4259 +#: objcopy.c:4290 msgid "failed to set size" msgstr "" -#: objcopy.c:4278 +#: objcopy.c:4309 msgid "failed to set vma" msgstr "" -#: objcopy.c:4327 +#: objcopy.c:4343 msgid "failed to set alignment" msgstr "" -#: objcopy.c:4342 +#: objcopy.c:4358 #, c-format msgid "output section %s's alignment does not match its VMA" msgstr "" -#: objcopy.c:4356 +#: objcopy.c:4372 #, c-format msgid "output section %s's alignment does not match its LMA" msgstr "" -#: objcopy.c:4386 +#: objcopy.c:4402 msgid "failed to copy private data" msgstr "" -#: objcopy.c:4540 +#: objcopy.c:4556 msgid "relocation count is negative" msgstr "" #. User must pad the section up in order to do this. -#: objcopy.c:4626 +#: objcopy.c:4642 #, c-format msgid "" "cannot reverse bytes: length of section %s must be evenly divisible by %d" msgstr "" -#: objcopy.c:4826 +#: objcopy.c:4848 msgid "can't create debugging section" msgstr "" -#: objcopy.c:4840 +#: objcopy.c:4862 msgid "can't set debugging section contents" msgstr "" -#: objcopy.c:4850 +#: objcopy.c:4872 #, c-format msgid "don't know how to write debugging information for %s" msgstr "" -#: objcopy.c:5042 +#: objcopy.c:5083 msgid "could not create temporary file to hold stripped copy" msgstr "" -#: objcopy.c:5116 +#: objcopy.c:5157 #, c-format msgid "%s: bad version in PE subsystem" msgstr "" -#: objcopy.c:5146 +#: objcopy.c:5187 #, c-format msgid "unknown PE subsystem: %s" msgstr "" -#: objcopy.c:5235 objcopy.c:5511 objcopy.c:5591 objcopy.c:5729 objcopy.c:5761 -#: objcopy.c:5817 objcopy.c:5821 objcopy.c:5841 +#: objcopy.c:5276 objcopy.c:5552 objcopy.c:5632 objcopy.c:5770 objcopy.c:5802 +#: objcopy.c:5858 objcopy.c:5862 objcopy.c:5882 #, c-format msgid "bad format for %s" msgstr "" -#: objcopy.c:5264 +#: objcopy.c:5305 #, c-format msgid "cannot open: %s: %s" msgstr "" -#: objcopy.c:5319 +#: objcopy.c:5360 msgid "byte number must be non-negative" msgstr "" -#: objcopy.c:5325 +#: objcopy.c:5366 #, c-format msgid "architecture %s unknown" msgstr "" -#: objcopy.c:5333 +#: objcopy.c:5374 msgid "interleave must be positive" msgstr "" -#: objcopy.c:5342 +#: objcopy.c:5383 msgid "interleave width must be positive" msgstr "" -#: objcopy.c:5666 +#: objcopy.c:5707 #, c-format msgid "unrecognized --compress-debug-sections type `%s'" msgstr "" -#: objcopy.c:5687 +#: objcopy.c:5728 #, c-format msgid "unrecognized --elf-stt-common= option `%s'" msgstr "" -#: objcopy.c:5698 +#: objcopy.c:5739 #, c-format msgid "Warning: truncating gap-fill from 0x%<PRIx64> to 0x%x" msgstr "" -#: objcopy.c:5784 +#: objcopy.c:5825 msgid "bad format for --set-section-alignment: argument needed" msgstr "" -#: objcopy.c:5788 +#: objcopy.c:5829 msgid "bad format for --set-section-alignment: numeric argument needed" msgstr "" -#: objcopy.c:5793 +#: objcopy.c:5834 msgid "bad format for --set-section-alignment: alignment is not a power of two" msgstr "" -#: objcopy.c:5900 +#: objcopy.c:5941 #, c-format msgid "unknown long section names option '%s'" msgstr "" -#: objcopy.c:5923 +#: objcopy.c:5964 msgid "unable to parse alternative machine code" msgstr "" -#: objcopy.c:5972 +#: objcopy.c:6013 msgid "number of bytes to reverse must be positive and even" msgstr "" -#: objcopy.c:5975 +#: objcopy.c:6016 #, c-format msgid "Warning: ignoring previous --reverse-bytes value of %d" msgstr "" -#: objcopy.c:5990 +#: objcopy.c:6025 +#, c-format +msgid "--file-alignment argument is not a power of two: %s - ignoring" +msgstr "" + +#: objcopy.c:6036 #, c-format msgid "%s: invalid reserve value for --heap" msgstr "" -#: objcopy.c:5996 +#: objcopy.c:6042 #, c-format msgid "%s: invalid commit value for --heap" msgstr "" -#: objcopy.c:6011 +#: objcopy.c:6057 #, c-format msgid "--section-alignment argument is not a power of two: %s - ignoring" msgstr "" -#: objcopy.c:6026 +#: objcopy.c:6072 #, c-format msgid "%s: invalid reserve value for --stack" msgstr "" -#: objcopy.c:6032 +#: objcopy.c:6078 #, c-format msgid "%s: invalid commit value for --stack" msgstr "" -#: objcopy.c:6050 +#: objcopy.c:6096 msgid "error: verilog data width must be 1, 2, 4, 8 or 16" msgstr "" -#: objcopy.c:6068 +#: objcopy.c:6114 msgid "--globalize-symbol(s) is incompatible with -G/--keep-global-symbol(s)" msgstr "" -#: objcopy.c:6080 +#: objcopy.c:6126 msgid "interleave start byte must be set with --byte" msgstr "" -#: objcopy.c:6083 +#: objcopy.c:6129 msgid "byte number must be less than interleave" msgstr "" -#: objcopy.c:6086 +#: objcopy.c:6132 msgid "interleave width must be less than or equal to interleave - byte`" msgstr "" -#: objcopy.c:6109 +#: objcopy.c:6155 #, c-format msgid "unknown input EFI target: %s" msgstr "" -#: objcopy.c:6119 +#: objcopy.c:6165 #, c-format msgid "unknown output EFI target: %s" msgstr "" -#: objcopy.c:6143 +#: objcopy.c:6189 #, c-format msgid "" "warning: could not create temporary file whilst copying '%s', (error: %s)" msgstr "" -#: objcopy.c:6175 objcopy.c:6183 +#: objcopy.c:6221 objcopy.c:6229 #, c-format msgid "%s %s%c0x%<PRIx64> never used" msgstr "" -#: objdump.c:256 +#: objdump.c:261 #, c-format msgid "Usage: %s <option(s)> <file(s)>\n" msgstr "" -#: objdump.c:257 +#: objdump.c:262 #, c-format msgid " Display information from object <file(s)>.\n" msgstr "" -#: objdump.c:258 +#: objdump.c:263 #, c-format msgid " At least one of the following switches must be given:\n" msgstr "" -#: objdump.c:259 +#: objdump.c:264 #, c-format msgid " -a, --archive-headers Display archive header information\n" msgstr "" -#: objdump.c:261 +#: objdump.c:266 #, c-format msgid "" " -f, --file-headers Display the contents of the overall file header\n" msgstr "" -#: objdump.c:263 +#: objdump.c:268 #, c-format msgid "" " -p, --private-headers Display object format specific file header " "contents\n" msgstr "" -#: objdump.c:265 +#: objdump.c:270 #, c-format msgid " -P, --private=OPT,OPT... Display object format specific contents\n" msgstr "" -#: objdump.c:267 +#: objdump.c:272 #, c-format msgid "" " -h, --[section-]headers Display the contents of the section headers\n" msgstr "" -#: objdump.c:269 +#: objdump.c:274 #, c-format msgid " -x, --all-headers Display the contents of all headers\n" msgstr "" -#: objdump.c:271 +#: objdump.c:276 #, c-format msgid "" " -d, --disassemble Display assembler contents of executable " "sections\n" msgstr "" -#: objdump.c:273 +#: objdump.c:278 #, c-format msgid " -D, --disassemble-all Display assembler contents of all sections\n" msgstr "" -#: objdump.c:275 +#: objdump.c:280 #, c-format msgid " --disassemble=<sym> Display assembler contents from <sym>\n" msgstr "" -#: objdump.c:277 +#: objdump.c:282 #, c-format msgid " -S, --source Intermix source code with disassembly\n" msgstr "" -#: objdump.c:279 +#: objdump.c:284 #, c-format msgid " --source-comment[=<txt>] Prefix lines of source code with <txt>\n" msgstr "" -#: objdump.c:281 +#: objdump.c:286 #, c-format msgid "" " -s, --full-contents Display the full contents of all sections " "requested\n" msgstr "" -#: objdump.c:283 +#: objdump.c:288 #, c-format msgid "" " -Z, --decompress Decompress section(s) before displaying their " "contents\n" msgstr "" -#: objdump.c:285 +#: objdump.c:290 #, c-format msgid " -g, --debugging Display debug information in object file\n" msgstr "" -#: objdump.c:287 +#: objdump.c:292 #, c-format msgid "" " -e, --debugging-tags Display debug information using ctags style\n" msgstr "" -#: objdump.c:289 +#: objdump.c:294 #, c-format msgid "" " -G, --stabs Display (in raw form) any STABS info in the file\n" msgstr "" -#: objdump.c:291 +#: objdump.c:296 #, c-format msgid "" " -W, --dwarf[a/=abbrev, A/=addr, r/=aranges, c/=cu_index, L/=decodedline,\n" @@ -6230,14 +6254,14 @@ msgid "" " Display the contents of DWARF debug sections\n" msgstr "" -#: objdump.c:298 +#: objdump.c:303 #, c-format msgid "" " -Wk,--dwarf=links Display the contents of sections that link to\n" " separate debuginfo files\n" msgstr "" -#: objdump.c:302 +#: objdump.c:307 #, c-format msgid "" " -WK,--dwarf=follow-links\n" @@ -6245,21 +6269,21 @@ msgid "" "(default)\n" msgstr "" -#: objdump.c:305 +#: objdump.c:310 #, c-format msgid "" " -WN,--dwarf=no-follow-links\n" " Do not follow links to separate debug info files\n" msgstr "" -#: objdump.c:309 +#: objdump.c:314 #, c-format msgid "" " -WK,--dwarf=follow-links\n" " Follow links to separate debug info files\n" msgstr "" -#: objdump.c:312 +#: objdump.c:317 #, c-format msgid "" " -WN,--dwarf=no-follow-links\n" @@ -6267,7 +6291,7 @@ msgid "" " (default)\n" msgstr "" -#: objdump.c:318 +#: objdump.c:323 #, c-format msgid "" " -WD --dwarf=use-debuginfod\n" @@ -6275,7 +6299,7 @@ msgid "" "servers (default)\n" msgstr "" -#: objdump.c:321 +#: objdump.c:326 #, c-format msgid "" " -WE --dwarf=do-not-use-debuginfod\n" @@ -6283,154 +6307,154 @@ msgid "" "servers\n" msgstr "" -#: objdump.c:325 +#: objdump.c:330 #, c-format msgid "" " -L, --process-links Display the contents of non-debug sections in\n" " separate debuginfo files. (Implies -WK)\n" msgstr "" -#: objdump.c:329 +#: objdump.c:334 #, c-format msgid "" " --ctf[=SECTION] Display CTF info from SECTION, (default `.ctf')\n" msgstr "" -#: objdump.c:332 +#: objdump.c:337 #, c-format msgid "" " --sframe[=SECTION] Display SFrame info from SECTION, (default '." "sframe')\n" msgstr "" -#: objdump.c:334 +#: objdump.c:339 #, c-format msgid "" " -t, --syms Display the contents of the symbol table(s)\n" msgstr "" -#: objdump.c:336 +#: objdump.c:341 #, c-format msgid "" " -T, --dynamic-syms Display the contents of the dynamic symbol table\n" msgstr "" -#: objdump.c:338 +#: objdump.c:343 #, c-format msgid " -r, --reloc Display the relocation entries in the file\n" msgstr "" -#: objdump.c:340 +#: objdump.c:345 #, c-format msgid "" " -R, --dynamic-reloc Display the dynamic relocation entries in the " "file\n" msgstr "" -#: objdump.c:342 +#: objdump.c:347 #, c-format msgid " @<file> Read options from <file>\n" msgstr "" -#: objdump.c:344 +#: objdump.c:349 #, c-format msgid " -v, --version Display this program's version number\n" msgstr "" -#: objdump.c:346 +#: objdump.c:351 #, c-format msgid "" " -i, --info List object formats and architectures supported\n" msgstr "" -#: objdump.c:348 +#: objdump.c:353 #, c-format msgid " -H, --help Display this information\n" msgstr "" -#: objdump.c:355 +#: objdump.c:360 #, c-format msgid "" "\n" " The following switches are optional:\n" msgstr "" -#: objdump.c:356 +#: objdump.c:361 #, c-format msgid "" " -b, --target=BFDNAME Specify the target object format as " "BFDNAME\n" msgstr "" -#: objdump.c:358 +#: objdump.c:363 #, c-format msgid "" " -m, --architecture=MACHINE Specify the target architecture as MACHINE\n" msgstr "" -#: objdump.c:360 +#: objdump.c:365 #, c-format msgid "" " -j, --section=NAME Only display information for section NAME\n" msgstr "" -#: objdump.c:362 +#: objdump.c:367 #, c-format msgid " -M, --disassembler-options=OPT Pass text OPT on to the disassembler\n" msgstr "" -#: objdump.c:364 +#: objdump.c:369 #, c-format msgid "" " -EB --endian=big Assume big endian format when " "disassembling\n" msgstr "" -#: objdump.c:366 +#: objdump.c:371 #, c-format msgid "" " -EL --endian=little Assume little endian format when " "disassembling\n" msgstr "" -#: objdump.c:368 +#: objdump.c:373 #, c-format msgid "" " --file-start-context Include context from start of file (with -" "S)\n" msgstr "" -#: objdump.c:370 +#: objdump.c:375 #, c-format msgid "" " -I, --include=DIR Add DIR to search list for source files\n" msgstr "" -#: objdump.c:372 +#: objdump.c:377 #, c-format msgid "" " -l, --line-numbers Include line numbers and filenames in " "output\n" msgstr "" -#: objdump.c:374 +#: objdump.c:379 #, c-format msgid "" " -F, --file-offsets Include file offsets when displaying " "information\n" msgstr "" -#: objdump.c:376 +#: objdump.c:381 #, c-format msgid "" " -C, --demangle[=STYLE] Decode mangled/processed symbol names\n" msgstr "" -#: objdump.c:378 +#: objdump.c:383 msgid " STYLE can be " msgstr "" -#: objdump.c:380 +#: objdump.c:385 #, c-format msgid "" " --recurse-limit Enable a limit on recursion whilst " @@ -6438,20 +6462,20 @@ msgid "" " (default)\n" msgstr "" -#: objdump.c:383 +#: objdump.c:388 #, c-format msgid "" " --no-recurse-limit Disable a limit on recursion whilst " "demangling\n" msgstr "" -#: objdump.c:385 +#: objdump.c:390 #, c-format msgid "" " -w, --wide Format output for more than 80 columns\n" msgstr "" -#: objdump.c:387 +#: objdump.c:392 #, c-format msgid "" " -U[d|l|i|x|e|h] Controls the display of UTF-8 unicode " @@ -6459,169 +6483,169 @@ msgid "" " --unicode=[default|locale|invalid|hex|escape|highlight]\n" msgstr "" -#: objdump.c:390 +#: objdump.c:395 #, c-format msgid "" " -z, --disassemble-zeroes Do not skip blocks of zeroes when " "disassembling\n" msgstr "" -#: objdump.c:392 +#: objdump.c:397 #, c-format msgid "" " --start-address=ADDR Only process data whose address is >= ADDR\n" msgstr "" -#: objdump.c:394 +#: objdump.c:399 #, c-format msgid "" " --stop-address=ADDR Only process data whose address is < ADDR\n" msgstr "" -#: objdump.c:396 +#: objdump.c:401 #, c-format msgid "" " --no-addresses Do not print address alongside disassembly\n" msgstr "" -#: objdump.c:398 +#: objdump.c:403 #, c-format msgid "" " --prefix-addresses Print complete address alongside " "disassembly\n" msgstr "" -#: objdump.c:400 +#: objdump.c:405 #, c-format msgid "" " --[no-]show-raw-insn Display hex alongside symbolic disassembly\n" msgstr "" -#: objdump.c:402 +#: objdump.c:407 #, c-format msgid "" " --insn-width=WIDTH Display WIDTH bytes on a single line for -" "d\n" msgstr "" -#: objdump.c:404 +#: objdump.c:409 #, c-format msgid "" " --adjust-vma=OFFSET Add OFFSET to all displayed section " "addresses\n" msgstr "" -#: objdump.c:406 +#: objdump.c:411 #, c-format msgid "" " --show-all-symbols When disassembling, display all symbols at " "a given address\n" msgstr "" -#: objdump.c:408 +#: objdump.c:413 #, c-format msgid "" " --special-syms Include special symbols in symbol dumps\n" msgstr "" -#: objdump.c:410 +#: objdump.c:415 #, c-format msgid "" " --inlines Print all inlines for source line (with -" "l)\n" msgstr "" -#: objdump.c:412 +#: objdump.c:417 #, c-format msgid " --prefix=PREFIX Add PREFIX to absolute paths for -S\n" msgstr "" -#: objdump.c:414 +#: objdump.c:419 #, c-format msgid " --prefix-strip=LEVEL Strip initial directory names for -S\n" msgstr "" -#: objdump.c:416 +#: objdump.c:421 #, c-format msgid "" " --dwarf-depth=N Do not display DIEs at depth N or greater\n" msgstr "" -#: objdump.c:418 +#: objdump.c:423 #, c-format msgid " --dwarf-start=N Display DIEs starting at offset N\n" msgstr "" -#: objdump.c:420 +#: objdump.c:425 #, c-format msgid "" " --dwarf-check Make additional dwarf consistency checks.\n" msgstr "" -#: objdump.c:423 +#: objdump.c:428 #, c-format msgid "" " --ctf-parent=NAME Use CTF archive member NAME as the CTF " "parent\n" msgstr "" -#: objdump.c:426 +#: objdump.c:431 #, c-format msgid "" " --visualize-jumps Visualize jumps by drawing ASCII art lines\n" msgstr "" -#: objdump.c:428 +#: objdump.c:433 #, c-format msgid " --visualize-jumps=color Use colors in the ASCII art\n" msgstr "" -#: objdump.c:430 +#: objdump.c:435 #, c-format msgid "" " --visualize-jumps=extended-color\n" " Use extended 8-bit color codes\n" msgstr "" -#: objdump.c:433 +#: objdump.c:438 #, c-format msgid " --visualize-jumps=off Disable jump visualization\n" msgstr "" -#: objdump.c:436 +#: objdump.c:441 #, c-format msgid "" " --disassembler-color=off Disable disassembler color output.\n" msgstr "" -#: objdump.c:438 +#: objdump.c:443 #, c-format msgid "" " --disassembler-color=terminal Enable disassembler color output if " "displaying on a terminal. (default)\n" msgstr "" -#: objdump.c:441 +#: objdump.c:446 #, c-format msgid "" " --disassembler-color=off Disable disassembler color output. " "(default)\n" msgstr "" -#: objdump.c:443 +#: objdump.c:448 #, c-format msgid "" " --disassembler-color=terminal Enable disassembler color output if " "displaying on a terminal.\n" msgstr "" -#: objdump.c:446 +#: objdump.c:451 #, c-format msgid "" " --disassembler-color=on Enable disassembler color output.\n" msgstr "" -#: objdump.c:448 +#: objdump.c:453 #, c-format msgid "" " --disassembler-color=extended Use 8-bit colors in disassembler " @@ -6629,310 +6653,328 @@ msgid "" "\n" msgstr "" -#: objdump.c:459 +#: objdump.c:464 #, c-format msgid "" "\n" "Options supported for -P/--private switch:\n" msgstr "" -#: objdump.c:832 +#: objdump.c:837 #, c-format msgid "section '%s' mentioned in a -j option, but not found in any input file" msgstr "" -#: objdump.c:990 +#: objdump.c:995 #, c-format msgid "Sections:\n" msgstr "" -#: objdump.c:996 +#: objdump.c:1001 #, c-format msgid "Idx %-*s Size %-*s%-*sFile off Algn" msgstr "" -#: objdump.c:1002 +#: objdump.c:1007 #, c-format msgid " Flags" msgstr "" -#: objdump.c:1019 +#: objdump.c:1024 #, c-format msgid "failed to read symbol table from: %s" msgstr "" -#: objdump.c:1021 objdump.c:5514 objdump.c:5566 +#: objdump.c:1026 objdump.c:5513 objdump.c:5595 msgid "error message was" msgstr "" -#: objdump.c:1050 +#: objdump.c:1055 #, c-format msgid "%s: not a dynamic object" msgstr "" -#: objdump.c:1655 objdump.c:1720 +#: objdump.c:1663 objdump.c:1728 #, c-format msgid " (File Offset: 0x%lx)" msgstr "" -#: objdump.c:2142 +#: objdump.c:2150 #, c-format msgid "source file %s is more recent than object file\n" msgstr "" -#: objdump.c:2511 +#: objdump.c:2519 msgid "disassembly color not correctly selected" msgstr "" -#: objdump.c:3385 +#: objdump.c:3393 #, c-format msgid "\t... (skipping %lu zeroes, resuming at file offset: 0x%lx)\n" msgstr "" -#: objdump.c:3524 +#: objdump.c:3532 #, c-format msgid "disassemble_fn returned length %d" msgstr "" -#: objdump.c:3861 objdump.c:5131 +#: objdump.c:3869 objdump.c:5130 #, c-format msgid "Reading section %s failed because: %s" msgstr "" -#: objdump.c:3877 +#: objdump.c:3885 #, c-format msgid "" "\n" "Disassembly of section %s:\n" msgstr "" -#: objdump.c:4188 +#: objdump.c:4202 #, c-format msgid "can't use supplied machine %s" msgstr "" -#: objdump.c:4211 +#: objdump.c:4225 #, c-format msgid "can't disassemble for architecture %s\n" msgstr "" -#: objdump.c:4304 +#: objdump.c:4324 #, c-format msgid "" "\n" "Section '%s' has an invalid size: %#<PRIx64>.\n" msgstr "" -#: objdump.c:4353 +#: objdump.c:4373 #, c-format msgid "" "\n" "Can't get contents for section '%s'.\n" msgstr "" -#: objdump.c:4516 +#: objdump.c:4536 #, c-format msgid "File %s does not contain any dwarf debug information\n" msgstr "" -#: objdump.c:4552 +#: objdump.c:4572 objdump.c:4999 #, c-format msgid "" "No %s section present\n" "\n" msgstr "" -#: objdump.c:4561 +#: objdump.c:4581 #, c-format msgid "reading %s section of %s failed: %s" msgstr "" -#: objdump.c:4599 +#: objdump.c:4619 #, c-format msgid "" "Contents of %s section:\n" "\n" msgstr "" -#: objdump.c:4741 +#: objdump.c:4761 #, c-format msgid "architecture: %s, " msgstr "" -#: objdump.c:4744 +#: objdump.c:4764 #, c-format msgid "flags 0x%08x:\n" msgstr "" -#: objdump.c:4757 +#: objdump.c:4777 #, c-format msgid "" "\n" "start address 0x" msgstr "" -#: objdump.c:4803 readelf.c:16929 +#: objdump.c:4823 readelf.c:16942 #, c-format msgid "%s: %s" msgstr "" -#: objdump.c:4803 readelf.c:16929 +#: objdump.c:4823 readelf.c:16942 msgid "warning" msgstr "" -#: objdump.c:4803 readelf.c:16929 +#: objdump.c:4823 readelf.c:16942 msgid "error" msgstr "" -#: objdump.c:4809 readelf.c:16934 +#: objdump.c:4829 readelf.c:16947 #, c-format msgid "CTF error: cannot get CTF errors: `%s'" msgstr "" -#: objdump.c:4833 readelf.c:16956 +#: objdump.c:4853 readelf.c:16969 #, c-format msgid "" "\n" "CTF archive member: %s:\n" msgstr "" -#: objdump.c:4853 +#: objdump.c:4873 #, c-format msgid "Iteration failed: %s, %s" msgstr "" -#: objdump.c:4899 objdump.c:4919 objdump.c:4932 +#: objdump.c:4919 objdump.c:4939 objdump.c:4952 #, c-format msgid "CTF open failure: %s" msgstr "" -#: objdump.c:4940 +#: objdump.c:4960 #, c-format msgid "Contents of CTF section %s:\n" msgstr "" -#: objdump.c:4947 +#: objdump.c:4970 #, c-format msgid "CTF archive member open failure: %s" msgstr "" -#: objdump.c:4998 readelf.c:17130 -#, c-format -msgid "Contents of the SFrame section %s:" -msgstr "" - -#: objdump.c:5012 +#: objdump.c:5011 #, c-format msgid "warning: private headers incomplete: %s" msgstr "" -#: objdump.c:5030 +#: objdump.c:5029 msgid "option -P/--private not supported by this file" msgstr "" -#: objdump.c:5054 +#: objdump.c:5053 #, c-format msgid "target specific dump '%s' not supported" msgstr "" -#: objdump.c:5120 +#: objdump.c:5119 #, c-format msgid "Contents of section %s:" msgstr "" -#: objdump.c:5122 +#: objdump.c:5121 #, c-format msgid " (Starting at file offset: 0x%lx)" msgstr "" -#: objdump.c:5127 readelf.c:16627 +#: objdump.c:5126 readelf.c:16640 #, c-format msgid "" " NOTE: This section is compressed, but its contents have NOT been expanded " "for this dump.\n" msgstr "" -#: objdump.c:5235 +#: objdump.c:5234 #, c-format msgid "no symbols\n" msgstr "" -#: objdump.c:5242 +#: objdump.c:5241 #, c-format msgid "no information for symbol number %ld\n" msgstr "" -#: objdump.c:5245 +#: objdump.c:5244 #, c-format msgid "could not determine the type of symbol number %ld\n" msgstr "" -#: objdump.c:5512 objdump.c:5564 +#: objdump.c:5511 objdump.c:5593 #, c-format msgid "failed to read relocs in: %s" msgstr "" -#: objdump.c:5695 +#: objdump.c:5565 +#, c-format +msgid "%s: This file does not contain any ordinary relocations.\n" +msgstr "" + +#: objdump.c:5568 +#, c-format +msgid "" +"%s: It does however contain RELR relocations. These can be displayed by the " +"readelf program\n" +msgstr "" + +#: objdump.c:5612 +#, c-format +msgid "" +"%s: contains RELR relocations which are not displayed by %s.\n" +"These can be displayed by the readelf program instead.\n" +msgstr "" + +#: objdump.c:5736 #, c-format msgid "" "\n" "%s: file format %s\n" msgstr "" -#: objdump.c:5808 +#: objdump.c:5849 #, c-format msgid "%s: printing debugging information failed" msgstr "" -#: objdump.c:5895 +#: objdump.c:5936 #, c-format msgid "In archive %s:\n" msgstr "" #. Prevent corrupted files from spinning us into an #. infinite loop. 100 is an arbitrary heuristic. -#: objdump.c:5900 +#: objdump.c:5941 msgid "Archive nesting is too deep" msgstr "" -#: objdump.c:5905 +#: objdump.c:5946 #, c-format msgid "In nested archive %s:\n" msgstr "" -#: objdump.c:6055 +#: objdump.c:6096 msgid "error: the start address should be before the end address" msgstr "" -#: objdump.c:6060 +#: objdump.c:6101 msgid "error: the stop address should be after the start address" msgstr "" -#: objdump.c:6072 +#: objdump.c:6113 msgid "error: prefix strip must be non-negative" msgstr "" -#: objdump.c:6077 +#: objdump.c:6118 msgid "error: instruction width must be in the range 1 to " msgstr "" -#: objdump.c:6100 +#: objdump.c:6141 msgid "unrecognized argument to --visualize-option" msgstr "" -#: objdump.c:6120 +#: objdump.c:6161 msgid "unrecognized argument to --disassembler-color" msgstr "" -#: objdump.c:6131 +#: objdump.c:6172 msgid "unrecognized -E option" msgstr "" -#: objdump.c:6142 +#: objdump.c:6183 #, c-format msgid "unrecognized --endian type `%s'" msgstr "" +#: objdump.c:6290 readelf.c:6546 +msgid "Unrecognized debug option 'sframe-internal-only'\n" +msgstr "" + #: od-elf32_avr.c:55 #, c-format msgid "" @@ -7333,7 +7375,7 @@ msgstr "" msgid "Time/Date:\t\t\t%#08lx\t- " msgstr "" -#: od-pe.c:399 od-xcoff.c:422 readelf.c:21727 +#: od-pe.c:399 od-xcoff.c:422 readelf.c:21737 #, c-format msgid "not set\n" msgstr "" @@ -7375,7 +7417,7 @@ msgstr "" msgid "Magic:\t\t\t\t%x\t\t- %s\n" msgstr "" -#: od-pe.c:436 od-pe.c:538 readelf.c:19576 readelf.c:19645 +#: od-pe.c:436 od-pe.c:538 readelf.c:19547 readelf.c:19616 msgid "Unknown" msgstr "" @@ -8325,255 +8367,255 @@ msgstr "" msgid "<corrupt string table index: %3ld>\n" msgstr "" -#: readelf.c:3048 +#: readelf.c:3051 #, c-format msgid "Processor Specific: %lx" msgstr "" -#: readelf.c:3075 +#: readelf.c:3078 #, c-format msgid "Operating System specific: %lx" msgstr "" -#: readelf.c:3079 readelf.c:5580 +#: readelf.c:3082 readelf.c:5583 #, c-format msgid "<unknown>: %lx" msgstr "" -#: readelf.c:3179 +#: readelf.c:3182 msgid "NONE (None)" msgstr "" -#: readelf.c:3180 +#: readelf.c:3183 msgid "REL (Relocatable file)" msgstr "" -#: readelf.c:3181 +#: readelf.c:3184 msgid "EXEC (Executable file)" msgstr "" -#: readelf.c:3184 +#: readelf.c:3187 msgid "DYN (Position-Independent Executable file)" msgstr "" -#: readelf.c:3186 +#: readelf.c:3189 msgid "DYN (Shared object file)" msgstr "" -#: readelf.c:3187 +#: readelf.c:3190 msgid "CORE (Core file)" msgstr "" -#: readelf.c:3191 +#: readelf.c:3194 #, c-format msgid "Processor Specific: (%x)" msgstr "" -#: readelf.c:3193 +#: readelf.c:3196 #, c-format msgid "OS Specific: (%x)" msgstr "" -#: readelf.c:3195 +#: readelf.c:3198 #, c-format msgid "<unknown>: %x" msgstr "" #. Please keep this switch table sorted by increasing EM_ value. #. 0 -#: readelf.c:3209 readelf.c:19574 readelf.c:19585 +#: readelf.c:3212 readelf.c:19545 readelf.c:19556 msgid "None" msgstr "" -#: readelf.c:3457 +#: readelf.c:3460 #, c-format msgid "<unknown>: 0x%x" msgstr "" -#: readelf.c:3740 +#: readelf.c:3743 msgid ", <unknown>" msgstr "" -#: readelf.c:3907 +#: readelf.c:3910 #, c-format msgid "Unrecognised IA64 VMS Command Code: %x\n" msgstr "" -#: readelf.c:3944 +#: readelf.c:3947 msgid "unknown mac" msgstr "" -#: readelf.c:4028 +#: readelf.c:4031 msgid ", <unknown MeP cpu type>" msgstr "" -#: readelf.c:4049 +#: readelf.c:4052 msgid "<unknown MeP copro type>" msgstr "" -#: readelf.c:4061 readelf.c:5010 +#: readelf.c:4064 readelf.c:5013 #, c-format msgid ", unknown flags bits: %#x" msgstr "" -#: readelf.c:4170 +#: readelf.c:4173 msgid ", unknown CPU" msgstr "" -#: readelf.c:4195 +#: readelf.c:4198 msgid ", unknown ABI" msgstr "" -#: readelf.c:4244 readelf.c:4691 +#: readelf.c:4247 readelf.c:4694 msgid ", unknown ISA" msgstr "" -#: readelf.c:4253 +#: readelf.c:4256 msgid ": architecture variant: " msgstr "" -#: readelf.c:4302 +#: readelf.c:4305 msgid ": unknown" msgstr "" -#: readelf.c:4307 +#: readelf.c:4310 msgid ": unknown extra flag bits also present" msgstr "" -#: readelf.c:4830 +#: readelf.c:4833 msgid ", unknown v850 architecture variant" msgstr "" -#: readelf.c:4863 +#: readelf.c:4866 msgid ", unknown" msgstr "" -#: readelf.c:4929 +#: readelf.c:4932 #, c-format msgid ", <unknown AMDGPU GPU type: %#x>" msgstr "" -#: readelf.c:4977 +#: readelf.c:4980 #, c-format msgid ", <unknown xnack value: %#x>" msgstr "" -#: readelf.c:5002 +#: readelf.c:5005 #, c-format msgid ", <unknown sramecc value: %#x>" msgstr "" -#: readelf.c:5075 +#: readelf.c:5078 msgid ", relocatable" msgstr "" -#: readelf.c:5078 +#: readelf.c:5081 msgid ", relocatable-lib" msgstr "" -#: readelf.c:5279 +#: readelf.c:5282 msgid "Standalone App" msgstr "" -#: readelf.c:5288 +#: readelf.c:5291 msgid "Bare-metal C6000" msgstr "" -#: readelf.c:5298 readelf.c:6732 readelf.c:6748 readelf.c:21014 -#: readelf.c:21114 readelf.c:21161 readelf.c:21198 readelf.c:21259 -#: readelf.c:21290 readelf.c:21312 +#: readelf.c:5301 readelf.c:6744 readelf.c:6760 readelf.c:20985 +#: readelf.c:21085 readelf.c:21132 readelf.c:21169 readelf.c:21230 +#: readelf.c:21261 readelf.c:21288 readelf.c:21310 #, c-format msgid "<unknown: %x>" msgstr "" #. This message is probably going to be displayed in a 15 #. character wide field, so put the hex value first. -#: readelf.c:6075 +#: readelf.c:6079 #, c-format msgid "%08x: <unknown>" msgstr "" -#: readelf.c:6167 +#: readelf.c:6171 #, c-format msgid "Usage: readelf <option(s)> elf-file(s)\n" msgstr "" -#: readelf.c:6168 +#: readelf.c:6172 #, c-format msgid " Display information about the contents of ELF format files\n" msgstr "" -#: readelf.c:6169 +#: readelf.c:6173 #, c-format msgid " Options are:\n" msgstr "" -#: readelf.c:6170 +#: readelf.c:6174 #, c-format msgid " -a --all Equivalent to: -h -l -S -s -r -d -V -A -I\n" msgstr "" -#: readelf.c:6172 +#: readelf.c:6176 #, c-format msgid " -h --file-header Display the ELF file header\n" msgstr "" -#: readelf.c:6174 +#: readelf.c:6178 #, c-format msgid " -l --program-headers Display the program headers\n" msgstr "" -#: readelf.c:6176 +#: readelf.c:6180 #, c-format msgid " --segments An alias for --program-headers\n" msgstr "" -#: readelf.c:6178 +#: readelf.c:6182 #, c-format msgid " -S --section-headers Display the sections' header\n" msgstr "" -#: readelf.c:6180 +#: readelf.c:6184 #, c-format msgid " --sections An alias for --section-headers\n" msgstr "" -#: readelf.c:6182 +#: readelf.c:6186 #, c-format msgid " -g --section-groups Display the section groups\n" msgstr "" -#: readelf.c:6184 +#: readelf.c:6188 #, c-format msgid " -t --section-details Display the section details\n" msgstr "" -#: readelf.c:6186 +#: readelf.c:6190 #, c-format msgid " -e --headers Equivalent to: -h -l -S\n" msgstr "" -#: readelf.c:6188 +#: readelf.c:6192 #, c-format msgid " -s --syms Display the symbol table\n" msgstr "" -#: readelf.c:6190 +#: readelf.c:6194 #, c-format msgid " --symbols An alias for --syms\n" msgstr "" -#: readelf.c:6192 +#: readelf.c:6196 #, c-format msgid " --dyn-syms Display the dynamic symbol table\n" msgstr "" -#: readelf.c:6194 +#: readelf.c:6198 #, c-format msgid " --lto-syms Display LTO symbol tables\n" msgstr "" -#: readelf.c:6196 +#: readelf.c:6200 #, c-format msgid "" " --sym-base=[0|8|10|16] \n" @@ -8581,29 +8623,29 @@ msgid "" " mixed (the default), octal, decimal, hexadecimal.\n" msgstr "" -#: readelf.c:6200 +#: readelf.c:6204 #, c-format msgid " -C --demangle[=STYLE] Decode mangled/processed symbol names\n" msgstr "" -#: readelf.c:6204 +#: readelf.c:6208 #, c-format msgid "" " --no-demangle Do not demangle low-level symbol names. (default)\n" msgstr "" -#: readelf.c:6206 +#: readelf.c:6210 #, c-format msgid "" " --recurse-limit Enable a demangling recursion limit. (default)\n" msgstr "" -#: readelf.c:6208 +#: readelf.c:6212 #, c-format msgid " --no-recurse-limit Disable a demangling recursion limit\n" msgstr "" -#: readelf.c:6210 +#: readelf.c:6214 #, c-format msgid "" " -U[dlexhi] --unicode=[default|locale|escape|hex|highlight|invalid]\n" @@ -8616,71 +8658,71 @@ msgid "" " \"{hex sequences}\"\n" msgstr "" -#: readelf.c:6216 +#: readelf.c:6220 #, c-format msgid "" " -X --extra-sym-info Display extra information when showing symbols\n" msgstr "" -#: readelf.c:6218 +#: readelf.c:6222 #, c-format msgid "" " --no-extra-sym-info Do not display extra information when showing " "symbols (default)\n" msgstr "" -#: readelf.c:6220 +#: readelf.c:6224 #, c-format msgid "" " -n --notes Display the contents of note sections (if present)\n" msgstr "" -#: readelf.c:6222 +#: readelf.c:6226 #, c-format msgid " -r --relocs Display the relocations (if present)\n" msgstr "" -#: readelf.c:6224 +#: readelf.c:6228 #, c-format msgid " -u --unwind Display the unwind info (if present)\n" msgstr "" -#: readelf.c:6226 +#: readelf.c:6230 #, c-format msgid " -d --dynamic Display the dynamic section (if present)\n" msgstr "" -#: readelf.c:6228 +#: readelf.c:6232 #, c-format msgid " -V --version-info Display the version sections (if present)\n" msgstr "" -#: readelf.c:6230 +#: readelf.c:6234 #, c-format msgid "" " -A --arch-specific Display architecture specific information (if any)\n" msgstr "" -#: readelf.c:6232 +#: readelf.c:6236 #, c-format msgid " -c --archive-index Display the symbol/file index in an archive\n" msgstr "" -#: readelf.c:6234 +#: readelf.c:6238 #, c-format msgid "" " -D --use-dynamic Use the dynamic section info when displaying " "symbols\n" msgstr "" -#: readelf.c:6236 +#: readelf.c:6240 #, c-format msgid "" " -L --lint|--enable-checks\n" " Display warning messages for possible problems\n" msgstr "" -#: readelf.c:6239 +#: readelf.c:6243 #, c-format msgid "" " -x --hex-dump=<number|name>\n" @@ -8688,7 +8730,7 @@ msgid "" "bytes\n" msgstr "" -#: readelf.c:6242 +#: readelf.c:6246 #, c-format msgid "" " -p --string-dump=<number|name>\n" @@ -8696,7 +8738,7 @@ msgid "" "strings\n" msgstr "" -#: readelf.c:6245 +#: readelf.c:6249 #, c-format msgid "" " -R --relocated-dump=<number|name>\n" @@ -8704,12 +8746,12 @@ msgid "" "name>\n" msgstr "" -#: readelf.c:6248 +#: readelf.c:6252 #, c-format msgid " -z --decompress Decompress section before dumping it\n" msgstr "" -#: readelf.c:6250 +#: readelf.c:6254 #, c-format msgid "" "\n" @@ -8718,7 +8760,7 @@ msgid "" "repeated\n" msgstr "" -#: readelf.c:6253 +#: readelf.c:6257 #, c-format msgid "" " -w --debug-dump[a/=abbrev, A/=addr, r/=aranges, c/=cu_index, L/" @@ -8733,7 +8775,7 @@ msgid "" " Display the contents of DWARF debug sections\n" msgstr "" -#: readelf.c:6260 +#: readelf.c:6264 #, c-format msgid "" " -wk --debug-dump=links Display the contents of sections that link to " @@ -8741,7 +8783,7 @@ msgid "" " debuginfo files\n" msgstr "" -#: readelf.c:6263 +#: readelf.c:6267 #, c-format msgid "" " -P --process-links Display the contents of non-debug sections in " @@ -8749,7 +8791,7 @@ msgid "" " debuginfo files. (Implies -wK)\n" msgstr "" -#: readelf.c:6267 +#: readelf.c:6271 #, c-format msgid "" " -wK --debug-dump=follow-links\n" @@ -8757,21 +8799,21 @@ msgid "" "(default)\n" msgstr "" -#: readelf.c:6270 +#: readelf.c:6274 #, c-format msgid "" " -wN --debug-dump=no-follow-links\n" " Do not follow links to separate debug info files\n" msgstr "" -#: readelf.c:6274 +#: readelf.c:6278 #, c-format msgid "" " -wK --debug-dump=follow-links\n" " Follow links to separate debug info files\n" msgstr "" -#: readelf.c:6277 +#: readelf.c:6281 #, c-format msgid "" " -wN --debug-dump=no-follow-links\n" @@ -8779,7 +8821,7 @@ msgid "" " (default)\n" msgstr "" -#: readelf.c:6283 +#: readelf.c:6287 #, c-format msgid "" " -wD --debug-dump=use-debuginfod\n" @@ -8787,7 +8829,7 @@ msgid "" "(default)\n" msgstr "" -#: readelf.c:6286 +#: readelf.c:6290 #, c-format msgid "" " -wE --debug-dump=do-not-use-debuginfod\n" @@ -8795,28 +8837,28 @@ msgid "" "servers\n" msgstr "" -#: readelf.c:6290 +#: readelf.c:6294 #, c-format msgid " --dwarf-depth=N Do not display DIEs at depth N or greater\n" msgstr "" -#: readelf.c:6292 +#: readelf.c:6296 #, c-format msgid " --dwarf-start=N Display DIEs starting at offset N\n" msgstr "" -#: readelf.c:6295 +#: readelf.c:6299 #, c-format msgid " --ctf=<number|name> Display CTF info from section <number|name>\n" msgstr "" -#: readelf.c:6297 +#: readelf.c:6301 #, c-format msgid "" " --ctf-parent=<name> Use CTF archive member <name> as the CTF parent\n" msgstr "" -#: readelf.c:6299 +#: readelf.c:6303 #, c-format msgid "" " --ctf-symbols=<number|name>\n" @@ -8824,7 +8866,7 @@ msgid "" "symtab\n" msgstr "" -#: readelf.c:6302 +#: readelf.c:6306 #, c-format msgid "" " --ctf-strings=<number|name>\n" @@ -8832,651 +8874,655 @@ msgid "" "strtab\n" msgstr "" -#: readelf.c:6306 +#: readelf.c:6310 #, c-format msgid "" " --sframe[=NAME] Display SFrame info from section NAME, (default '." "sframe')\n" msgstr "" -#: readelf.c:6310 +#: readelf.c:6314 #, c-format msgid "" " -i --instruction-dump=<number|name>\n" " Disassemble the contents of section <number|name>\n" msgstr "" -#: readelf.c:6314 +#: readelf.c:6318 #, c-format msgid " -I --histogram Display histogram of bucket list lengths\n" msgstr "" -#: readelf.c:6316 +#: readelf.c:6320 #, c-format msgid " -W --wide Allow output width to exceed 80 characters\n" msgstr "" -#: readelf.c:6318 +#: readelf.c:6322 #, c-format msgid "" " -T --silent-truncation If a symbol name is truncated, do not add [...] " "suffix\n" msgstr "" -#: readelf.c:6320 +#: readelf.c:6324 #, c-format msgid " @<file> Read options from <file>\n" msgstr "" -#: readelf.c:6322 +#: readelf.c:6326 #, c-format msgid " -H --help Display this information\n" msgstr "" -#: readelf.c:6324 +#: readelf.c:6328 #, c-format msgid " -v --version Display the version number of readelf\n" msgstr "" -#: readelf.c:6350 readelf.c:6381 readelf.c:6385 +#: readelf.c:6354 readelf.c:6385 readelf.c:6389 msgid "Out of memory allocating dump request table.\n" msgstr "" -#: readelf.c:6655 +#: readelf.c:6596 +msgid "Section name must be provided\n" +msgstr "" + +#: readelf.c:6667 msgid "Missing arg to -U/--unicode" msgstr "" -#: readelf.c:6694 +#: readelf.c:6706 #, c-format msgid "Invalid option '-%c'\n" msgstr "" -#: readelf.c:6728 readelf.c:6744 readelf.c:13134 +#: readelf.c:6740 readelf.c:6756 readelf.c:13147 msgid "none" msgstr "" -#: readelf.c:6745 +#: readelf.c:6757 msgid "2's complement, little endian" msgstr "" -#: readelf.c:6746 +#: readelf.c:6758 msgid "2's complement, big endian" msgstr "" -#: readelf.c:6779 +#: readelf.c:6791 msgid "This is a LLVM bitcode file - try using llvm-bcanalyzer\n" msgstr "" -#: readelf.c:6780 +#: readelf.c:6792 msgid "" "This is a LLVM bitcode file - try extracting and then using llvm-bcanalyzer\n" msgstr "" -#: readelf.c:6783 +#: readelf.c:6795 msgid "" "This is a GO binary file - try using 'go tool objdump' or 'go tool nm'\n" msgstr "" -#: readelf.c:6807 +#: readelf.c:6819 msgid "Not an ELF file - it has the wrong magic bytes at the start\n" msgstr "" -#: readelf.c:6829 +#: readelf.c:6841 #, c-format msgid "ELF Header in linked file '%s':\n" msgstr "" -#: readelf.c:6832 +#: readelf.c:6844 #, c-format msgid "ELF Header:\n" msgstr "" -#: readelf.c:6833 +#: readelf.c:6845 #, c-format msgid " Magic: " msgstr "" -#: readelf.c:6837 +#: readelf.c:6849 #, c-format msgid " Class: %s\n" msgstr "" -#: readelf.c:6839 +#: readelf.c:6851 #, c-format msgid " Data: %s\n" msgstr "" -#: readelf.c:6841 +#: readelf.c:6853 #, c-format msgid " Version: %d%s\n" msgstr "" -#: readelf.c:6844 +#: readelf.c:6856 msgid " (current)" msgstr "" -#: readelf.c:6846 +#: readelf.c:6858 msgid " <unknown>" msgstr "" -#: readelf.c:6848 +#: readelf.c:6860 #, c-format msgid " OS/ABI: %s\n" msgstr "" -#: readelf.c:6850 +#: readelf.c:6862 #, c-format msgid " ABI Version: %d\n" msgstr "" -#: readelf.c:6852 +#: readelf.c:6864 #, c-format msgid " Type: %s\n" msgstr "" -#: readelf.c:6854 +#: readelf.c:6866 #, c-format msgid " Machine: %s\n" msgstr "" -#: readelf.c:6856 +#: readelf.c:6868 #, c-format msgid " Version: 0x%lx\n" msgstr "" -#: readelf.c:6859 +#: readelf.c:6871 #, c-format msgid " Entry point address: " msgstr "" -#: readelf.c:6861 +#: readelf.c:6873 #, c-format msgid "" "\n" " Start of program headers: " msgstr "" -#: readelf.c:6863 +#: readelf.c:6875 #, c-format msgid "" " (bytes into file)\n" " Start of section headers: " msgstr "" -#: readelf.c:6865 +#: readelf.c:6877 #, c-format msgid " (bytes into file)\n" msgstr "" -#: readelf.c:6867 +#: readelf.c:6879 #, c-format msgid " Flags: 0x%lx%s\n" msgstr "" -#: readelf.c:6870 +#: readelf.c:6882 #, c-format msgid " Size of this header: %u (bytes)\n" msgstr "" -#: readelf.c:6872 +#: readelf.c:6884 #, c-format msgid " Size of program headers: %u (bytes)\n" msgstr "" -#: readelf.c:6874 +#: readelf.c:6886 #, c-format msgid " Number of program headers: %u" msgstr "" -#: readelf.c:6881 +#: readelf.c:6893 #, c-format msgid " Size of section headers: %u (bytes)\n" msgstr "" -#: readelf.c:6883 +#: readelf.c:6895 #, c-format msgid " Number of section headers: %u" msgstr "" -#: readelf.c:6891 +#: readelf.c:6903 #, c-format msgid " Section header string table index: %u" msgstr "" -#: readelf.c:6903 +#: readelf.c:6915 #, c-format msgid " <corrupt: out of range>" msgstr "" -#: readelf.c:6947 readelf.c:6994 +#: readelf.c:6959 readelf.c:7006 msgid "" "The e_phentsize field in the ELF header is less than the size of an ELF " "program header\n" msgstr "" -#: readelf.c:6951 readelf.c:6998 +#: readelf.c:6963 readelf.c:7010 msgid "" "The e_phentsize field in the ELF header is larger than the size of an ELF " "program header\n" msgstr "" -#: readelf.c:6954 readelf.c:7001 +#: readelf.c:6966 readelf.c:7013 msgid "program headers" msgstr "" -#: readelf.c:7040 +#: readelf.c:7052 #, c-format msgid "Too many program headers - %#x - the file is not that big\n" msgstr "" -#: readelf.c:7049 +#: readelf.c:7061 #, c-format msgid "Out of memory reading %u program headers\n" msgstr "" -#: readelf.c:7079 +#: readelf.c:7091 msgid "" "possibly corrupt ELF header - it has a non-zero program header offset, but " "no program headers\n" msgstr "" -#: readelf.c:7084 +#: readelf.c:7096 #, c-format msgid "" "\n" "There are no program headers in linked file '%s'.\n" msgstr "" -#: readelf.c:7087 +#: readelf.c:7099 #, c-format msgid "" "\n" "There are no program headers in this file.\n" msgstr "" -#: readelf.c:7099 +#: readelf.c:7111 #, c-format msgid "" "\n" "Elf file type is %s\n" msgstr "" -#: readelf.c:7100 +#: readelf.c:7112 #, c-format msgid "Entry point 0x%<PRIx64>\n" msgstr "" -#: readelf.c:7102 +#: readelf.c:7114 #, c-format msgid "There is %d program header, starting at offset %<PRIu64>\n" msgid_plural "There are %d program headers, starting at offset %<PRIu64>\n" msgstr[0] "" msgstr[1] "" -#: readelf.c:7117 readelf.c:7119 +#: readelf.c:7129 readelf.c:7131 #, c-format msgid "" "\n" "Program Headers:\n" msgstr "" -#: readelf.c:7123 +#: readelf.c:7135 #, c-format msgid "" " Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n" msgstr "" -#: readelf.c:7126 +#: readelf.c:7138 #, c-format msgid "" " Type Offset VirtAddr PhysAddr FileSiz " "MemSiz Flg Align\n" msgstr "" -#: readelf.c:7130 +#: readelf.c:7142 #, c-format msgid " Type Offset VirtAddr PhysAddr\n" msgstr "" -#: readelf.c:7132 +#: readelf.c:7144 #, c-format msgid " FileSiz MemSiz Flags Align\n" msgstr "" -#: readelf.c:7230 +#: readelf.c:7242 msgid "LOAD segments must be sorted in order of increasing VirtAddr\n" msgstr "" -#: readelf.c:7233 +#: readelf.c:7245 msgid "the segment's file size is larger than its memory size\n" msgstr "" -#: readelf.c:7240 +#: readelf.c:7252 msgid "the PHDR segment must occur before any LOAD segment\n" msgstr "" -#: readelf.c:7258 +#: readelf.c:7270 msgid "the PHDR segment is not covered by a LOAD segment\n" msgstr "" -#: readelf.c:7264 +#: readelf.c:7276 msgid "more than one dynamic segment\n" msgstr "" -#: readelf.c:7283 +#: readelf.c:7295 msgid "no .dynamic section in the dynamic segment\n" msgstr "" -#: readelf.c:7302 +#: readelf.c:7314 msgid "the .dynamic section is not the same as the dynamic segment\n" msgstr "" -#: readelf.c:7313 +#: readelf.c:7325 msgid "the dynamic segment offset + size exceeds the size of the file\n" msgstr "" -#: readelf.c:7326 +#: readelf.c:7338 msgid "Unable to find program interpreter name\n" msgstr "" -#: readelf.c:7337 +#: readelf.c:7349 #, c-format msgid " [Requesting program interpreter: %s]\n" msgstr "" -#: readelf.c:7348 +#: readelf.c:7360 #, c-format msgid "" "\n" " Section to Segment mapping:\n" msgstr "" -#: readelf.c:7349 +#: readelf.c:7361 #, c-format msgid " Segment Sections...\n" msgstr "" -#: readelf.c:7391 readelf.c:12419 +#: readelf.c:7403 readelf.c:12432 msgid "Cannot interpret virtual addresses without program headers.\n" msgstr "" -#: readelf.c:7407 +#: readelf.c:7419 #, c-format msgid "Virtual address %#<PRIx64> not located in any PT_LOAD segment.\n" msgstr "" -#: readelf.c:7439 readelf.c:7509 +#: readelf.c:7451 readelf.c:7521 msgid "" "The e_shentsize field in the ELF header is less than the size of an ELF " "section header\n" msgstr "" -#: readelf.c:7443 readelf.c:7514 +#: readelf.c:7455 readelf.c:7526 msgid "" "The e_shentsize field in the ELF header is larger than the size of an ELF " "section header\n" msgstr "" -#: readelf.c:7447 readelf.c:7519 +#: readelf.c:7459 readelf.c:7531 msgid "section headers" msgstr "" -#: readelf.c:7456 readelf.c:7528 +#: readelf.c:7468 readelf.c:7540 #, c-format msgid "Out of memory reading %u section headers\n" msgstr "" -#: readelf.c:7476 readelf.c:7548 +#: readelf.c:7488 readelf.c:7560 #, c-format msgid "Section %u has an out of range sh_link value of %u\n" msgstr "" -#: readelf.c:7478 readelf.c:7550 +#: readelf.c:7490 readelf.c:7562 #, c-format msgid "Section %u has an out of range sh_info value of %u\n" msgstr "" -#: readelf.c:7592 readelf.c:7709 +#: readelf.c:7604 readelf.c:7721 #, c-format msgid "Section %s has an invalid sh_entsize of %#<PRIx64>\n" msgstr "" -#: readelf.c:7600 readelf.c:7717 readelf.c:14441 +#: readelf.c:7612 readelf.c:7729 readelf.c:14454 #, c-format msgid "Section %s has an invalid sh_size of %#<PRIx64>\n" msgstr "" -#: readelf.c:7610 readelf.c:7727 +#: readelf.c:7622 readelf.c:7739 #, c-format msgid "" "Size (%#<PRIx64>) of section %s is not a multiple of its sh_entsize (%" "#<PRIx64>)\n" msgstr "" -#: readelf.c:7619 readelf.c:7736 readelf.c:17026 +#: readelf.c:7631 readelf.c:7748 readelf.c:17039 msgid "symbols" msgstr "" -#: readelf.c:7631 readelf.c:7748 +#: readelf.c:7643 readelf.c:7760 msgid "" "Multiple symbol table index sections associated with the same symbol " "section\n" msgstr "" -#: readelf.c:7638 readelf.c:7755 +#: readelf.c:7650 readelf.c:7767 msgid "symbol table section indices" msgstr "" -#: readelf.c:7645 readelf.c:7762 +#: readelf.c:7657 readelf.c:7774 #, c-format msgid "Index section %s has an sh_size of %#<PRIx64> - expected %#<PRIx64>\n" msgstr "" -#: readelf.c:7657 readelf.c:7774 +#: readelf.c:7669 readelf.c:7786 #, c-format msgid "Out of memory reading %<PRIu64> symbols\n" msgstr "" -#: readelf.c:7977 readelf.c:8073 readelf.c:8090 readelf.c:8107 +#: readelf.c:7989 readelf.c:8085 readelf.c:8102 readelf.c:8119 msgid "Internal error: not enough buffer room for section flag info" msgstr "" -#: readelf.c:8115 +#: readelf.c:8127 #, c-format msgid "UNKNOWN (%*.*lx)" msgstr "" -#: readelf.c:8134 readelf.c:8149 +#: readelf.c:8146 readelf.c:8161 msgid "Compressed section is too small even for a compression header\n" msgstr "" -#: readelf.c:8171 +#: readelf.c:8183 msgid "" "possibly corrupt ELF file header - it has a non-zero section header offset, " "but no section headers\n" msgstr "" -#: readelf.c:8176 +#: readelf.c:8188 #, c-format msgid "" "\n" "There are no sections in this file.\n" msgstr "" -#: readelf.c:8184 readelf.c:23101 +#: readelf.c:8196 readelf.c:23111 #, c-format msgid "In linked file '%s': " msgstr "" -#: readelf.c:8187 +#: readelf.c:8199 #, c-format msgid "There is %d section header, starting at offset %#<PRIx64>:\n" msgid_plural "There are %d section headers, starting at offset %#<PRIx64>:\n" msgstr[0] "" msgstr[1] "" -#: readelf.c:8210 readelf.c:8893 readelf.c:9095 readelf.c:14723 -#: readelf.c:17432 +#: readelf.c:8222 readelf.c:8906 readelf.c:9108 readelf.c:14736 +#: readelf.c:17410 msgid "string table" msgstr "" -#: readelf.c:8272 +#: readelf.c:8284 #, c-format msgid "Section %d has invalid sh_entsize of %<PRIx64>\n" msgstr "" -#: readelf.c:8274 +#: readelf.c:8286 #, c-format msgid "(Using the expected size of %<PRIx64> for the rest of this dump)\n" msgstr "" -#: readelf.c:8298 +#: readelf.c:8310 msgid "File contains multiple dynamic symbol tables\n" msgstr "" -#: readelf.c:8313 +#: readelf.c:8325 msgid "File contains multiple dynamic string tables\n" msgstr "" -#: readelf.c:8319 +#: readelf.c:8331 msgid "dynamic strings" msgstr "" -#: readelf.c:8347 readelf.c:8353 +#: readelf.c:8359 readelf.c:8365 #, c-format msgid "Section '%s': zero-sized relocation section\n" msgstr "" -#: readelf.c:8366 +#: readelf.c:8379 #, c-format msgid "Section '%s': has a size of zero - is this intended ?\n" msgstr "" -#: readelf.c:8452 +#: readelf.c:8465 #, c-format msgid "" "\n" "Section Headers in linked file '%s':\n" msgstr "" -#: readelf.c:8455 +#: readelf.c:8468 #, c-format msgid "" "\n" "Section Headers:\n" msgstr "" -#: readelf.c:8457 +#: readelf.c:8470 #, c-format msgid "" "\n" "Section Header:\n" msgstr "" -#: readelf.c:8463 readelf.c:8474 readelf.c:8485 +#: readelf.c:8476 readelf.c:8487 readelf.c:8498 #, c-format msgid " [Nr] Name\n" msgstr "" -#: readelf.c:8464 +#: readelf.c:8477 #, c-format msgid " Type Addr Off Size ES Lk Inf Al\n" msgstr "" -#: readelf.c:8468 +#: readelf.c:8481 #, c-format msgid "" " [Nr] Name Type Addr Off Size ES Flg Lk " "Inf Al\n" msgstr "" -#: readelf.c:8475 +#: readelf.c:8488 #, c-format msgid " Type Address Off Size ES Lk Inf Al\n" msgstr "" -#: readelf.c:8479 +#: readelf.c:8492 #, c-format msgid "" " [Nr] Name Type Address Off Size ES " "Flg Lk Inf Al\n" msgstr "" -#: readelf.c:8486 +#: readelf.c:8499 #, c-format msgid " Type Address Offset Link\n" msgstr "" -#: readelf.c:8487 +#: readelf.c:8500 #, c-format msgid " Size EntSize Info Align\n" msgstr "" -#: readelf.c:8491 +#: readelf.c:8504 #, c-format msgid " [Nr] Name Type Address Offset\n" msgstr "" -#: readelf.c:8492 +#: readelf.c:8505 #, c-format msgid " Size EntSize Flags Link Info Align\n" msgstr "" -#: readelf.c:8497 +#: readelf.c:8510 #, c-format msgid " Flags\n" msgstr "" -#: readelf.c:8527 +#: readelf.c:8540 #, c-format msgid "[%2u]: Link field (%u) should index a symtab section.\n" msgstr "" -#: readelf.c:8540 +#: readelf.c:8553 #, c-format msgid "[%2u]: Link field (%u) should index a string section.\n" msgstr "" -#: readelf.c:8548 readelf.c:8559 +#: readelf.c:8561 readelf.c:8572 #, c-format msgid "[%2u]: Unexpected value (%u) in link field.\n" msgstr "" -#: readelf.c:8586 +#: readelf.c:8599 #, c-format msgid "[%2u]: Info field (%u) should index a relocatable section.\n" msgstr "" -#: readelf.c:8597 readelf.c:8624 +#: readelf.c:8610 readelf.c:8637 #, c-format msgid "[%2u]: Unexpected value (%u) in info field.\n" msgstr "" -#: readelf.c:8619 +#: readelf.c:8632 #, c-format msgid "[%2u]: Expected link to another section in info field" msgstr "" -#: readelf.c:8634 +#: readelf.c:8647 #, c-format msgid "Size of section %u is larger than the entire file!\n" msgstr "" -#: readelf.c:8703 +#: readelf.c:8716 #, c-format msgid "section %u: sh_link value of %u is larger than the number of sections\n" msgstr "" -#: readelf.c:8804 +#: readelf.c:8817 msgid "compression header" msgstr "" -#: readelf.c:8809 +#: readelf.c:8822 #, c-format msgid " [<corrupt>]\n" msgstr "" -#: readelf.c:8817 +#: readelf.c:8830 #, c-format msgid " [<unknown>: 0x%x], " msgstr "" @@ -9484,7 +9530,7 @@ msgstr "" #. The ordering of the letters shown here matches the ordering of the #. corresponding SHF_xxx values, and hence the order in which these #. letters will be displayed to the user. -#: readelf.c:8832 +#: readelf.c:8845 #, c-format msgid "" "Key to Flags:\n" @@ -9494,229 +9540,229 @@ msgid "" " " msgstr "" -#: readelf.c:8840 +#: readelf.c:8853 #, c-format msgid "R (retain), " msgstr "" -#: readelf.c:8843 +#: readelf.c:8856 #, c-format msgid "D (mbind), " msgstr "" -#: readelf.c:8851 +#: readelf.c:8864 #, c-format msgid "l (large), " msgstr "" -#: readelf.c:8853 +#: readelf.c:8866 #, c-format msgid "y (purecode), " msgstr "" -#: readelf.c:8855 +#: readelf.c:8868 #, c-format msgid "v (VLE), " msgstr "" -#: readelf.c:8883 +#: readelf.c:8896 msgid "Bad sh_link in symbol table section\n" msgstr "" -#: readelf.c:8918 +#: readelf.c:8931 msgid "<OS specific>" msgstr "" -#: readelf.c:8919 +#: readelf.c:8932 msgid "<PROC specific>" msgstr "" -#: readelf.c:8948 +#: readelf.c:8961 #, c-format msgid "" "\n" "There are no sections group in linked file '%s'.\n" msgstr "" -#: readelf.c:8951 readelf.c:8990 +#: readelf.c:8964 readelf.c:9003 #, c-format msgid "" "\n" "There are no section groups in this file.\n" msgstr "" -#: readelf.c:8958 +#: readelf.c:8971 msgid "Section headers are not available!\n" msgstr "" -#: readelf.c:8969 +#: readelf.c:8982 #, c-format msgid "Out of memory reading %u section group headers\n" msgstr "" -#: readelf.c:8987 +#: readelf.c:9000 #, c-format msgid "" "\n" "There are no section groups in linked file '%s'.\n" msgstr "" -#: readelf.c:9001 +#: readelf.c:9014 #, c-format msgid "Out of memory reading %zu groups\n" msgstr "" -#: readelf.c:9013 +#: readelf.c:9026 #, c-format msgid "Section groups in linked file '%s'\n" msgstr "" -#: readelf.c:9035 +#: readelf.c:9048 #, c-format msgid "Bad sh_link in group section `%s'\n" msgstr "" -#: readelf.c:9048 +#: readelf.c:9061 #, c-format msgid "Corrupt header in group section `%s'\n" msgstr "" -#: readelf.c:9054 readelf.c:9065 +#: readelf.c:9067 readelf.c:9078 #, c-format msgid "Bad sh_info in group section `%s'\n" msgstr "" -#: readelf.c:9105 +#: readelf.c:9118 #, c-format msgid "" "Section %s has sh_entsize (%#<PRIx64>) which is larger than its size (%" "#<PRIx64>)\n" msgstr "" -#: readelf.c:9115 +#: readelf.c:9128 msgid "section data" msgstr "" -#: readelf.c:9126 +#: readelf.c:9139 #, c-format msgid "" "\n" "%sgroup section [%5u] `%s' [%s] contains %u sections:\n" msgstr "" -#: readelf.c:9129 +#: readelf.c:9142 #, c-format msgid " [Index] Name\n" msgstr "" -#: readelf.c:9147 +#: readelf.c:9160 #, c-format msgid "section [%5u] in group section [%5u] > maximum section [%5u]\n" msgstr "" -#: readelf.c:9150 +#: readelf.c:9163 msgid "" "Further error messages about overlarge group section indices suppressed\n" msgstr "" -#: readelf.c:9163 +#: readelf.c:9176 #, c-format msgid "section [%5u] in group section [%5u] already in group section [%5u]\n" msgstr "" -#: readelf.c:9167 +#: readelf.c:9180 msgid "" "Further error messages about already contained group sections suppressed\n" msgstr "" -#: readelf.c:9179 +#: readelf.c:9192 #, c-format msgid "section 0 in group section [%5u]\n" msgstr "" -#: readelf.c:9246 +#: readelf.c:9259 msgid "dynamic section image fixups" msgstr "" -#: readelf.c:9254 +#: readelf.c:9267 #, c-format msgid "corrupt library name index of %#<PRIx64> found in dynamic entry" msgstr "" -#: readelf.c:9259 +#: readelf.c:9272 #, c-format msgid "" "\n" "Image fixups for needed library #%<PRId64>: %s - ident: %<PRIx64>\n" msgstr "" -#: readelf.c:9263 +#: readelf.c:9276 #, c-format msgid "Seg Offset Type SymVec DataType\n" msgstr "" -#: readelf.c:9297 +#: readelf.c:9310 msgid "dynamic section image relocations" msgstr "" -#: readelf.c:9301 +#: readelf.c:9314 #, c-format msgid "" "\n" "Image relocs\n" msgstr "" -#: readelf.c:9303 +#: readelf.c:9316 #, c-format msgid "" "Seg Offset Type Addend Seg Sym Off\n" msgstr "" -#: readelf.c:9358 +#: readelf.c:9371 msgid "dynamic string section" msgstr "" -#: readelf.c:9441 +#: readelf.c:9454 #, c-format msgid "" "\n" "In linked file '%s' relocation section " msgstr "" -#: readelf.c:9444 +#: readelf.c:9457 #, c-format msgid "" "\n" "Relocation section " msgstr "" -#: readelf.c:9463 +#: readelf.c:9476 #, c-format msgid " at offset %#<PRIx64>" msgstr "" -#: readelf.c:9464 +#: readelf.c:9477 #, c-format msgid " contains %<PRIu64> entry which relocates" msgid_plural " contains %<PRIu64> entries which relocate" msgstr[0] "" msgstr[1] "" -#: readelf.c:9467 +#: readelf.c:9480 #, c-format msgid " %<PRIu64> location:\n" msgid_plural " %<PRIu64> locations:\n" msgstr[0] "" msgstr[1] "" -#: readelf.c:9473 +#: readelf.c:9486 #, c-format msgid " at offset %#<PRIx64> contains %<PRIu64> entry:\n" msgid_plural " at offset %#<PRIx64> contains %<PRIu64> entries:\n" msgstr[0] "" msgstr[1] "" -#: readelf.c:9572 +#: readelf.c:9585 #, c-format msgid "" "\n" @@ -9724,136 +9770,136 @@ msgid "" "bytes:\n" msgstr "" -#: readelf.c:9577 +#: readelf.c:9590 #, c-format msgid "" "\n" "'%s' relocation section at offset %#<PRIx64> contains %<PRId64> bytes:\n" msgstr "" -#: readelf.c:9599 +#: readelf.c:9612 #, c-format msgid "" "\n" "There are no dynamic relocations in linked file '%s'.\n" msgstr "" -#: readelf.c:9602 +#: readelf.c:9615 #, c-format msgid "" "\n" "There are no dynamic relocations in this file.\n" msgstr "" -#: readelf.c:9627 +#: readelf.c:9640 #, c-format msgid "" "\n" "There are no static relocations in linked file '%s'." msgstr "" -#: readelf.c:9630 +#: readelf.c:9643 #, c-format msgid "" "\n" "There are no static relocations in this file." msgstr "" -#: readelf.c:9631 +#: readelf.c:9644 #, c-format msgid "" "\n" "To see the dynamic relocations add --use-dynamic to the command line.\n" msgstr "" -#: readelf.c:9639 +#: readelf.c:9652 #, c-format msgid "" "\n" "There are no relocations in linked file '%s'.\n" msgstr "" -#: readelf.c:9642 +#: readelf.c:9655 #, c-format msgid "" "\n" "There are no relocations in this file.\n" msgstr "" -#: readelf.c:9801 +#: readelf.c:9814 #, c-format msgid "Invalid section %u in table entry %td\n" msgstr "" -#: readelf.c:9813 +#: readelf.c:9826 #, c-format msgid "Invalid offset %<PRIx64> in table entry %td\n" msgstr "" -#: readelf.c:9831 +#: readelf.c:9844 #, c-format msgid "\tUnknown version.\n" msgstr "" -#: readelf.c:9894 readelf.c:10332 +#: readelf.c:9907 readelf.c:10345 msgid "unwind table" msgstr "" -#: readelf.c:9945 readelf.c:10415 +#: readelf.c:9958 readelf.c:10428 #, c-format msgid "Skipping unknown relocation type: %u\n" msgstr "" -#: readelf.c:9951 readelf.c:10422 +#: readelf.c:9964 readelf.c:10435 #, c-format msgid "Skipping unexpected relocation type: %s\n" msgstr "" -#: readelf.c:9960 readelf.c:10429 +#: readelf.c:9973 readelf.c:10442 #, c-format msgid "Skipping reloc with overlarge offset: %#<PRIx64>\n" msgstr "" -#: readelf.c:9968 readelf.c:10437 +#: readelf.c:9981 readelf.c:10450 #, c-format msgid "Skipping reloc with invalid symbol index: %u\n" msgstr "" -#: readelf.c:10016 readelf.c:10484 readelf.c:11595 +#: readelf.c:10029 readelf.c:10497 readelf.c:11608 msgid "Multiple symbol tables encountered\n" msgstr "" -#: readelf.c:10031 readelf.c:10500 readelf.c:11610 +#: readelf.c:10044 readelf.c:10513 readelf.c:11623 #, c-format msgid "" "\n" "There are no unwind sections in this file.\n" msgstr "" -#: readelf.c:10117 +#: readelf.c:10130 #, c-format msgid "" "\n" "Could not find unwind info section for " msgstr "" -#: readelf.c:10129 +#: readelf.c:10142 msgid "unwind info" msgstr "" -#: readelf.c:10132 +#: readelf.c:10145 #, c-format msgid "" "\n" "Unwind section " msgstr "" -#: readelf.c:10139 +#: readelf.c:10152 #, c-format msgid " at offset %#<PRIx64> contains %<PRIu64> entries:\n" msgstr "" -#: readelf.c:10509 readelf.c:11617 +#: readelf.c:10522 readelf.c:11630 #, c-format msgid "" "\n" @@ -9864,204 +9910,204 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:10642 +#: readelf.c:10655 msgid "unwind data" msgstr "" -#: readelf.c:10714 +#: readelf.c:10727 #, c-format msgid "Skipping unexpected relocation at offset %#<PRIx64>\n" msgstr "" -#: readelf.c:10736 +#: readelf.c:10749 #, c-format msgid "Unknown section relocation type %d encountered\n" msgstr "" -#: readelf.c:10744 +#: readelf.c:10757 #, c-format msgid "Bad symbol index in unwind relocation (%<PRIu64> > %<PRIu64>)\n" msgstr "" -#: readelf.c:10760 +#: readelf.c:10773 #, c-format msgid "Skipping unknown ARM relocation type: %d\n" msgstr "" -#: readelf.c:10770 +#: readelf.c:10783 #, c-format msgid "Skipping unexpected ARM relocation type %s\n" msgstr "" -#: readelf.c:10779 +#: readelf.c:10792 #, c-format msgid "Skipping unknown C6000 relocation type: %d\n" msgstr "" -#: readelf.c:10789 +#: readelf.c:10802 #, c-format msgid "Skipping unexpected C6000 relocation type %s\n" msgstr "" #. This function currently only supports ARM and TI unwinders. -#: readelf.c:10798 +#: readelf.c:10811 msgid "Only TI and ARM unwinders are currently supported\n" msgstr "" -#: readelf.c:10861 +#: readelf.c:10874 #, c-format msgid "[Truncated opcode]\n" msgstr "" -#: readelf.c:10909 readelf.c:11129 +#: readelf.c:10922 readelf.c:11142 #, c-format msgid "Refuse to unwind" msgstr "" -#: readelf.c:10932 +#: readelf.c:10945 #, c-format msgid " [Reserved]" msgstr "" -#: readelf.c:10960 +#: readelf.c:10973 #, c-format msgid " finish" msgstr "" -#: readelf.c:10965 readelf.c:11062 +#: readelf.c:10978 readelf.c:11075 #, c-format msgid "[Spare]" msgstr "" -#: readelf.c:10999 +#: readelf.c:11012 msgid "corrupt change to vsp\n" msgstr "" -#: readelf.c:11025 +#: readelf.c:11038 #, c-format msgid " pop {ra_auth_code}" msgstr "" -#: readelf.c:11027 +#: readelf.c:11040 #, c-format msgid " vsp as modifier for PAC validation" msgstr "" -#: readelf.c:11084 readelf.c:11241 +#: readelf.c:11097 readelf.c:11254 #, c-format msgid " [unsupported opcode]" msgstr "" -#: readelf.c:11177 +#: readelf.c:11190 #, c-format msgid "pop frame {" msgstr "" -#: readelf.c:11180 +#: readelf.c:11193 #, c-format msgid "*corrupt* - no registers specified" msgstr "" -#: readelf.c:11194 +#: readelf.c:11207 msgid "[pad]" msgstr "" -#: readelf.c:11223 +#: readelf.c:11236 msgid "Corrupt stack pointer adjustment detected\n" msgstr "" -#: readelf.c:11230 +#: readelf.c:11243 #, c-format msgid "sp = sp + %<PRId64>" msgstr "" -#: readelf.c:11305 +#: readelf.c:11318 #, c-format msgid " Personality routine: " msgstr "" -#: readelf.c:11337 +#: readelf.c:11350 #, c-format msgid " [Truncated data]\n" msgstr "" -#: readelf.c:11361 +#: readelf.c:11374 #, c-format msgid "Corrupt ARM compact model table entry: %x \n" msgstr "" -#: readelf.c:11366 +#: readelf.c:11379 #, c-format msgid " Compact model index: %d\n" msgstr "" -#: readelf.c:11392 +#: readelf.c:11405 msgid "Unknown ARM compact model index encountered\n" msgstr "" -#: readelf.c:11393 +#: readelf.c:11406 #, c-format msgid " [reserved]\n" msgstr "" -#: readelf.c:11408 +#: readelf.c:11421 #, c-format msgid " Restore stack from frame pointer\n" msgstr "" -#: readelf.c:11410 +#: readelf.c:11423 #, c-format msgid " Stack increment %d\n" msgstr "" -#: readelf.c:11411 +#: readelf.c:11424 #, c-format msgid " Registers restored: " msgstr "" -#: readelf.c:11416 +#: readelf.c:11429 #, c-format msgid " Return register: %s\n" msgstr "" -#: readelf.c:11420 +#: readelf.c:11433 #, c-format msgid " [reserved (%d)]\n" msgstr "" -#: readelf.c:11424 +#: readelf.c:11437 #, c-format msgid "" "Unsupported architecture type %d encountered when decoding unwind table\n" msgstr "" -#: readelf.c:11479 +#: readelf.c:11492 #, c-format msgid "corrupt index table entry: %x\n" msgstr "" -#: readelf.c:11518 +#: readelf.c:11531 #, c-format msgid "Unwind entry contains corrupt offset (%#<PRIx64>) into section %s\n" msgstr "" -#: readelf.c:11534 +#: readelf.c:11547 #, c-format msgid "Could not locate .ARM.extab section containing %#<PRIx64>.\n" msgstr "" -#: readelf.c:11578 +#: readelf.c:11591 #, c-format msgid "" "Unsupported architecture type %d encountered when processing unwind table\n" msgstr "" -#: readelf.c:11640 +#: readelf.c:11653 #, c-format msgid "No processor specific unwind information to decode\n" msgstr "" -#: readelf.c:11670 +#: readelf.c:11683 #, c-format msgid "" "\n" @@ -10069,80 +10115,80 @@ msgid "" "supported.\n" msgstr "" -#: readelf.c:11697 +#: readelf.c:11710 #, c-format msgid "NONE" msgstr "" -#: readelf.c:11722 +#: readelf.c:11735 #, c-format msgid "Interface Version: %s" msgstr "" -#: readelf.c:11725 +#: readelf.c:11738 #, c-format msgid "Interface Version: <corrupt: %<PRIx64>>" msgstr "" -#: readelf.c:11743 +#: readelf.c:11756 #, c-format msgid "Time Stamp: %s" msgstr "" -#: readelf.c:11932 readelf.c:11982 +#: readelf.c:11945 readelf.c:11995 msgid "dynamic section" msgstr "" -#: readelf.c:11952 readelf.c:12003 readelf.c:12111 +#: readelf.c:11965 readelf.c:12016 readelf.c:12124 #, c-format msgid "Out of memory allocating space for %<PRIu64> dynamic entries\n" msgstr "" -#: readelf.c:12077 +#: readelf.c:12090 #, c-format msgid "Size overflow prevents reading %<PRIu64> elements of size %u\n" msgstr "" -#: readelf.c:12087 +#: readelf.c:12100 #, c-format msgid "Invalid number of dynamic entries: %<PRIu64>\n" msgstr "" -#: readelf.c:12095 +#: readelf.c:12108 #, c-format msgid "Out of memory reading %<PRIu64> dynamic entries\n" msgstr "" -#: readelf.c:12102 +#: readelf.c:12115 #, c-format msgid "Unable to read in %<PRIu64> bytes of dynamic data\n" msgstr "" -#: readelf.c:12152 readelf.c:12206 readelf.c:12230 readelf.c:12263 -#: readelf.c:12289 readelf.c:12308 +#: readelf.c:12165 readelf.c:12219 readelf.c:12243 readelf.c:12276 +#: readelf.c:12302 readelf.c:12321 msgid "Unable to seek to start of dynamic information\n" msgstr "" -#: readelf.c:12158 readelf.c:12212 +#: readelf.c:12171 readelf.c:12225 msgid "Failed to read in number of buckets\n" msgstr "" -#: readelf.c:12164 +#: readelf.c:12177 msgid "Failed to read in number of chains\n" msgstr "" -#: readelf.c:12271 +#: readelf.c:12284 msgid "Failed to determine last chain length\n" msgstr "" -#: readelf.c:12371 +#: readelf.c:12384 #, c-format msgid "" "\n" "There is no dynamic section in linked file '%s'.\n" msgstr "" -#: readelf.c:12374 +#: readelf.c:12387 #, c-format msgid "" "\n" @@ -10150,49 +10196,49 @@ msgid "" msgstr "" #. See PR 21379 for a reproducer. -#: readelf.c:12434 +#: readelf.c:12447 msgid "Invalid PT_LOAD entry\n" msgstr "" -#: readelf.c:12460 +#: readelf.c:12473 msgid "the .dynsym section doesn't match the DT_SYMTAB and DT_SYMENT tags\n" msgstr "" -#: readelf.c:12470 +#: readelf.c:12483 msgid "Corrupt DT_SYMTAB dynamic entry\n" msgstr "" -#: readelf.c:12506 +#: readelf.c:12519 msgid "the .dynstr section doesn't match the DT_STRTAB and DT_STRSZ tags\n" msgstr "" -#: readelf.c:12511 +#: readelf.c:12524 msgid "dynamic string table" msgstr "" -#: readelf.c:12514 +#: readelf.c:12527 msgid "Corrupt DT_STRTAB dynamic entry\n" msgstr "" -#: readelf.c:12539 +#: readelf.c:12552 #, c-format msgid "Bad value (%d) for SYMINENT entry\n" msgstr "" -#: readelf.c:12558 +#: readelf.c:12571 msgid "symbol information" msgstr "" -#: readelf.c:12564 +#: readelf.c:12577 msgid "Multiple dynamic symbol information sections found\n" msgstr "" -#: readelf.c:12570 +#: readelf.c:12583 #, c-format msgid "Out of memory allocating %<PRIu64> bytes for dynamic symbol info\n" msgstr "" -#: readelf.c:12594 +#: readelf.c:12607 #, c-format msgid "" "\n" @@ -10205,7 +10251,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:12601 +#: readelf.c:12614 #, c-format msgid "" "\n" @@ -10216,87 +10262,87 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:12608 +#: readelf.c:12621 #, c-format msgid " Tag Type Name/Value\n" msgstr "" -#: readelf.c:12642 +#: readelf.c:12655 #, c-format msgid "Auxiliary library" msgstr "" -#: readelf.c:12646 +#: readelf.c:12659 #, c-format msgid "Filter library" msgstr "" -#: readelf.c:12650 +#: readelf.c:12663 #, c-format msgid "Configuration file" msgstr "" -#: readelf.c:12654 +#: readelf.c:12667 #, c-format msgid "Dependency audit library" msgstr "" -#: readelf.c:12658 +#: readelf.c:12671 #, c-format msgid "Audit library" msgstr "" -#: readelf.c:12677 readelf.c:12705 readelf.c:12733 readelf.c:13073 +#: readelf.c:12690 readelf.c:12718 readelf.c:12746 readelf.c:13086 #, c-format msgid "Flags:" msgstr "" -#: readelf.c:12680 readelf.c:12708 readelf.c:12735 readelf.c:13075 +#: readelf.c:12693 readelf.c:12721 readelf.c:12748 readelf.c:13088 #, c-format msgid " None\n" msgstr "" -#: readelf.c:12942 +#: readelf.c:12955 #, c-format msgid "Shared library: [%s]" msgstr "" -#: readelf.c:12946 +#: readelf.c:12959 #, c-format msgid " program interpreter" msgstr "" -#: readelf.c:12950 +#: readelf.c:12963 #, c-format msgid "Library soname: [%s]" msgstr "" -#: readelf.c:12954 +#: readelf.c:12967 #, c-format msgid "Library rpath: [%s]" msgstr "" -#: readelf.c:12958 +#: readelf.c:12971 #, c-format msgid "Library runpath: [%s]" msgstr "" -#: readelf.c:12995 +#: readelf.c:13008 #, c-format msgid " (bytes)\n" msgstr "" -#: readelf.c:13026 +#: readelf.c:13039 #, c-format msgid "Not needed object: [%s]\n" msgstr "" -#: readelf.c:13051 +#: readelf.c:13064 #, c-format msgid "<corrupt time val: %<PRIx64>" msgstr "" -#: readelf.c:13194 +#: readelf.c:13207 #, c-format msgid "" "\n" @@ -10308,7 +10354,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:13201 +#: readelf.c:13214 #, c-format msgid "" "\n" @@ -10319,71 +10365,71 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:13209 readelf.c:13355 readelf.c:13520 +#: readelf.c:13222 readelf.c:13368 readelf.c:13533 #, c-format msgid " Addr: 0x%016<PRIx64>" msgstr "" -#: readelf.c:13210 readelf.c:13356 readelf.c:13521 +#: readelf.c:13223 readelf.c:13369 readelf.c:13534 #, c-format msgid " Offset: 0x%08<PRIx64> Link: %u (%s)\n" msgstr "" -#: readelf.c:13216 +#: readelf.c:13229 msgid "version definition section" msgstr "" -#: readelf.c:13245 +#: readelf.c:13258 #, c-format msgid " %#06zx: Rev: %d Flags: %s" msgstr "" -#: readelf.c:13248 +#: readelf.c:13261 #, c-format msgid " Index: %d Cnt: %d " msgstr "" -#: readelf.c:13265 +#: readelf.c:13278 #, c-format msgid "Name: %s\n" msgstr "" -#: readelf.c:13268 +#: readelf.c:13281 #, c-format msgid "Name index: %ld\n" msgstr "" -#: readelf.c:13277 +#: readelf.c:13290 #, c-format msgid "Invalid vda_next field of %lx\n" msgstr "" -#: readelf.c:13297 +#: readelf.c:13310 #, c-format msgid " %#06zx: Parent %d: %s\n" msgstr "" -#: readelf.c:13301 +#: readelf.c:13314 #, c-format msgid " %#06zx: Parent %d, name index: %ld\n" msgstr "" -#: readelf.c:13306 +#: readelf.c:13319 #, c-format msgid " Version def aux past end of section\n" msgstr "" -#: readelf.c:13313 +#: readelf.c:13326 #, c-format msgid "Invalid vd_next field of %lx\n" msgstr "" -#: readelf.c:13324 +#: readelf.c:13337 #, c-format msgid " Version definition past end of section\n" msgstr "" -#: readelf.c:13340 +#: readelf.c:13353 #, c-format msgid "" "\n" @@ -10394,7 +10440,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:13347 +#: readelf.c:13360 #, c-format msgid "" "\n" @@ -10405,68 +10451,68 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:13363 +#: readelf.c:13376 msgid "Version Needs section" msgstr "" -#: readelf.c:13388 +#: readelf.c:13401 #, c-format msgid " %#06zx: Version: %d" msgstr "" -#: readelf.c:13391 +#: readelf.c:13404 #, c-format msgid " File: %s" msgstr "" -#: readelf.c:13394 +#: readelf.c:13407 #, c-format msgid " File: %lx" msgstr "" -#: readelf.c:13396 +#: readelf.c:13409 #, c-format msgid " Cnt: %d\n" msgstr "" -#: readelf.c:13419 +#: readelf.c:13432 #, c-format msgid " %#06zx: Name: %s" msgstr "" -#: readelf.c:13422 +#: readelf.c:13435 #, c-format msgid " %#06zx: Name index: %lx" msgstr "" -#: readelf.c:13425 +#: readelf.c:13438 #, c-format msgid " Flags: %s Version: %d\n" msgstr "" -#: readelf.c:13431 +#: readelf.c:13444 #, c-format msgid "Invalid vna_next field of %lx\n" msgstr "" -#: readelf.c:13444 +#: readelf.c:13457 msgid "Missing Version Needs auxiliary information\n" msgstr "" -#: readelf.c:13449 +#: readelf.c:13462 #, c-format msgid "Invalid vn_next field of %lx\n" msgstr "" -#: readelf.c:13459 +#: readelf.c:13472 msgid "Missing Version Needs information\n" msgstr "" -#: readelf.c:13497 +#: readelf.c:13510 msgid "version string table" msgstr "" -#: readelf.c:13505 +#: readelf.c:13518 #, c-format msgid "" "\n" @@ -10479,7 +10525,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:13512 +#: readelf.c:13525 #, c-format msgid "" "\n" @@ -10490,236 +10536,236 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:13530 +#: readelf.c:13543 msgid "version symbol data" msgstr "" -#: readelf.c:13550 +#: readelf.c:13563 msgid "*invalid*" msgstr "" -#: readelf.c:13558 +#: readelf.c:13571 msgid " 0 (*local*) " msgstr "" -#: readelf.c:13562 +#: readelf.c:13575 msgid " 1 (*global*) " msgstr "" -#: readelf.c:13573 +#: readelf.c:13586 msgid "invalid index into symbol array\n" msgstr "" -#: readelf.c:13596 readelf.c:14148 +#: readelf.c:13609 readelf.c:14161 msgid "version need" msgstr "" -#: readelf.c:13607 +#: readelf.c:13620 msgid "version need aux (2)" msgstr "" -#: readelf.c:13654 readelf.c:14092 +#: readelf.c:13667 readelf.c:14105 msgid "version def" msgstr "" -#: readelf.c:13682 readelf.c:14123 +#: readelf.c:13695 readelf.c:14136 msgid "version def aux" msgstr "" -#: readelf.c:13690 +#: readelf.c:13703 msgid "*both*" msgstr "" -#: readelf.c:13722 +#: readelf.c:13735 #, c-format msgid "" "\n" "No version information found in linked file '%s'.\n" msgstr "" -#: readelf.c:13725 +#: readelf.c:13738 #, c-format msgid "" "\n" "No version information found in this file.\n" msgstr "" -#: readelf.c:13821 +#: readelf.c:13834 #, c-format msgid "Unrecognized visibility value: %u\n" msgstr "" -#: readelf.c:13834 +#: readelf.c:13847 #, c-format msgid "Unrecognized alpha specific other value: %u\n" msgstr "" -#: readelf.c:13911 +#: readelf.c:13924 #, c-format msgid "Unrecognized IA64 VMS ST Function type: %d\n" msgstr "" -#: readelf.c:13935 +#: readelf.c:13948 #, c-format msgid "Unrecognized IA64 VMS ST Linkage: %d\n" msgstr "" -#: readelf.c:13961 +#: readelf.c:13974 #, c-format msgid "<localentry>: %d" msgstr "" -#: readelf.c:13975 +#: readelf.c:13988 msgid " VARIANT_CC" msgstr "" -#: readelf.c:14026 +#: readelf.c:14039 #, c-format msgid "<other>: %x" msgstr "" -#: readelf.c:14054 +#: readelf.c:14067 msgid "version data" msgstr "" -#: readelf.c:14166 +#: readelf.c:14179 msgid "version need aux (3)" msgstr "" -#: readelf.c:14357 +#: readelf.c:14370 #, c-format msgid "local symbol %<PRIu64> found at index >= %s's sh_info value of %u\n" msgstr "" -#: readelf.c:14376 +#: readelf.c:14389 #, c-format msgid "Unknown LTO symbol definition encountered: %u\n" msgstr "" -#: readelf.c:14395 +#: readelf.c:14408 #, c-format msgid "Unknown LTO symbol visibility encountered: %u\n" msgstr "" -#: readelf.c:14413 +#: readelf.c:14426 #, c-format msgid "Unknown LTO symbol type encountered: %u\n" msgstr "" -#: readelf.c:14429 +#: readelf.c:14442 #, c-format msgid "" "\n" "The LTO Symbol table section '%s' in linked file '%s' is empty!\n" msgstr "" -#: readelf.c:14433 +#: readelf.c:14446 #, c-format msgid "" "\n" "LTO Symbol table '%s' is empty!\n" msgstr "" -#: readelf.c:14448 +#: readelf.c:14461 msgid "LTO symbols" msgstr "" -#: readelf.c:14463 +#: readelf.c:14476 #, c-format msgid "LTO Symbol extension table '%s' is empty!\n" msgstr "" -#: readelf.c:14469 +#: readelf.c:14482 msgid "LTO ext symbol data" msgstr "" -#: readelf.c:14474 +#: readelf.c:14487 msgid "Unexpected version number in symbol extension table\n" msgstr "" -#: readelf.c:14483 +#: readelf.c:14496 #, c-format msgid "" "\n" "In linked file '%s': " msgstr "" -#: readelf.c:14490 +#: readelf.c:14503 #, c-format msgid "LTO Symbol table '%s' and extension table '%s' contain:\n" msgstr "" -#: readelf.c:14495 +#: readelf.c:14508 #, c-format msgid "LTO Symbol table '%s'\n" msgstr "" -#: readelf.c:14497 +#: readelf.c:14510 #, c-format msgid " and extension table '%s' contain:\n" msgstr "" -#: readelf.c:14502 +#: readelf.c:14515 #, c-format msgid "LTO Symbol table '%s' contains:\n" msgstr "" -#: readelf.c:14507 +#: readelf.c:14520 #, c-format msgid "" " Comdat_Key Kind Visibility Size Slot Type Section " "Name\n" msgstr "" -#: readelf.c:14509 +#: readelf.c:14522 #, c-format msgid " Comdat_Key Kind Visibility Size Slot Name\n" msgstr "" -#: readelf.c:14556 +#: readelf.c:14569 msgid "Ran out of LTO symbol extension data\n" msgstr "" -#: readelf.c:14576 +#: readelf.c:14589 msgid "Data remains in the LTO symbol extension table\n" msgstr "" -#: readelf.c:14586 +#: readelf.c:14599 msgid "Buffer overrun encountered whilst decoding LTO symbol table\n" msgstr "" -#: readelf.c:14628 +#: readelf.c:14641 #, c-format msgid "" " Num: Value Size Type Bind Vis+Other Ndx(SecName) Name [+ " "Version Info]\n" msgstr "" -#: readelf.c:14634 readelf.c:14640 +#: readelf.c:14647 readelf.c:14653 #, c-format msgid " Num: Value Size Type Bind Vis Ndx Name\n" msgstr "" -#: readelf.c:14649 +#: readelf.c:14662 #, c-format msgid "" " Num: Value Size Type Bind Vis+Other Ndx(SecName) Name [+ " "Version Info]\n" msgstr "" -#: readelf.c:14656 readelf.c:14662 +#: readelf.c:14669 readelf.c:14675 #, c-format msgid " Num: Value Size Type Bind Vis Ndx Name\n" msgstr "" -#: readelf.c:14675 +#: readelf.c:14688 #, c-format msgid "" "\n" "Symbol table '%s' has a sh_entsize of zero!\n" msgstr "" -#: readelf.c:14683 +#: readelf.c:14696 #, c-format msgid "" "\n" @@ -10730,7 +10776,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:14692 +#: readelf.c:14705 #, c-format msgid "" "\n" @@ -10741,7 +10787,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:14760 +#: readelf.c:14773 #, c-format msgid "" "\n" @@ -10752,7 +10798,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:14770 +#: readelf.c:14783 #, c-format msgid "" "\n" @@ -10763,14 +10809,14 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:14805 +#: readelf.c:14818 #, c-format msgid "" "\n" "Dynamic symbol information is not available for displaying symbols.\n" msgstr "" -#: readelf.c:14818 +#: readelf.c:14831 #, c-format msgid "" "\n" @@ -10781,24 +10827,24 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:14828 +#: readelf.c:14841 msgid "Out of memory allocating space for histogram buckets\n" msgstr "" -#: readelf.c:14834 readelf.c:14911 +#: readelf.c:14847 readelf.c:14924 #, c-format msgid " Length Number %% of total Coverage\n" msgstr "" -#: readelf.c:14844 +#: readelf.c:14857 msgid "histogram chain is corrupt\n" msgstr "" -#: readelf.c:14856 +#: readelf.c:14869 msgid "Out of memory allocating space for histogram counts\n" msgstr "" -#: readelf.c:14896 +#: readelf.c:14909 #, c-format msgid "" "\n" @@ -10809,15 +10855,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:14907 +#: readelf.c:14920 msgid "Out of memory allocating space for gnu histogram buckets\n" msgstr "" -#: readelf.c:14934 +#: readelf.c:14947 msgid "Out of memory allocating space for gnu histogram counts\n" msgstr "" -#: readelf.c:15000 +#: readelf.c:15013 #, c-format msgid "" "\n" @@ -10830,7 +10876,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:15007 +#: readelf.c:15020 #, c-format msgid "" "\n" @@ -10841,234 +10887,225 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:15015 +#: readelf.c:15028 #, c-format msgid " Num: Name BoundTo Flags\n" msgstr "" -#: readelf.c:15022 +#: readelf.c:15035 #, c-format msgid "<corrupt index>" msgstr "" -#: readelf.c:15027 +#: readelf.c:15040 #, c-format msgid "<corrupt: %19ld>" msgstr "" -#: readelf.c:15119 +#: readelf.c:15132 #, c-format msgid "LoongArch ULEB128 field at 0x%lx contains invalid ULEB128 value\n" msgstr "" -#: readelf.c:15124 readelf.c:15178 readelf.c:15229 readelf.c:15275 -#: readelf.c:15289 readelf.c:15333 +#: readelf.c:15137 readelf.c:15191 readelf.c:15242 readelf.c:15288 +#: readelf.c:15302 readelf.c:15346 #, c-format msgid "%s reloc contains invalid symbol index %<PRIu64>\n" msgstr "" -#: readelf.c:15225 +#: readelf.c:15238 #, c-format msgid "MSP430 ULEB128 field at %#<PRIx64> contains invalid ULEB128 value\n" msgstr "" #. PR 21137 -#: readelf.c:15240 +#: readelf.c:15253 #, c-format msgid "MSP430 sym diff reloc contains invalid offset: %#<PRIx64>\n" msgstr "" -#: readelf.c:15252 +#: readelf.c:15265 msgid "Unhandled MSP430 reloc type found after SYM_DIFF reloc\n" msgstr "" -#: readelf.c:15299 +#: readelf.c:15312 #, c-format msgid "MN10300 sym diff reloc contains invalid offset: %#<PRIx64>\n" msgstr "" -#: readelf.c:15310 +#: readelf.c:15323 msgid "Unhandled MN10300 reloc type found after SYM_DIFF reloc\n" msgstr "" -#: readelf.c:15352 readelf.c:15362 +#: readelf.c:15365 readelf.c:15375 #, c-format msgid "RL78 sym diff reloc contains invalid offset: %#<PRIx64>\n" msgstr "" -#: readelf.c:15585 +#: readelf.c:15598 #, c-format msgid "" "Missing knowledge of 32-bit reloc types used in DWARF sections of machine " "number %d\n" msgstr "" -#: readelf.c:16320 +#: readelf.c:16333 #, c-format msgid "unable to apply unsupported reloc type %d to section %s\n" msgstr "" -#: readelf.c:16329 +#: readelf.c:16342 #, c-format msgid "skipping invalid relocation offset %#<PRIx64> in section %s\n" msgstr "" -#: readelf.c:16339 +#: readelf.c:16352 #, c-format msgid "skipping invalid relocation symbol index %#<PRIx64> in section %s\n" msgstr "" -#: readelf.c:16363 +#: readelf.c:16376 #, c-format msgid "skipping unexpected symbol type %s in section %s relocation %tu\n" msgstr "" -#: readelf.c:16441 +#: readelf.c:16454 #, c-format msgid "" "\n" "Assembly dump of section %s\n" msgstr "" -#: readelf.c:16459 +#: readelf.c:16472 #, c-format msgid "Section '%s' has no data to dump.\n" msgstr "" -#: readelf.c:16465 +#: readelf.c:16478 msgid "section contents" msgstr "" -#: readelf.c:16488 +#: readelf.c:16501 #, c-format msgid "Uncompressed section size is suspiciously large: 0x%<PRIu64>\n" msgstr "" -#: readelf.c:16580 readelf.c:17199 +#: readelf.c:16593 readelf.c:17177 #, c-format msgid "section '%s' has unsupported compress type: %d\n" msgstr "" -#: readelf.c:16616 readelf.c:17236 +#: readelf.c:16629 readelf.c:17214 #, c-format msgid "Unable to decompress section %s\n" msgstr "" -#: readelf.c:16655 +#: readelf.c:16668 #, c-format msgid "" " NOTE: This section has relocations against it, but these have NOT been " "applied to this dump.\n" msgstr "" -#: readelf.c:16683 +#: readelf.c:16696 #, c-format msgid "" "\n" "String dump of section '%s' in linked file %s:\n" msgstr "" -#: readelf.c:16687 +#: readelf.c:16700 #, c-format msgid "" "\n" "String dump of section '%s':\n" msgstr "" -#: readelf.c:16785 readelf.c:18290 readelf.c:18330 readelf.c:18368 -#: readelf.c:18415 readelf.c:18446 readelf.c:20052 readelf.c:20084 +#: readelf.c:16798 readelf.c:18272 readelf.c:18312 readelf.c:18350 +#: readelf.c:18397 readelf.c:18428 readelf.c:20023 readelf.c:20055 #, c-format msgid "<corrupt>\n" msgstr "" -#: readelf.c:16793 +#: readelf.c:16806 #, c-format msgid " No strings found in this section." msgstr "" -#: readelf.c:16828 +#: readelf.c:16841 #, c-format msgid "" "\n" "Hex dump of section '%s' in linked file %s:\n" msgstr "" -#: readelf.c:16832 +#: readelf.c:16845 #, c-format msgid "" "\n" "Hex dump of section '%s':\n" msgstr "" -#: readelf.c:16976 +#: readelf.c:16989 #, c-format msgid "Iteration failed: %s, %s\n" msgstr "" -#: readelf.c:17020 +#: readelf.c:17033 #, c-format msgid "No symbol section named %s\n" msgstr "" -#: readelf.c:17036 +#: readelf.c:17049 #, c-format msgid "No string table section named %s\n" msgstr "" -#: readelf.c:17043 +#: readelf.c:17056 msgid "strings" msgstr "" -#: readelf.c:17056 readelf.c:17068 +#: readelf.c:17069 readelf.c:17081 #, c-format msgid "CTF open failure: %s\n" msgstr "" -#: readelf.c:17075 +#: readelf.c:17088 #, c-format msgid "" "\n" "Dump of CTF section '%s' in linked file %s:\n" msgstr "" -#: readelf.c:17079 +#: readelf.c:17092 #, c-format msgid "" "\n" "Dump of CTF section '%s':\n" msgstr "" -#: readelf.c:17087 +#: readelf.c:17103 #, c-format msgid "CTF member open failure: %s\n" msgstr "" -#: readelf.c:17114 -msgid "Section name must be provided \n" -msgstr "" - -#: readelf.c:17126 -#, c-format -msgid "SFrame decode failure: %s\n" -msgstr "" - -#: readelf.c:17156 +#: readelf.c:17134 #, c-format msgid "%s section data" msgstr "" -#: readelf.c:17180 +#: readelf.c:17158 #, c-format msgid "compressed section %s is too small to contain a compression header\n" msgstr "" -#: readelf.c:17312 readelf.c:17339 readelf.c:17364 +#: readelf.c:17290 readelf.c:17317 readelf.c:17342 #, c-format msgid "" "malformed note encountered in section %s whilst scanning for build-id note\n" msgstr "" -#: readelf.c:17492 +#: readelf.c:17470 #, c-format msgid "" "\n" @@ -11079,555 +11116,555 @@ msgstr "" #. which has the NOBITS type - the bits in the file will be random. #. This can happen when a file containing a .eh_frame section is #. stripped with the --only-keep-debug command line option. -#: readelf.c:17501 +#: readelf.c:17479 #, c-format msgid "section '%s' has the NOBITS type - its contents are unreliable.\n" msgstr "" -#: readelf.c:17551 +#: readelf.c:17529 #, c-format msgid "Unrecognized debug section: %s\n" msgstr "" -#: readelf.c:17581 +#: readelf.c:17559 #, c-format msgid "Section '%s' was not dumped because it does not exist\n" msgstr "" -#: readelf.c:17644 +#: readelf.c:17622 #, c-format msgid "Unable to display section %d - it has a NULL type\n" msgstr "" -#: readelf.c:17648 +#: readelf.c:17626 #, c-format msgid "Unable to display section %d - it has no contents\n" msgstr "" #. FIXME: Add Proc and OS specific section types ? -#: readelf.c:17659 +#: readelf.c:17637 #, c-format msgid "Unable to determine how to dump section %d (type %#x)\n" msgstr "" -#: readelf.c:17718 +#: readelf.c:17696 #, c-format msgid "Section %d was not dumped because it does not exist!\n" msgstr "" -#: readelf.c:17774 +#: readelf.c:17752 msgid "<corrupt tag>\n" msgstr "" -#: readelf.c:17789 +#: readelf.c:17766 readelf.c:17771 #, c-format msgid "<corrupt string tag>" msgstr "" -#: readelf.c:17823 +#: readelf.c:17805 #, c-format msgid "Absent/Non standard\n" msgstr "" -#: readelf.c:17826 +#: readelf.c:17808 #, c-format msgid "Bare metal/mwdt\n" msgstr "" -#: readelf.c:17829 +#: readelf.c:17811 #, c-format msgid "Bare metal/newlib\n" msgstr "" -#: readelf.c:17832 +#: readelf.c:17814 #, c-format msgid "Linux/uclibc\n" msgstr "" -#: readelf.c:17835 +#: readelf.c:17817 #, c-format msgid "Linux/glibc\n" msgstr "" -#: readelf.c:17838 readelf.c:17917 +#: readelf.c:17820 readelf.c:17899 #, c-format msgid "Unknown\n" msgstr "" -#: readelf.c:17850 readelf.c:17880 readelf.c:17908 +#: readelf.c:17832 readelf.c:17862 readelf.c:17890 #, c-format msgid "Absent\n" msgstr "" -#: readelf.c:17892 +#: readelf.c:17874 msgid "yes" msgstr "" -#: readelf.c:17892 +#: readelf.c:17874 msgid "no" msgstr "" -#: readelf.c:17929 readelf.c:17936 +#: readelf.c:17911 readelf.c:17918 msgid "default" msgstr "" -#: readelf.c:17930 +#: readelf.c:17912 msgid "smallest" msgstr "" -#: readelf.c:17935 +#: readelf.c:17917 msgid "OPTFP" msgstr "" -#: readelf.c:18156 readelf.c:18169 readelf.c:18187 readelf.c:18709 -#: readelf.c:18988 readelf.c:19000 readelf.c:19012 +#: readelf.c:18138 readelf.c:18151 readelf.c:18169 readelf.c:18691 +#: readelf.c:18970 readelf.c:18982 readelf.c:18994 #, c-format msgid "None\n" msgstr "" -#: readelf.c:18157 +#: readelf.c:18139 #, c-format msgid "Application\n" msgstr "" -#: readelf.c:18158 +#: readelf.c:18140 #, c-format msgid "Realtime\n" msgstr "" -#: readelf.c:18159 +#: readelf.c:18141 #, c-format msgid "Microcontroller\n" msgstr "" -#: readelf.c:18160 +#: readelf.c:18142 #, c-format msgid "Application or Realtime\n" msgstr "" -#: readelf.c:18170 readelf.c:18189 readelf.c:18761 readelf.c:18778 -#: readelf.c:18849 readelf.c:18869 readelf.c:21737 +#: readelf.c:18152 readelf.c:18171 readelf.c:18743 readelf.c:18760 +#: readelf.c:18831 readelf.c:18851 readelf.c:21747 #, c-format msgid "8-byte\n" msgstr "" -#: readelf.c:18171 readelf.c:18852 readelf.c:18872 readelf.c:21736 +#: readelf.c:18153 readelf.c:18834 readelf.c:18854 readelf.c:21746 #, c-format msgid "4-byte\n" msgstr "" -#: readelf.c:18175 readelf.c:18193 +#: readelf.c:18157 readelf.c:18175 #, c-format msgid "8-byte and up to %d-byte extended\n" msgstr "" -#: readelf.c:18188 +#: readelf.c:18170 #, c-format msgid "8-byte, except leaf SP\n" msgstr "" -#: readelf.c:18204 readelf.c:18287 readelf.c:18887 +#: readelf.c:18186 readelf.c:18269 readelf.c:18869 #, c-format msgid "flag = %d, vendor = " msgstr "" -#: readelf.c:18225 +#: readelf.c:18207 #, c-format msgid "True\n" msgstr "" -#: readelf.c:18245 +#: readelf.c:18227 #, c-format msgid "<unknown: %d>\n" msgstr "" -#: readelf.c:18291 +#: readelf.c:18273 msgid "corrupt vendor attribute\n" msgstr "" -#: readelf.c:18341 +#: readelf.c:18323 #, c-format msgid "unspecified hard/soft float\n" msgstr "" -#: readelf.c:18344 +#: readelf.c:18326 #, c-format msgid "hard float\n" msgstr "" -#: readelf.c:18347 +#: readelf.c:18329 #, c-format msgid "soft float\n" msgstr "" -#: readelf.c:18379 +#: readelf.c:18361 #, c-format msgid "unspecified hard/soft float, " msgstr "" -#: readelf.c:18382 +#: readelf.c:18364 #, c-format msgid "hard float, " msgstr "" -#: readelf.c:18385 +#: readelf.c:18367 #, c-format msgid "soft float, " msgstr "" -#: readelf.c:18388 +#: readelf.c:18370 #, c-format msgid "single-precision hard float, " msgstr "" -#: readelf.c:18395 +#: readelf.c:18377 #, c-format msgid "unspecified long double\n" msgstr "" -#: readelf.c:18398 +#: readelf.c:18380 #, c-format msgid "128-bit IBM long double\n" msgstr "" -#: readelf.c:18401 +#: readelf.c:18383 #, c-format msgid "64-bit long double\n" msgstr "" -#: readelf.c:18404 +#: readelf.c:18386 #, c-format msgid "128-bit IEEE long double\n" msgstr "" -#: readelf.c:18426 readelf.c:18457 +#: readelf.c:18408 readelf.c:18439 #, c-format msgid "unspecified\n" msgstr "" -#: readelf.c:18429 +#: readelf.c:18411 #, c-format msgid "generic\n" msgstr "" -#: readelf.c:18463 +#: readelf.c:18445 #, c-format msgid "memory\n" msgstr "" -#: readelf.c:18490 +#: readelf.c:18472 #, c-format msgid "any\n" msgstr "" -#: readelf.c:18493 +#: readelf.c:18475 #, c-format msgid "software\n" msgstr "" -#: readelf.c:18496 +#: readelf.c:18478 #, c-format msgid "hardware\n" msgstr "" -#: readelf.c:18619 +#: readelf.c:18601 #, c-format msgid "Hard or soft float\n" msgstr "" -#: readelf.c:18622 +#: readelf.c:18604 #, c-format msgid "Hard float (double precision)\n" msgstr "" -#: readelf.c:18625 +#: readelf.c:18607 #, c-format msgid "Hard float (single precision)\n" msgstr "" -#: readelf.c:18628 +#: readelf.c:18610 #, c-format msgid "Soft float\n" msgstr "" -#: readelf.c:18631 +#: readelf.c:18613 #, c-format msgid "Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n" msgstr "" -#: readelf.c:18634 +#: readelf.c:18616 #, c-format msgid "Hard float (32-bit CPU, Any FPU)\n" msgstr "" -#: readelf.c:18637 +#: readelf.c:18619 #, c-format msgid "Hard float (32-bit CPU, 64-bit FPU)\n" msgstr "" -#: readelf.c:18640 +#: readelf.c:18622 #, c-format msgid "Hard float compat (32-bit CPU, 64-bit FPU)\n" msgstr "" -#: readelf.c:18643 +#: readelf.c:18625 #, c-format msgid "NaN 2008 compatibility\n" msgstr "" -#: readelf.c:18676 +#: readelf.c:18658 #, c-format msgid "Any MSA or not\n" msgstr "" -#: readelf.c:18679 +#: readelf.c:18661 #, c-format msgid "128-bit MSA\n" msgstr "" -#: readelf.c:18741 +#: readelf.c:18723 #, c-format msgid "Not used\n" msgstr "" -#: readelf.c:18744 +#: readelf.c:18726 #, c-format msgid "2 bytes\n" msgstr "" -#: readelf.c:18747 +#: readelf.c:18729 #, c-format msgid "4 bytes\n" msgstr "" -#: readelf.c:18764 readelf.c:18781 readelf.c:18855 readelf.c:18875 +#: readelf.c:18746 readelf.c:18763 readelf.c:18837 readelf.c:18857 #, c-format msgid "16-byte\n" msgstr "" -#: readelf.c:18795 +#: readelf.c:18777 #, c-format msgid "DSBT addressing not used\n" msgstr "" -#: readelf.c:18798 +#: readelf.c:18780 #, c-format msgid "DSBT addressing used\n" msgstr "" -#: readelf.c:18812 +#: readelf.c:18794 #, c-format msgid "Data addressing position-dependent\n" msgstr "" -#: readelf.c:18815 +#: readelf.c:18797 #, c-format msgid "Data addressing position-independent, GOT near DP\n" msgstr "" -#: readelf.c:18818 +#: readelf.c:18800 #, c-format msgid "Data addressing position-independent, GOT far from DP\n" msgstr "" -#: readelf.c:18832 +#: readelf.c:18814 #, c-format msgid "Code addressing position-dependent\n" msgstr "" -#: readelf.c:18835 +#: readelf.c:18817 #, c-format msgid "Code addressing position-independent\n" msgstr "" -#: readelf.c:18989 +#: readelf.c:18971 #, c-format msgid "MSP430\n" msgstr "" -#: readelf.c:18990 +#: readelf.c:18972 #, c-format msgid "MSP430X\n" msgstr "" -#: readelf.c:19001 readelf.c:19013 +#: readelf.c:18983 readelf.c:18995 #, c-format msgid "Small\n" msgstr "" -#: readelf.c:19002 readelf.c:19014 +#: readelf.c:18984 readelf.c:18996 #, c-format msgid "Large\n" msgstr "" -#: readelf.c:19015 +#: readelf.c:18997 #, c-format msgid "Restricted Large\n" msgstr "" -#: readelf.c:19021 +#: readelf.c:19003 #, c-format msgid " <unknown tag %<PRId64>>: " msgstr "" -#: readelf.c:19067 +#: readelf.c:19049 #, c-format msgid "Any Region\n" msgstr "" -#: readelf.c:19070 +#: readelf.c:19052 #, c-format msgid "Lower Region Only\n" msgstr "" -#: readelf.c:19136 +#: readelf.c:19118 #, c-format msgid "No unaligned access\n" msgstr "" -#: readelf.c:19139 +#: readelf.c:19121 #, c-format msgid "Unaligned access\n" msgstr "" -#: readelf.c:19145 +#: readelf.c:19127 #, c-format msgid "%<PRIu64>-bytes\n" msgstr "" -#: readelf.c:19287 +#: readelf.c:19263 msgid "attributes" msgstr "" -#: readelf.c:19299 +#: readelf.c:19273 #, c-format msgid "Unknown attributes version '%c'(%d) - expecting 'A'\n" msgstr "" -#: readelf.c:19318 +#: readelf.c:19290 msgid "Tag section ends prematurely\n" msgstr "" -#: readelf.c:19327 +#: readelf.c:19299 #, c-format msgid "Bad attribute length (%u > %u)\n" msgstr "" -#: readelf.c:19335 +#: readelf.c:19307 #, c-format msgid "Attribute length of %u is too small\n" msgstr "" -#: readelf.c:19346 +#: readelf.c:19318 msgid "Corrupt attribute section name\n" msgstr "" -#: readelf.c:19351 +#: readelf.c:19323 #, c-format msgid "Attribute Section: " msgstr "" -#: readelf.c:19378 +#: readelf.c:19350 msgid "Unused bytes at end of section\n" msgstr "" -#: readelf.c:19388 +#: readelf.c:19360 #, c-format msgid "Bad subsection length (%u > %u)\n" msgstr "" -#: readelf.c:19396 +#: readelf.c:19368 #, c-format msgid "Bad subsection length (%u < 6)\n" msgstr "" -#: readelf.c:19411 +#: readelf.c:19383 #, c-format msgid "File Attributes\n" msgstr "" -#: readelf.c:19414 +#: readelf.c:19386 #, c-format msgid "Section Attributes:" msgstr "" -#: readelf.c:19417 +#: readelf.c:19389 #, c-format msgid "Symbol Attributes:" msgstr "" -#: readelf.c:19430 +#: readelf.c:19402 #, c-format msgid "Unknown tag: %d\n" msgstr "" -#: readelf.c:19451 +#: readelf.c:19423 #, c-format msgid " Unknown attribute:\n" msgstr "" -#: readelf.c:19493 +#: readelf.c:19464 msgid "MIPS GOT entry extends beyond the end of available data\n" msgstr "" -#: readelf.c:19692 +#: readelf.c:19663 msgid "Corrupt MIPS ABI Flags section.\n" msgstr "" -#: readelf.c:19698 +#: readelf.c:19669 msgid "MIPS ABI Flags section" msgstr "" -#: readelf.c:19757 readelf.c:20340 +#: readelf.c:19728 readelf.c:20311 msgid "Global Offset Table data" msgstr "" -#: readelf.c:19761 +#: readelf.c:19732 #, c-format msgid "" "\n" "Static GOT:\n" msgstr "" -#: readelf.c:19762 readelf.c:20345 +#: readelf.c:19733 readelf.c:20316 #, c-format msgid " Canonical gp value: " msgstr "" -#: readelf.c:19776 readelf.c:20349 readelf.c:20484 +#: readelf.c:19747 readelf.c:20320 readelf.c:20455 #, c-format msgid " Reserved entries:\n" msgstr "" -#: readelf.c:19777 +#: readelf.c:19748 #, c-format msgid " %*s %10s %*s\n" msgstr "" -#: readelf.c:19778 readelf.c:19808 readelf.c:20351 readelf.c:20379 -#: readelf.c:20397 readelf.c:20486 readelf.c:20495 +#: readelf.c:19749 readelf.c:19779 readelf.c:20322 readelf.c:20350 +#: readelf.c:20368 readelf.c:20457 readelf.c:20466 msgid "Address" msgstr "" -#: readelf.c:19778 readelf.c:19808 readelf.c:20351 readelf.c:20379 -#: readelf.c:20398 +#: readelf.c:19749 readelf.c:19779 readelf.c:20322 readelf.c:20350 +#: readelf.c:20369 msgid "Access" msgstr "" -#: readelf.c:19779 readelf.c:19809 +#: readelf.c:19750 readelf.c:19780 msgid "Value" msgstr "" -#: readelf.c:19806 readelf.c:20377 +#: readelf.c:19777 readelf.c:20348 #, c-format msgid " Local entries:\n" msgstr "" -#: readelf.c:19888 readelf.c:20601 +#: readelf.c:19859 readelf.c:20572 msgid "liblist section data" msgstr "" -#: readelf.c:19891 +#: readelf.c:19862 #, c-format msgid "" "\n" @@ -11638,38 +11675,38 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:19895 +#: readelf.c:19866 msgid "" " Library Time Stamp Checksum Version Flags\n" msgstr "" -#: readelf.c:19921 +#: readelf.c:19892 #, c-format msgid "<corrupt: %9ld>" msgstr "" -#: readelf.c:19926 +#: readelf.c:19897 msgid " NONE" msgstr "" -#: readelf.c:19976 +#: readelf.c:19947 msgid "No MIPS_OPTIONS header found\n" msgstr "" -#: readelf.c:19982 +#: readelf.c:19953 msgid "The MIPS options section is too small.\n" msgstr "" -#: readelf.c:19987 +#: readelf.c:19958 msgid "options" msgstr "" -#: readelf.c:20006 +#: readelf.c:19977 #, c-format msgid "Invalid size (%u) for MIPS option\n" msgstr "" -#: readelf.c:20015 +#: readelf.c:19986 #, c-format msgid "" "\n" @@ -11680,28 +11717,28 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:20053 readelf.c:20085 +#: readelf.c:20024 readelf.c:20056 msgid "Truncated MIPS REGINFO option\n" msgstr "" -#: readelf.c:20221 +#: readelf.c:20192 msgid "conflict list found without a dynamic symbol table\n" msgstr "" -#: readelf.c:20229 +#: readelf.c:20200 #, c-format msgid "Overlarge number of conflicts detected: %zx\n" msgstr "" -#: readelf.c:20237 +#: readelf.c:20208 msgid "Out of memory allocating space for dynamic conflicts\n" msgstr "" -#: readelf.c:20247 readelf.c:20265 +#: readelf.c:20218 readelf.c:20236 msgid "conflict" msgstr "" -#: readelf.c:20278 +#: readelf.c:20249 #, c-format msgid "" "\n" @@ -11712,125 +11749,125 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:20282 +#: readelf.c:20253 msgid " Num: Index Value Name" msgstr "" -#: readelf.c:20289 +#: readelf.c:20260 #, c-format msgid "<corrupt symbol index>" msgstr "" -#: readelf.c:20300 readelf.c:20432 readelf.c:20520 +#: readelf.c:20271 readelf.c:20403 readelf.c:20491 #, c-format msgid "<corrupt: %14ld>" msgstr "" -#: readelf.c:20323 +#: readelf.c:20294 #, c-format msgid "" "The GOT symbol offset (%<PRIu64>) is greater than the symbol table size (%" "<PRIu64>)\n" msgstr "" -#: readelf.c:20333 +#: readelf.c:20304 #, c-format msgid "Too many GOT symbols: %<PRIu64>\n" msgstr "" -#: readelf.c:20344 +#: readelf.c:20315 #, c-format msgid "" "\n" "Primary GOT:\n" msgstr "" -#: readelf.c:20350 +#: readelf.c:20321 #, c-format msgid " %*s %10s %*s Purpose\n" msgstr "" -#: readelf.c:20352 readelf.c:20380 readelf.c:20399 readelf.c:20486 -#: readelf.c:20496 +#: readelf.c:20323 readelf.c:20351 readelf.c:20370 readelf.c:20457 +#: readelf.c:20467 msgid "Initial" msgstr "" -#: readelf.c:20354 +#: readelf.c:20325 #, c-format msgid " Lazy resolver\n" msgstr "" -#: readelf.c:20369 +#: readelf.c:20340 #, c-format msgid " Module pointer (GNU extension)\n" msgstr "" -#: readelf.c:20395 +#: readelf.c:20366 #, c-format msgid " Global entries:\n" msgstr "" -#: readelf.c:20400 readelf.c:20497 +#: readelf.c:20371 readelf.c:20468 msgid "Sym.Val." msgstr "" #. Note for translators: "Ndx" = abbreviated form of "Index". -#: readelf.c:20403 readelf.c:20497 +#: readelf.c:20374 readelf.c:20468 msgid "Ndx" msgstr "" -#: readelf.c:20403 readelf.c:20497 +#: readelf.c:20374 readelf.c:20468 msgid "Name" msgstr "" -#: readelf.c:20413 +#: readelf.c:20384 #, c-format msgid "<no dynamic symbols>" msgstr "" -#: readelf.c:20435 +#: readelf.c:20406 #, c-format msgid "<symbol index %zu exceeds number of dynamic symbols>" msgstr "" -#: readelf.c:20476 +#: readelf.c:20447 msgid "Procedure Linkage Table data" msgstr "" -#: readelf.c:20485 +#: readelf.c:20456 #, c-format msgid " %*s %*s Purpose\n" msgstr "" -#: readelf.c:20488 +#: readelf.c:20459 #, c-format msgid " PLT lazy resolver\n" msgstr "" -#: readelf.c:20490 +#: readelf.c:20461 #, c-format msgid " Module pointer\n" msgstr "" -#: readelf.c:20493 +#: readelf.c:20464 #, c-format msgid " Entries:\n" msgstr "" -#: readelf.c:20507 +#: readelf.c:20478 #, c-format msgid "<corrupt symbol index: %<PRIu64>>" msgstr "" -#: readelf.c:20546 +#: readelf.c:20517 msgid "NDS32 elf flags section" msgstr "" -#: readelf.c:20612 +#: readelf.c:20583 msgid "liblist string table" msgstr "" -#: readelf.c:20624 +#: readelf.c:20595 #, c-format msgid "" "\n" @@ -11841,477 +11878,477 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:20632 +#: readelf.c:20603 msgid " Library Time Stamp Checksum Version Flags" msgstr "" -#: readelf.c:20682 +#: readelf.c:20653 msgid "NT_AUXV (auxiliary vector)" msgstr "" -#: readelf.c:20684 +#: readelf.c:20655 msgid "NT_PRSTATUS (prstatus structure)" msgstr "" -#: readelf.c:20686 +#: readelf.c:20657 msgid "NT_FPREGSET (floating point registers)" msgstr "" -#: readelf.c:20688 +#: readelf.c:20659 msgid "NT_PRPSINFO (prpsinfo structure)" msgstr "" -#: readelf.c:20690 +#: readelf.c:20661 msgid "NT_TASKSTRUCT (task structure)" msgstr "" -#: readelf.c:20692 +#: readelf.c:20663 msgid "NT_GDB_TDESC (GDB XML target description)" msgstr "" -#: readelf.c:20694 +#: readelf.c:20665 msgid "NT_PRXFPREG (user_xfpregs structure)" msgstr "" -#: readelf.c:20696 +#: readelf.c:20667 msgid "NT_PPC_VMX (ppc Altivec registers)" msgstr "" -#: readelf.c:20698 +#: readelf.c:20669 msgid "NT_PPC_VSX (ppc VSX registers)" msgstr "" -#: readelf.c:20700 +#: readelf.c:20671 msgid "NT_PPC_TAR (ppc TAR register)" msgstr "" -#: readelf.c:20702 +#: readelf.c:20673 msgid "NT_PPC_PPR (ppc PPR register)" msgstr "" -#: readelf.c:20704 +#: readelf.c:20675 msgid "NT_PPC_DSCR (ppc DSCR register)" msgstr "" -#: readelf.c:20706 +#: readelf.c:20677 msgid "NT_PPC_EBB (ppc EBB registers)" msgstr "" -#: readelf.c:20708 +#: readelf.c:20679 msgid "NT_PPC_PMU (ppc PMU registers)" msgstr "" -#: readelf.c:20710 +#: readelf.c:20681 msgid "NT_PPC_TM_CGPR (ppc checkpointed GPR registers)" msgstr "" -#: readelf.c:20712 +#: readelf.c:20683 msgid "NT_PPC_TM_CFPR (ppc checkpointed floating point registers)" msgstr "" -#: readelf.c:20714 +#: readelf.c:20685 msgid "NT_PPC_TM_CVMX (ppc checkpointed Altivec registers)" msgstr "" -#: readelf.c:20716 +#: readelf.c:20687 msgid "NT_PPC_TM_CVSX (ppc checkpointed VSX registers)" msgstr "" -#: readelf.c:20718 +#: readelf.c:20689 msgid "NT_PPC_TM_SPR (ppc TM special purpose registers)" msgstr "" -#: readelf.c:20720 +#: readelf.c:20691 msgid "NT_PPC_TM_CTAR (ppc checkpointed TAR register)" msgstr "" -#: readelf.c:20722 +#: readelf.c:20693 msgid "NT_PPC_TM_CPPR (ppc checkpointed PPR register)" msgstr "" -#: readelf.c:20724 +#: readelf.c:20695 msgid "NT_PPC_TM_CDSCR (ppc checkpointed DSCR register)" msgstr "" -#: readelf.c:20726 +#: readelf.c:20697 msgid "NT_386_TLS (x86 TLS information)" msgstr "" -#: readelf.c:20728 +#: readelf.c:20699 msgid "NT_386_IOPERM (x86 I/O permissions)" msgstr "" -#: readelf.c:20730 +#: readelf.c:20701 msgid "NT_X86_XSTATE (x86 XSAVE extended state)" msgstr "" -#: readelf.c:20732 +#: readelf.c:20703 msgid "NT_X86_CET (x86 CET state)" msgstr "" -#: readelf.c:20734 +#: readelf.c:20705 msgid "NT_X86_SHSTK (x86 SHSTK state)" msgstr "" -#: readelf.c:20736 +#: readelf.c:20707 msgid "NT_S390_HIGH_GPRS (s390 upper register halves)" msgstr "" -#: readelf.c:20738 +#: readelf.c:20709 msgid "NT_S390_TIMER (s390 timer register)" msgstr "" -#: readelf.c:20740 +#: readelf.c:20711 msgid "NT_S390_TODCMP (s390 TOD comparator register)" msgstr "" -#: readelf.c:20742 +#: readelf.c:20713 msgid "NT_S390_TODPREG (s390 TOD programmable register)" msgstr "" -#: readelf.c:20744 +#: readelf.c:20715 msgid "NT_S390_CTRS (s390 control registers)" msgstr "" -#: readelf.c:20746 +#: readelf.c:20717 msgid "NT_S390_PREFIX (s390 prefix register)" msgstr "" -#: readelf.c:20748 +#: readelf.c:20719 msgid "NT_S390_LAST_BREAK (s390 last breaking event address)" msgstr "" -#: readelf.c:20750 +#: readelf.c:20721 msgid "NT_S390_SYSTEM_CALL (s390 system call restart data)" msgstr "" -#: readelf.c:20752 +#: readelf.c:20723 msgid "NT_S390_TDB (s390 transaction diagnostic block)" msgstr "" -#: readelf.c:20754 +#: readelf.c:20725 msgid "NT_S390_VXRS_LOW (s390 vector registers 0-15 upper half)" msgstr "" -#: readelf.c:20756 +#: readelf.c:20727 msgid "NT_S390_VXRS_HIGH (s390 vector registers 16-31)" msgstr "" -#: readelf.c:20758 +#: readelf.c:20729 msgid "NT_S390_GS_CB (s390 guarded-storage registers)" msgstr "" -#: readelf.c:20760 +#: readelf.c:20731 msgid "NT_S390_GS_BC (s390 guarded-storage broadcast control)" msgstr "" -#: readelf.c:20762 +#: readelf.c:20733 msgid "NT_ARM_VFP (arm VFP registers)" msgstr "" -#: readelf.c:20764 +#: readelf.c:20735 msgid "NT_ARM_TLS (AArch TLS registers)" msgstr "" -#: readelf.c:20766 +#: readelf.c:20737 msgid "NT_ARM_HW_BREAK (AArch hardware breakpoint registers)" msgstr "" -#: readelf.c:20768 +#: readelf.c:20739 msgid "NT_ARM_HW_WATCH (AArch hardware watchpoint registers)" msgstr "" -#: readelf.c:20770 +#: readelf.c:20741 msgid "NT_ARM_SYSTEM_CALL (AArch system call number)" msgstr "" -#: readelf.c:20772 +#: readelf.c:20743 msgid "NT_ARM_SVE (AArch SVE registers)" msgstr "" -#: readelf.c:20774 +#: readelf.c:20745 msgid "NT_ARM_PAC_MASK (AArch pointer authentication code masks)" msgstr "" -#: readelf.c:20776 +#: readelf.c:20747 msgid "NT_ARM_PACA_KEYS (ARM pointer authentication address keys)" msgstr "" -#: readelf.c:20778 +#: readelf.c:20749 msgid "NT_ARM_PACG_KEYS (ARM pointer authentication generic keys)" msgstr "" -#: readelf.c:20780 +#: readelf.c:20751 msgid "NT_ARM_TAGGED_ADDR_CTRL (AArch tagged address control)" msgstr "" -#: readelf.c:20782 +#: readelf.c:20753 msgid "NT_ARM_SSVE (AArch64 streaming SVE registers)" msgstr "" -#: readelf.c:20784 +#: readelf.c:20755 msgid "NT_ARM_ZA (AArch64 SME ZA register)" msgstr "" -#: readelf.c:20786 +#: readelf.c:20757 msgid "NT_ARM_ZT (AArch64 SME2 ZT registers)" msgstr "" -#: readelf.c:20788 +#: readelf.c:20759 msgid "NT_ARM_PAC_ENABLED_KEYS (AArch64 pointer authentication enabled keys)" msgstr "" -#: readelf.c:20790 +#: readelf.c:20761 msgid "NT_ARC_V2 (ARC HS accumulator/extra registers)" msgstr "" -#: readelf.c:20792 +#: readelf.c:20763 msgid "NT_RISCV_CSR (RISC-V control and status registers)" msgstr "" -#: readelf.c:20794 +#: readelf.c:20765 msgid "NT_PSTATUS (pstatus structure)" msgstr "" -#: readelf.c:20796 +#: readelf.c:20767 msgid "NT_FPREGS (floating point registers)" msgstr "" -#: readelf.c:20798 +#: readelf.c:20769 msgid "NT_PSINFO (psinfo structure)" msgstr "" -#: readelf.c:20800 +#: readelf.c:20771 msgid "NT_LWPSTATUS (lwpstatus_t structure)" msgstr "" -#: readelf.c:20802 +#: readelf.c:20773 msgid "NT_LWPSINFO (lwpsinfo_t structure)" msgstr "" -#: readelf.c:20804 +#: readelf.c:20775 msgid "NT_WIN32PSTATUS (win32_pstatus structure)" msgstr "" -#: readelf.c:20806 +#: readelf.c:20777 msgid "NT_SIGINFO (siginfo_t data)" msgstr "" -#: readelf.c:20808 +#: readelf.c:20779 msgid "NT_FILE (mapped files)" msgstr "" -#: readelf.c:20816 +#: readelf.c:20787 msgid "NT_VERSION (version)" msgstr "" -#: readelf.c:20818 +#: readelf.c:20789 msgid "NT_ARCH (architecture)" msgstr "" -#: readelf.c:20820 +#: readelf.c:20791 msgid "OPEN" msgstr "" -#: readelf.c:20822 +#: readelf.c:20793 msgid "func" msgstr "" -#: readelf.c:20824 +#: readelf.c:20795 msgid "GO BUILDID" msgstr "" -#: readelf.c:20826 +#: readelf.c:20797 msgid "FDO_PACKAGING_METADATA" msgstr "" -#: readelf.c:20828 +#: readelf.c:20799 msgid "FDO_DLOPEN_METADATA" msgstr "" -#: readelf.c:20833 readelf.c:20943 readelf.c:21132 readelf.c:21710 -#: readelf.c:21880 readelf.c:22009 readelf.c:22142 +#: readelf.c:20804 readelf.c:20914 readelf.c:21103 readelf.c:21720 +#: readelf.c:21890 readelf.c:22019 readelf.c:22152 #, c-format msgid "Unknown note type: (0x%08x)" msgstr "" -#: readelf.c:20853 +#: readelf.c:20824 msgid " Malformed note - too short for header\n" msgstr "" -#: readelf.c:20862 +#: readelf.c:20833 msgid " Malformed note - does not end with \\0\n" msgstr "" -#: readelf.c:20875 +#: readelf.c:20846 msgid " Malformed note - too short for supplied file count\n" msgstr "" -#: readelf.c:20879 +#: readelf.c:20850 #, c-format msgid " Page size: " msgstr "" -#: readelf.c:20883 +#: readelf.c:20854 #, c-format msgid " %*s%*s%*s\n" msgstr "" -#: readelf.c:20884 +#: readelf.c:20855 msgid "Start" msgstr "" -#: readelf.c:20885 +#: readelf.c:20856 msgid "End" msgstr "" -#: readelf.c:20886 +#: readelf.c:20857 msgid "Page Offset" msgstr "" -#: readelf.c:20894 +#: readelf.c:20865 msgid " Malformed note - filenames end too early\n" msgstr "" -#: readelf.c:20926 +#: readelf.c:20897 msgid "NT_GNU_ABI_TAG (ABI version tag)" msgstr "" -#: readelf.c:20928 +#: readelf.c:20899 msgid "NT_GNU_HWCAP (DSO-supplied software HWCAP info)" msgstr "" -#: readelf.c:20930 +#: readelf.c:20901 msgid "NT_GNU_BUILD_ID (unique build ID bitstring)" msgstr "" -#: readelf.c:20932 +#: readelf.c:20903 msgid "NT_GNU_GOLD_VERSION (gold version)" msgstr "" -#: readelf.c:20934 +#: readelf.c:20905 msgid "NT_GNU_PROPERTY_TYPE_0" msgstr "" -#: readelf.c:20936 +#: readelf.c:20907 msgid "NT_GNU_BUILD_ATTRIBUTE_OPEN" msgstr "" -#: readelf.c:20938 +#: readelf.c:20909 msgid "NT_GNU_BUILD_ATTRIBUTE_FUNC" msgstr "" -#: readelf.c:21027 readelf.c:21174 readelf.c:21211 +#: readelf.c:20998 readelf.c:21145 readelf.c:21182 #, c-format msgid "<None>" msgstr "" -#: readelf.c:21128 +#: readelf.c:21099 msgid "NT_AMDGPU_METADATA (code object metadata)" msgstr "" -#: readelf.c:21327 +#: readelf.c:21325 #, c-format msgid " Properties: " msgstr "" -#: readelf.c:21331 +#: readelf.c:21329 #, c-format msgid "<corrupt GNU_PROPERTY_TYPE, size = %#lx>\n" msgstr "" -#: readelf.c:21343 +#: readelf.c:21341 #, c-format msgid "<corrupt descsz: %#lx>\n" msgstr "" -#: readelf.c:21354 +#: readelf.c:21352 #, c-format msgid "<corrupt type (%#x) datasz: %#x>\n" msgstr "" -#: readelf.c:21376 readelf.c:21430 readelf.c:21452 +#: readelf.c:21374 readelf.c:21428 readelf.c:21450 #, c-format msgid "x86 ISA used: <corrupt length: %#x> " msgstr "" -#: readelf.c:21387 readelf.c:21441 readelf.c:21463 +#: readelf.c:21385 readelf.c:21439 readelf.c:21461 #, c-format msgid "x86 ISA needed: <corrupt length: %#x> " msgstr "" -#: readelf.c:21398 +#: readelf.c:21396 #, c-format msgid "x86 feature: <corrupt length: %#x> " msgstr "" -#: readelf.c:21409 +#: readelf.c:21407 #, c-format msgid "x86 feature used: <corrupt length: %#x> " msgstr "" -#: readelf.c:21420 +#: readelf.c:21418 #, c-format msgid "x86 feature needed: <corrupt length: %#x> " msgstr "" -#: readelf.c:21482 readelf.c:21496 readelf.c:21504 readelf.c:21510 -#: readelf.c:21541 +#: readelf.c:21480 readelf.c:21492 readelf.c:21506 readelf.c:21514 +#: readelf.c:21520 readelf.c:21551 #, c-format msgid "<corrupt length: %#x> " msgstr "" -#: readelf.c:21494 +#: readelf.c:21504 #, c-format msgid "stack size: " msgstr "" -#: readelf.c:21523 +#: readelf.c:21533 #, c-format msgid "1_needed: <corrupt length: %#x> " msgstr "" -#: readelf.c:21537 +#: readelf.c:21547 #, c-format msgid "UINT32_AND (%#x): " msgstr "" -#: readelf.c:21539 +#: readelf.c:21549 #, c-format msgid "UINT32_OR (%#x): " msgstr "" -#: readelf.c:21551 +#: readelf.c:21561 #, c-format msgid "<unknown type %#x data: " msgstr "" -#: readelf.c:21553 +#: readelf.c:21563 #, c-format msgid "<processor-specific type %#x data: " msgstr "" -#: readelf.c:21555 +#: readelf.c:21565 #, c-format msgid "<application-specific type %#x data: " msgstr "" -#: readelf.c:21584 +#: readelf.c:21594 #, c-format msgid " Build ID: " msgstr "" -#: readelf.c:21599 +#: readelf.c:21609 #, c-format msgid " <corrupt GNU_ABI_TAG>\n" msgstr "" -#: readelf.c:21636 +#: readelf.c:21646 #, c-format msgid " OS: %s, ABI: %d.%d.%d\n" msgstr "" -#: readelf.c:21645 +#: readelf.c:21655 #, c-format msgid " Version: " msgstr "" @@ -12321,593 +12358,593 @@ msgstr "" #. is a series of entries, where each entry is a single byte followed #. by a nul terminated string. The byte gives the bit number to test #. if enabled in the bitmask. -#: readelf.c:21661 +#: readelf.c:21671 #, c-format msgid " Hardware Capabilities: " msgstr "" -#: readelf.c:21664 +#: readelf.c:21674 msgid "<corrupt GNU_HWCAP>\n" msgstr "" -#: readelf.c:21669 +#: readelf.c:21679 #, c-format msgid "num entries: %d, enabled mask: %x\n" msgstr "" -#: readelf.c:21685 +#: readelf.c:21695 #, c-format msgid " Description data: " msgstr "" -#: readelf.c:21703 +#: readelf.c:21713 msgid "Alignment of 8-byte objects" msgstr "" -#: readelf.c:21704 +#: readelf.c:21714 msgid "Sizeof double and long double" msgstr "" -#: readelf.c:21705 +#: readelf.c:21715 msgid "Type of FPU support needed" msgstr "" -#: readelf.c:21706 +#: readelf.c:21716 msgid "Use of SIMD instructions" msgstr "" -#: readelf.c:21707 +#: readelf.c:21717 msgid "Use of cache" msgstr "" -#: readelf.c:21708 +#: readelf.c:21718 msgid "Use of MMU" msgstr "" -#: readelf.c:21744 +#: readelf.c:21754 #, c-format msgid "4-bytes\n" msgstr "" -#: readelf.c:21745 +#: readelf.c:21755 #, c-format msgid "8-bytes\n" msgstr "" -#: readelf.c:21752 +#: readelf.c:21762 #, c-format msgid "FPU-2.0\n" msgstr "" -#: readelf.c:21753 +#: readelf.c:21763 #, c-format msgid "FPU-3.0\n" msgstr "" -#: readelf.c:21762 +#: readelf.c:21772 #, c-format msgid "yes\n" msgstr "" -#: readelf.c:21772 +#: readelf.c:21782 #, c-format msgid "unknown value: %x\n" msgstr "" -#: readelf.c:21828 +#: readelf.c:21838 msgid "NT_THRMISC (thrmisc structure)" msgstr "" -#: readelf.c:21830 +#: readelf.c:21840 msgid "NT_PROCSTAT_PROC (proc data)" msgstr "" -#: readelf.c:21832 +#: readelf.c:21842 msgid "NT_PROCSTAT_FILES (files data)" msgstr "" -#: readelf.c:21834 +#: readelf.c:21844 msgid "NT_PROCSTAT_VMMAP (vmmap data)" msgstr "" -#: readelf.c:21836 +#: readelf.c:21846 msgid "NT_PROCSTAT_GROUPS (groups data)" msgstr "" -#: readelf.c:21838 +#: readelf.c:21848 msgid "NT_PROCSTAT_UMASK (umask data)" msgstr "" -#: readelf.c:21840 +#: readelf.c:21850 msgid "NT_PROCSTAT_RLIMIT (rlimit data)" msgstr "" -#: readelf.c:21842 +#: readelf.c:21852 msgid "NT_PROCSTAT_OSREL (osreldate data)" msgstr "" -#: readelf.c:21844 +#: readelf.c:21854 msgid "NT_PROCSTAT_PSSTRINGS (ps_strings data)" msgstr "" -#: readelf.c:21846 +#: readelf.c:21856 msgid "NT_PROCSTAT_AUXV (auxv data)" msgstr "" -#: readelf.c:21848 +#: readelf.c:21858 msgid "NT_PTLWPINFO (ptrace_lwpinfo structure)" msgstr "" -#: readelf.c:21850 +#: readelf.c:21860 msgid "NT_X86_SEGBASES (x86 segment base registers)" msgstr "" #. NetBSD core "procinfo" structure. -#: readelf.c:21864 +#: readelf.c:21874 msgid "NetBSD procinfo structure" msgstr "" -#: readelf.c:21867 +#: readelf.c:21877 msgid "NetBSD ELF auxiliary vector data" msgstr "" -#: readelf.c:21870 +#: readelf.c:21880 msgid "PT_LWPSTATUS (ptrace_lwpstatus structure)" msgstr "" -#: readelf.c:21899 readelf.c:21916 readelf.c:21930 +#: readelf.c:21909 readelf.c:21926 readelf.c:21940 msgid "PT_GETREGS (reg structure)" msgstr "" -#: readelf.c:21901 readelf.c:21918 readelf.c:21932 +#: readelf.c:21911 readelf.c:21928 readelf.c:21942 msgid "PT_GETFPREGS (fpreg structure)" msgstr "" -#: readelf.c:21914 +#: readelf.c:21924 msgid "PT___GETREGS40 (old reg structure)" msgstr "" -#: readelf.c:21949 +#: readelf.c:21959 msgid "OpenBSD procinfo structure" msgstr "" -#: readelf.c:21951 +#: readelf.c:21961 msgid "OpenBSD ELF auxiliary vector data" msgstr "" -#: readelf.c:21953 +#: readelf.c:21963 msgid "OpenBSD regular registers" msgstr "" -#: readelf.c:21955 +#: readelf.c:21965 msgid "OpenBSD floating point registers" msgstr "" -#: readelf.c:21957 +#: readelf.c:21967 msgid "OpenBSD window cookie" msgstr "" -#: readelf.c:21969 +#: readelf.c:21979 msgid "QNX debug fullpath" msgstr "" -#: readelf.c:21971 +#: readelf.c:21981 msgid "QNX debug relocation" msgstr "" -#: readelf.c:21973 +#: readelf.c:21983 msgid "QNX stack" msgstr "" -#: readelf.c:21975 +#: readelf.c:21985 msgid "QNX generator" msgstr "" -#: readelf.c:21977 +#: readelf.c:21987 msgid "QNX default library" msgstr "" -#: readelf.c:21979 +#: readelf.c:21989 msgid "QNX core sysinfo" msgstr "" -#: readelf.c:21981 +#: readelf.c:21991 msgid "QNX core info" msgstr "" -#: readelf.c:21983 +#: readelf.c:21993 msgid "QNX core status" msgstr "" -#: readelf.c:21985 +#: readelf.c:21995 msgid "QNX general registers" msgstr "" -#: readelf.c:21987 +#: readelf.c:21997 msgid "QNX floating point registers" msgstr "" -#: readelf.c:21989 +#: readelf.c:21999 msgid "QNX link map" msgstr "" -#: readelf.c:22003 +#: readelf.c:22013 msgid "NT_STAPSDT (SystemTap probe descriptors)" msgstr "" -#: readelf.c:22071 +#: readelf.c:22081 #, c-format msgid " Provider: %s\n" msgstr "" -#: readelf.c:22072 +#: readelf.c:22082 #, c-format msgid " Name: %s\n" msgstr "" -#: readelf.c:22073 +#: readelf.c:22083 #, c-format msgid " Location: " msgstr "" -#: readelf.c:22075 +#: readelf.c:22085 #, c-format msgid ", Base: " msgstr "" -#: readelf.c:22077 +#: readelf.c:22087 #, c-format msgid ", Semaphore: " msgstr "" -#: readelf.c:22080 +#: readelf.c:22090 #, c-format msgid " Arguments: %s\n" msgstr "" -#: readelf.c:22085 +#: readelf.c:22095 #, c-format msgid " <corrupt - note is too small>\n" msgstr "" -#: readelf.c:22086 +#: readelf.c:22096 msgid "corrupt stapdt note - the data size is too small\n" msgstr "" -#: readelf.c:22095 +#: readelf.c:22105 #, c-format msgid " Packaging Metadata: %.*s\n" msgstr "" -#: readelf.c:22100 +#: readelf.c:22110 #, c-format msgid " Dlopen Metadata: %.*s\n" msgstr "" -#: readelf.c:22114 +#: readelf.c:22124 msgid "NT_VMS_MHD (module header)" msgstr "" -#: readelf.c:22116 +#: readelf.c:22126 msgid "NT_VMS_LNM (language name)" msgstr "" -#: readelf.c:22118 +#: readelf.c:22128 msgid "NT_VMS_SRC (source files)" msgstr "" -#: readelf.c:22122 +#: readelf.c:22132 msgid "NT_VMS_EIDC (consistency check)" msgstr "" -#: readelf.c:22124 +#: readelf.c:22134 msgid "NT_VMS_FPMODE (FP mode)" msgstr "" -#: readelf.c:22128 +#: readelf.c:22138 msgid "NT_VMS_IMGNAM (image name)" msgstr "" -#: readelf.c:22130 +#: readelf.c:22140 msgid "NT_VMS_IMGID (image id)" msgstr "" -#: readelf.c:22132 +#: readelf.c:22142 msgid "NT_VMS_LINKID (link id)" msgstr "" -#: readelf.c:22134 +#: readelf.c:22144 msgid "NT_VMS_IMGBID (build id)" msgstr "" -#: readelf.c:22136 +#: readelf.c:22146 msgid "NT_VMS_GSTNAM (sym table name)" msgstr "" -#: readelf.c:22163 +#: readelf.c:22173 #, c-format msgid " Creation date : %.17s\n" msgstr "" -#: readelf.c:22164 +#: readelf.c:22174 #, c-format msgid " Last patch date: %.17s\n" msgstr "" -#: readelf.c:22167 +#: readelf.c:22177 #, c-format msgid " Module name : %s\n" msgstr "" -#: readelf.c:22169 +#: readelf.c:22179 #, c-format msgid " Module version : %s\n" msgstr "" -#: readelf.c:22171 readelf.c:22176 +#: readelf.c:22181 readelf.c:22186 #, c-format msgid " Module version : <missing>\n" msgstr "" -#: readelf.c:22175 +#: readelf.c:22185 #, c-format msgid " Module name : <missing>\n" msgstr "" -#: readelf.c:22181 +#: readelf.c:22191 #, c-format msgid " Language: %.*s\n" msgstr "" -#: readelf.c:22185 +#: readelf.c:22195 #, c-format msgid " Floating Point mode: " msgstr "" -#: readelf.c:22195 +#: readelf.c:22205 #, c-format msgid " Link time: " msgstr "" -#: readelf.c:22205 +#: readelf.c:22215 #, c-format msgid " Patch time: " msgstr "" -#: readelf.c:22218 +#: readelf.c:22228 #, c-format msgid " Major id: %u, minor id: %u\n" msgstr "" -#: readelf.c:22221 +#: readelf.c:22231 #, c-format msgid " Last modified : " msgstr "" -#: readelf.c:22223 +#: readelf.c:22233 #, c-format msgid "" "\n" " Link flags : " msgstr "" -#: readelf.c:22226 +#: readelf.c:22236 #, c-format msgid " Header flags: 0x%08x\n" msgstr "" -#: readelf.c:22228 +#: readelf.c:22238 #, c-format msgid " Image id : %.*s\n" msgstr "" -#: readelf.c:22232 +#: readelf.c:22242 #, c-format msgid " Image name: %.*s\n" msgstr "" -#: readelf.c:22236 +#: readelf.c:22246 #, c-format msgid " Global symbol table name: %.*s\n" msgstr "" -#: readelf.c:22240 +#: readelf.c:22250 #, c-format msgid " Image id: %.*s\n" msgstr "" -#: readelf.c:22244 +#: readelf.c:22254 #, c-format msgid " Linker id: %.*s\n" msgstr "" -#: readelf.c:22254 readelf.c:22947 +#: readelf.c:22264 readelf.c:22957 #, c-format msgid " <corrupt - data size is too small>\n" msgstr "" -#: readelf.c:22255 +#: readelf.c:22265 msgid "corrupt IA64 note: data size is too small\n" msgstr "" -#: readelf.c:22422 readelf.c:22431 +#: readelf.c:22432 readelf.c:22441 #, c-format msgid " Applies to region from %#<PRIx64> to %#<PRIx64>\n" msgstr "" -#: readelf.c:22425 readelf.c:22434 +#: readelf.c:22435 readelf.c:22444 #, c-format msgid " Applies to region from %#<PRIx64>\n" msgstr "" -#: readelf.c:22455 +#: readelf.c:22465 #, c-format msgid " <invalid description size: %lx>\n" msgstr "" -#: readelf.c:22456 +#: readelf.c:22466 #, c-format msgid " <invalid descsz>" msgstr "" -#: readelf.c:22482 +#: readelf.c:22492 #, c-format msgid "Gap in build notes detected from %#<PRIx64> to %#<PRIx64>\n" msgstr "" -#: readelf.c:22486 readelf.c:22497 +#: readelf.c:22496 readelf.c:22507 #, c-format msgid " Applies to region from %#<PRIx64>" msgstr "" -#: readelf.c:22491 readelf.c:22502 +#: readelf.c:22501 readelf.c:22512 #, c-format msgid " to %#<PRIx64>" msgstr "" -#: readelf.c:22508 +#: readelf.c:22518 #, c-format msgid " (%s)" msgstr "" -#: readelf.c:22529 readelf.c:22544 +#: readelf.c:22539 readelf.c:22554 #, c-format msgid "corrupt name field in GNU build attribute note: size = %ld\n" msgstr "" -#: readelf.c:22530 readelf.c:22545 +#: readelf.c:22540 readelf.c:22555 msgid " <corrupt name>" msgstr "" -#: readelf.c:22564 +#: readelf.c:22574 #, c-format msgid "unrecognised attribute type in name field: %d\n" msgstr "" -#: readelf.c:22565 +#: readelf.c:22575 msgid "<unknown name type>" msgstr "" -#: readelf.c:22575 +#: readelf.c:22585 msgid "<version>" msgstr "" -#: readelf.c:22580 +#: readelf.c:22590 msgid "<stack prot>" msgstr "" -#: readelf.c:22585 +#: readelf.c:22595 msgid "<relro>" msgstr "" -#: readelf.c:22590 +#: readelf.c:22600 msgid "<stack size>" msgstr "" -#: readelf.c:22595 +#: readelf.c:22605 msgid "<tool>" msgstr "" -#: readelf.c:22600 +#: readelf.c:22610 msgid "<ABI>" msgstr "" -#: readelf.c:22605 +#: readelf.c:22615 msgid "<PIC>" msgstr "" -#: readelf.c:22610 +#: readelf.c:22620 msgid "<short enum>" msgstr "" -#: readelf.c:22629 +#: readelf.c:22639 #, c-format msgid "unrecognised byte in name field: %d\n" msgstr "" -#: readelf.c:22630 +#: readelf.c:22640 #, c-format msgid "<unknown:_%d>" msgstr "" -#: readelf.c:22642 +#: readelf.c:22652 #, c-format msgid "attribute does not have an expected type (%c)\n" msgstr "" -#: readelf.c:22646 +#: readelf.c:22656 #, c-format msgid "corrupt name field: namesz: %lu but parsing gets to %td\n" msgstr "" -#: readelf.c:22673 +#: readelf.c:22683 #, c-format msgid "corrupt numeric name field: too many bytes in the value: %x\n" msgstr "" -#: readelf.c:22762 +#: readelf.c:22772 #, c-format msgid " description data: " msgstr "" -#: readelf.c:22910 +#: readelf.c:22920 msgid "failed to unpack msgpack contents in NT_AMDGPU_METADATA note" msgstr "" -#: readelf.c:22933 +#: readelf.c:22943 #, c-format msgid " Stack Size: 0x%<PRIx32>\n" msgstr "" -#: readelf.c:22935 +#: readelf.c:22945 #, c-format msgid " Stack allocated: %<PRIx32>\n" msgstr "" -#: readelf.c:22937 +#: readelf.c:22947 #, c-format msgid " Executable: %s\n" msgstr "" -#: readelf.c:22948 +#: readelf.c:22958 msgid "corrupt QNX note: data size is too small\n" msgstr "" -#: readelf.c:23093 +#: readelf.c:23103 msgid "notes" msgstr "" -#: readelf.c:23105 +#: readelf.c:23115 #, c-format msgid "Displaying notes found in: %s\n" msgstr "" -#: readelf.c:23107 +#: readelf.c:23117 #, c-format msgid "" "Displaying notes found at file offset 0x%08<PRIx64> with length 0x%" "08<PRIx64>:\n" msgstr "" -#: readelf.c:23120 +#: readelf.c:23130 #, c-format msgid "Corrupt note: alignment %<PRId64>, expecting 4 or 8\n" msgstr "" -#: readelf.c:23126 +#: readelf.c:23136 #, c-format msgid " %-20s %-10s\tDescription\n" msgstr "" -#: readelf.c:23126 +#: readelf.c:23136 msgid "Owner" msgstr "" -#: readelf.c:23126 +#: readelf.c:23136 msgid "Data size" msgstr "" -#: readelf.c:23144 readelf.c:23173 +#: readelf.c:23154 readelf.c:23183 #, c-format msgid "Corrupt note: only %zd byte remains, not enough for a full note\n" msgid_plural "" @@ -12915,25 +12952,25 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:23201 +#: readelf.c:23211 #, c-format msgid "note with invalid namesz and/or descsz found at offset %#tx\n" msgstr "" -#: readelf.c:23203 +#: readelf.c:23213 #, c-format msgid " type: %#lx, namesize: %#lx, descsize: %#lx, alignment: %u\n" msgstr "" -#: readelf.c:23221 +#: readelf.c:23231 msgid "Out of memory allocating space for inote name\n" msgstr "" -#: readelf.c:23279 +#: readelf.c:23289 msgid "v850 notes" msgstr "" -#: readelf.c:23286 +#: readelf.c:23296 #, c-format msgid "" "\n" @@ -12941,76 +12978,76 @@ msgid "" "length %#<PRIx64>:\n" msgstr "" -#: readelf.c:23304 +#: readelf.c:23314 #, c-format msgid "Corrupt note: name size is too big: %lx\n" msgstr "" -#: readelf.c:23314 +#: readelf.c:23324 #, c-format msgid "corrupt descsz found in note at offset %#tx\n" msgstr "" -#: readelf.c:23316 readelf.c:23329 +#: readelf.c:23326 readelf.c:23339 #, c-format msgid " type: %#lx, namesize: %#lx, descsize: %#lx\n" msgstr "" -#: readelf.c:23327 +#: readelf.c:23337 #, c-format msgid "corrupt namesz found in note at offset %#zx\n" msgstr "" -#: readelf.c:23403 +#: readelf.c:23413 #, c-format msgid "No notes found in linked file '%s'.\n" msgstr "" -#: readelf.c:23406 +#: readelf.c:23416 #, c-format msgid "No notes found file.\n" msgstr "" -#: readelf.c:23415 +#: readelf.c:23425 #, c-format msgid " Unknown GNU attribute: %s\n" msgstr "" -#: readelf.c:23744 +#: readelf.c:23754 #, c-format msgid "%s: Failed to read file header\n" msgstr "" -#: readelf.c:23759 +#: readelf.c:23769 #, c-format msgid "" "\n" "File: %s\n" msgstr "" -#: readelf.c:23920 +#: readelf.c:23930 #, c-format msgid "%s: unable to dump the index as none was found\n" msgstr "" -#: readelf.c:23927 +#: readelf.c:23937 #, c-format msgid "" "Index of archive %s: (%<PRIu64> entries, %#<PRIx64> bytes in the symbol " "table)\n" msgstr "" -#: readelf.c:23951 +#: readelf.c:23961 #, c-format msgid "Contents of binary %s at offset " msgstr "" -#: readelf.c:23963 +#: readelf.c:23973 #, c-format msgid "%s: end of the symbol table reached before the end of the index\n" msgstr "" -#: readelf.c:23982 +#: readelf.c:23992 #, c-format msgid "" "%s: %<PRId64> byte remains in the symbol table, but without corresponding " @@ -13021,36 +13058,36 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: readelf.c:23995 +#: readelf.c:24005 #, c-format msgid "%s: failed to seek back to start of object files in the archive\n" msgstr "" -#: readelf.c:24087 readelf.c:24206 +#: readelf.c:24097 readelf.c:24216 #, c-format msgid "Input file '%s' is not readable.\n" msgstr "" -#: readelf.c:24115 +#: readelf.c:24125 #, c-format msgid "%s: contains corrupt thin archive: %s\n" msgstr "" -#: readelf.c:24133 +#: readelf.c:24143 #, c-format msgid "%s: failed to seek to archive member.\n" msgstr "" -#: readelf.c:24198 +#: readelf.c:24208 msgid "Out of memory allocating file data structure\n" msgstr "" -#: readelf.c:24235 +#: readelf.c:24245 #, c-format msgid "File %s is not an archive so its index cannot be displayed.\n" msgstr "" -#: readelf.c:24301 +#: readelf.c:24311 msgid "Nothing to do.\n" msgstr "" @@ -13069,298 +13106,312 @@ msgstr "" msgid "%s: not enough binary data" msgstr "" -#: resbin.c:135 +#: resbin.c:136 msgid "null terminated unicode string" msgstr "" -#: resbin.c:162 resbin.c:168 +#: resbin.c:166 resbin.c:175 msgid "resource ID" msgstr "" -#: resbin.c:207 +#: resbin.c:219 msgid "cursor" msgstr "" -#: resbin.c:238 resbin.c:245 +#: resbin.c:253 resbin.c:263 msgid "menu header" msgstr "" -#: resbin.c:254 +#: resbin.c:277 msgid "menuex header" msgstr "" -#: resbin.c:258 +#: resbin.c:284 msgid "menuex offset" msgstr "" -#: resbin.c:263 +#: resbin.c:294 #, c-format msgid "unsupported menu version %d" msgstr "" -#: resbin.c:288 resbin.c:303 resbin.c:365 +#: resbin.c:322 resbin.c:340 resbin.c:411 msgid "menuitem header" msgstr "" -#: resbin.c:395 +#: resbin.c:453 msgid "menuitem" msgstr "" -#: resbin.c:432 resbin.c:460 +#: resbin.c:496 resbin.c:530 msgid "dialog header" msgstr "" -#: resbin.c:450 +#: resbin.c:517 #, c-format msgid "unexpected DIALOGEX version %d" msgstr "" -#: resbin.c:495 +#: resbin.c:574 msgid "dialog font point size" msgstr "" -#: resbin.c:503 +#: resbin.c:585 msgid "dialogex font information" msgstr "" -#: resbin.c:529 resbin.c:547 +#: resbin.c:616 resbin.c:640 msgid "dialog control" msgstr "" -#: resbin.c:539 +#: resbin.c:629 msgid "dialogex control" msgstr "" -#: resbin.c:568 +#: resbin.c:668 msgid "dialog control end" msgstr "" -#: resbin.c:578 +#: resbin.c:681 msgid "dialog control data" msgstr "" -#: resbin.c:618 +#: resbin.c:723 msgid "stringtable string length" msgstr "" -#: resbin.c:628 +#: resbin.c:736 msgid "stringtable string" msgstr "" -#: resbin.c:658 +#: resbin.c:770 msgid "fontdir header" msgstr "" -#: resbin.c:672 +#: resbin.c:787 msgid "fontdir" msgstr "" -#: resbin.c:689 +#: resbin.c:807 msgid "fontdir device name" msgstr "" -#: resbin.c:695 +#: resbin.c:816 msgid "fontdir face name" msgstr "" -#: resbin.c:735 +#: resbin.c:860 msgid "accelerator" msgstr "" -#: resbin.c:794 +#: resbin.c:923 msgid "group cursor header" msgstr "" -#: resbin.c:798 resrc.c:1346 +#: resbin.c:930 resrc.c:1362 #, c-format msgid "unexpected group cursor type %d" msgstr "" -#: resbin.c:813 +#: resbin.c:948 msgid "group cursor" msgstr "" -#: resbin.c:849 +#: resbin.c:988 msgid "group icon header" msgstr "" -#: resbin.c:853 resrc.c:1293 +#: resbin.c:995 resrc.c:1309 #, c-format msgid "unexpected group icon type %d" msgstr "" -#: resbin.c:868 +#: resbin.c:1013 msgid "group icon" msgstr "" -#: resbin.c:932 +#: resbin.c:1088 msgid "unexpected version string" msgstr "" -#: resbin.c:964 +#: resbin.c:1126 #, c-format msgid "version length %lu greater than resource length %lu" msgstr "" -#: resbin.c:968 +#: resbin.c:1133 #, c-format msgid "unexpected version type %d" msgstr "" -#: resbin.c:983 +#: resbin.c:1152 #, c-format msgid "unexpected fixed version information length %ld" msgstr "" -#: resbin.c:986 +#: resbin.c:1159 msgid "fixed version info" msgstr "" -#: resbin.c:990 +#: resbin.c:1166 #, c-format msgid "unexpected fixed version signature %lu" msgstr "" -#: resbin.c:994 +#: resbin.c:1173 #, c-format msgid "unexpected fixed version info version %lu" msgstr "" -#: resbin.c:1023 +#: resbin.c:1205 msgid "version var info" msgstr "" -#: resbin.c:1040 +#: resbin.c:1226 #, c-format msgid "unexpected stringfileinfo value length %ld" msgstr "" -#: resbin.c:1057 +#: resbin.c:1247 msgid "version stringtable" msgstr "" -#: resbin.c:1065 +#: resbin.c:1260 #, c-format msgid "unexpected version stringtable value length %ld" msgstr "" -#: resbin.c:1082 +#: resbin.c:1281 msgid "version string" msgstr "" -#: resbin.c:1097 +#: resbin.c:1303 #, c-format msgid "unexpected version string length %ld != %ld + %ld" msgstr "" -#: resbin.c:1104 +#: resbin.c:1313 #, c-format msgid "unexpected version string length %ld < %ld" msgstr "" -#: resbin.c:1130 +#: resbin.c:1343 #, c-format msgid "unexpected varfileinfo value length %ld" msgstr "" -#: resbin.c:1149 +#: resbin.c:1368 msgid "version varfileinfo" msgstr "" -#: resbin.c:1164 +#: resbin.c:1386 #, c-format msgid "unexpected version value length %ld" msgstr "" -#: resbin.c:1174 +#: resbin.c:1399 msgid "nul bytes found in version string" msgstr "" -#: resbin.c:1177 +#: resbin.c:1404 #, c-format msgid "unexpected version string character: %x" msgstr "" -#: rescoff.c:123 +#: resbin.c:1457 +msgid "toolbar" +msgstr "" + +#: resbin.c:1475 +msgid "toolbar item" +msgstr "" + +#: rescoff.c:124 msgid "filename required for COFF input" msgstr "" -#: rescoff.c:140 +#: rescoff.c:147 +#, c-format +msgid "%s: not a PE file" +msgstr "" + +#: rescoff.c:155 #, c-format msgid "%s: no resource section" msgstr "" -#: rescoff.c:150 +#: rescoff.c:168 #, c-format msgid "%s: .rsrc section is bigger than the file!" msgstr "" -#: rescoff.c:178 +#: rescoff.c:199 #, c-format msgid "%s: %s: address out of bounds" msgstr "" -#: rescoff.c:199 -msgid "Resources nest too deep" +#: rescoff.c:221 +#, c-format +msgid "%s: resources nest too deep" msgstr "" -#: rescoff.c:202 +#: rescoff.c:228 msgid "directory" msgstr "" -#: rescoff.c:230 +#: rescoff.c:260 msgid "named directory entry" msgstr "" -#: rescoff.c:239 +#: rescoff.c:272 msgid "directory entry name" msgstr "" -#: rescoff.c:253 +#: rescoff.c:279 rescoff.c:286 msgid "resource name" msgstr "" -#: rescoff.c:264 +#: rescoff.c:305 msgid "named subdirectory" msgstr "" -#: rescoff.c:272 +#: rescoff.c:316 msgid "named resource" msgstr "" -#: rescoff.c:287 +#: rescoff.c:336 msgid "ID directory entry" msgstr "" -#: rescoff.c:304 +#: rescoff.c:356 msgid "ID subdirectory" msgstr "" -#: rescoff.c:312 +#: rescoff.c:367 msgid "ID resource" msgstr "" -#: rescoff.c:337 +#: rescoff.c:396 msgid "resource type unknown" msgstr "" -#: rescoff.c:340 +#: rescoff.c:402 msgid "data entry" msgstr "" -#: rescoff.c:348 +#: rescoff.c:413 msgid "resource data" msgstr "" -#: rescoff.c:353 +#: rescoff.c:421 msgid "resource data size" msgstr "" -#: rescoff.c:448 +#: rescoff.c:521 msgid "filename required for COFF output" msgstr "" -#: rescoff.c:735 +#: rescoff.c:879 msgid "can't get BFD_RELOC_RVA relocation type" msgstr "" @@ -13418,45 +13469,49 @@ msgstr "" msgid "%s: read of %lu returned %lu" msgstr "" -#: resrc.c:718 resrc.c:1493 +#: resrc.c:687 resrc.c:695 +msgid "not enough data" +msgstr "" + +#: resrc.c:734 resrc.c:1509 #, c-format msgid "stat failed on bitmap file `%s': %s" msgstr "" -#: resrc.c:769 +#: resrc.c:785 #, c-format msgid "cursor file `%s' does not contain cursor data" msgstr "" -#: resrc.c:801 resrc.c:1201 +#: resrc.c:817 resrc.c:1217 #, c-format msgid "%s: fseek to %lu failed: %s" msgstr "" -#: resrc.c:927 +#: resrc.c:943 msgid "help ID requires DIALOGEX" msgstr "" -#: resrc.c:929 +#: resrc.c:945 msgid "control data requires DIALOGEX" msgstr "" -#: resrc.c:957 +#: resrc.c:973 #, c-format msgid "stat failed on font file `%s': %s" msgstr "" -#: resrc.c:1170 +#: resrc.c:1186 #, c-format msgid "icon file `%s' does not contain icon data" msgstr "" -#: resrc.c:1719 resrc.c:1754 +#: resrc.c:1735 resrc.c:1770 #, c-format msgid "stat failed on file `%s': %s" msgstr "" -#: resrc.c:1953 +#: resrc.c:1970 #, c-format msgid "can't open `%s' for output: %s" msgstr "" @@ -13978,7 +14033,7 @@ msgid "" " -V --version Print version information\n" msgstr "" -#: windmc.c:260 windres.c:404 +#: windmc.c:260 windres.c:384 #, c-format msgid "%s: warning: " msgstr "" @@ -14011,48 +14066,48 @@ msgstr "" msgid "input file does not seems to be UFT16.\n" msgstr "" -#: windres.c:214 +#: windres.c:194 #, c-format msgid "can't open %s `%s': %s" msgstr "" -#: windres.c:383 +#: windres.c:363 #, c-format msgid ": expected to be a directory\n" msgstr "" -#: windres.c:395 +#: windres.c:375 #, c-format msgid ": expected to be a leaf\n" msgstr "" -#: windres.c:406 +#: windres.c:386 #, c-format msgid ": duplicate value\n" msgstr "" -#: windres.c:558 +#: windres.c:538 #, c-format msgid "unknown format type `%s'" msgstr "" -#: windres.c:559 +#: windres.c:539 #, c-format msgid "%s: supported formats:" msgstr "" #. Otherwise, we give up. -#: windres.c:642 +#: windres.c:622 #, c-format msgid "can not determine type of file `%s'; use the -J option" msgstr "" -#: windres.c:654 +#: windres.c:634 #, c-format msgid "Usage: %s [option(s)] [input-file] [output-file]\n" msgstr "" -#: windres.c:656 +#: windres.c:636 #, c-format msgid "" " The options are:\n" @@ -14075,12 +14130,12 @@ msgid "" " --no-use-temp-file Use popen (default)\n" msgstr "" -#: windres.c:674 +#: windres.c:654 #, c-format msgid " --yydebug Turn on parser debugging\n" msgstr "" -#: windres.c:677 +#: windres.c:657 #, c-format msgid "" " -r Ignored for compatibility with rc\n" @@ -14089,7 +14144,7 @@ msgid "" " -V --version Print version information\n" msgstr "" -#: windres.c:682 +#: windres.c:662 #, c-format msgid "" "FORMAT is one of rc, res, or coff, and is deduced from the file name\n" @@ -14097,26 +14152,26 @@ msgid "" "No input-file is stdin, default rc. No output-file is stdout, default rc.\n" msgstr "" -#: windres.c:845 +#: windres.c:825 msgid "invalid codepage specified.\n" msgstr "" -#: windres.c:860 +#: windres.c:840 msgid "invalid option -f\n" msgstr "" -#: windres.c:865 +#: windres.c:845 msgid "No filename following the -fo option.\n" msgstr "" -#: windres.c:957 +#: windres.c:937 #, c-format msgid "" "Option -I is deprecated for setting the input format, please use -J " "instead.\n" msgstr "" -#: windres.c:1070 +#: windres.c:1050 msgid "no resources" msgstr "" diff --git a/binutils/readelf.c b/binutils/readelf.c index 5730247..cfccdd2 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -2584,9 +2584,12 @@ get_aarch64_dynamic_type (unsigned long type) { switch (type) { - case DT_AARCH64_BTI_PLT: return "AARCH64_BTI_PLT"; - case DT_AARCH64_PAC_PLT: return "AARCH64_PAC_PLT"; + case DT_AARCH64_BTI_PLT: return "AARCH64_BTI_PLT"; + case DT_AARCH64_PAC_PLT: return "AARCH64_PAC_PLT"; case DT_AARCH64_VARIANT_PCS: return "AARCH64_VARIANT_PCS"; + case DT_AARCH64_MEMTAG_MODE: return "AARCH64_MEMTAG_MODE"; + case DT_AARCH64_MEMTAG_STACK: return "AARCH64_MEMTAG_STACK"; + default: return NULL; } @@ -5964,6 +5967,7 @@ get_os_specific_section_type_name (Filedata * filedata, unsigned int sh_type) case SHT_GNU_HASH: return "GNU_HASH"; case SHT_GNU_LIBLIST: return "GNU_LIBLIST"; case SHT_GNU_OBJECT_ONLY: return "GNU_OBJECT_ONLY"; + case SHT_GNU_SFRAME: return "GNU_SFRAME"; case SHT_SUNW_move: return "SUNW_MOVE"; case SHT_SUNW_COMDAT: return "SUNW_COMDAT"; @@ -6827,7 +6831,7 @@ process_file_header (Filedata * filedata) return false; if (! filedata->is_separate) - init_dwarf_regnames_by_elf_machine_code (header->e_machine); + init_dwarf_by_elf_machine_code (header->e_machine); if (do_header) { @@ -8367,6 +8371,7 @@ process_section_headers (Filedata * filedata) case SHT_NOTE: case SHT_PROGBITS: + case SHT_GNU_SFRAME: /* Having a zero sized section is not illegal according to the ELF standard, but it might be an indication that something is wrong. So issue a warning if we are running in lint mode. */ diff --git a/cpu/ChangeLog b/cpu/ChangeLog index e238895..e7e484a 100644 --- a/cpu/ChangeLog +++ b/cpu/ChangeLog @@ -1,3 +1,7 @@ +2025-07-13 Nick Clifton <nickc@redhat.com> + + * 2.45 Branch point. + 2025-01-19 Nick Clifton <nickc@redhat.com> * 2.44 Branch point. diff --git a/elfcpp/ChangeLog b/elfcpp/ChangeLog index 37b12e0..519c3d7 100644 --- a/elfcpp/ChangeLog +++ b/elfcpp/ChangeLog @@ -1,3 +1,7 @@ +2025-07-13 Nick Clifton <nickc@redhat.com> + + * 2.45 Branch point. + 2025-01-19 Nick Clifton <nickc@redhat.com> * 2.44 Branch point. diff --git a/gas/ChangeLog b/gas/ChangeLog index f0b4c9e..95e8d4f 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2025-07-13 Nick Clifton <nickc@redhat.com> + + * 2.45 Branch point. + 2025-01-19 Nick Clifton <nickc@redhat.com> * 2.44 Branch point. @@ -1,5 +1,7 @@ -*- text -*- +Changes in 2.45: + * Add support to generate SFrame stack trace information (.sframe) from CFI directives on s390 64-bit (s390x). @@ -8,6 +10,8 @@ with the applicable encoding. Setting the flag ensures compliance with the updated SFrame V2 specification. + ELF SFrame sections now have section type set to SHT_GNU_SFRAME. + * Add .errif and .warnif directives, permitting user-controlled diagnostics with conditionals that are evaluated only at the end of assembly. @@ -39,6 +43,15 @@ * Add support for the x86 Zhaoxin PadLock XMODX instructions. +* Add support for several instruction aliases defined for the LoongArch 32-bit + reduced subset (LA32R): rdcntvl.w, rdcntvh.w, rdcntid.w. + +* For LoongArch, warn about out-of-range 3rd arguments (maximum number of + bytes to skip) of .align directives. + +* For LoongArch, warn about negative right-shift amounts and + division/modulus-by-zero when evaluating expressions. + Changes in 2.44: * Add support for the x86 Intel Diamond Rapids AMX instructions, including diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index 03b6c24..315d08e 100644 --- a/gas/config/obj-elf.c +++ b/gas/config/obj-elf.c @@ -1163,6 +1163,15 @@ obj_elf_attach_to_group (int dummy ATTRIBUTE_UNUSED) elf_set_group_name (now_seg, gname); } +/* Handle section related directives. + + Note on support for SFrame sections: These are generally expected to be + generated by the assembler. However, this function permits their direct + creation by the user. At the moment though, we go no extra mile by adding + an explicit @sframe for SHT_GNU_SFRAME (using the numeric value of section + type should suffice); Nor do we implement any outright refusal for + non-supported targets via ELFOSABI-specific checks. */ + void obj_elf_section (int push) { diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c index 29d9cdb..cd9ae58 100644 --- a/gas/config/tc-aarch64.c +++ b/gas/config/tc-aarch64.c @@ -2351,6 +2351,14 @@ s_aarch64_cfi_b_key_frame (int ignored ATTRIBUTE_UNUSED) fde->pauth_key = AARCH64_PAUTH_KEY_B; } +static void +s_aarch64_mte_tagged_frame (int ignored ATTRIBUTE_UNUSED) +{ + demand_empty_rest_of_line (); + struct fde_entry *fde = frchain_now->frch_cfi_data->cur_fde_data; + fde->memtag_frame_p = true; +} + #ifdef OBJ_ELF /* Emit BFD_RELOC_AARCH64_TLSDESC_ADD on the next ADD instruction. */ @@ -2476,6 +2484,7 @@ const pseudo_typeS md_pseudo_table[] = { {"arch_extension", s_aarch64_arch_extension, 0}, {"inst", s_aarch64_inst, 0}, {"cfi_b_key_frame", s_aarch64_cfi_b_key_frame, 0}, + {"cfi_mte_tagged_frame", s_aarch64_mte_tagged_frame, 0}, #ifdef OBJ_ELF {"tlsdescadd", s_tlsdescadd, 0}, {"tlsdesccall", s_tlsdesccall, 0}, @@ -4956,6 +4965,10 @@ parse_sme_sm_za (char **str) return TOLOWER (p[0]); } +/* By default, system register accesses are unguarded (apart from the + requirement of +d128 for mrrs/msrr). */ +static int sysreg_checking_p = 0; + /* Parse a system register or a PSTATE field name for an MSR/MRS instruction. Returns the encoding for the option, or PARSE_FAIL. @@ -5010,10 +5023,11 @@ parse_sys_reg (char **str, htab_t sys_regs, } else { - if (pstatefield_p && !aarch64_pstatefield_supported_p (cpu_variant, o)) + if (pstatefield_p && sysreg_checking_p + && !aarch64_pstatefield_supported_p (cpu_variant, o)) as_bad (_("selected processor does not support PSTATE field " "name '%s'"), buf); - if (!pstatefield_p + if (!pstatefield_p && sysreg_checking_p && !aarch64_sys_ins_reg_supported_p (cpu_variant, o->name, o->flags, &o->features)) as_bad (_("selected processor does not support system register " @@ -5094,12 +5108,14 @@ parse_sys_ins_reg (char **str, htab_t sys_ins_regs, bool sysreg128_p) } while (0) #define po_imm_nc_or_fail() do { \ - if (! parse_constant_immediate (&str, &val, imm_reg_type)) \ + aarch64_reg_type invalid_types = imm_invalid_reg_types (opcode->flags); \ + if (! parse_constant_immediate (&str, &val, invalid_types)) \ goto failure; \ } while (0) #define po_imm_or_fail(min, max) do { \ - if (! parse_constant_immediate (&str, &val, imm_reg_type)) \ + aarch64_reg_type invalid_types = imm_invalid_reg_types (opcode->flags); \ + if (! parse_constant_immediate (&str, &val, invalid_types)) \ goto failure; \ if (val < min || val > max) \ { \ @@ -5110,8 +5126,9 @@ parse_sys_ins_reg (char **str, htab_t sys_ins_regs, bool sysreg128_p) } while (0) #define po_enum_or_fail(array) do { \ + aarch64_reg_type invalid_types = imm_invalid_reg_types (opcode->flags); \ if (!parse_enum_string (&str, &val, array, \ - ARRAY_SIZE (array), imm_reg_type)) \ + ARRAY_SIZE (array), invalid_types)) \ goto failure; \ } while (0) @@ -6657,6 +6674,28 @@ reg_list_valid_p (uint32_t reginfo, struct aarch64_reglist *list, return true; } +static aarch64_reg_type +imm_invalid_reg_types (uint64_t flags) +{ + switch (flags & F_INVALID_IMM_SYMS) + { + case F_INVALID_IMM_SYMS_1: + return REG_TYPE_R_ZR_BHSDQ_V; + + case F_INVALID_IMM_SYMS_2: + return REG_TYPE_R_ZR_SP_BHSDQ_VZP; + + case F_INVALID_IMM_SYMS_3: + return REG_TYPE_R_ZR_SP_BHSDQ_VZP_PN; + + default: + /* All instructions with immediate operands require an explicit flag - + this ensures that the flags will not be forgotten when adding new + instructions. */ + gas_assert (0); + } +} + /* Generic instruction operand parser. This does no encoding and no semantic validation; it merely squirrels values away in the inst structure. Returns TRUE or FALSE depending on whether the @@ -6669,19 +6708,10 @@ parse_operands (char *str, const aarch64_opcode *opcode) char *backtrack_pos = 0; const enum aarch64_opnd *operands = opcode->operands; const uint64_t flags = opcode->flags; - aarch64_reg_type imm_reg_type; clear_error (); skip_whitespace (str); - if (AARCH64_CPU_HAS_FEATURE (*opcode->avariant, SME2)) - imm_reg_type = REG_TYPE_R_ZR_SP_BHSDQ_VZP_PN; - else if (AARCH64_CPU_HAS_FEATURE (*opcode->avariant, SVE) - || AARCH64_CPU_HAS_FEATURE (*opcode->avariant, SVE2)) - imm_reg_type = REG_TYPE_R_ZR_SP_BHSDQ_VZP; - else - imm_reg_type = REG_TYPE_R_ZR_BHSDQ_V; - for (i = 0; operands[i] != AARCH64_OPND_NIL; i++) { int64_t val; @@ -7237,13 +7267,15 @@ parse_operands (char *str, const aarch64_opcode *opcode) { int qfloat; bool res1 = false, res2 = false; + aarch64_reg_type invalid_types + = imm_invalid_reg_types (opcode->flags); /* N.B. -0.0 will be rejected; although -0.0 shouldn't be rejected, it is probably not worth the effort to support it. */ if (!(res1 = parse_aarch64_imm_float (&str, &qfloat, false, - imm_reg_type)) + invalid_types)) && (error_p () || !(res2 = parse_constant_immediate (&str, &val, - imm_reg_type)))) + invalid_types)))) goto failure; if ((res1 && qfloat == 0) || (res2 && val == 0)) { @@ -7277,7 +7309,8 @@ parse_operands (char *str, const aarch64_opcode *opcode) case AARCH64_OPND_SIMD_IMM: case AARCH64_OPND_SIMD_IMM_SFT: - if (! parse_big_immediate (&str, &val, imm_reg_type)) + if (! parse_big_immediate (&str, &val, + imm_invalid_reg_types (opcode->flags))) goto failure; assign_imm_if_const_or_fixup_later (&inst.reloc, info, /* addr_off_p */ 0, @@ -7305,11 +7338,13 @@ parse_operands (char *str, const aarch64_opcode *opcode) case AARCH64_OPND_SIMD_FPIMM: case AARCH64_OPND_SVE_FPIMM8: { + aarch64_reg_type invalid_types + = imm_invalid_reg_types (opcode->flags); int qfloat; bool dp_p; dp_p = double_precision_operand_p (&inst.base.operands[0]); - if (!parse_aarch64_imm_float (&str, &qfloat, dp_p, imm_reg_type) + if (!parse_aarch64_imm_float (&str, &qfloat, dp_p, invalid_types) || !aarch64_imm_float_p (qfloat)) { if (!error_p ()) @@ -7326,11 +7361,13 @@ parse_operands (char *str, const aarch64_opcode *opcode) case AARCH64_OPND_SVE_I1_HALF_TWO: case AARCH64_OPND_SVE_I1_ZERO_ONE: { + aarch64_reg_type invalid_types + = imm_invalid_reg_types (opcode->flags); int qfloat; bool dp_p; dp_p = double_precision_operand_p (&inst.base.operands[0]); - if (!parse_aarch64_imm_float (&str, &qfloat, dp_p, imm_reg_type)) + if (!parse_aarch64_imm_float (&str, &qfloat, dp_p, invalid_types)) { if (!error_p ()) set_fatal_syntax_error (_("invalid floating-point" @@ -7419,13 +7456,17 @@ parse_operands (char *str, const aarch64_opcode *opcode) case AARCH64_OPND_EXCEPTION: case AARCH64_OPND_UNDEFINED: - po_misc_or_fail (parse_immediate_expression (&str, &inst.reloc.exp, - imm_reg_type)); - assign_imm_if_const_or_fixup_later (&inst.reloc, info, - /* addr_off_p */ 0, - /* need_libopcodes_p */ 0, - /* skip_p */ 1); - break; + { + aarch64_reg_type invalid_types + = imm_invalid_reg_types (opcode->flags); + po_misc_or_fail (parse_immediate_expression (&str, &inst.reloc.exp, + invalid_types)); + assign_imm_if_const_or_fixup_later (&inst.reloc, info, + /* addr_off_p */ 0, + /* need_libopcodes_p */ 0, + /* skip_p */ 1); + break; + } case AARCH64_OPND_NZCV: { @@ -8094,7 +8135,9 @@ parse_operands (char *str, const aarch64_opcode *opcode) { /* DSB nXS barrier variant accept 5-bit unsigned immediate, with possible values 16, 20, 24 or 28 , encoded as val<3:2>. */ - if (! parse_constant_immediate (&str, &val, imm_reg_type)) + aarch64_reg_type invalid_types + = imm_invalid_reg_types (opcode->flags); + if (! parse_constant_immediate (&str, &val, invalid_types)) goto failure; if (!(val == 16 || val == 20 || val == 24 || val == 28)) { @@ -10574,6 +10617,9 @@ static struct aarch64_option_table aarch64_opts[] = { NULL}, {"mno-verbose-error", N_("do not output verbose error messages"), &verbose_error_p, 0, NULL}, + {"menable-sysreg-checking", + N_("enable feature flag gating for system registers"), + &sysreg_checking_p, 1, NULL}, {NULL, NULL, NULL, 0, NULL} }; @@ -10696,6 +10742,7 @@ static const struct aarch64_arch_option_table aarch64_archs[] = { {"armv9.3-a", AARCH64_ARCH_FEATURES (V9_3A)}, {"armv9.4-a", AARCH64_ARCH_FEATURES (V9_4A)}, {"armv9.5-a", AARCH64_ARCH_FEATURES (V9_5A)}, + {"armv9.6-a", AARCH64_ARCH_FEATURES (V9_6A)}, {NULL, AARCH64_NO_FEATURES} }; diff --git a/gas/config/tc-aarch64.h b/gas/config/tc-aarch64.h index 0d8066c..fce34ed 100644 --- a/gas/config/tc-aarch64.h +++ b/gas/config/tc-aarch64.h @@ -90,13 +90,21 @@ enum pointer_auth_key { /* The extra fields required by AArch64 in fde_entry and cie_entry. Currently only used to store the key used to sign the frame's return address. */ -#define tc_fde_entry_extras enum pointer_auth_key pauth_key; -#define tc_cie_entry_extras enum pointer_auth_key pauth_key; +#define tc_fde_entry_extras enum pointer_auth_key pauth_key; \ + bool memtag_frame_p; +#define tc_cie_entry_extras enum pointer_auth_key pauth_key; \ + bool memtag_frame_p; /* The extra initialisation steps needed by AArch64 in alloc_fde_entry. Currently only used to initialise the key used to sign the return address. */ -#define tc_fde_entry_init_extra(fde) fde->pauth_key = AARCH64_PAUTH_KEY_A; +#define tc_fde_entry_init_extra(fde) \ + do \ + { \ + fde->pauth_key = AARCH64_PAUTH_KEY_A; \ + fde->memtag_frame_p = false; \ + } \ + while (0) /* Extra checks required by AArch64 when outputting the current cie_entry. Currently only used to output a 'B' if the return address is signed with the @@ -106,18 +114,29 @@ enum pointer_auth_key { { \ if (cie->pauth_key == AARCH64_PAUTH_KEY_B) \ out_one ('B'); \ + if (cie->memtag_frame_p) \ + out_one ('G'); \ } \ while (0) /* Extra equivalence checks required by AArch64 when selecting the correct cie - for some fde. Currently only used to check for quivalence between keys used - to sign ther return address. */ -#define tc_cie_fde_equivalent_extra(cie, fde) (cie->pauth_key == fde->pauth_key) + for some fde. Currently used to check for equivalence between - keys used + to sign the return address, and if stack locations have MTE tagging + enabled. */ +#define tc_cie_fde_equivalent_extra(cie, fde) \ + ((cie->pauth_key == fde->pauth_key) \ + && (cie->memtag_frame_p == fde->memtag_frame_p)) /* The extra initialisation steps needed by AArch64 in select_cie_for_fde. Currently only used to initialise the key used to sign the return address. */ -#define tc_cie_entry_init_extra(cie, fde) cie->pauth_key = fde->pauth_key; +#define tc_cie_entry_init_extra(cie, fde) \ + do \ + { \ + cie->pauth_key = fde->pauth_key; \ + cie->memtag_frame_p = fde->memtag_frame_p; \ + } \ + while (0) #define TC_FIX_TYPE struct aarch64_fix #define TC_INIT_FIX_DATA(FIX) { (FIX)->tc_fix_data.inst = NULL; \ diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 9134cef..7d0d855 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -4328,14 +4328,16 @@ got16_reloc_p (bfd_reloc_code_real_type reloc) static inline bool hi16_reloc_p (bfd_reloc_code_real_type reloc) { - return (reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S + return (reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_HI16_S_PCREL + || reloc == BFD_RELOC_MIPS16_HI16_S || reloc == BFD_RELOC_MICROMIPS_HI16_S); } static inline bool lo16_reloc_p (bfd_reloc_code_real_type reloc) { - return (reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16 + return (reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_LO16_PCREL + || reloc == BFD_RELOC_MIPS16_LO16 || reloc == BFD_RELOC_MICROMIPS_LO16); } @@ -4402,8 +4404,9 @@ static inline bfd_reloc_code_real_type matching_lo_reloc (bfd_reloc_code_real_type reloc) { return (mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16 - : (micromips_reloc_p (reloc) ? BFD_RELOC_MICROMIPS_LO16 - : BFD_RELOC_LO16)); + : micromips_reloc_p (reloc) ? BFD_RELOC_MICROMIPS_LO16 + : reloc == BFD_RELOC_HI16_S_PCREL ? BFD_RELOC_LO16_PCREL + : BFD_RELOC_LO16); } /* Return true if the given fixup is followed by a matching R_MIPS_LO16 @@ -4415,7 +4418,12 @@ fixup_has_matching_lo_p (fixS *fixp) return (fixp->fx_next != NULL && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type) && fixp->fx_addsy == fixp->fx_next->fx_addsy - && fixp->fx_offset == fixp->fx_next->fx_offset); + && (fixp->fx_r_type == BFD_RELOC_HI16_S_PCREL + ? (fixp->fx_next->fx_offset - fixp->fx_offset + == ((fixp->fx_next->fx_frag->fr_address + + fixp->fx_next->fx_where) + - (fixp->fx_frag->fr_address + fixp->fx_where))) + : fixp->fx_offset == fixp->fx_next->fx_offset)); } /* Move all labels in LABELS to the current insertion point. TEXT_P @@ -15413,6 +15421,13 @@ mips_frob_file_before_adjust (void) if the user knows that adding 2 to "foo" will not induce a carry to the high 16 bits. + A %pcrel_lo() expression matches a %pcrel_hi() expression if: + + (a) it refers to the same symbol; and + (b) the offset applied in the %pcrel_lo() expression equals + the offset applied in the %pcrel_hi() expression plus the + distance from the location of %pcrel_hi() to %pcrel_lo(). + When several %lo()s match a particular %got() or %hi(), we use the following rules to distinguish them: @@ -15484,9 +15499,14 @@ mips_frob_file (void) if ((*pos)->fx_r_type == looking_for_rtype && symbol_same_p ((*pos)->fx_addsy, l->fixp->fx_addsy) - && (*pos)->fx_offset >= l->fixp->fx_offset + && (l->fixp->fx_r_type == BFD_RELOC_HI16_S_PCREL + ? ((*pos)->fx_offset - l->fixp->fx_offset + == (((*pos)->fx_frag->fr_address + (*pos)->fx_where) + - (l->fixp->fx_frag->fr_address + l->fixp->fx_where))) + : (*pos)->fx_offset >= l->fixp->fx_offset) && (lo_pos == NULL - || (*pos)->fx_offset < (*lo_pos)->fx_offset + || (l->fixp->fx_r_type != BFD_RELOC_HI16_S_PCREL + && (*pos)->fx_offset < (*lo_pos)->fx_offset) || (!matched_lo_p && (*pos)->fx_offset == (*lo_pos)->fx_offset))) lo_pos = pos; @@ -15497,15 +15517,20 @@ mips_frob_file (void) /* If we found a match, remove the high-part relocation from its current position and insert it before the low-part relocation. - Make the offsets match so that fixup_has_matching_lo_p() - will return true. + + For absolute relocations make the offsets match so that + fixup_has_matching_lo_p() will return true. For PC-relative + relocations the distance between the offsets is retained + according to expectations in `fixup_has_matching_lo_p', + `_bfd_mips_elf_lo16_reloc' and `mips_elf_add_lo16_rel_addend'. We don't warn about unmatched high-part relocations since some versions of gcc have been known to emit dead "lui ...%hi(...)" instructions. */ if (lo_pos != NULL) { - l->fixp->fx_offset = (*lo_pos)->fx_offset; + if (l->fixp->fx_r_type != BFD_RELOC_HI16_S_PCREL) + l->fixp->fx_offset = (*lo_pos)->fx_offset; if (l->fixp->fx_next != *lo_pos) { *hi_pos = l->fixp->fx_next; diff --git a/gas/configure b/gas/configure index 3212e5f..9734044 100755 --- a/gas/configure +++ b/gas/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for gas 2.44.50. +# Generated by GNU Autoconf 2.69 for gas 2.45.50. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -587,8 +587,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='gas' PACKAGE_TARNAME='gas' -PACKAGE_VERSION='2.44.50' -PACKAGE_STRING='gas 2.44.50' +PACKAGE_VERSION='2.45.50' +PACKAGE_STRING='gas 2.45.50' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1393,7 +1393,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures gas 2.44.50 to adapt to many kinds of systems. +\`configure' configures gas 2.45.50 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1464,7 +1464,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of gas 2.44.50:";; + short | recursive ) echo "Configuration of gas 2.45.50:";; esac cat <<\_ACEOF @@ -1621,7 +1621,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -gas configure 2.44.50 +gas configure 2.45.50 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2032,7 +2032,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by gas $as_me 2.44.50, which was +It was created by gas $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3012,7 +3012,7 @@ fi # Define the identity of the package. PACKAGE='gas' - VERSION='2.44.50' + VERSION='2.45.50' cat >>confdefs.h <<_ACEOF @@ -16548,7 +16548,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by gas $as_me 2.44.50, which was +This file was extended by gas $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -16614,7 +16614,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -gas config.status 2.44.50 +gas config.status 2.45.50 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/gas/doc/c-aarch64.texi b/gas/doc/c-aarch64.texi index d300ab2..dc64e09 100644 --- a/gas/doc/c-aarch64.texi +++ b/gas/doc/c-aarch64.texi @@ -136,6 +136,12 @@ is enabled by default. @item -mno-verbose-error This option disables verbose error messages in AArch64 gas. +@cindex @code{-menable-sysreg-checking} command-line option, AArch64 +@item -menable-sysreg-checking +This option enables error messages that are issued if an attempt is made to +assemble a system register access which will not execute on the target +architecture. + @end table @c man end @@ -369,6 +375,7 @@ automatically cause those extensions to be disabled. @item @code{armv9.3-a} @tab @code{armv9.2-a}, @code{armv8.8-a} @item @code{armv9.4-a} @tab @code{armv9.3-a}, @code{armv8.9-a} @item @code{armv9.5-a} @tab @code{armv9.4-a}, @code{cpa}, @code{lut}, @code{faminmax} +@item @code{armv9.6-a} @tab @code{armv9.5-a}, @code{cmpbr}, @code{fprcvt}, @code{lsui}, @code{occmo}, @code{sve2p2} @item @code{armv8-r} @tab @code{armv8.4-a+nolor} @end multitable @@ -492,6 +499,14 @@ incrementally to the architecture being compiled for. @c BBBBBBBBBBBBBBBBBBBBBBBBBB @c CCCCCCCCCCCCCCCCCCCCCCCCCC +@cindex @code{.cfi_mte_tagged_frame} directive, AArch64 +@item @code{.cfi_mte_tagged_frame} +The @code{.cfi_mte_tagged_frame} directive inserts a 'G' character into the +CIE corresponding to the current frame's FDE, meaning that the associated +frames may modify MTE tags on the stack space they use. This information is +intended to be used by the stack unwinder in order to properly untag stack +frames. + @cindex @code{.cpu} directive, AArch64 @item .cpu @var{name} Set the target processor. Valid values for @var{name} are the same as diff --git a/gas/dw2gencfi.c b/gas/dw2gencfi.c index 5eb8a5d..57fffab 100644 --- a/gas/dw2gencfi.c +++ b/gas/dw2gencfi.c @@ -91,11 +91,6 @@ #define tc_cfi_reloc_for_encoding(e) BFD_RELOC_NONE #endif -/* Targets which support SFrame format will define this and return true. */ -#ifndef support_sframe_p -# define support_sframe_p() false -#endif - /* Private segment collection list. */ struct dwcfi_seg_list { @@ -414,7 +409,7 @@ alloc_fde_entry (void) fde->lsda_encoding = DW_EH_PE_omit; fde->eh_header_type = EH_COMPACT_UNKNOWN; #ifdef tc_fde_entry_init_extra - tc_fde_entry_init_extra (fde) + tc_fde_entry_init_extra (fde); #endif return fde; @@ -2277,7 +2272,7 @@ select_cie_for_fde (struct fde_entry *fde, bool eh_frame, cie->personality = fde->personality; cie->first = fde->data; #ifdef tc_cie_entry_init_extra - tc_cie_entry_init_extra (cie, fde) + tc_cie_entry_init_extra (cie, fde); #endif for (i = cie->first; i ; i = i->next) @@ -2606,6 +2601,7 @@ cfi_finish (void) - .sframe in the .cfi_sections directive. */ if (flag_gen_sframe || (all_cfi_sections & CFI_EMIT_sframe) != 0) { +#ifdef support_sframe_p if (support_sframe_p () && !SUPPORT_FRAME_LINKONCE) { segT sframe_seg; @@ -2615,9 +2611,11 @@ cfi_finish (void) (SEC_ALLOC | SEC_LOAD | SEC_DATA | DWARF2_EH_FRAME_READ_ONLY), alignment); + elf_section_type (sframe_seg) = SHT_GNU_SFRAME; output_sframe (sframe_seg); } else +#endif as_bad (_(".sframe not supported for target")); } diff --git a/gas/po/gas.pot b/gas/po/gas.pot index 47b5fb0..4075380 100644 --- a/gas/po/gas.pot +++ b/gas/po/gas.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n" -"POT-Creation-Date: 2025-01-19 12:23+0000\n" +"POT-Creation-Date: 2025-07-13 08:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -46,7 +46,7 @@ msgstr "" msgid "unknown escape '\\%c' in string; ignored" msgstr "" -#: app.c:953 input-scrub.c:389 +#: app.c:953 input-scrub.c:400 msgid "end of file not at end of a line; newline inserted" msgstr "" @@ -183,14 +183,14 @@ msgstr "" msgid " --elf-stt-common=[no|yes] " msgstr "" -#: as.c:296 as.c:307 config/tc-i386.c:17662 config/tc-i386.c:17682 -#: config/tc-i386.c:17691 +#: as.c:296 as.c:307 config/tc-i386.c:17910 config/tc-i386.c:17930 +#: config/tc-i386.c:17939 #, c-format msgid "(default: yes)\n" msgstr "" -#: as.c:298 as.c:309 config/tc-i386.c:17664 config/tc-i386.c:17684 -#: config/tc-i386.c:17693 +#: as.c:298 as.c:309 config/tc-i386.c:17912 config/tc-i386.c:17932 +#: config/tc-i386.c:17941 #, c-format msgid "(default: no)\n" msgstr "" @@ -473,38 +473,38 @@ msgstr "" msgid "Report bugs to %s\n" msgstr "" -#: as.c:647 +#: as.c:653 #, c-format msgid "unrecognized option `-%c%s'" msgstr "" -#: as.c:649 +#: as.c:655 #, c-format msgid "unrecognized option `--%s=%s'" msgstr "" -#: as.c:651 +#: as.c:657 #, c-format msgid "unrecognized option `--%s'" msgstr "" -#: as.c:701 +#: as.c:711 #, c-format msgid "unexpected argument to --multibyte-input-option: '%s'" msgstr "" #. This output is intended to follow the GNU standards document. -#: as.c:706 +#: as.c:716 #, c-format msgid "GNU assembler %s\n" msgstr "" -#: as.c:707 +#: as.c:717 #, c-format msgid "Copyright (C) 2025 Free Software Foundation, Inc.\n" msgstr "" -#: as.c:708 +#: as.c:718 #, c-format msgid "" "This program is free software; you may redistribute it under the terms of\n" @@ -512,152 +512,152 @@ msgid "" "This program has absolutely no warranty.\n" msgstr "" -#: as.c:713 +#: as.c:723 #, c-format msgid "" "This assembler was configured for a target of `%s' and default,\n" "cpu type `%s'.\n" msgstr "" -#: as.c:717 +#: as.c:727 #, c-format msgid "This assembler was configured for a target of `%s'.\n" msgstr "" -#: as.c:725 +#: as.c:735 msgid "multiple emulation names specified" msgstr "" -#: as.c:727 +#: as.c:737 msgid "emulations not handled in this configuration" msgstr "" -#: as.c:732 +#: as.c:742 #, c-format msgid "alias = %s\n" msgstr "" -#: as.c:733 +#: as.c:743 #, c-format msgid "canonical = %s\n" msgstr "" -#: as.c:734 +#: as.c:744 #, c-format msgid "cpu-type = %s\n" msgstr "" -#: as.c:736 +#: as.c:746 #, c-format msgid "format = %s\n" msgstr "" -#: as.c:739 +#: as.c:749 #, c-format msgid "bfd-target = %s\n" msgstr "" -#: as.c:750 +#: as.c:760 msgid "--compress-debug-sections=zstd: gas is not built with zstd support" msgstr "" -#: as.c:754 +#: as.c:764 #, c-format msgid "Invalid --compress-debug-sections option: `%s'" msgstr "" -#: as.c:757 +#: as.c:767 #, c-format msgid "--compress-debug-sections=%s is unsupported" msgstr "" -#: as.c:782 +#: as.c:792 msgid "bad defsym; format is --defsym name=value" msgstr "" -#: as.c:800 +#: as.c:810 msgid "no file name following -t option" msgstr "" -#: as.c:809 +#: as.c:819 #, c-format msgid "failed to read instruction table %s\n" msgstr "" -#: as.c:831 +#: as.c:841 #, c-format msgid "unknown DWARF option %s\n" msgstr "" -#: as.c:833 +#: as.c:843 #, c-format msgid "unknown option `%s'" msgstr "" -#: as.c:890 +#: as.c:900 #, c-format msgid "Invalid --gdwarf-cie-version `%s'" msgstr "" -#: as.c:990 +#: as.c:1002 #, c-format msgid "Invalid --scfi= option: `%s'; suggested option: experimental" msgstr "" -#: as.c:1001 +#: as.c:1013 #, c-format msgid "Invalid --size-check= option: `%s'" msgstr "" -#: as.c:1010 +#: as.c:1022 #, c-format msgid "Invalid --elf-stt-common= option: `%s'" msgstr "" -#: as.c:1024 +#: as.c:1036 #, c-format msgid "Invalid --generate-missing-build-notes option: `%s'" msgstr "" -#: as.c:1102 +#: as.c:1114 #, c-format msgid "invalid listing option `%c'" msgstr "" -#: as.c:1165 +#: as.c:1197 #, c-format msgid "%s: total time in assembly: %ld.%06ld\n" msgstr "" -#: as.c:1263 +#: as.c:1299 msgid "libbfd ABI mismatch" msgstr "" -#: as.c:1427 +#: as.c:1465 #, c-format msgid "The input '%s' and output '%s' files are the same" msgstr "" -#: as.c:1480 +#: as.c:1518 #, c-format msgid "%d warning" msgid_plural "%d warnings" msgstr[0] "" msgstr[1] "" -#: as.c:1482 +#: as.c:1520 #, c-format msgid "%d error" msgid_plural "%d errors" msgstr[0] "" msgstr[1] "" -#: as.c:1486 +#: as.c:1524 #, c-format msgid "%s, treating warnings as errors" msgstr "" -#: as.c:1497 +#: as.c:1535 #, c-format msgid "%s, %s, generating bad object file\n" msgstr "" @@ -671,64 +671,64 @@ msgstr "" #. * We have a GROSS internal error. #. * This should never happen. #. -#: atof-generic.c:456 config/tc-m68k.c:3485 +#: atof-generic.c:448 config/tc-m68k.c:3485 msgid "failed sanity check" msgstr "" -#: cgen.c:106 config/tc-alpha.c:2097 config/tc-alpha.c:2121 -#: config/tc-arc.c:4075 config/tc-arc.c:4148 config/tc-d10v.c:550 -#: config/tc-d30v.c:534 config/tc-mn10200.c:1093 config/tc-mn10300.c:1753 -#: config/tc-ppc.c:3954 config/tc-s390.c:1824 config/tc-v850.c:2530 -#: config/tc-v850.c:2601 config/tc-v850.c:2648 config/tc-v850.c:2685 -#: config/tc-v850.c:2722 config/tc-v850.c:2986 +#: cgen.c:106 config/tc-alpha.c:2081 config/tc-alpha.c:2105 +#: config/tc-arc.c:4073 config/tc-arc.c:4145 config/tc-d10v.c:549 +#: config/tc-d30v.c:534 config/tc-mn10200.c:1089 config/tc-mn10300.c:1753 +#: config/tc-ppc.c:3953 config/tc-s390.c:1846 config/tc-v850.c:2507 +#: config/tc-v850.c:2578 config/tc-v850.c:2625 config/tc-v850.c:2662 +#: config/tc-v850.c:2699 config/tc-v850.c:2963 msgid "too many fixups" msgstr "" -#: cgen.c:371 cgen.c:393 config/tc-d10v.c:461 config/tc-d30v.c:450 -#: config/tc-mn10200.c:1035 config/tc-mn10300.c:1678 config/tc-ppc.c:3483 -#: config/tc-v850.c:2639 config/tc-v850.c:2673 config/tc-v850.c:2713 -#: config/tc-v850.c:2959 config/tc-z80.c:785 +#: cgen.c:367 cgen.c:389 config/tc-d10v.c:460 config/tc-d30v.c:450 +#: config/tc-mn10200.c:1031 config/tc-mn10300.c:1678 config/tc-ppc.c:3482 +#: config/tc-v850.c:2616 config/tc-v850.c:2650 config/tc-v850.c:2690 +#: config/tc-v850.c:2936 config/tc-z80.c:785 msgid "illegal operand" msgstr "" -#: cgen.c:397 config/tc-avr.c:910 config/tc-d10v.c:463 config/tc-d30v.c:452 -#: config/tc-h8300.c:495 config/tc-mcore.c:662 config/tc-microblaze.c:585 -#: config/tc-mmix.c:485 config/tc-mn10200.c:1038 config/tc-mn10300.c:1681 -#: config/tc-msp430.c:417 config/tc-ppc.c:3485 config/tc-sh.c:988 -#: config/tc-v850.c:2643 config/tc-v850.c:2677 config/tc-v850.c:2717 -#: config/tc-v850.c:2962 config/tc-xgate.c:895 config/tc-z80.c:933 +#: cgen.c:393 config/tc-avr.c:908 config/tc-d10v.c:462 config/tc-d30v.c:452 +#: config/tc-h8300.c:495 config/tc-mcore.c:662 config/tc-microblaze.c:584 +#: config/tc-mmix.c:485 config/tc-mn10200.c:1034 config/tc-mn10300.c:1681 +#: config/tc-msp430.c:417 config/tc-ppc.c:3484 config/tc-sh.c:989 +#: config/tc-v850.c:2620 config/tc-v850.c:2654 config/tc-v850.c:2694 +#: config/tc-v850.c:2939 config/tc-xgate.c:892 config/tc-z80.c:933 #: config/tc-z8k.c:349 msgid "missing operand" msgstr "" -#: cgen.c:774 +#: cgen.c:770 msgid "a reloc on this operand implies an overflow" msgstr "" -#: cgen.c:797 +#: cgen.c:793 msgid "operand mask overflow" msgstr "" -#: cgen.c:860 config/tc-arm.c:2042 config/tc-arm.c:11126 config/tc-arm.c:11178 -#: config/tc-arm.c:11466 config/tc-arm.c:12364 config/tc-arm.c:13513 -#: config/tc-arm.c:13553 config/tc-arm.c:13926 config/tc-arm.c:13968 -#: config/tc-arm.c:21213 config/tc-arm.c:21273 config/tc-mips.c:9707 -#: config/tc-mips.c:11025 config/tc-mips.c:12322 config/tc-mips.c:13003 -#: config/tc-spu.c:980 config/tc-xtensa.c:13107 +#: cgen.c:856 config/tc-arm.c:2035 config/tc-arm.c:11115 config/tc-arm.c:11167 +#: config/tc-arm.c:11455 config/tc-arm.c:12353 config/tc-arm.c:13502 +#: config/tc-arm.c:13542 config/tc-arm.c:13915 config/tc-arm.c:13957 +#: config/tc-arm.c:21202 config/tc-arm.c:21262 config/tc-mips.c:9713 +#: config/tc-mips.c:11031 config/tc-mips.c:12328 config/tc-mips.c:13009 +#: config/tc-spu.c:970 config/tc-xtensa.c:13113 msgid "expression too complex" msgstr "" -#: cgen.c:961 config/tc-ppc.c:7491 config/tc-s390.c:2602 config/tc-v850.c:3492 +#: cgen.c:956 config/tc-ppc.c:7467 config/tc-s390.c:2613 config/tc-v850.c:3468 #: config/tc-xstormy16.c:541 msgid "unresolved expression that must be resolved" msgstr "" -#: cgen.c:986 config/tc-bpf.c:884 config/tc-xstormy16.c:566 +#: cgen.c:981 config/tc-bpf.c:873 config/tc-xstormy16.c:566 #, c-format msgid "internal error: can't install fix for reloc type %d (`%s')" msgstr "" -#: cgen.c:1039 config/tc-bpf.c:368 config/tc-pru.c:786 +#: cgen.c:1034 config/tc-bpf.c:368 config/tc-pru.c:786 msgid "relocation is not supported" msgstr "" @@ -753,63 +753,63 @@ msgstr "" msgid "invalid identifier for \".ifdef\"" msgstr "" -#: cond.c:151 +#: cond.c:150 msgid "non-constant expression in \".if\" statement" msgstr "" -#: cond.c:279 +#: cond.c:276 msgid "bad format for ifc or ifnc" msgstr "" -#: cond.c:310 +#: cond.c:306 msgid "\".elseif\" without matching \".if\"" msgstr "" -#: cond.c:314 +#: cond.c:310 msgid "\".elseif\" after \".else\"" msgstr "" -#: cond.c:317 cond.c:423 +#: cond.c:313 cond.c:419 msgid "here is the previous \".else\"" msgstr "" -#: cond.c:320 cond.c:426 +#: cond.c:316 cond.c:422 msgid "here is the previous \".if\"" msgstr "" -#: cond.c:349 +#: cond.c:345 msgid "non-constant expression in \".elseif\" statement" msgstr "" -#: cond.c:387 +#: cond.c:383 msgid "\".endif\" without \".if\"" msgstr "" -#: cond.c:416 +#: cond.c:412 msgid "\".else\" without matching \".if\"" msgstr "" -#: cond.c:420 +#: cond.c:416 msgid "duplicate \".else\"" msgstr "" -#: cond.c:471 +#: cond.c:467 msgid ".ifeqs syntax error" msgstr "" -#: cond.c:559 +#: cond.c:553 msgid "end of macro inside conditional" msgstr "" -#: cond.c:561 +#: cond.c:555 msgid "end of file inside conditional" msgstr "" -#: cond.c:565 +#: cond.c:559 msgid "here is the start of the unterminated conditional" msgstr "" -#: cond.c:569 +#: cond.c:563 msgid "here is the \"else\" of the unterminated conditional" msgstr "" @@ -830,7 +830,7 @@ msgid "Infinities are not supported by this target" msgstr "" #: config/atof-ieee.c:825 config/atof-vax.c:449 config/tc-arm.c:1271 -#: config/tc-ia64.c:11573 config/tc-tic30.c:1241 config/tc-tic4x.c:2569 +#: config/tc-ia64.c:11573 config/tc-tic30.c:1241 config/tc-tic4x.c:2565 msgid "Unrecognized or unsupported floating point constant" msgstr "" @@ -844,99 +844,99 @@ msgstr "" msgid "Attempt to put an undefined symbol into set %s" msgstr "" -#: config/obj-aout.c:112 config/obj-coff.c:1378 +#: config/obj-aout.c:112 config/obj-coff.c:1375 #, c-format msgid "Symbol `%s' can not be both weak and common" msgstr "" -#: config/obj-coff.c:206 config/obj-coff.c:1693 config/tc-tic54x.c:4002 -#: read.c:3047 +#: config/obj-coff.c:206 config/obj-coff.c:1697 config/tc-tic54x.c:3991 +#: read.c:3096 #, c-format msgid "error setting flags for \"%s\": %s" msgstr "" #. Zero is used as an end marker in the file. -#: config/obj-coff.c:424 +#: config/obj-coff.c:423 msgid "Line numbers must be positive integers\n" msgstr "" -#: config/obj-coff.c:456 +#: config/obj-coff.c:455 msgid ".ln pseudo-op inside .def/.endef: ignored." msgstr "" -#: config/obj-coff.c:497 ecoff.c:3232 +#: config/obj-coff.c:496 ecoff.c:3204 msgid ".loc outside of .text" msgstr "" -#: config/obj-coff.c:504 +#: config/obj-coff.c:503 msgid ".loc pseudo-op inside .def/.endef: ignored." msgstr "" -#: config/obj-coff.c:584 +#: config/obj-coff.c:577 msgid ".def pseudo-op used inside of .def/.endef: ignored." msgstr "" -#: config/obj-coff.c:617 +#: config/obj-coff.c:614 msgid ".endef pseudo-op used outside of .def/.endef: ignored." msgstr "" -#: config/obj-coff.c:656 +#: config/obj-coff.c:653 #, c-format msgid "`%s' symbol without preceding function" msgstr "" -#: config/obj-coff.c:743 +#: config/obj-coff.c:740 #, c-format msgid "unexpected storage class %d" msgstr "" -#: config/obj-coff.c:850 +#: config/obj-coff.c:847 msgid ".dim pseudo-op used outside of .def/.endef: ignored." msgstr "" -#: config/obj-coff.c:870 +#: config/obj-coff.c:867 msgid "badly formed .dim directive ignored" msgstr "" -#: config/obj-coff.c:919 +#: config/obj-coff.c:916 msgid ".size pseudo-op used outside of .def/.endef: ignored." msgstr "" -#: config/obj-coff.c:934 +#: config/obj-coff.c:931 msgid ".scl pseudo-op used outside of .def/.endef: ignored." msgstr "" -#: config/obj-coff.c:951 +#: config/obj-coff.c:948 msgid ".tag pseudo-op used outside of .def/.endef: ignored." msgstr "" -#: config/obj-coff.c:968 +#: config/obj-coff.c:965 #, c-format msgid "tag not found for .tag %s" msgstr "" -#: config/obj-coff.c:981 +#: config/obj-coff.c:978 msgid ".type pseudo-op used outside of .def/.endef: ignored." msgstr "" -#: config/obj-coff.c:1000 +#: config/obj-coff.c:997 msgid ".val pseudo-op used outside of .def/.endef: ignored." msgstr "" -#: config/obj-coff.c:1147 +#: config/obj-coff.c:1148 msgid "badly formed .weak directive ignored" msgstr "" -#: config/obj-coff.c:1334 +#: config/obj-coff.c:1335 msgid "mismatched .eb" msgstr "" -#: config/obj-coff.c:1357 +#: config/obj-coff.c:1356 #, c-format msgid "C_EFCN symbol for %s out of scope" msgstr "" -#: config/obj-coff.c:1412 +#: config/obj-coff.c:1409 #, c-format msgid "Warning: internal error: forgetting to set endndx of %s" msgstr "" @@ -944,22 +944,22 @@ msgstr "" #. STYP_INFO #. STYP_LIB #. STYP_OVER -#: config/obj-coff.c:1655 +#: config/obj-coff.c:1659 #, c-format msgid "unsupported section attribute '%c'" msgstr "" -#: config/obj-coff.c:1659 +#: config/obj-coff.c:1663 #, c-format msgid "unknown section attribute '%c'" msgstr "" -#: config/obj-coff.c:1705 config/obj-macho.c:269 +#: config/obj-coff.c:1709 config/obj-macho.c:269 #, c-format msgid "Ignoring changed section attributes for %s" msgstr "" -#: config/obj-coff.c:1849 +#: config/obj-coff.c:1853 #, c-format msgid "0x%lx: \"%s\" type = %ld, class = %d, segment = %d\n" msgstr "" @@ -972,7 +972,7 @@ msgstr "" msgid "Can't set register masks" msgstr "" -#: config/obj-elf.c:272 config/tc-sparc.c:4383 config/tc-v850.c:508 +#: config/obj-elf.c:272 config/tc-sparc.c:4387 config/tc-v850.c:506 #, c-format msgid "bad .common segment %s" msgstr "" @@ -981,17 +981,17 @@ msgstr "" msgid "Missing symbol name in directive" msgstr "" -#: config/obj-elf.c:678 +#: config/obj-elf.c:665 #, c-format msgid "setting incorrect section type for %s" msgstr "" -#: config/obj-elf.c:683 +#: config/obj-elf.c:670 #, c-format msgid "ignoring incorrect section type for %s" msgstr "" -#: config/obj-elf.c:742 +#: config/obj-elf.c:729 #, c-format msgid "setting incorrect section attributes for %s" msgstr "" @@ -1000,291 +1000,303 @@ msgstr "" #. assembly might get the section type wrong; Even high #. profile projects like glibc have done so in the past. #. So don't error in this case. -#: config/obj-elf.c:836 +#: config/obj-elf.c:823 #, c-format msgid "ignoring changed section type for %s" msgstr "" #. Do error when assembly isn't self-consistent. -#: config/obj-elf.c:839 +#: config/obj-elf.c:826 #, c-format msgid "changed section type for %s" msgstr "" -#: config/obj-elf.c:854 +#: config/obj-elf.c:841 #, c-format msgid "ignoring changed section attributes for %s" msgstr "" -#: config/obj-elf.c:856 +#: config/obj-elf.c:843 #, c-format msgid "changed section attributes for %s" msgstr "" -#: config/obj-elf.c:865 +#: config/obj-elf.c:852 #, c-format msgid "changed section entity size for %s" msgstr "" -#: config/obj-elf.c:947 +#: config/obj-elf.c:934 msgid "unrecognized .section attribute: want a,e,o,w,x,M,S,G,T or number" msgstr "" -#: config/obj-elf.c:1033 +#: config/obj-elf.c:1019 msgid "extraneous characters at end of numeric section type" msgstr "" -#: config/obj-elf.c:1039 read.c:3031 +#: config/obj-elf.c:1025 read.c:3080 msgid "unrecognized section type" msgstr "" -#: config/obj-elf.c:1064 +#: config/obj-elf.c:1050 msgid "unrecognized section attribute" msgstr "" -#: config/obj-elf.c:1096 config/tc-alpha.c:4208 +#: config/obj-elf.c:1082 config/tc-alpha.c:4180 msgid "missing name" msgstr "" -#: config/obj-elf.c:1166 +#: config/obj-elf.c:1152 msgid "group name not parseable" msgstr "" -#: config/obj-elf.c:1173 +#: config/obj-elf.c:1159 #, c-format msgid "section %s already has a group (%s)" msgstr "" -#: config/obj-elf.c:1226 +#: config/obj-elf.c:1221 #, c-format msgid "section name '%s' already defined as another symbol" msgstr "" -#: config/obj-elf.c:1331 +#. ??? This is here for older versions of gcc that +#. test for gas string merge support with +#. '.section .rodata.str, "aMS", @progbits, 1' +#. Unfortunately '@' begins a comment on arm. +#. This isn't as_warn because gcc tests with +#. --fatal-warnings. +#: config/obj-elf.c:1330 +msgid "missing merge / string entity size, 1 assumed" +msgstr "" + +#: config/obj-elf.c:1339 msgid "invalid merge / string entity size" msgstr "" -#: config/obj-elf.c:1345 -msgid "entity size for SHF_MERGE / SHF_STRINGS not specified" +#. ??? Perhaps we should error here. The manual says that +#. entsize must be specified if SHF_MERGE is set. +#: config/obj-elf.c:1356 +msgid "entity size for SHF_MERGE not specified" msgstr "" -#: config/obj-elf.c:1350 +#: config/obj-elf.c:1369 msgid "bogus SHF_MERGE / SHF_STRINGS for SHT_NOBITS section" msgstr "" -#: config/obj-elf.c:1391 +#: config/obj-elf.c:1410 msgid "? section flag ignored with G present" msgstr "" -#: config/obj-elf.c:1428 +#: config/obj-elf.c:1447 msgid "group name for SHF_GROUP not specified" msgstr "" -#: config/obj-elf.c:1454 +#: config/obj-elf.c:1473 #, c-format msgid "unsupported mbind section info: %s" msgstr "" -#: config/obj-elf.c:1507 +#: config/obj-elf.c:1525 #, c-format msgid "unsupported section id: %s" msgstr "" -#: config/obj-elf.c:1533 +#: config/obj-elf.c:1551 msgid "character following name is not '#'" msgstr "" -#: config/obj-elf.c:1561 +#: config/obj-elf.c:1579 #, c-format msgid "SHF_ALLOC isn't set for GNU_MBIND section: %s" msgstr "" -#: config/obj-elf.c:1568 +#: config/obj-elf.c:1586 #, c-format msgid "%s section is supported only by GNU and FreeBSD targets" msgstr "" -#: config/obj-elf.c:1706 +#: config/obj-elf.c:1724 msgid ".previous without corresponding .section; ignored" msgstr "" -#: config/obj-elf.c:1732 +#: config/obj-elf.c:1750 msgid ".popsection without corresponding .pushsection; ignored" msgstr "" -#: config/obj-elf.c:1776 config/obj-elf.c:1870 +#: config/obj-elf.c:1794 config/obj-elf.c:1888 #, c-format msgid "missing version name in `%s' for symbol `%s'" msgstr "" -#: config/obj-elf.c:1795 +#: config/obj-elf.c:1813 #, c-format msgid "only one version name with `@@@' is allowed for symbol `%s'" msgstr "" -#: config/obj-elf.c:1803 +#: config/obj-elf.c:1821 #, c-format msgid "invalid version name '%s' for symbol `%s'" msgstr "" -#: config/obj-elf.c:1844 +#: config/obj-elf.c:1862 msgid "expected comma after name in .symver" msgstr "" -#: config/obj-elf.c:1861 config/obj-elf.c:2805 +#: config/obj-elf.c:1879 config/obj-elf.c:2807 #, c-format msgid "`%s' can't be versioned to common symbol '%s'" msgstr "" -#: config/obj-elf.c:1938 +#: config/obj-elf.c:1956 #, c-format msgid "expected `%s' to have already been set for .vtable_inherit" msgstr "" -#: config/obj-elf.c:1948 +#: config/obj-elf.c:1966 msgid "expected comma after name in .vtable_inherit" msgstr "" -#: config/obj-elf.c:2009 +#: config/obj-elf.c:2027 msgid "expected comma after name in .vtable_entry" msgstr "" -#: config/obj-elf.c:2148 +#: config/obj-elf.c:2166 #, c-format msgid "Attribute name not recognised: %s" msgstr "" -#: config/obj-elf.c:2165 +#: config/obj-elf.c:2183 msgid "expected numeric constant" msgstr "" -#: config/obj-elf.c:2174 config/tc-arm.c:6970 +#: config/obj-elf.c:2192 config/tc-arm.c:6959 msgid "expected comma" msgstr "" -#: config/obj-elf.c:2205 config/tc-arc.c:4946 config/tc-arc.c:4957 -#: config/tc-arc.c:5029 config/tc-arc.c:5080 config/tc-arm.c:32197 -#: config/tc-arm.c:32208 config/tc-csky.c:1697 config/tc-csky.c:1709 -#: config/tc-csky.c:1880 config/tc-mips.c:20645 config/tc-msp430.c:5148 -#: config/tc-riscv.c:5523 config/tc-riscv.c:5566 config/tc-sparc.c:1134 -#: config/tc-tic6x.c:4384 +#: config/obj-elf.c:2223 config/tc-arc.c:4943 config/tc-arc.c:4954 +#: config/tc-arc.c:5026 config/tc-arc.c:5077 config/tc-arm.c:32142 +#: config/tc-arm.c:32153 config/tc-csky.c:1721 config/tc-csky.c:1733 +#: config/tc-csky.c:1904 config/tc-mips.c:20662 config/tc-msp430.c:5152 +#: config/tc-riscv.c:5657 config/tc-riscv.c:5700 config/tc-sparc.c:1134 +#: config/tc-tic6x.c:4383 #, c-format msgid "error adding attribute: %s" msgstr "" -#: config/obj-elf.c:2211 +#: config/obj-elf.c:2229 msgid "bad string constant" msgstr "" -#: config/obj-elf.c:2215 +#: config/obj-elf.c:2233 msgid "expected <tag> , <value>" msgstr "" -#: config/obj-elf.c:2344 +#: config/obj-elf.c:2348 msgid "expected quoted string" msgstr "" -#: config/obj-elf.c:2364 +#: config/obj-elf.c:2368 #, c-format msgid "expected comma after name `%s' in .size directive" msgstr "" -#: config/obj-elf.c:2373 +#: config/obj-elf.c:2377 msgid "missing expression in .size directive" msgstr "" -#: config/obj-elf.c:2500 +#: config/obj-elf.c:2503 #, c-format msgid "symbol '%s' is already defined" msgstr "" -#: config/obj-elf.c:2520 +#: config/obj-elf.c:2523 #, c-format msgid "symbol type \"%s\" is supported only by GNU and FreeBSD targets" msgstr "" -#: config/obj-elf.c:2524 +#: config/obj-elf.c:2527 #, c-format msgid "symbol type \"%s\" is not supported by MIPS targets" msgstr "" -#: config/obj-elf.c:2536 +#: config/obj-elf.c:2539 #, c-format msgid "symbol type \"%s\" is supported only by GNU targets" msgstr "" -#: config/obj-elf.c:2546 config/tc-kvx.c:2279 +#: config/obj-elf.c:2549 config/tc-kvx.c:2279 #, c-format msgid "unrecognized symbol type \"%s\"" msgstr "" -#: config/obj-elf.c:2567 +#: config/obj-elf.c:2570 #, c-format msgid "cannot change type of common symbol '%s'" msgstr "" -#: config/obj-elf.c:2579 +#: config/obj-elf.c:2582 #, c-format msgid "symbol '%s' already has its type set" msgstr "" -#: config/obj-elf.c:2681 +#: config/obj-elf.c:2684 #, c-format msgid "undefined linked-to symbol `%s' on section `%s'" msgstr "" -#: config/obj-elf.c:2778 config/obj-elf.c:2781 +#: config/obj-elf.c:2781 config/obj-elf.c:2784 #, c-format msgid ".size expression for %s does not evaluate to a constant" msgstr "" -#: config/obj-elf.c:2870 +#: config/obj-elf.c:2872 #, c-format msgid "symbol '%s' with multiple versions cannot be used in relocation" msgstr "" -#: config/obj-elf.c:2888 ecoff.c:3576 +#: config/obj-elf.c:2890 ecoff.c:3539 #, c-format msgid "symbol `%s' can not be both weak and common" msgstr "" -#: config/obj-elf.c:2932 +#: config/obj-elf.c:2934 #, c-format msgid "assuming all members of group `%s' are COMDAT" msgstr "" -#: config/obj-elf.c:2944 +#: config/obj-elf.c:2946 #, c-format msgid "can't create group: %s" msgstr "" -#: config/obj-elf.c:3021 +#: config/obj-elf.c:3023 #, c-format msgid "" "invalid attempt to declare external version name as default in symbol `%s'" msgstr "" -#: config/obj-elf.c:3031 +#: config/obj-elf.c:3033 #, c-format msgid "multiple versions [`%s'|`%s'] for symbol `%s'" msgstr "" -#: config/obj-elf.c:3120 +#: config/obj-elf.c:3123 #, c-format msgid "failed to set up debugging information: %s" msgstr "" -#: config/obj-elf.c:3140 +#: config/obj-elf.c:3143 #, c-format msgid "can't start writing .mdebug section: %s" msgstr "" -#: config/obj-elf.c:3148 +#: config/obj-elf.c:3151 #, c-format msgid "could not write .mdebug section: %s" msgstr "" -#: config/obj-evax.c:122 +#: config/obj-evax.c:121 #, c-format msgid "no entry symbol for global function '%s'" msgstr "" @@ -1336,32 +1348,32 @@ msgstr "" msgid "missing sizeof_stub expression" msgstr "" -#: config/obj-macho.c:478 config/tc-ia64.c:1080 config/tc-ia64.c:11734 -#: config/tc-score.c:6073 expr.c:1260 read.c:1784 +#: config/obj-macho.c:478 config/tc-ia64.c:1080 config/tc-ia64.c:11733 +#: config/tc-score.c:6072 expr.c:1274 read.c:1780 msgid "expected symbol name" msgstr "" -#: config/obj-macho.c:491 read.c:558 +#: config/obj-macho.c:491 read.c:539 msgid "bad or irreducible absolute expression" msgstr "" -#: config/obj-macho.c:497 config/tc-score.c:6090 read.c:1823 +#: config/obj-macho.c:497 config/tc-score.c:6089 read.c:1819 msgid "missing size expression" msgstr "" -#: config/obj-macho.c:506 config/tc-ia64.c:1115 read.c:1829 +#: config/obj-macho.c:506 config/tc-ia64.c:1115 read.c:1825 #, c-format msgid "size (%ld) out of range, ignored" msgstr "" -#: config/obj-macho.c:516 config/tc-score.c:6216 dwarf2dbg.c:1431 ecoff.c:3345 -#: read.c:1841 read.c:1944 read.c:2718 read.c:3311 read.c:3906 symbols.c:579 -#: symbols.c:674 +#: config/obj-macho.c:516 config/tc-score.c:6215 dwarf2dbg.c:1431 ecoff.c:3315 +#: read.c:1837 read.c:1940 read.c:2767 read.c:3359 read.c:3959 symbols.c:574 +#: symbols.c:666 #, c-format msgid "symbol `%s' is already defined" msgstr "" -#: config/obj-macho.c:526 read.c:1856 +#: config/obj-macho.c:526 read.c:1852 #, c-format msgid "size of \"%s\" is already %ld; not changing to %ld" msgstr "" @@ -1460,19 +1472,14 @@ msgstr "" msgid "`%s' and `%s' can't be undefined in `%s' - `%s'" msgstr "" -#: config/obj-macho.c:1806 +#: config/obj-macho.c:1805 #, c-format msgid "" "the number of .indirect_symbols defined in section %s does not match the " "number expected (%d defined, %d expected)" msgstr "" -#: config/obj-macho.c:1826 -#, c-format -msgid "internal error: failed to allocate %d indirectsymbol pointers" -msgstr "" - -#: config/obj-macho.c:1840 config/obj-macho.c:1863 +#: config/obj-macho.c:1834 config/obj-macho.c:1857 msgid "internal error: more indirect mach-o symbols than expected" msgstr "" @@ -1655,11 +1662,11 @@ msgid "expected an SVE vector register or ZA tile slice at operand %d" msgstr "" #: config/tc-aarch64.c:715 config/tc-aarch64.c:717 config/tc-arm.c:1188 -#: config/tc-score.c:6435 expr.c:1423 read.c:2700 +#: config/tc-score.c:6434 expr.c:1446 read.c:2749 msgid "bad expression" msgstr "" -#: config/tc-aarch64.c:728 config/tc-sparc.c:3380 +#: config/tc-aarch64.c:728 config/tc-sparc.c:3386 msgid "bad segment" msgstr "" @@ -1695,9 +1702,9 @@ msgstr "" msgid "missing predication type" msgstr "" -#: config/tc-aarch64.c:1176 config/tc-aarch64.c:2324 config/tc-aarch64.c:2585 -#: config/tc-arm.c:1765 config/tc-arm.c:3972 config/tc-arm.c:5205 -#: config/tc-arm.c:7251 +#: config/tc-aarch64.c:1176 config/tc-aarch64.c:2324 config/tc-aarch64.c:2594 +#: config/tc-arm.c:1758 config/tc-arm.c:3965 config/tc-arm.c:5199 +#: config/tc-arm.c:7240 msgid "constant expression required" msgstr "" @@ -1758,30 +1765,30 @@ msgstr "" msgid "empty vector register list" msgstr "" -#: config/tc-aarch64.c:1609 config/tc-arm.c:2534 +#: config/tc-aarch64.c:1609 config/tc-arm.c:2526 #, c-format msgid "ignoring attempt to redefine built-in register '%s'" msgstr "" -#: config/tc-aarch64.c:1615 config/tc-arm.c:2539 +#: config/tc-aarch64.c:1615 config/tc-arm.c:2531 #, c-format msgid "ignoring redefinition of register alias '%s'" msgstr "" -#: config/tc-aarch64.c:1660 config/tc-arm.c:2604 +#: config/tc-aarch64.c:1660 config/tc-arm.c:2596 #, c-format msgid "unknown register '%s' -- .req ignored" msgstr "" -#: config/tc-aarch64.c:1718 config/tc-arm.c:2812 +#: config/tc-aarch64.c:1718 config/tc-arm.c:2804 msgid "invalid syntax for .req directive" msgstr "" -#: config/tc-aarch64.c:1739 config/tc-arm.c:2845 +#: config/tc-aarch64.c:1739 config/tc-arm.c:2837 msgid "invalid syntax for .unreq directive" msgstr "" -#: config/tc-aarch64.c:1745 config/tc-arm.c:2852 +#: config/tc-aarch64.c:1745 config/tc-arm.c:2843 #, c-format msgid "unknown register alias '%s'" msgstr "" @@ -1791,13 +1798,13 @@ msgstr "" msgid "ignoring attempt to undefine built-in register '%s'" msgstr "" -#: config/tc-aarch64.c:2061 config/tc-arm.c:3583 config/tc-arm.c:3610 -#: config/tc-arm.c:3623 +#: config/tc-aarch64.c:2061 config/tc-arm.c:3577 config/tc-arm.c:3604 +#: config/tc-arm.c:3617 msgid "literal pool overflow" msgstr "" -#: config/tc-aarch64.c:2242 config/tc-aarch64.c:7473 config/tc-arm.c:3845 -#: config/tc-arm.c:7677 +#: config/tc-aarch64.c:2242 config/tc-aarch64.c:7535 config/tc-arm.c:3839 +#: config/tc-arm.c:7666 msgid "unrecognized relocation suffix" msgstr "" @@ -1805,1220 +1812,1214 @@ msgstr "" msgid "unimplemented relocation suffix" msgstr "" -#: config/tc-aarch64.c:2552 config/tc-aarch64.c:2743 config/tc-aarch64.c:2787 -#: config/tc-csky.c:2336 +#: config/tc-aarch64.c:2561 config/tc-aarch64.c:2752 config/tc-aarch64.c:2796 +#: config/tc-csky.c:2360 msgid "immediate operand required" msgstr "" -#: config/tc-aarch64.c:2561 +#: config/tc-aarch64.c:2570 msgid "missing immediate expression" msgstr "" -#: config/tc-aarch64.c:2767 config/tc-aarch64.c:7296 config/tc-aarch64.c:7316 +#: config/tc-aarch64.c:2776 config/tc-aarch64.c:7351 config/tc-aarch64.c:7373 msgid "invalid floating-point constant" msgstr "" -#: config/tc-aarch64.c:3575 config/tc-arm.c:5452 config/tc-arm.c:5462 +#: config/tc-aarch64.c:3584 config/tc-arm.c:5446 config/tc-arm.c:5454 msgid "shift expression expected" msgstr "" -#: config/tc-aarch64.c:3583 +#: config/tc-aarch64.c:3592 msgid "shift operator expected" msgstr "" -#: config/tc-aarch64.c:3591 +#: config/tc-aarch64.c:3600 msgid "invalid use of 'MSL'" msgstr "" -#: config/tc-aarch64.c:3599 +#: config/tc-aarch64.c:3608 msgid "invalid use of 'MUL'" msgstr "" -#: config/tc-aarch64.c:3608 +#: config/tc-aarch64.c:3617 msgid "extending shift is not permitted" msgstr "" -#: config/tc-aarch64.c:3616 +#: config/tc-aarch64.c:3625 msgid "'ROR' shift is not permitted" msgstr "" -#: config/tc-aarch64.c:3624 +#: config/tc-aarch64.c:3633 msgid "only 'LSL' shift is permitted" msgstr "" -#: config/tc-aarch64.c:3632 +#: config/tc-aarch64.c:3641 msgid "only 'MUL' is permitted" msgstr "" -#: config/tc-aarch64.c:3650 +#: config/tc-aarch64.c:3659 msgid "only 'MUL VL' is permitted" msgstr "" -#: config/tc-aarch64.c:3658 +#: config/tc-aarch64.c:3667 msgid "invalid shift for the register offset addressing mode" msgstr "" -#: config/tc-aarch64.c:3666 +#: config/tc-aarch64.c:3675 msgid "invalid shift operator" msgstr "" -#: config/tc-aarch64.c:3700 +#: config/tc-aarch64.c:3709 msgid "missing shift amount" msgstr "" -#: config/tc-aarch64.c:3707 +#: config/tc-aarch64.c:3716 msgid "constant shift amount required" msgstr "" -#: config/tc-aarch64.c:3716 +#: config/tc-aarch64.c:3725 msgid "shift amount out of range 0 to 63" msgstr "" -#: config/tc-aarch64.c:3766 +#: config/tc-aarch64.c:3775 msgid "unexpected shift operator" msgstr "" -#: config/tc-aarch64.c:3802 +#: config/tc-aarch64.c:3811 msgid "unexpected register in the immediate operand" msgstr "" -#: config/tc-aarch64.c:3827 +#: config/tc-aarch64.c:3836 msgid "integer register expected in the extended/shifted operand register" msgstr "" -#: config/tc-aarch64.c:3865 +#: config/tc-aarch64.c:3874 msgid "integer register expected in the shifted operand register" msgstr "" -#: config/tc-aarch64.c:3897 config/tc-aarch64.c:4084 config/tc-aarch64.c:4225 -#: config/tc-aarch64.c:4425 config/tc-aarch64.c:4467 +#: config/tc-aarch64.c:3906 config/tc-aarch64.c:4093 config/tc-aarch64.c:4234 +#: config/tc-aarch64.c:4434 config/tc-aarch64.c:4476 msgid "unknown relocation modifier" msgstr "" -#: config/tc-aarch64.c:3904 config/tc-aarch64.c:4103 config/tc-aarch64.c:4232 -#: config/tc-aarch64.c:4432 config/tc-aarch64.c:4474 +#: config/tc-aarch64.c:3913 config/tc-aarch64.c:4112 config/tc-aarch64.c:4241 +#: config/tc-aarch64.c:4441 config/tc-aarch64.c:4483 msgid "this relocation modifier is not allowed on this instruction" msgstr "" -#: config/tc-aarch64.c:4112 config/tc-aarch64.c:4244 +#: config/tc-aarch64.c:4121 config/tc-aarch64.c:4253 msgid "invalid relocation expression" msgstr "" -#: config/tc-aarch64.c:4129 +#: config/tc-aarch64.c:4138 msgid "invalid address" msgstr "" -#: config/tc-aarch64.c:4147 +#: config/tc-aarch64.c:4156 msgid "expected a 64-bit base register" msgstr "" -#: config/tc-aarch64.c:4149 +#: config/tc-aarch64.c:4158 msgid "invalid base register" msgstr "" -#: config/tc-aarch64.c:4151 +#: config/tc-aarch64.c:4160 msgid "expected a base register" msgstr "" -#: config/tc-aarch64.c:4167 config/tc-aarch64.c:4305 +#: config/tc-aarch64.c:4176 config/tc-aarch64.c:4314 msgid "invalid offset register" msgstr "" -#: config/tc-aarch64.c:4194 +#: config/tc-aarch64.c:4203 msgid "invalid use of 32-bit register offset" msgstr "" -#: config/tc-aarch64.c:4203 +#: config/tc-aarch64.c:4212 msgid "offset has different size from base" msgstr "" -#: config/tc-aarch64.c:4209 +#: config/tc-aarch64.c:4218 msgid "invalid use of 64-bit register offset" msgstr "" #. [Xn],#expr -#: config/tc-aarch64.c:4258 config/tc-aarch64.c:4316 +#: config/tc-aarch64.c:4267 config/tc-aarch64.c:4325 msgid "invalid expression in the address" msgstr "" -#: config/tc-aarch64.c:4272 config/tc-arm.c:6051 config/tc-arm.c:6650 +#: config/tc-aarch64.c:4281 config/tc-arm.c:6043 config/tc-arm.c:6639 msgid "']' expected" msgstr "" -#: config/tc-aarch64.c:4280 +#: config/tc-aarch64.c:4289 msgid "register offset not allowed in pre-indexed addressing mode" msgstr "" -#: config/tc-aarch64.c:4295 config/tc-arm.c:6087 +#: config/tc-aarch64.c:4304 config/tc-arm.c:6079 msgid "cannot combine pre- and post-indexing" msgstr "" #. Reject [Rn]! -#: config/tc-aarch64.c:4340 +#: config/tc-aarch64.c:4349 msgid "missing offset in the pre-indexed address" msgstr "" -#: config/tc-aarch64.c:4683 +#: config/tc-aarch64.c:4694 msgid "expected '['" msgstr "" -#: config/tc-aarch64.c:4691 +#: config/tc-aarch64.c:4702 msgid "expected a 32-bit selection register" msgstr "" -#: config/tc-aarch64.c:4698 +#: config/tc-aarch64.c:4709 msgid "missing immediate offset" msgstr "" -#: config/tc-aarch64.c:4704 config/tc-aarch64.c:4713 +#: config/tc-aarch64.c:4715 config/tc-aarch64.c:4724 msgid "expected a constant immediate offset" msgstr "" -#: config/tc-aarch64.c:4718 +#: config/tc-aarch64.c:4729 msgid "the last offset is less than the first offset" msgstr "" -#: config/tc-aarch64.c:4724 +#: config/tc-aarch64.c:4735 msgid "the last offset is equal to the first offset" msgstr "" -#: config/tc-aarch64.c:4746 +#: config/tc-aarch64.c:4757 msgid "invalid vector group size" msgstr "" -#: config/tc-aarch64.c:4753 +#: config/tc-aarch64.c:4764 msgid "expected ']'" msgstr "" -#: config/tc-aarch64.c:4813 config/tc-aarch64.c:4921 +#: config/tc-aarch64.c:4824 config/tc-aarch64.c:4932 msgid "expected '}'" msgstr "" -#: config/tc-aarch64.c:4872 +#: config/tc-aarch64.c:4883 msgid "ZA tile masks do not operate at .Q granularity" msgstr "" -#: config/tc-aarch64.c:4878 +#: config/tc-aarch64.c:4889 msgid "missing ZA tile size" msgstr "" -#: config/tc-aarch64.c:4883 +#: config/tc-aarch64.c:4894 msgid "invalid ZA tile" msgstr "" -#: config/tc-aarch64.c:4908 +#: config/tc-aarch64.c:4919 msgid "expected '{'" msgstr "" -#: config/tc-aarch64.c:4949 +#: config/tc-aarch64.c:4960 msgid "expected SM or ZA operand" msgstr "" -#: config/tc-aarch64.c:5012 +#: config/tc-aarch64.c:5028 #, c-format msgid "selected processor does not support PSTATE field name '%s'" msgstr "" -#: config/tc-aarch64.c:5017 config/tc-aarch64.c:5062 +#: config/tc-aarch64.c:5033 config/tc-aarch64.c:5078 #, c-format msgid "selected processor does not support system register name '%s'" msgstr "" -#: config/tc-aarch64.c:5020 +#: config/tc-aarch64.c:5036 #, c-format msgid "128-bit-wide accsess not allowed on selected system register '%s'" msgstr "" -#: config/tc-aarch64.c:5023 config/tc-aarch64.c:5065 +#: config/tc-aarch64.c:5039 config/tc-aarch64.c:5081 #, c-format msgid "" "system register name '%s' is deprecated and may be removed in a future " "release" msgstr "" -#: config/tc-aarch64.c:5104 +#: config/tc-aarch64.c:5122 msgid "immediate value out of range " msgstr "" -#: config/tc-aarch64.c:5707 messages.c:151 +#: config/tc-aarch64.c:5733 messages.c:151 #, c-format msgid "Info: " msgstr "" -#: config/tc-aarch64.c:5725 +#: config/tc-aarch64.c:5751 #, c-format msgid "missing braces at operand %d" msgstr "" -#: config/tc-aarch64.c:5736 +#: config/tc-aarch64.c:5762 #, c-format msgid "unexpected register type at operand %d" msgstr "" -#: config/tc-aarch64.c:5747 +#: config/tc-aarch64.c:5773 #, c-format msgid "invalid register list at operand %d" msgstr "" -#: config/tc-aarch64.c:5760 +#: config/tc-aarch64.c:5786 #, c-format msgid "expected a register at operand %d" msgstr "" -#: config/tc-aarch64.c:5767 +#: config/tc-aarch64.c:5793 #, c-format msgid "expected '{' at operand %d" msgstr "" -#: config/tc-aarch64.c:5769 +#: config/tc-aarch64.c:5795 #, c-format msgid "expected a register or register list at operand %d" msgstr "" -#: config/tc-aarch64.c:5794 +#: config/tc-aarch64.c:5820 #, c-format msgid "this `%s' should have an immediately preceding `%s' -- `%s'" msgstr "" -#: config/tc-aarch64.c:5800 +#: config/tc-aarch64.c:5826 #, c-format msgid "the preceding `%s' should be followed by `%s` rather than `%s` -- `%s'" msgstr "" -#: config/tc-aarch64.c:5812 config/tc-aarch64.c:5827 config/tc-score.c:2748 -#: config/tc-score.c:6424 +#: config/tc-aarch64.c:5838 config/tc-aarch64.c:5853 config/tc-score.c:2745 +#: config/tc-score.c:6423 #, c-format msgid "%s -- `%s'" msgstr "" -#: config/tc-aarch64.c:5829 +#: config/tc-aarch64.c:5855 #, c-format msgid "%s at operand %d -- `%s'" msgstr "" -#: config/tc-aarch64.c:5835 +#: config/tc-aarch64.c:5861 #, c-format msgid "operand %d must be %s -- `%s'" msgstr "" -#: config/tc-aarch64.c:5841 +#: config/tc-aarch64.c:5867 #, c-format msgid "operand mismatch -- `%s'" msgstr "" #. Print the hint. -#: config/tc-aarch64.c:5901 +#: config/tc-aarch64.c:5927 msgid " did you mean this?" msgstr "" -#: config/tc-aarch64.c:5904 config/tc-aarch64.c:5931 +#: config/tc-aarch64.c:5930 config/tc-aarch64.c:5957 #, c-format msgid " %s" msgstr "" -#: config/tc-aarch64.c:5909 +#: config/tc-aarch64.c:5935 msgid " other valid variant(s):" msgstr "" -#: config/tc-aarch64.c:5938 +#: config/tc-aarch64.c:5964 #, c-format msgid "operand %d must have the same immediate value as operand 1 -- `%s'" msgstr "" -#: config/tc-aarch64.c:5944 +#: config/tc-aarch64.c:5970 #, c-format msgid "operand %d must be the same register as operand 1 -- `%s'" msgstr "" -#: config/tc-aarch64.c:5949 +#: config/tc-aarch64.c:5975 #, c-format msgid "%s%d-%s%d expected at operand %d -- `%s'" msgstr "" -#: config/tc-aarch64.c:5956 +#: config/tc-aarch64.c:5982 #, c-format msgid "%s out of range %d to %d at operand %d -- `%s'" msgstr "" -#: config/tc-aarch64.c:5957 config/tc-aarch64.c:5961 config/tc-aarch64.c:8372 +#: config/tc-aarch64.c:5983 config/tc-aarch64.c:5987 config/tc-aarch64.c:8470 msgid "immediate value" msgstr "" -#: config/tc-aarch64.c:5960 +#: config/tc-aarch64.c:5986 #, c-format msgid "%s must be %d at operand %d -- `%s'" msgstr "" -#: config/tc-aarch64.c:5967 +#: config/tc-aarch64.c:5993 #, c-format msgid "unexpected vector group size at operand %d -- `%s'" msgstr "" -#: config/tc-aarch64.c:5970 +#: config/tc-aarch64.c:5996 #, c-format msgid "operand %d must have a vector group size of %d -- `%s'" msgstr "" -#: config/tc-aarch64.c:5976 +#: config/tc-aarch64.c:6002 #, c-format msgid "expected a single-register list at operand %d -- `%s'" msgstr "" -#: config/tc-aarch64.c:5979 +#: config/tc-aarch64.c:6005 #, c-format msgid "expected a list of %d registers at operand %d -- `%s'" msgstr "" -#: config/tc-aarch64.c:5982 +#: config/tc-aarch64.c:6008 #, c-format msgid "expected a list of %d or %d registers at operand %d -- `%s'" msgstr "" -#: config/tc-aarch64.c:5986 +#: config/tc-aarch64.c:6012 #, c-format msgid "invalid number of registers in the list at operand %d -- `%s'" msgstr "" -#: config/tc-aarch64.c:5992 +#: config/tc-aarch64.c:6018 #, c-format msgid "the register list must have a stride of %d at operand %d -- `%s'" msgstr "" -#: config/tc-aarch64.c:5995 +#: config/tc-aarch64.c:6021 #, c-format msgid "the register list must have a stride of %d or %d at operand %d -- `%s`" msgstr "" -#: config/tc-aarch64.c:5999 +#: config/tc-aarch64.c:6025 #, c-format msgid "invalid register stride at operand %d -- `%s'" msgstr "" -#: config/tc-aarch64.c:6004 +#: config/tc-aarch64.c:6030 #, c-format msgid "immediate value must be a multiple of %d at operand %d -- `%s'" msgstr "" -#: config/tc-aarch64.c:6448 +#: config/tc-aarch64.c:6473 msgid "the specified relocation type is not allowed for MOVK" msgstr "" -#: config/tc-aarch64.c:6496 config/tc-aarch64.c:6507 +#: config/tc-aarch64.c:6521 config/tc-aarch64.c:6532 msgid "the specified relocation type is not allowed for 32-bit register" msgstr "" -#: config/tc-aarch64.c:6602 +#: config/tc-aarch64.c:6627 msgid "relocation qualifier does not match instruction size" msgstr "" -#: config/tc-aarch64.c:6703 +#: config/tc-aarch64.c:6741 msgid "comma expected between operands" msgstr "" -#: config/tc-aarch64.c:6739 +#: config/tc-aarch64.c:6777 msgid "invalid Rt register number in 64-byte load/store" msgstr "" -#: config/tc-aarch64.c:6876 +#: config/tc-aarch64.c:6915 msgid "the top half of a 128-bit FP/SIMD register is expected" msgstr "" -#: config/tc-aarch64.c:6989 config/tc-aarch64.c:7039 config/tc-arm.c:2207 -#: config/tc-arm.c:2252 config/tc-h8300.c:1041 +#: config/tc-aarch64.c:7029 config/tc-aarch64.c:7079 config/tc-arm.c:2200 +#: config/tc-arm.c:2245 config/tc-h8300.c:1041 msgid "invalid register list" msgstr "" -#: config/tc-aarch64.c:7046 +#: config/tc-aarch64.c:7086 msgid "expected element type rather than vector type" msgstr "" -#: config/tc-aarch64.c:7064 +#: config/tc-aarch64.c:7104 msgid "missing type suffix" msgstr "" -#: config/tc-aarch64.c:7086 +#: config/tc-aarch64.c:7126 msgid "C8 - C9 expected" msgstr "" -#: config/tc-aarch64.c:7092 +#: config/tc-aarch64.c:7132 msgid "C0 - C7 expected" msgstr "" -#: config/tc-aarch64.c:7098 +#: config/tc-aarch64.c:7138 msgid "C0 - C15 expected" msgstr "" -#: config/tc-aarch64.c:7210 config/tc-aarch64.c:7234 +#: config/tc-aarch64.c:7260 config/tc-aarch64.c:7286 msgid "immediate zero expected" msgstr "" -#: config/tc-aarch64.c:7331 +#: config/tc-aarch64.c:7388 msgid "shift not allowed for bitmask immediate" msgstr "" -#: config/tc-aarch64.c:7385 +#: config/tc-aarch64.c:7442 msgid "can't mix relocation modifier with explicit shift" msgstr "" -#: config/tc-aarch64.c:7434 config/tc-arm.c:15723 config/tc-arm.c:15748 -#: config/tc-arm.c:15759 config/tc-arm.c:15766 +#: config/tc-aarch64.c:7495 config/tc-arm.c:15712 config/tc-arm.c:15737 +#: config/tc-arm.c:15748 config/tc-arm.c:15755 msgid "invalid condition" msgstr "" -#: config/tc-aarch64.c:7460 +#: config/tc-aarch64.c:7522 msgid "invalid pc-relative address" msgstr "" #. Only permit "=value" in the literal load instructions. #. The literal will be generated by programmer_friendly_fixup. -#: config/tc-aarch64.c:7468 +#: config/tc-aarch64.c:7530 msgid "invalid use of \"=immediate\"" msgstr "" -#: config/tc-aarch64.c:7531 config/tc-aarch64.c:7556 config/tc-aarch64.c:7578 -#: config/tc-aarch64.c:7610 config/tc-aarch64.c:7628 config/tc-aarch64.c:7652 -#: config/tc-aarch64.c:7672 config/tc-aarch64.c:7692 config/tc-aarch64.c:7711 -#: config/tc-aarch64.c:7734 config/tc-aarch64.c:7788 config/tc-aarch64.c:7795 -#: config/tc-aarch64.c:7823 config/tc-aarch64.c:7845 config/tc-aarch64.c:7870 -#: config/tc-aarch64.c:7888 config/tc-aarch64.c:7896 config/tc-aarch64.c:7913 -#: config/tc-aarch64.c:7937 +#: config/tc-aarch64.c:7596 config/tc-aarch64.c:7621 config/tc-aarch64.c:7643 +#: config/tc-aarch64.c:7675 config/tc-aarch64.c:7693 config/tc-aarch64.c:7717 +#: config/tc-aarch64.c:7737 config/tc-aarch64.c:7757 config/tc-aarch64.c:7776 +#: config/tc-aarch64.c:7799 config/tc-aarch64.c:7853 config/tc-aarch64.c:7860 +#: config/tc-aarch64.c:7905 config/tc-aarch64.c:7927 config/tc-aarch64.c:7952 +#: config/tc-aarch64.c:7970 config/tc-aarch64.c:7978 config/tc-aarch64.c:7995 +#: config/tc-aarch64.c:8019 msgid "invalid addressing mode" msgstr "" -#: config/tc-aarch64.c:7594 +#: config/tc-aarch64.c:7659 msgid "the optional immediate offset can only be 0" msgstr "" -#: config/tc-aarch64.c:7633 config/tc-aarch64.c:7657 config/tc-aarch64.c:7677 -#: config/tc-aarch64.c:7697 +#: config/tc-aarch64.c:7698 config/tc-aarch64.c:7722 config/tc-aarch64.c:7742 +#: config/tc-aarch64.c:7762 msgid "relocation not allowed" msgstr "" -#: config/tc-aarch64.c:7744 +#: config/tc-aarch64.c:7809 msgid "writeback value must be an immediate constant" msgstr "" -#: config/tc-aarch64.c:7755 config/tc-aarch64.c:7965 +#: config/tc-aarch64.c:7820 config/tc-aarch64.c:8047 msgid "unknown or missing PSTATE field name" msgstr "" #. Make sure this has priority over #. "invalid addressing mode". -#: config/tc-aarch64.c:7803 +#: config/tc-aarch64.c:7868 msgid "constant offset required" msgstr "" -#: config/tc-aarch64.c:7951 +#: config/tc-aarch64.c:8033 msgid "unknown or missing system register name" msgstr "" -#: config/tc-aarch64.c:8004 +#: config/tc-aarch64.c:8086 msgid "unknown or missing operation name" msgstr "" -#: config/tc-aarch64.c:8017 +#: config/tc-aarch64.c:8099 msgid "the specified option is not accepted in ISB" msgstr "" -#: config/tc-aarch64.c:8029 config/tc-aarch64.c:8046 +#: config/tc-aarch64.c:8111 config/tc-aarch64.c:8128 msgid "the specified option is not accepted in DSB" msgstr "" -#: config/tc-aarch64.c:8060 +#: config/tc-aarch64.c:8144 msgid "immediate value must be 16, 20, 24, 28" msgstr "" -#: config/tc-aarch64.c:8097 config/tc-aarch64.c:8132 +#: config/tc-aarch64.c:8158 +msgid "" +"invalid prefetch operation (IR is not valid for this instruction variant)" +msgstr "" + +#: config/tc-aarch64.c:8190 config/tc-aarch64.c:8225 msgid "missing register index" msgstr "" -#: config/tc-aarch64.c:8119 +#: config/tc-aarch64.c:8212 msgid "expected '}' after ZT0" msgstr "" -#: config/tc-aarch64.c:8246 config/tc-aarch64.c:9603 config/tc-arm.c:7945 +#: config/tc-aarch64.c:8344 config/tc-aarch64.c:9675 config/tc-arm.c:7934 #, c-format msgid "unhandled operand code %d" msgstr "" -#: config/tc-aarch64.c:8292 +#: config/tc-aarch64.c:8390 msgid "unexpected comma before the omitted optional operand" msgstr "" -#: config/tc-aarch64.c:8320 +#: config/tc-aarch64.c:8418 msgid "unexpected characters following instruction" msgstr "" -#: config/tc-aarch64.c:8398 config/tc-arm.c:5577 config/tc-arm.c:6195 -#: config/tc-arm.c:8757 +#: config/tc-aarch64.c:8496 config/tc-arm.c:5569 config/tc-arm.c:6187 +#: config/tc-arm.c:8746 msgid "constant expression expected" msgstr "" -#: config/tc-aarch64.c:8405 +#: config/tc-aarch64.c:8503 msgid "literal pool insertion failed" msgstr "" -#: config/tc-aarch64.c:8476 config/tc-aarch64.c:8529 +#: config/tc-aarch64.c:8575 config/tc-aarch64.c:8594 #, c-format msgid "unpredictable transfer with writeback -- `%s'" msgstr "" -#. ldiapp, stilp -#: config/tc-aarch64.c:8488 -#, c-format -msgid "unpredictable load pair transfer with register overlap -- `%s'" -msgstr "" - -#: config/tc-aarch64.c:8506 -#, c-format -msgid "unpredictable transfer with writeback (load) -- `%s'" -msgstr "" - -#: config/tc-aarch64.c:8510 -#, c-format -msgid "unpredictable transfer with writeback (store) -- `%s'" -msgstr "" - -#: config/tc-aarch64.c:8533 config/tc-aarch64.c:8547 +#: config/tc-aarch64.c:8598 config/tc-aarch64.c:8612 #, c-format msgid "unpredictable load of register pair -- `%s'" msgstr "" -#: config/tc-aarch64.c:8554 config/tc-aarch64.c:8567 +#: config/tc-aarch64.c:8619 config/tc-aarch64.c:8632 #, c-format msgid "unpredictable: identical transfer and status registers --`%s'" msgstr "" -#: config/tc-aarch64.c:8562 config/tc-aarch64.c:8576 +#: config/tc-aarch64.c:8627 config/tc-aarch64.c:8641 #, c-format msgid "unpredictable: identical base and status registers --`%s'" msgstr "" -#: config/tc-aarch64.c:8596 +#: config/tc-aarch64.c:8661 #, c-format msgid "previous `%s' sequence has not been closed" msgstr "" -#: config/tc-aarch64.c:8685 +#: config/tc-aarch64.c:8750 #, c-format msgid "unknown mnemonic -- `%s'" msgstr "" -#: config/tc-aarch64.c:8695 +#: config/tc-aarch64.c:8760 #, c-format msgid "unknown mnemonic `%s' -- `%s'" msgstr "" -#: config/tc-aarch64.c:8703 +#: config/tc-aarch64.c:8768 #, c-format msgid "unexpected comma after the mnemonic name `%s' -- `%s'" msgstr "" -#: config/tc-aarch64.c:8760 +#: config/tc-aarch64.c:8825 #, c-format msgid "selected processor does not support `%s'" msgstr "" -#: config/tc-aarch64.c:9262 config/tc-arm.c:27396 +#: config/tc-aarch64.c:9330 config/tc-arm.c:27341 msgid "GOT already in the symbol table" msgstr "" -#: config/tc-aarch64.c:9425 +#: config/tc-aarch64.c:9497 msgid "immediate cannot be moved by a single instruction" msgstr "" -#: config/tc-aarch64.c:9469 config/tc-aarch64.c:9514 config/tc-aarch64.c:9540 -#: config/tc-arm.c:16267 config/tc-arm.c:17964 config/tc-arm.c:18544 -#: config/tc-arm.c:18571 config/tc-arm.c:19358 config/tc-arm.c:20193 -#: config/tc-arm.c:21216 config/tc-arm.c:21276 config/tc-metag.c:2443 -#: config/tc-metag.c:2452 config/tc-metag.c:2491 config/tc-metag.c:2500 -#: config/tc-metag.c:3019 config/tc-metag.c:3028 +#: config/tc-aarch64.c:9541 config/tc-aarch64.c:9586 config/tc-aarch64.c:9612 +#: config/tc-arm.c:16256 config/tc-arm.c:17953 config/tc-arm.c:18533 +#: config/tc-arm.c:18560 config/tc-arm.c:19347 config/tc-arm.c:20182 +#: config/tc-arm.c:21205 config/tc-arm.c:21265 config/tc-metag.c:2442 +#: config/tc-metag.c:2451 config/tc-metag.c:2490 config/tc-metag.c:2499 +#: config/tc-metag.c:3018 config/tc-metag.c:3027 msgid "immediate out of range" msgstr "" -#: config/tc-aarch64.c:9533 config/tc-metag.c:4654 config/tc-xtensa.c:4229 +#: config/tc-aarch64.c:9605 config/tc-metag.c:4652 config/tc-xtensa.c:4230 msgid "invalid immediate" msgstr "" -#: config/tc-aarch64.c:9598 config/tc-tic6x.c:3854 config/tc-tic6x.c:3919 -#: config/tc-tic6x.c:3946 config/tc-tic6x.c:3974 +#: config/tc-aarch64.c:9670 config/tc-tic6x.c:3853 config/tc-tic6x.c:3918 +#: config/tc-tic6x.c:3945 config/tc-tic6x.c:3973 msgid "immediate offset out of range" msgstr "" -#: config/tc-aarch64.c:9672 config/tc-arm.c:27734 config/tc-arm.c:27802 -#: config/tc-arm.c:28084 +#: config/tc-aarch64.c:9744 config/tc-arm.c:27679 config/tc-arm.c:27747 +#: config/tc-arm.c:28029 #, c-format msgid "undefined symbol %s used as an immediate value" msgstr "" -#: config/tc-aarch64.c:9684 +#: config/tc-aarch64.c:9756 msgid "pc-relative load offset not word aligned" msgstr "" -#: config/tc-aarch64.c:9687 +#: config/tc-aarch64.c:9759 msgid "pc-relative load offset out of range" msgstr "" -#: config/tc-aarch64.c:9699 +#: config/tc-aarch64.c:9771 msgid "pc-relative address offset out of range" msgstr "" -#: config/tc-aarch64.c:9711 config/tc-aarch64.c:9726 +#: config/tc-aarch64.c:9783 config/tc-aarch64.c:9797 config/tc-aarch64.c:9812 msgid "conditional branch target not word aligned" msgstr "" -#: config/tc-aarch64.c:9714 config/tc-aarch64.c:9729 config/tc-arm.c:28379 +#: config/tc-aarch64.c:9786 config/tc-aarch64.c:9800 config/tc-aarch64.c:9815 +#: config/tc-arm.c:28324 msgid "conditional branch out of range" msgstr "" -#: config/tc-aarch64.c:9742 +#: config/tc-aarch64.c:9828 msgid "branch target not word aligned" msgstr "" -#: config/tc-aarch64.c:9745 config/tc-arm.c:916 config/tc-arm.c:29185 -#: config/tc-kvx.c:1725 config/tc-kvx.c:1731 config/tc-mips.c:16075 -#: config/tc-mips.c:16091 config/tc-mips.c:16181 +#: config/tc-aarch64.c:9831 config/tc-arm.c:916 config/tc-arm.c:29130 +#: config/tc-kvx.c:1725 config/tc-kvx.c:1731 config/tc-mips.c:16093 +#: config/tc-mips.c:16109 config/tc-mips.c:16199 msgid "branch out of range" msgstr "" -#: config/tc-aarch64.c:9804 config/tc-arm.c:27975 config/tc-arm.c:27990 -#: config/tc-arm.c:28005 config/tc-arm.c:28016 config/tc-arm.c:28039 -#: config/tc-arm.c:28889 config/tc-moxie.c:714 config/tc-pj.c:449 -#: config/tc-sh.c:3713 +#: config/tc-aarch64.c:9890 config/tc-arm.c:27920 config/tc-arm.c:27935 +#: config/tc-arm.c:27950 config/tc-arm.c:27961 config/tc-arm.c:27984 +#: config/tc-arm.c:28834 config/tc-moxie.c:711 config/tc-pj.c:449 +#: config/tc-sh.c:3709 msgid "offset out of range" msgstr "" -#: config/tc-aarch64.c:9819 +#: config/tc-aarch64.c:9905 msgid "unsigned value out of range" msgstr "" -#: config/tc-aarch64.c:9830 +#: config/tc-aarch64.c:9916 msgid "signed value out of range" msgstr "" -#: config/tc-aarch64.c:9985 +#: config/tc-aarch64.c:10071 #, c-format msgid "unexpected %s fixup" msgstr "" -#: config/tc-aarch64.c:10049 config/tc-arm.c:29604 config/tc-arm.c:29625 -#: config/tc-mips.c:18444 config/tc-or1k.c:342 config/tc-score.c:7391 +#: config/tc-aarch64.c:10135 config/tc-arm.c:29549 config/tc-arm.c:29570 +#: config/tc-mips.c:18461 config/tc-or1k.c:342 config/tc-score.c:7389 #, c-format msgid "cannot represent %s relocation in this object file format" msgstr "" -#: config/tc-aarch64.c:10096 +#: config/tc-aarch64.c:10182 #, c-format msgid "cannot do %u-byte relocation" msgstr "" -#: config/tc-aarch64.c:10524 config/tc-arm.c:30425 +#: config/tc-aarch64.c:10610 config/tc-arm.c:30370 msgid "assemble for big-endian" msgstr "" -#: config/tc-aarch64.c:10525 config/tc-arm.c:30426 +#: config/tc-aarch64.c:10611 config/tc-arm.c:30371 msgid "assemble for little-endian" msgstr "" -#: config/tc-aarch64.c:10528 +#: config/tc-aarch64.c:10614 msgid "temporary switch for dumping" msgstr "" -#: config/tc-aarch64.c:10530 +#: config/tc-aarch64.c:10616 msgid "output verbose error messages" msgstr "" -#: config/tc-aarch64.c:10532 +#: config/tc-aarch64.c:10618 msgid "do not output verbose error messages" msgstr "" -#: config/tc-aarch64.c:10876 config/tc-arm.c:31614 +#: config/tc-aarch64.c:10621 +msgid "enable feature flag gating for system registers" +msgstr "" + +#: config/tc-aarch64.c:10994 config/tc-arm.c:31559 msgid "invalid architectural extension" msgstr "" -#: config/tc-aarch64.c:10901 config/tc-arm.c:31646 +#: config/tc-aarch64.c:11019 config/tc-arm.c:31591 msgid "must specify extensions to add before specifying those to remove" msgstr "" -#: config/tc-aarch64.c:10909 config/tc-arm.c:31654 +#: config/tc-aarch64.c:11027 config/tc-arm.c:31599 msgid "missing architectural extension" msgstr "" -#: config/tc-aarch64.c:10937 config/tc-arm.c:31740 +#: config/tc-aarch64.c:11055 config/tc-arm.c:31685 #, c-format msgid "unknown architectural extension `%s'" msgstr "" -#: config/tc-aarch64.c:10962 config/tc-arm.c:31790 config/tc-metag.c:5832 +#: config/tc-aarch64.c:11094 config/tc-arm.c:31735 config/tc-metag.c:5830 #, c-format msgid "missing cpu name `%s'" msgstr "" -#: config/tc-aarch64.c:10973 config/tc-aarch64.c:11194 config/tc-arm.c:31825 -#: config/tc-arm.c:32645 config/tc-csky.c:1218 config/tc-metag.c:5843 +#: config/tc-aarch64.c:11105 config/tc-aarch64.c:11326 config/tc-arm.c:31770 +#: config/tc-arm.c:32590 config/tc-csky.c:1242 config/tc-metag.c:5841 #, c-format msgid "unknown cpu `%s'" msgstr "" -#: config/tc-aarch64.c:10991 config/tc-arm.c:31843 +#: config/tc-aarch64.c:11123 config/tc-arm.c:31788 #, c-format msgid "missing architecture name `%s'" msgstr "" -#: config/tc-aarch64.c:11002 config/tc-aarch64.c:11239 config/tc-arm.c:31865 -#: config/tc-arm.c:32685 config/tc-arm.c:32721 config/tc-score.c:7626 +#: config/tc-aarch64.c:11134 config/tc-aarch64.c:11371 config/tc-arm.c:31810 +#: config/tc-arm.c:32630 config/tc-arm.c:32666 config/tc-csky.c:1259 #, c-format -msgid "unknown architecture `%s'\n" +msgid "unknown architecture `%s'" msgstr "" -#: config/tc-aarch64.c:11029 +#: config/tc-aarch64.c:11161 #, c-format msgid "missing abi name `%s'" msgstr "" -#: config/tc-aarch64.c:11040 +#: config/tc-aarch64.c:11172 #, c-format -msgid "unknown abi `%s'\n" +msgid "unknown abi `%s'" msgstr "" -#: config/tc-aarch64.c:11053 +#: config/tc-aarch64.c:11185 msgid "<abi name>\t specify for ABI <abi name>" msgstr "" -#: config/tc-aarch64.c:11055 config/tc-arm.c:31952 config/tc-metag.c:5909 +#: config/tc-aarch64.c:11187 config/tc-arm.c:31897 config/tc-metag.c:5907 msgid "<cpu name>\t assemble for CPU <cpu name>" msgstr "" -#: config/tc-aarch64.c:11057 config/tc-arm.c:31954 +#: config/tc-aarch64.c:11189 config/tc-arm.c:31899 msgid "<arch name>\t assemble for architecture <arch name>" msgstr "" -#: config/tc-aarch64.c:11096 config/tc-aarch64.c:11115 config/tc-arm.c:32022 -#: config/tc-arm.c:32040 config/tc-arm.c:32060 config/tc-metag.c:5933 +#: config/tc-aarch64.c:11228 config/tc-aarch64.c:11247 config/tc-arm.c:31967 +#: config/tc-arm.c:31985 config/tc-arm.c:32005 config/tc-metag.c:5931 #, c-format msgid "option `-%c%s' is deprecated: %s" msgstr "" -#: config/tc-aarch64.c:11135 +#: config/tc-aarch64.c:11267 #, c-format msgid " AArch64-specific assembler options:\n" msgstr "" -#: config/tc-aarch64.c:11146 config/tc-arc.c:3598 config/tc-arm.c:32091 +#: config/tc-aarch64.c:11278 config/tc-arc.c:3597 config/tc-arm.c:32036 #, c-format msgid " -EB assemble code for a big-endian cpu\n" msgstr "" -#: config/tc-aarch64.c:11151 config/tc-arc.c:3600 config/tc-arm.c:32096 +#: config/tc-aarch64.c:11283 config/tc-arc.c:3599 config/tc-arm.c:32041 #, c-format msgid " -EL assemble code for a little-endian cpu\n" msgstr "" -#: config/tc-alpha.c:648 +#: config/tc-alpha.c:634 #, c-format msgid "No !literal!%ld was found" msgstr "" -#: config/tc-alpha.c:655 +#: config/tc-alpha.c:641 #, c-format msgid "No !tlsgd!%ld was found" msgstr "" -#: config/tc-alpha.c:662 +#: config/tc-alpha.c:648 #, c-format msgid "No !tlsldm!%ld was found" msgstr "" -#: config/tc-alpha.c:671 +#: config/tc-alpha.c:657 #, c-format msgid "No ldah !gpdisp!%ld was found" msgstr "" -#: config/tc-alpha.c:721 +#: config/tc-alpha.c:707 #, c-format msgid "too many !literal!%ld for %s" msgstr "" -#: config/tc-alpha.c:751 +#: config/tc-alpha.c:737 #, c-format msgid "No lda !gpdisp!%ld was found" msgstr "" #. Only support one relocation op per insn. -#: config/tc-alpha.c:910 +#: config/tc-alpha.c:896 msgid "More than one relocation op per insn" msgstr "" -#: config/tc-alpha.c:925 config/tc-arc.c:1137 +#: config/tc-alpha.c:911 config/tc-arc.c:1137 msgid "No relocation operand" msgstr "" -#: config/tc-alpha.c:935 +#: config/tc-alpha.c:921 #, c-format msgid "Unknown relocation operand: !%s" msgstr "" -#: config/tc-alpha.c:945 +#: config/tc-alpha.c:931 #, c-format msgid "no sequence number after !%s" msgstr "" -#: config/tc-alpha.c:955 +#: config/tc-alpha.c:941 #, c-format msgid "!%s does not use a sequence number" msgstr "" -#: config/tc-alpha.c:965 +#: config/tc-alpha.c:951 #, c-format msgid "Bad sequence number: !%s!%s" msgstr "" -#: config/tc-alpha.c:1185 config/tc-alpha.c:3359 +#: config/tc-alpha.c:1170 config/tc-alpha.c:3332 #, c-format msgid "inappropriate arguments for opcode `%s'" msgstr "" -#: config/tc-alpha.c:1187 config/tc-alpha.c:3361 +#: config/tc-alpha.c:1172 config/tc-alpha.c:3334 #, c-format msgid "opcode `%s' not supported for target %s" msgstr "" -#: config/tc-alpha.c:1191 config/tc-alpha.c:3365 config/tc-avr.c:1914 -#: config/tc-msp430.c:4363 config/tc-wasm32.c:753 +#: config/tc-alpha.c:1176 config/tc-alpha.c:3338 config/tc-avr.c:1912 +#: config/tc-msp430.c:4367 config/tc-wasm32.c:753 #, c-format msgid "unknown opcode `%s'" msgstr "" -#: config/tc-alpha.c:1271 config/tc-alpha.c:1530 +#: config/tc-alpha.c:1256 config/tc-alpha.c:1515 msgid "overflow in literal (.lita) table" msgstr "" -#: config/tc-alpha.c:1278 config/tc-alpha.c:1302 config/tc-alpha.c:1543 -#: config/tc-alpha.c:2230 config/tc-alpha.c:2275 config/tc-alpha.c:2344 -#: config/tc-alpha.c:2427 config/tc-alpha.c:2652 config/tc-alpha.c:2750 +#: config/tc-alpha.c:1263 config/tc-alpha.c:1287 config/tc-alpha.c:1528 +#: config/tc-alpha.c:2213 config/tc-alpha.c:2258 config/tc-alpha.c:2326 +#: config/tc-alpha.c:2407 config/tc-alpha.c:2629 config/tc-alpha.c:2727 msgid "macro requires $at register while noat in effect" msgstr "" -#: config/tc-alpha.c:1280 config/tc-alpha.c:1304 config/tc-alpha.c:1545 +#: config/tc-alpha.c:1265 config/tc-alpha.c:1289 config/tc-alpha.c:1530 msgid "macro requires $at while $at in use" msgstr "" -#: config/tc-alpha.c:1489 +#: config/tc-alpha.c:1474 msgid "bignum invalid; zero assumed" msgstr "" -#: config/tc-alpha.c:1491 +#: config/tc-alpha.c:1476 msgid "floating point number invalid; zero assumed" msgstr "" -#: config/tc-alpha.c:1496 +#: config/tc-alpha.c:1481 msgid "can't handle expression" msgstr "" -#: config/tc-alpha.c:1536 +#: config/tc-alpha.c:1521 msgid "overflow in literal (.lit8) table" msgstr "" -#: config/tc-alpha.c:1833 +#: config/tc-alpha.c:1817 #, c-format msgid "too many ldah insns for !gpdisp!%ld" msgstr "" -#: config/tc-alpha.c:1835 config/tc-alpha.c:1847 +#: config/tc-alpha.c:1819 config/tc-alpha.c:1831 #, c-format msgid "both insns for !gpdisp!%ld must be in the same section" msgstr "" -#: config/tc-alpha.c:1845 +#: config/tc-alpha.c:1829 #, c-format msgid "too many lda insns for !gpdisp!%ld" msgstr "" -#: config/tc-alpha.c:1901 +#: config/tc-alpha.c:1885 #, c-format msgid "too many lituse insns for !lituse_tlsgd!%ld" msgstr "" -#: config/tc-alpha.c:1904 +#: config/tc-alpha.c:1888 #, c-format msgid "too many lituse insns for !lituse_tlsldm!%ld" msgstr "" -#: config/tc-alpha.c:1921 +#: config/tc-alpha.c:1905 #, c-format msgid "duplicate !tlsgd!%ld" msgstr "" -#: config/tc-alpha.c:1923 +#: config/tc-alpha.c:1907 #, c-format msgid "sequence number in use for !tlsldm!%ld" msgstr "" -#: config/tc-alpha.c:1937 +#: config/tc-alpha.c:1921 #, c-format msgid "duplicate !tlsldm!%ld" msgstr "" -#: config/tc-alpha.c:1939 +#: config/tc-alpha.c:1923 #, c-format msgid "sequence number in use for !tlsgd!%ld" msgstr "" -#: config/tc-alpha.c:1994 config/tc-arc.c:2870 config/tc-mn10200.c:848 -#: config/tc-mn10300.c:1150 config/tc-ppc.c:2065 config/tc-tilegx.c:422 +#: config/tc-alpha.c:1978 config/tc-arc.c:2869 config/tc-mn10200.c:844 +#: config/tc-mn10300.c:1149 config/tc-ppc.c:2065 config/tc-tilegx.c:422 #: config/tc-tilegx.c:472 config/tc-tilepro.c:375 msgid "operand" msgstr "" -#: config/tc-alpha.c:2133 +#: config/tc-alpha.c:2117 msgid "invalid relocation for instruction" msgstr "" -#: config/tc-alpha.c:2147 +#: config/tc-alpha.c:2130 msgid "invalid relocation for field" msgstr "" -#: config/tc-alpha.c:2979 +#: config/tc-alpha.c:2954 msgid "can not resolve expression" msgstr "" -#: config/tc-alpha.c:3514 config/tc-microblaze.c:183 config/tc-ppc.c:2407 +#: config/tc-alpha.c:3487 config/tc-microblaze.c:183 config/tc-ppc.c:2407 #, c-format msgid ".COMMon length (%ld.) <0! Ignored." msgstr "" -#: config/tc-alpha.c:3525 config/tc-ia64.c:1091 config/tc-sparc.c:4273 -#: config/tc-v850.c:303 +#: config/tc-alpha.c:3498 config/tc-ia64.c:1091 config/tc-sparc.c:4278 +#: config/tc-v850.c:302 msgid "Ignoring attempt to re-define symbol" msgstr "" -#: config/tc-alpha.c:3617 config/tc-sparc.c:4281 +#: config/tc-alpha.c:3588 config/tc-sparc.c:4286 #, c-format msgid "Length of .comm \"%s\" is already %ld. Not changed to %ld." msgstr "" -#: config/tc-alpha.c:3724 +#: config/tc-alpha.c:3695 msgid ".ent directive has no name" msgstr "" -#: config/tc-alpha.c:3732 +#: config/tc-alpha.c:3703 msgid "nested .ent directives" msgstr "" -#: config/tc-alpha.c:3776 ecoff.c:2996 +#: config/tc-alpha.c:3747 ecoff.c:2968 msgid ".end directive has no name" msgstr "" -#: config/tc-alpha.c:3784 +#: config/tc-alpha.c:3755 msgid ".end directive without matching .ent" msgstr "" -#: config/tc-alpha.c:3786 +#: config/tc-alpha.c:3757 msgid ".end directive names different symbol than .ent" msgstr "" -#: config/tc-alpha.c:3829 ecoff.c:3132 +#: config/tc-alpha.c:3800 ecoff.c:3104 msgid ".fmask outside of .ent" msgstr "" -#: config/tc-alpha.c:3831 config/tc-score.c:5582 ecoff.c:3196 +#: config/tc-alpha.c:3802 config/tc-score.c:5581 ecoff.c:3168 msgid ".mask outside of .ent" msgstr "" -#: config/tc-alpha.c:3839 ecoff.c:3139 +#: config/tc-alpha.c:3810 ecoff.c:3111 msgid "bad .fmask directive" msgstr "" -#: config/tc-alpha.c:3841 ecoff.c:3203 +#: config/tc-alpha.c:3812 ecoff.c:3175 msgid "bad .mask directive" msgstr "" -#: config/tc-alpha.c:3874 config/tc-mips.c:19926 config/tc-score.c:5716 -#: ecoff.c:3160 +#: config/tc-alpha.c:3845 config/tc-mips.c:19943 config/tc-score.c:5715 +#: ecoff.c:3132 msgid ".frame outside of .ent" msgstr "" -#: config/tc-alpha.c:3885 config/tc-mips.c:19937 ecoff.c:3171 +#: config/tc-alpha.c:3856 config/tc-mips.c:19954 ecoff.c:3143 msgid "bad .frame directive" msgstr "" -#: config/tc-alpha.c:3919 +#: config/tc-alpha.c:3890 msgid ".prologue directive without a preceding .ent directive" msgstr "" -#: config/tc-alpha.c:3937 +#: config/tc-alpha.c:3908 #, c-format msgid "Invalid argument %d to .prologue." msgstr "" -#: config/tc-alpha.c:4026 +#: config/tc-alpha.c:3997 msgid "ECOFF debugging is disabled." msgstr "" -#: config/tc-alpha.c:4040 +#: config/tc-alpha.c:4011 msgid ".ent directive without matching .end" msgstr "" -#: config/tc-alpha.c:4133 +#: config/tc-alpha.c:4105 msgid ".usepv directive has no name" msgstr "" -#: config/tc-alpha.c:4146 +#: config/tc-alpha.c:4118 msgid ".usepv directive has no type" msgstr "" -#: config/tc-alpha.c:4161 +#: config/tc-alpha.c:4133 msgid "unknown argument for .usepv" msgstr "" -#: config/tc-alpha.c:4274 +#: config/tc-alpha.c:4246 #, c-format msgid "unknown section attribute %s" msgstr "" -#: config/tc-alpha.c:4369 +#: config/tc-alpha.c:4341 msgid "previous .ent not closed by a .end" msgstr "" -#: config/tc-alpha.c:4390 +#: config/tc-alpha.c:4362 msgid ".ent directive has no symbol" msgstr "" -#: config/tc-alpha.c:4415 +#: config/tc-alpha.c:4387 msgid ".handler directive has no name" msgstr "" -#: config/tc-alpha.c:4446 +#: config/tc-alpha.c:4418 msgid "Bad .frame directive 1./2. param" msgstr "" -#: config/tc-alpha.c:4456 +#: config/tc-alpha.c:4428 #, c-format msgid "Bad RA (%d) register for .frame" msgstr "" -#: config/tc-alpha.c:4461 +#: config/tc-alpha.c:4433 msgid "Bad .frame directive 3./4. param" msgstr "" -#: config/tc-alpha.c:4497 +#: config/tc-alpha.c:4469 msgid ".pdesc directive not in link (.link) section" msgstr "" -#: config/tc-alpha.c:4504 +#: config/tc-alpha.c:4476 msgid ".pdesc directive has no entry symbol" msgstr "" -#: config/tc-alpha.c:4515 +#: config/tc-alpha.c:4487 msgid ".pdesc has a bad entry symbol" msgstr "" -#: config/tc-alpha.c:4526 +#: config/tc-alpha.c:4498 msgid ".pdesc doesn't match with last .ent" msgstr "" -#: config/tc-alpha.c:4541 +#: config/tc-alpha.c:4513 msgid "No comma after .pdesc <entryname>" msgstr "" -#: config/tc-alpha.c:4561 +#: config/tc-alpha.c:4533 msgid "unknown procedure kind" msgstr "" -#: config/tc-alpha.c:4656 +#: config/tc-alpha.c:4628 msgid ".name directive not in link (.link) section" msgstr "" -#: config/tc-alpha.c:4664 +#: config/tc-alpha.c:4636 msgid ".name directive has no symbol" msgstr "" -#: config/tc-alpha.c:4698 +#: config/tc-alpha.c:4670 msgid "No symbol after .linkage" msgstr "" -#: config/tc-alpha.c:4745 +#: config/tc-alpha.c:4717 msgid "No symbol after .code_address" msgstr "" -#: config/tc-alpha.c:4771 config/tc-score.c:5588 +#: config/tc-alpha.c:4743 config/tc-score.c:5587 msgid "Bad .mask directive" msgstr "" -#: config/tc-alpha.c:4789 +#: config/tc-alpha.c:4761 msgid "Bad .fmask directive" msgstr "" -#: config/tc-alpha.c:4946 +#: config/tc-alpha.c:4918 #, c-format msgid "Expected comma after name \"%s\"" msgstr "" -#: config/tc-alpha.c:4958 +#: config/tc-alpha.c:4930 #, c-format msgid "unhandled: .proc %s,%d" msgstr "" -#: config/tc-alpha.c:4991 +#: config/tc-alpha.c:4963 #, c-format msgid "Tried to .set unrecognized mode `%s'" msgstr "" -#: config/tc-alpha.c:5017 +#: config/tc-alpha.c:4989 #, c-format msgid "Bad base register, using $%d." msgstr "" -#: config/tc-alpha.c:5038 +#: config/tc-alpha.c:5010 #, c-format msgid "Alignment too large: %d. assumed" msgstr "" -#: config/tc-alpha.c:5042 config/tc-d30v.c:2034 config/tc-pru.c:220 +#: config/tc-alpha.c:5014 config/tc-d30v.c:2034 config/tc-pru.c:220 #: config/tc-pru.c:336 msgid "Alignment negative: 0 assumed" msgstr "" -#: config/tc-alpha.c:5137 config/tc-alpha.c:5628 +#: config/tc-alpha.c:5109 config/tc-alpha.c:5600 #, c-format msgid "Unknown CPU identifier `%s'" msgstr "" -#: config/tc-alpha.c:5328 +#: config/tc-alpha.c:5300 #, c-format msgid "Chose GP value of %lx\n" msgstr "" -#: config/tc-alpha.c:5342 +#: config/tc-alpha.c:5314 msgid "bad .section directive: want a,s,w,x,M,S,G,T in string" msgstr "" -#: config/tc-alpha.c:5430 config/tc-alpha.c:5466 config/tc-arc.c:768 -#: config/tc-arc.c:2564 config/tc-arc.c:2596 config/tc-arc.c:2702 +#: config/tc-alpha.c:5402 config/tc-alpha.c:5438 config/tc-arc.c:768 +#: config/tc-arc.c:2563 config/tc-arc.c:2595 config/tc-arc.c:2701 #: config/tc-cr16.c:807 config/tc-cr16.c:826 config/tc-cris.c:1223 #: config/tc-crx.c:510 config/tc-crx.c:532 config/tc-crx.c:543 -#: config/tc-dlx.c:289 config/tc-hppa.c:8252 config/tc-i386.c:3490 -#: config/tc-i386.c:3535 config/tc-ia64.c:5360 config/tc-ia64.c:7399 +#: config/tc-dlx.c:289 config/tc-hppa.c:8251 config/tc-i386.c:3604 +#: config/tc-i386.c:3649 config/tc-ia64.c:5360 config/tc-ia64.c:7399 #: config/tc-ia64.c:7458 config/tc-kvx.c:1478 config/tc-m68k.c:4556 -#: config/tc-m68k.c:4568 config/tc-mips.c:3709 config/tc-mips.c:3742 -#: config/tc-mips.c:3768 config/tc-nds32.c:3440 config/tc-ns32k.c:1906 -#: config/tc-ppc.c:1745 config/tc-ppc.c:1785 config/tc-pru.c:1576 -#: config/tc-pru.c:1580 config/tc-s390.c:611 config/tc-s390.c:649 +#: config/tc-m68k.c:4568 config/tc-mips.c:3708 config/tc-mips.c:3741 +#: config/tc-mips.c:3767 config/tc-nds32.c:3440 config/tc-ns32k.c:1908 +#: config/tc-ppc.c:1745 config/tc-ppc.c:1785 config/tc-pru.c:1574 +#: config/tc-pru.c:1578 config/tc-s390.c:624 config/tc-s390.c:662 #: config/tc-sparc.c:961 config/tc-sparc.c:993 config/tc-tic30.c:121 #: config/tc-tic30.c:131 config/tc-tic30.c:141 config/tc-tic30.c:151 -#: config/tc-tic4x.c:1219 config/tc-tilegx.c:316 config/tc-tilepro.c:252 -#: config/tc-vax.c:965 config/tc-vax.c:970 ecoff.c:1582 +#: config/tc-tic4x.c:1216 config/tc-tilegx.c:316 config/tc-tilepro.c:252 +#: config/tc-vax.c:963 config/tc-vax.c:968 ecoff.c:1583 #, c-format msgid "duplicate %s" msgstr "" -#: config/tc-alpha.c:5549 config/tc-arc.c:2532 config/tc-arc.c:2546 -#: config/tc-arm.c:888 config/tc-xtensa.c:5473 config/tc-xtensa.c:5549 -#: config/tc-xtensa.c:5666 config/tc-z80.c:3677 +#: config/tc-alpha.c:5521 config/tc-arc.c:2531 config/tc-arc.c:2545 +#: config/tc-arm.c:888 config/tc-xtensa.c:5474 config/tc-xtensa.c:5550 +#: config/tc-xtensa.c:5667 config/tc-z80.c:3677 msgid "syntax error" msgstr "" -#: config/tc-alpha.c:5679 +#: config/tc-alpha.c:5651 msgid "" "Alpha options:\n" "-32addr\t\t\ttreat addresses as 32-bit values\n" @@ -3030,7 +3031,7 @@ msgid "" "\t\t\tthese variants include PALcode opcodes\n" msgstr "" -#: config/tc-alpha.c:5689 +#: config/tc-alpha.c:5661 msgid "" "VMS options:\n" "-+\t\t\tencode (don't truncate) names longer than 64 characters\n" @@ -3038,42 +3039,42 @@ msgid "" "-replace/-noreplace\tenable or disable the optimization of procedure calls\n" msgstr "" -#: config/tc-alpha.c:5946 config/tc-arc.c:3145 +#: config/tc-alpha.c:5918 config/tc-arc.c:3144 #, c-format msgid "unhandled relocation type %s" msgstr "" -#: config/tc-alpha.c:5959 config/tc-arc.c:3153 +#: config/tc-alpha.c:5931 config/tc-arc.c:3152 msgid "non-absolute expression in constant field" msgstr "" -#: config/tc-alpha.c:5973 +#: config/tc-alpha.c:5945 #, c-format msgid "type %d reloc done?\n" msgstr "" -#: config/tc-alpha.c:6020 config/tc-alpha.c:6027 +#: config/tc-alpha.c:5992 config/tc-alpha.c:5999 msgid "Used $at without \".set noat\"" msgstr "" -#: config/tc-alpha.c:6196 +#: config/tc-alpha.c:6168 #, c-format msgid "!samegp reloc against symbol without .prologue: %s" msgstr "" -#: config/tc-alpha.c:6240 config/tc-arc.c:3276 config/tc-csky.c:5668 -#: config/tc-tilegx.c:1745 config/tc-tilepro.c:1522 config/tc-wasm32.c:813 -#: config/tc-xtensa.c:6176 +#: config/tc-alpha.c:6212 config/tc-arc.c:3275 config/tc-csky.c:5686 +#: config/tc-tilegx.c:1737 config/tc-tilepro.c:1518 config/tc-wasm32.c:813 +#: config/tc-xtensa.c:6177 #, c-format msgid "cannot represent `%s' relocation in object file" msgstr "" -#: config/tc-alpha.c:6246 config/tc-arc.c:3282 +#: config/tc-alpha.c:6218 config/tc-arc.c:3281 #, c-format msgid "internal error? cannot generate `%s' relocation" msgstr "" -#: config/tc-alpha.c:6342 +#: config/tc-alpha.c:6314 #, c-format msgid "frame reg expected, using $%d." msgstr "" @@ -3132,16 +3133,16 @@ msgstr "" msgid "Brackets in operand field incorrect" msgstr "" -#: config/tc-arc.c:1345 config/tc-xtensa.c:2072 +#: config/tc-arc.c:1345 config/tc-xtensa.c:2073 msgid "extra comma" msgstr "" -#: config/tc-arc.c:1347 config/tc-pru.c:1457 config/tc-pru.c:1705 -#: config/tc-xtensa.c:2076 +#: config/tc-arc.c:1347 config/tc-pru.c:1456 config/tc-pru.c:1703 +#: config/tc-xtensa.c:2077 msgid "missing argument" msgstr "" -#: config/tc-arc.c:1349 config/tc-xtensa.c:2078 +#: config/tc-arc.c:1349 config/tc-xtensa.c:2079 msgid "missing comma or colon" msgstr "" @@ -3161,76 +3162,76 @@ msgstr "" msgid "Unhandled reloc type" msgstr "" -#: config/tc-arc.c:1967 +#: config/tc-arc.c:1966 msgid "immediate is out of bounds" msgstr "" -#: config/tc-arc.c:1975 +#: config/tc-arc.c:1974 msgid "immediate is not 32bit aligned" msgstr "" -#: config/tc-arc.c:1982 +#: config/tc-arc.c:1981 msgid "immediate is not 16bit aligned" msgstr "" -#: config/tc-arc.c:2063 +#: config/tc-arc.c:2062 msgid "operand is not duplicate of the previous one" msgstr "" -#: config/tc-arc.c:2083 +#: config/tc-arc.c:2082 msgid "flag mismatch" msgstr "" -#: config/tc-arc.c:2095 config/tc-pru.c:1413 config/tc-pru.c:1438 -#: config/tc-xtensa.c:2142 +#: config/tc-arc.c:2094 config/tc-pru.c:1412 config/tc-pru.c:1437 +#: config/tc-xtensa.c:2143 msgid "too many arguments" msgstr "" -#: config/tc-arc.c:2500 +#: config/tc-arc.c:2499 #, c-format msgid "%s for instruction '%s'" msgstr "" -#: config/tc-arc.c:2502 +#: config/tc-arc.c:2501 #, c-format msgid "inappropriate arguments for opcode '%s'" msgstr "" -#: config/tc-arc.c:2504 +#: config/tc-arc.c:2503 #, c-format msgid "opcode '%s' not supported for target %s" msgstr "" -#: config/tc-arc.c:2508 config/tc-tic6x.c:3188 +#: config/tc-arc.c:2507 config/tc-tic6x.c:3187 #, c-format msgid "unknown opcode '%s'" msgstr "" -#: config/tc-arc.c:2614 config/tc-arc.c:5093 config/tc-h8300.c:78 +#: config/tc-arc.c:2613 config/tc-arc.c:5090 config/tc-h8300.c:78 #: config/tc-h8300.c:87 config/tc-h8300.c:97 config/tc-h8300.c:107 #: config/tc-h8300.c:117 config/tc-h8300.c:128 config/tc-h8300.c:243 #: config/tc-hppa.c:6826 config/tc-hppa.c:6832 config/tc-hppa.c:6838 -#: config/tc-hppa.c:6844 config/tc-hppa.c:8231 config/tc-kvx.c:1438 -#: config/tc-lm32.c:197 config/tc-mips.c:3699 config/tc-mips.c:4193 -#: config/tc-mn10300.c:935 config/tc-mn10300.c:940 config/tc-mn10300.c:2438 -#: config/tc-riscv.c:1897 config/tc-riscv.c:5716 +#: config/tc-hppa.c:6844 config/tc-hppa.c:8230 config/tc-kvx.c:1438 +#: config/tc-lm32.c:197 config/tc-mips.c:3698 config/tc-mips.c:4192 +#: config/tc-mn10300.c:934 config/tc-mn10300.c:939 config/tc-mn10300.c:2438 +#: config/tc-riscv.c:1908 config/tc-riscv.c:5850 msgid "could not set architecture and machine" msgstr "" -#: config/tc-arc.c:2815 +#: config/tc-arc.c:2814 #, c-format msgid "unhandled reloc %s in md_pcrel_from_section" msgstr "" -#: config/tc-arc.c:2880 +#: config/tc-arc.c:2879 msgid "Unaligned operand. Needs to be 32bit aligned" msgstr "" -#: config/tc-arc.c:2885 +#: config/tc-arc.c:2884 msgid "Unaligned operand. Needs to be 16bit aligned" msgstr "" -#: config/tc-arc.c:3016 +#: config/tc-arc.c:3015 #, c-format msgid "PC relative relocation not allowed for (internal) type %d" msgstr "" @@ -3239,35 +3240,35 @@ msgstr "" #. the insn. #. FIXME! Check for the conditionality of #. the insn. -#: config/tc-arc.c:3061 config/tc-arc.c:4042 +#: config/tc-arc.c:3060 config/tc-arc.c:4041 msgid "TLS_*_S9 relocs are not supported yet" msgstr "" #. I cannot fix an GOTPC relocation because I need to relax it #. from ld rx,[pcl,@sym@gotpc] to add rx,pcl,@sym@gotpc. -#: config/tc-arc.c:3097 +#: config/tc-arc.c:3096 msgid "Unsupported operation on reloc" msgstr "" -#: config/tc-arc.c:3173 config/tc-arc.c:3189 +#: config/tc-arc.c:3172 config/tc-arc.c:3188 msgid "unknown fixup size" msgstr "" -#: config/tc-arc.c:3323 +#: config/tc-arc.c:3322 msgid "no relaxation found for this instruction." msgstr "" -#: config/tc-arc.c:3576 +#: config/tc-arc.c:3575 #, c-format msgid "ARC-specific assembler options:\n" msgstr "" -#: config/tc-arc.c:3602 +#: config/tc-arc.c:3601 #, c-format msgid " -mrelax enable relaxation\n" msgstr "" -#: config/tc-arc.c:3605 +#: config/tc-arc.c:3604 #, c-format msgid "" "The following ARC-specific assembler options are deprecated and are " @@ -3275,7 +3276,7 @@ msgid "" "for compatibility only:\n" msgstr "" -#: config/tc-arc.c:3608 +#: config/tc-arc.c:3607 #, c-format msgid "" " -mEA\n" @@ -3305,147 +3306,147 @@ msgid "" " -mxy\n" msgstr "" -#: config/tc-arc.c:3698 +#: config/tc-arc.c:3697 #, c-format msgid "Unable to find %s relocation for instruction %s" msgstr "" -#: config/tc-arc.c:3993 +#: config/tc-arc.c:3992 #, c-format msgid "Unable to use @plt relocation for insn %s" msgstr "" -#: config/tc-arc.c:4012 +#: config/tc-arc.c:4011 #, c-format msgid "Unable to use @pcl relocation for insn %s" msgstr "" -#: config/tc-arc.c:4068 +#: config/tc-arc.c:4066 #, c-format msgid "invalid relocation %s for field" msgstr "" -#: config/tc-arc.c:4178 +#: config/tc-arc.c:4175 #, c-format msgid "Insn %s has a jump/branch instruction %s in its delay slot." msgstr "" -#: config/tc-arc.c:4183 +#: config/tc-arc.c:4180 #, c-format msgid "Insn %s has an instruction %s with limm in its delay slot." msgstr "" -#: config/tc-arc.c:4293 config/tc-microblaze.c:2628 config/tc-mn10300.c:1069 -#: config/tc-sh.c:418 config/tc-z80.c:1120 read.c:4837 +#: config/tc-arc.c:4290 config/tc-microblaze.c:2611 config/tc-mn10300.c:1068 +#: config/tc-sh.c:418 config/tc-z80.c:1120 read.c:4899 #, c-format msgid "unsupported BFD relocation size %u" msgstr "" -#: config/tc-arc.c:4313 +#: config/tc-arc.c:4310 #, c-format msgid "Jump/Branch instruction detected at the end of the ZOL label @%s" msgstr "" -#: config/tc-arc.c:4320 +#: config/tc-arc.c:4317 #, c-format msgid "Kernel instruction detected at the end of the ZOL label @%s" msgstr "" -#: config/tc-arc.c:4325 +#: config/tc-arc.c:4322 #, c-format msgid "" "A jump instruction with long immediate detected at the end of the ZOL label @" "%s" msgstr "" -#: config/tc-arc.c:4331 +#: config/tc-arc.c:4328 #, c-format msgid "An illegal use of delay slot detected at the end of the ZOL label @%s" msgstr "" -#: config/tc-arc.c:4440 +#: config/tc-arc.c:4437 msgid "expected comma after instruction name" msgstr "" -#: config/tc-arc.c:4452 +#: config/tc-arc.c:4449 msgid "expected comma after major opcode" msgstr "" -#: config/tc-arc.c:4637 +#: config/tc-arc.c:4634 #, c-format msgid "Pseudocode already used %s" msgstr "" -#: config/tc-arc.c:4645 +#: config/tc-arc.c:4642 #, c-format msgid "major opcode not in range [0x%02x - 0x%02x]" msgstr "" -#: config/tc-arc.c:4649 +#: config/tc-arc.c:4646 msgid "minor opcode not in range [0x00 - 0x3f]" msgstr "" -#: config/tc-arc.c:4655 +#: config/tc-arc.c:4652 msgid "Improper use of OP1_IMM_IMPLIED" msgstr "" -#: config/tc-arc.c:4661 +#: config/tc-arc.c:4658 msgid "Improper use of OP1_MUST_BE_IMM" msgstr "" -#: config/tc-arc.c:4673 +#: config/tc-arc.c:4670 msgid "Couldn't generate extension instruction opcodes" msgstr "" -#: config/tc-arc.c:4708 +#: config/tc-arc.c:4705 msgid "expected comma after name" msgstr "" -#: config/tc-arc.c:4719 +#: config/tc-arc.c:4716 #, c-format msgid "%s second argument cannot be a negative number %d" msgstr "" -#: config/tc-arc.c:4734 +#: config/tc-arc.c:4731 msgid "expected comma after register number" msgstr "" -#: config/tc-arc.c:4755 +#: config/tc-arc.c:4752 msgid "invalid mode" msgstr "" -#: config/tc-arc.c:4773 +#: config/tc-arc.c:4770 msgid "expected comma after register mode" msgstr "" -#: config/tc-arc.c:4788 +#: config/tc-arc.c:4785 msgid "shortcut designator invalid" msgstr "" -#: config/tc-arc.c:4886 +#: config/tc-arc.c:4883 #, c-format msgid "core register %s value (%d) too large" msgstr "" -#: config/tc-arc.c:4898 +#: config/tc-arc.c:4895 #, c-format msgid "duplicate aux register %s" msgstr "" -#: config/tc-arc.c:4903 +#: config/tc-arc.c:4900 #, c-format msgid "condition code %s value (%d) too large" msgstr "" -#: config/tc-arc.c:4920 +#: config/tc-arc.c:4917 msgid "Unknown extension" msgstr "" -#: config/tc-arc.c:5027 +#: config/tc-arc.c:5024 msgid "Overwrite explicitly set Tag_ARC_CPU_base" msgstr "" -#: config/tc-arc.c:5077 +#: config/tc-arc.c:5074 msgid "Overwrite explicitly set Tag_ARC_ABI_rf16 to full register file" msgstr "" @@ -3497,7 +3498,7 @@ msgstr "" msgid "iWMMXt data register expected" msgstr "" -#: config/tc-arm.c:715 config/tc-arm.c:7745 +#: config/tc-arm.c:715 config/tc-arm.c:7734 msgid "iWMMXt control register expected" msgstr "" @@ -3690,11 +3691,11 @@ msgstr "" msgid "immediate expression requires a # prefix" msgstr "" -#: config/tc-arm.c:1188 read.c:4077 +#: config/tc-arm.c:1188 read.c:4130 msgid "missing expression" msgstr "" -#: config/tc-arm.c:1202 config/tc-arm.c:5590 config/tc-score.c:1205 +#: config/tc-arm.c:1202 config/tc-arm.c:5582 config/tc-score.c:1205 msgid "invalid constant" msgstr "" @@ -3702,623 +3703,623 @@ msgstr "" msgid "expected #constant" msgstr "" -#: config/tc-arm.c:1509 config/tc-arm.c:1540 +#: config/tc-arm.c:1504 +msgid "unexpected type character `b' -- did you mean `bf'?" +msgstr "" + +#: config/tc-arm.c:1511 config/tc-arm.c:1533 #, c-format msgid "bad size %d in type specifier" msgstr "" #: config/tc-arm.c:1516 -msgid "unexpected type character `b' -- did you mean `bf'?" -msgstr "" - -#: config/tc-arm.c:1523 #, c-format msgid "unexpected character `%c' in type specifier" msgstr "" -#: config/tc-arm.c:1590 +#: config/tc-arm.c:1583 msgid "only one type should be specified for operand" msgstr "" -#: config/tc-arm.c:1596 +#: config/tc-arm.c:1589 msgid "vector type expected" msgstr "" -#: config/tc-arm.c:1705 +#: config/tc-arm.c:1698 msgid "expected MVE register [q0..q7]" msgstr "" -#: config/tc-arm.c:1725 +#: config/tc-arm.c:1718 msgid "can't redefine type for operand" msgstr "" -#: config/tc-arm.c:1741 +#: config/tc-arm.c:1734 msgid "only D and Q registers may be indexed" msgstr "" -#: config/tc-arm.c:1743 +#: config/tc-arm.c:1736 msgid "only D registers may be indexed" msgstr "" -#: config/tc-arm.c:1749 +#: config/tc-arm.c:1742 msgid "can't change index for operand" msgstr "" -#: config/tc-arm.c:1812 +#: config/tc-arm.c:1805 msgid "register operand expected, but got scalar" msgstr "" -#: config/tc-arm.c:1863 +#: config/tc-arm.c:1856 msgid "scalar must have an index" msgstr "" -#: config/tc-arm.c:1868 config/tc-arm.c:20038 config/tc-arm.c:20121 -#: config/tc-arm.c:20794 +#: config/tc-arm.c:1861 config/tc-arm.c:20027 config/tc-arm.c:20110 +#: config/tc-arm.c:20783 msgid "scalar index out of range" msgstr "" -#: config/tc-arm.c:1947 +#: config/tc-arm.c:1940 msgid "r0-r12, lr or APSR expected" msgstr "" -#: config/tc-arm.c:1974 config/tc-arm.c:4376 +#: config/tc-arm.c:1967 config/tc-arm.c:4369 msgid "bad range in register list" msgstr "" -#: config/tc-arm.c:1982 config/tc-arm.c:1991 config/tc-arm.c:2032 -#: config/tc-arm.c:4360 config/tc-arm.c:4380 +#: config/tc-arm.c:1975 config/tc-arm.c:1984 config/tc-arm.c:2025 +#: config/tc-arm.c:4353 config/tc-arm.c:4373 #, c-format msgid "Warning: duplicated register (r%d) in register list" msgstr "" -#: config/tc-arm.c:1994 +#: config/tc-arm.c:1987 msgid "Warning: register range not in ascending order" msgstr "" -#: config/tc-arm.c:2005 +#: config/tc-arm.c:1998 msgid "missing `}'" msgstr "" -#: config/tc-arm.c:2021 +#: config/tc-arm.c:2014 msgid "invalid register mask" msgstr "" -#: config/tc-arm.c:2098 +#: config/tc-arm.c:2091 msgid "expecting {" msgstr "" -#: config/tc-arm.c:2165 config/tc-arm.c:2273 +#: config/tc-arm.c:2158 config/tc-arm.c:2266 msgid "VPR expected last" msgstr "" -#: config/tc-arm.c:2171 +#: config/tc-arm.c:2164 msgid "VFP single precision register or VPR expected" msgstr "" #. regtype == REG_TYPE_VFD. -#: config/tc-arm.c:2174 +#: config/tc-arm.c:2167 msgid "VFP/Neon double precision register or VPR expected" msgstr "" -#: config/tc-arm.c:2191 config/tc-arm.c:2235 +#: config/tc-arm.c:2184 config/tc-arm.c:2228 msgid "register out of range in list" msgstr "" -#: config/tc-arm.c:2213 config/tc-arm.c:4526 config/tc-arm.c:4660 +#: config/tc-arm.c:2206 config/tc-arm.c:4519 config/tc-arm.c:4653 msgid "register list not in ascending order" msgstr "" -#: config/tc-arm.c:2244 +#: config/tc-arm.c:2237 msgid "register range not in ascending order" msgstr "" -#: config/tc-arm.c:2283 +#: config/tc-arm.c:2276 msgid "non-contiguous register range" msgstr "" -#: config/tc-arm.c:2343 +#: config/tc-arm.c:2336 msgid "register stride must be 1" msgstr "" -#: config/tc-arm.c:2344 +#: config/tc-arm.c:2337 msgid "register stride must be 1 or 2" msgstr "" -#: config/tc-arm.c:2345 +#: config/tc-arm.c:2338 msgid "mismatched element/structure types in list" msgstr "" -#: config/tc-arm.c:2415 +#: config/tc-arm.c:2408 msgid "don't use Rn-Rm syntax with non-unit stride" msgstr "" -#: config/tc-arm.c:2470 +#: config/tc-arm.c:2463 msgid "error parsing element/structure list" msgstr "" -#: config/tc-arm.c:2476 +#: config/tc-arm.c:2469 msgid "expected }" msgstr "" -#: config/tc-arm.c:2566 +#: config/tc-arm.c:2558 msgid "attempt to redefine typed alias" msgstr "" -#: config/tc-arm.c:2701 +#: config/tc-arm.c:2693 msgid "bad type for register" msgstr "" -#: config/tc-arm.c:2712 +#: config/tc-arm.c:2704 msgid "expression must be constant" msgstr "" -#: config/tc-arm.c:2729 +#: config/tc-arm.c:2721 msgid "can't redefine the type of a register alias" msgstr "" -#: config/tc-arm.c:2736 +#: config/tc-arm.c:2728 msgid "you must specify a single type only" msgstr "" -#: config/tc-arm.c:2749 +#: config/tc-arm.c:2741 msgid "can't redefine the index of a scalar alias" msgstr "" -#: config/tc-arm.c:2757 +#: config/tc-arm.c:2749 msgid "scalar index must be constant" msgstr "" -#: config/tc-arm.c:2766 +#: config/tc-arm.c:2758 msgid "expecting ]" msgstr "" -#: config/tc-arm.c:2818 +#: config/tc-arm.c:2810 msgid "invalid syntax for .dn directive" msgstr "" -#: config/tc-arm.c:2824 +#: config/tc-arm.c:2816 msgid "invalid syntax for .qn directive" msgstr "" -#: config/tc-arm.c:2854 +#: config/tc-arm.c:2845 #, c-format msgid "ignoring attempt to use .unreq on fixed register name: '%s'" msgstr "" -#: config/tc-arm.c:3116 +#: config/tc-arm.c:3107 #, c-format -msgid "Failed to find real start of function: %s\n" +msgid "Failed to find real start of function: %s" msgstr "" -#: config/tc-arm.c:3133 +#: config/tc-arm.c:3124 msgid "selected processor does not support THUMB opcodes" msgstr "" -#: config/tc-arm.c:3146 +#: config/tc-arm.c:3137 msgid "selected processor does not support ARM opcodes" msgstr "" -#: config/tc-arm.c:3158 +#: config/tc-arm.c:3149 #, c-format msgid "invalid instruction size selected (%d)" msgstr "" -#: config/tc-arm.c:3190 +#: config/tc-arm.c:3181 #, c-format msgid "invalid operand to .code directive (%d) (expecting 16 or 32)" msgstr "" -#: config/tc-arm.c:3246 +#: config/tc-arm.c:3237 #, c-format msgid "expected comma after name \"%s\"" msgstr "" -#: config/tc-arm.c:3296 config/tc-m32r.c:584 +#: config/tc-arm.c:3286 config/tc-m32r.c:584 #, c-format msgid "symbol `%s' already defined" msgstr "" -#: config/tc-arm.c:3329 +#: config/tc-arm.c:3319 #, c-format msgid "unrecognized syntax mode \"%s\"" msgstr "" -#: config/tc-arm.c:3359 +#: config/tc-arm.c:3349 msgid ".ref pseudo-op only available with -mccs flag." msgstr "" -#: config/tc-arm.c:3400 +#: config/tc-arm.c:3390 msgid ".asmfunc repeated." msgstr "" -#: config/tc-arm.c:3404 +#: config/tc-arm.c:3394 msgid ".asmfunc without function." msgstr "" -#: config/tc-arm.c:3410 +#: config/tc-arm.c:3400 msgid ".asmfunc pseudo-op only available with -mccs flag." msgstr "" -#: config/tc-arm.c:3421 +#: config/tc-arm.c:3411 msgid ".endasmfunc without a .asmfunc." msgstr "" -#: config/tc-arm.c:3425 +#: config/tc-arm.c:3415 msgid ".endasmfunc without function." msgstr "" -#: config/tc-arm.c:3436 +#: config/tc-arm.c:3426 msgid ".endasmfunc pseudo-op only available with -mccs flag." msgstr "" -#: config/tc-arm.c:3445 +#: config/tc-arm.c:3438 msgid ".def pseudo-op only available with -mccs flag." msgstr "" -#: config/tc-arm.c:3603 +#: config/tc-arm.c:3597 msgid "invalid type for literal pool" msgstr "" -#: config/tc-arm.c:3683 config/tc-tic54x.c:5379 +#: config/tc-arm.c:3677 config/tc-tic54x.c:5368 #, c-format msgid "Invalid label '%s'" msgstr "" -#: config/tc-arm.c:3860 +#: config/tc-arm.c:3853 msgid "(plt) is only valid on branch targets" msgstr "" -#: config/tc-arm.c:3866 config/tc-csky.c:7672 config/tc-s390.c:1304 -#: config/tc-s390.c:2099 config/tc-xtensa.c:1698 +#: config/tc-arm.c:3859 config/tc-csky.c:7686 config/tc-s390.c:1317 +#: config/tc-s390.c:2119 config/tc-xtensa.c:1698 #, c-format msgid "%s relocations do not fit in %d byte" msgid_plural "%s relocations do not fit in %d bytes" msgstr[0] "" msgstr[1] "" -#: config/tc-arm.c:3948 +#: config/tc-arm.c:3941 msgid ".inst.n operand too big. Use .inst.w instead" msgstr "" -#: config/tc-arm.c:3968 +#: config/tc-arm.c:3961 msgid "cannot determine Thumb instruction size. Use .inst.n/.inst.w instead" msgstr "" -#: config/tc-arm.c:3998 +#: config/tc-arm.c:3991 msgid "width suffixes are invalid in ARM mode" msgstr "" -#: config/tc-arm.c:4042 dwarf2dbg.c:1467 +#: config/tc-arm.c:4035 dwarf2dbg.c:1467 msgid "expected 0 or 1" msgstr "" -#: config/tc-arm.c:4046 +#: config/tc-arm.c:4039 msgid "missing comma" msgstr "" -#: config/tc-arm.c:4079 +#: config/tc-arm.c:4072 msgid "duplicate .fnstart directive" msgstr "" -#: config/tc-arm.c:4109 config/tc-tic6x.c:410 +#: config/tc-arm.c:4102 config/tc-tic6x.c:410 msgid "duplicate .handlerdata directive" msgstr "" -#: config/tc-arm.c:4128 +#: config/tc-arm.c:4121 msgid ".fnend directive without .fnstart" msgstr "" -#: config/tc-arm.c:4195 config/tc-tic6x.c:391 +#: config/tc-arm.c:4188 config/tc-tic6x.c:391 msgid "personality routine specified for cantunwind frame" msgstr "" -#: config/tc-arm.c:4212 config/tc-tic6x.c:452 +#: config/tc-arm.c:4205 config/tc-tic6x.c:452 msgid "duplicate .personalityindex directive" msgstr "" -#: config/tc-arm.c:4219 config/tc-tic6x.c:459 +#: config/tc-arm.c:4212 config/tc-tic6x.c:459 msgid "bad personality routine number" msgstr "" -#: config/tc-arm.c:4241 config/tc-tic6x.c:476 +#: config/tc-arm.c:4234 config/tc-tic6x.c:476 msgid "duplicate .personality directive" msgstr "" -#: config/tc-arm.c:4267 +#: config/tc-arm.c:4260 #, c-format -msgid "Unknown register no. encountered: %d\n" +msgid "Unknown register no. encountered: %d" msgstr "" -#: config/tc-arm.c:4363 +#: config/tc-arm.c:4356 msgid "Warning: register list not in ascending order" msgstr "" -#: config/tc-arm.c:4370 config/tc-epiphany.c:382 config/tc-m68k.c:5866 +#: config/tc-arm.c:4363 config/tc-epiphany.c:378 config/tc-m68k.c:5866 #: config/tc-m68k.c:5895 msgid "bad register list" msgstr "" -#: config/tc-arm.c:4428 config/tc-arm.c:4478 +#: config/tc-arm.c:4421 config/tc-arm.c:4471 msgid "expected register list" msgstr "" -#: config/tc-arm.c:4540 config/tc-arm.c:4674 +#: config/tc-arm.c:4533 config/tc-arm.c:4667 msgid "bad register range" msgstr "" -#: config/tc-arm.c:4729 +#: config/tc-arm.c:4722 msgid "register expected" msgstr "" -#: config/tc-arm.c:4762 +#: config/tc-arm.c:4755 msgid ".unwind_save does not support this kind of register" msgstr "" -#: config/tc-arm.c:4801 +#: config/tc-arm.c:4794 msgid "SP and PC not permitted in .unwind_movsp directive" msgstr "" -#: config/tc-arm.c:4806 +#: config/tc-arm.c:4799 msgid "unexpected .unwind_movsp directive" msgstr "" -#: config/tc-arm.c:4833 +#: config/tc-arm.c:4826 msgid "stack increment must be multiple of 4" msgstr "" -#: config/tc-arm.c:4881 +#: config/tc-arm.c:4874 msgid "expected <reg>, <reg>" msgstr "" -#: config/tc-arm.c:4899 +#: config/tc-arm.c:4892 msgid "register must be either sp or set by a previousunwind_movsp directive" msgstr "" -#: config/tc-arm.c:4938 +#: config/tc-arm.c:4931 msgid "expected <offset>, <opcode>" msgstr "" -#: config/tc-arm.c:4950 +#: config/tc-arm.c:4943 msgid "unwind opcode too long" msgstr "" -#: config/tc-arm.c:4955 +#: config/tc-arm.c:4948 msgid "invalid unwind opcode" msgstr "" -#: config/tc-arm.c:5070 config/tc-arm.c:31769 +#: config/tc-arm.c:5064 config/tc-arm.c:31714 #, c-format msgid "unrecognised float16 format \"%s\"" msgstr "" -#: config/tc-arm.c:5081 +#: config/tc-arm.c:5075 msgid "float16 format cannot be set more than once, ignoring." msgstr "" -#: config/tc-arm.c:5094 +#: config/tc-arm.c:5088 msgid "the floating-point format has not been set (or has been disabled)" msgstr "" -#: config/tc-arm.c:5211 config/tc-arm.c:6201 config/tc-arm.c:11469 -#: config/tc-arm.c:12002 config/tc-arm.c:14133 config/tc-arm.c:16084 -#: config/tc-arm.c:16119 config/tc-arm.c:17047 config/tc-arm.c:18960 -#: config/tc-arm.c:18968 config/tc-arm.c:18975 config/tc-arm.c:20635 -#: config/tc-arm.c:28766 config/tc-arm.c:28830 config/tc-arm.c:28838 -#: config/tc-metag.c:5174 config/tc-z8k.c:1161 config/tc-z8k.c:1171 +#: config/tc-arm.c:5205 config/tc-arm.c:6193 config/tc-arm.c:11458 +#: config/tc-arm.c:11991 config/tc-arm.c:14122 config/tc-arm.c:16073 +#: config/tc-arm.c:16108 config/tc-arm.c:17036 config/tc-arm.c:18949 +#: config/tc-arm.c:18957 config/tc-arm.c:18964 config/tc-arm.c:20624 +#: config/tc-arm.c:28711 config/tc-arm.c:28775 config/tc-arm.c:28783 +#: config/tc-metag.c:5172 config/tc-z8k.c:1161 config/tc-z8k.c:1171 msgid "immediate value out of range" msgstr "" -#: config/tc-arm.c:5474 +#: config/tc-arm.c:5466 msgid "'UXTW' not allowed here" msgstr "" -#: config/tc-arm.c:5482 +#: config/tc-arm.c:5474 msgid "'LSL' or 'ASR' required" msgstr "" -#: config/tc-arm.c:5490 +#: config/tc-arm.c:5482 msgid "'LSL' required" msgstr "" -#: config/tc-arm.c:5498 +#: config/tc-arm.c:5490 msgid "'ASR' required" msgstr "" -#: config/tc-arm.c:5505 +#: config/tc-arm.c:5497 msgid "'UXTW' required" msgstr "" -#: config/tc-arm.c:5584 +#: config/tc-arm.c:5576 msgid "invalid rotation" msgstr "" -#: config/tc-arm.c:5766 config/tc-arm.c:5979 +#: config/tc-arm.c:5758 config/tc-arm.c:5971 msgid "unknown group relocation" msgstr "" -#: config/tc-arm.c:5802 +#: config/tc-arm.c:5794 msgid "alignment must be constant" msgstr "" -#: config/tc-arm.c:6013 +#: config/tc-arm.c:6005 msgid "this group relocation is not allowed on this instruction" msgstr "" -#: config/tc-arm.c:6069 +#: config/tc-arm.c:6061 msgid "'}' expected at end of 'option' field" msgstr "" -#: config/tc-arm.c:6074 +#: config/tc-arm.c:6066 msgid "cannot combine index with option" msgstr "" -#: config/tc-arm.c:6339 +#: config/tc-arm.c:6330 msgid "unexpected bit specified after APSR" msgstr "" -#: config/tc-arm.c:6351 +#: config/tc-arm.c:6342 msgid "selected processor does not support DSP extension" msgstr "" -#: config/tc-arm.c:6363 +#: config/tc-arm.c:6354 msgid "bad bitmask specified after APSR" msgstr "" -#: config/tc-arm.c:6387 +#: config/tc-arm.c:6377 msgid "writing to APSR without specifying a bitmask is deprecated" msgstr "" -#: config/tc-arm.c:6399 config/tc-arm.c:13236 config/tc-arm.c:13281 -#: config/tc-arm.c:13285 +#: config/tc-arm.c:6389 config/tc-arm.c:13225 config/tc-arm.c:13270 +#: config/tc-arm.c:13274 msgid "selected processor does not support requested special purpose register" msgstr "" -#: config/tc-arm.c:6404 +#: config/tc-arm.c:6394 msgid "flag for {c}psr instruction expected" msgstr "" -#: config/tc-arm.c:6468 +#: config/tc-arm.c:6458 msgid "unrecognized CPS flag" msgstr "" -#: config/tc-arm.c:6475 +#: config/tc-arm.c:6465 msgid "missing CPS flags" msgstr "" -#: config/tc-arm.c:6498 config/tc-arm.c:6504 +#: config/tc-arm.c:6488 config/tc-arm.c:6494 msgid "valid endian specifiers are be or le" msgstr "" -#: config/tc-arm.c:6526 +#: config/tc-arm.c:6516 msgid "missing rotation field after comma" msgstr "" -#: config/tc-arm.c:6541 +#: config/tc-arm.c:6531 msgid "rotation can only be 0, 8, 16, or 24" msgstr "" -#: config/tc-arm.c:6570 +#: config/tc-arm.c:6560 msgid "condition required" msgstr "" -#: config/tc-arm.c:6612 config/tc-arm.c:9731 +#: config/tc-arm.c:6601 config/tc-arm.c:9720 msgid "'[' expected" msgstr "" -#: config/tc-arm.c:6625 +#: config/tc-arm.c:6614 msgid "',' expected" msgstr "" -#: config/tc-arm.c:6642 +#: config/tc-arm.c:6631 msgid "invalid shift" msgstr "" -#: config/tc-arm.c:6722 +#: config/tc-arm.c:6711 msgid "expected ARM or MVE vector register" msgstr "" -#: config/tc-arm.c:6771 +#: config/tc-arm.c:6760 msgid "can't use Neon quad register here" msgstr "" -#: config/tc-arm.c:6840 +#: config/tc-arm.c:6829 msgid "expected <Rm> or <Dm> or <Qm> operand" msgstr "" -#: config/tc-arm.c:6940 +#: config/tc-arm.c:6929 msgid "VFP single, double or MVE vector register expected" msgstr "" -#: config/tc-arm.c:6960 +#: config/tc-arm.c:6949 msgid "parse error" msgstr "" -#: config/tc-arm.c:7256 +#: config/tc-arm.c:7245 msgid "immediate value 48 or 64 expected" msgstr "" #. ISB can only take SY as an option. -#: config/tc-arm.c:7305 +#: config/tc-arm.c:7294 msgid "invalid barrier type" msgstr "" -#: config/tc-arm.c:7474 +#: config/tc-arm.c:7463 msgid "only floating point zero is allowed as immediate value" msgstr "" -#: config/tc-arm.c:7569 +#: config/tc-arm.c:7558 msgid "immediate value is out of range" msgstr "" -#: config/tc-arm.c:7730 +#: config/tc-arm.c:7719 msgid "iWMMXt data or control register expected" msgstr "" -#: config/tc-arm.c:7771 +#: config/tc-arm.c:7760 msgid "Banked registers are not available with this architecture." msgstr "" -#: config/tc-arm.c:8019 +#: config/tc-arm.c:8008 msgid "operand must be LR register" msgstr "" -#: config/tc-arm.c:8024 +#: config/tc-arm.c:8013 msgid "operand must be SP register" msgstr "" -#: config/tc-arm.c:8029 +#: config/tc-arm.c:8018 msgid "operand must be r12" msgstr "" -#: config/tc-arm.c:8100 config/tc-score.c:260 +#: config/tc-arm.c:8089 config/tc-score.c:260 msgid "garbage following instruction" msgstr "" #. If REG is R13 (the stack pointer), warn that its use is #. deprecated. -#: config/tc-arm.c:8150 +#: config/tc-arm.c:8139 msgid "use of r13 is deprecated" msgstr "" -#: config/tc-arm.c:8168 config/tc-arm.c:20335 +#: config/tc-arm.c:8157 config/tc-arm.c:20324 msgid "" "scalar fp16 instruction cannot be conditional, the behaviour is UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:8243 +#: config/tc-arm.c:8232 msgid "D register out of range for selected VFP version" msgstr "" -#: config/tc-arm.c:8340 config/tc-arm.c:11158 +#: config/tc-arm.c:8329 config/tc-arm.c:11147 msgid "Instruction does not support =N addresses" msgstr "" -#: config/tc-arm.c:8348 +#: config/tc-arm.c:8337 msgid "instruction does not accept preindexed addressing" msgstr "" #. unindexed - only for coprocessor -#: config/tc-arm.c:8364 config/tc-arm.c:11221 +#: config/tc-arm.c:8353 config/tc-arm.c:11210 msgid "instruction does not accept unindexed addressing" msgstr "" -#: config/tc-arm.c:8372 +#: config/tc-arm.c:8361 msgid "destination register same as write-back base" msgstr "" -#: config/tc-arm.c:8373 +#: config/tc-arm.c:8362 msgid "source register same as write-back base" msgstr "" -#: config/tc-arm.c:8423 +#: config/tc-arm.c:8412 msgid "use of PC in this instruction is deprecated" msgstr "" -#: config/tc-arm.c:8446 +#: config/tc-arm.c:8435 msgid "instruction does not accept scaled register index" msgstr "" -#: config/tc-arm.c:8749 +#: config/tc-arm.c:8738 msgid "invalid pseudo operation" msgstr "" @@ -4341,80 +4342,80 @@ msgstr "" #. literal values to be written this way, so this code #. is probably unreachable. To be safe, we simply #. return an error here. -#: config/tc-arm.c:8791 +#: config/tc-arm.c:8780 msgid "constant expression not supported" msgstr "" -#: config/tc-arm.c:8995 +#: config/tc-arm.c:8984 msgid "invalid co-processor operand" msgstr "" -#: config/tc-arm.c:9011 +#: config/tc-arm.c:9000 msgid "instruction does not support unindexed addressing" msgstr "" -#: config/tc-arm.c:9026 +#: config/tc-arm.c:9015 msgid "pc may not be used with write-back" msgstr "" -#: config/tc-arm.c:9031 +#: config/tc-arm.c:9020 msgid "instruction does not support writeback" msgstr "" -#: config/tc-arm.c:9137 +#: config/tc-arm.c:9126 msgid "Rn must not overlap other operands" msgstr "" -#: config/tc-arm.c:9142 +#: config/tc-arm.c:9131 msgid "swp{b} use is obsoleted for ARMv8 and later" msgstr "" -#: config/tc-arm.c:9145 +#: config/tc-arm.c:9134 msgid "swp{b} use is deprecated for ARMv6 and ARMv7" msgstr "" -#: config/tc-arm.c:9257 config/tc-arm.c:9276 config/tc-arm.c:9289 -#: config/tc-arm.c:11839 config/tc-arm.c:11870 config/tc-arm.c:11892 +#: config/tc-arm.c:9246 config/tc-arm.c:9265 config/tc-arm.c:9278 +#: config/tc-arm.c:11828 config/tc-arm.c:11859 config/tc-arm.c:11881 msgid "bit-field extends past end of register" msgstr "" -#: config/tc-arm.c:9319 +#: config/tc-arm.c:9308 msgid "the only valid suffixes here are '(plt)' and '(tlscall)'" msgstr "" -#: config/tc-arm.c:9372 +#: config/tc-arm.c:9361 msgid "use of r15 in blx in ARM mode is not really useful" msgstr "" -#: config/tc-arm.c:9394 +#: config/tc-arm.c:9383 msgid "use of r15 in bx in ARM mode is not really useful" msgstr "" -#: config/tc-arm.c:9420 +#: config/tc-arm.c:9409 msgid "use of r15 in bxj is not really useful" msgstr "" -#: config/tc-arm.c:9468 +#: config/tc-arm.c:9457 msgid "This coprocessor register access is deprecated in ARMv8" msgstr "" -#: config/tc-arm.c:9676 config/tc-arm.c:9685 +#: config/tc-arm.c:9665 config/tc-arm.c:9674 msgid "writeback of base register is UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:9679 +#: config/tc-arm.c:9668 msgid "writeback of base register when in register list is UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:9689 +#: config/tc-arm.c:9678 msgid "if writeback register is in list, it must be the lowest reg in the list" msgstr "" -#: config/tc-arm.c:9726 +#: config/tc-arm.c:9715 msgid "first transfer register must be even" msgstr "" -#: config/tc-arm.c:9729 +#: config/tc-arm.c:9718 msgid "can only transfer two consecutive registers" msgstr "" @@ -4422,1412 +4423,1407 @@ msgstr "" #. have been called in the first place. #. If op 2 were present and equal to PC, this function wouldn't #. have been called in the first place. -#: config/tc-arm.c:9730 config/tc-arm.c:9800 config/tc-arm.c:10531 -#: config/tc-arm.c:12725 +#: config/tc-arm.c:9719 config/tc-arm.c:9789 config/tc-arm.c:10520 +#: config/tc-arm.c:12714 msgid "r14 not allowed here" msgstr "" -#: config/tc-arm.c:9742 +#: config/tc-arm.c:9731 msgid "base register written back, and overlaps second transfer register" msgstr "" -#: config/tc-arm.c:9752 +#: config/tc-arm.c:9741 msgid "index register overlaps transfer register" msgstr "" -#: config/tc-arm.c:9781 config/tc-arm.c:10498 +#: config/tc-arm.c:9770 config/tc-arm.c:10487 msgid "offset must be zero in ARM encoding" msgstr "" -#: config/tc-arm.c:9794 config/tc-arm.c:10525 +#: config/tc-arm.c:9783 config/tc-arm.c:10514 msgid "even register required" msgstr "" -#: config/tc-arm.c:9797 +#: config/tc-arm.c:9786 msgid "can only load two consecutive registers" msgstr "" -#: config/tc-arm.c:9815 +#: config/tc-arm.c:9804 msgid "ldr to register 15 must be 4-byte aligned" msgstr "" -#: config/tc-arm.c:9838 config/tc-arm.c:9870 +#: config/tc-arm.c:9827 config/tc-arm.c:9859 msgid "this instruction requires a post-indexed address" msgstr "" -#: config/tc-arm.c:9897 +#: config/tc-arm.c:9886 msgid "Rd and Rm should be different in mla" msgstr "" -#: config/tc-arm.c:9924 config/tc-arm.c:13100 +#: config/tc-arm.c:9913 config/tc-arm.c:13089 msgid ":lower16: not allowed in this instruction" msgstr "" -#: config/tc-arm.c:9926 config/tc-arm.c:13105 +#: config/tc-arm.c:9915 config/tc-arm.c:13094 msgid ":upper16: not allowed in this instruction" msgstr "" -#: config/tc-arm.c:9943 +#: config/tc-arm.c:9932 msgid "operand 1 must be FPSCR" msgstr "" -#: config/tc-arm.c:9996 config/tc-arm.c:10005 config/tc-arm.c:10059 -#: config/tc-arm.c:10068 +#: config/tc-arm.c:9985 config/tc-arm.c:9994 config/tc-arm.c:10048 +#: config/tc-arm.c:10057 msgid "selected processor does not support instruction" msgstr "" -#: config/tc-arm.c:10008 config/tc-arm.c:10071 +#: config/tc-arm.c:9997 config/tc-arm.c:10060 msgid "accessing MVE system register without MVE is UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:10099 config/tc-arm.c:13219 +#: config/tc-arm.c:10088 config/tc-arm.c:13208 msgid "bad register for mrs" msgstr "" -#: config/tc-arm.c:10106 config/tc-arm.c:13243 +#: config/tc-arm.c:10095 config/tc-arm.c:13232 msgid "'APSR', 'CPSR' or 'SPSR' expected" msgstr "" -#: config/tc-arm.c:10147 +#: config/tc-arm.c:10136 msgid "Rd and Rm should be different in mul" msgstr "" -#: config/tc-arm.c:10166 config/tc-arm.c:10443 config/tc-arm.c:13382 +#: config/tc-arm.c:10155 config/tc-arm.c:10432 config/tc-arm.c:13371 msgid "rdhi and rdlo must be different" msgstr "" -#: config/tc-arm.c:10172 +#: config/tc-arm.c:10161 msgid "rdhi, rdlo and rm must all be different" msgstr "" -#: config/tc-arm.c:10238 +#: config/tc-arm.c:10227 msgid "'[' expected after PLD mnemonic" msgstr "" -#: config/tc-arm.c:10240 config/tc-arm.c:10255 +#: config/tc-arm.c:10229 config/tc-arm.c:10244 msgid "post-indexed expression used in preload instruction" msgstr "" -#: config/tc-arm.c:10242 config/tc-arm.c:10257 +#: config/tc-arm.c:10231 config/tc-arm.c:10246 msgid "writeback used in preload instruction" msgstr "" -#: config/tc-arm.c:10244 config/tc-arm.c:10259 +#: config/tc-arm.c:10233 config/tc-arm.c:10248 msgid "unindexed addressing used in preload instruction" msgstr "" -#: config/tc-arm.c:10253 +#: config/tc-arm.c:10242 msgid "'[' expected after PLI mnemonic" msgstr "" -#: config/tc-arm.c:10268 config/tc-arm.c:13551 +#: config/tc-arm.c:10257 config/tc-arm.c:13540 msgid "push/pop do not support {reglist}^" msgstr "" -#: config/tc-arm.c:10346 config/tc-arm.c:13728 +#: config/tc-arm.c:10335 config/tc-arm.c:13717 msgid "setend use is deprecated for ARMv8" msgstr "" -#: config/tc-arm.c:10367 config/tc-arm.c:13789 config/tc-arm.c:13821 -#: config/tc-arm.c:13864 +#: config/tc-arm.c:10356 config/tc-arm.c:13778 config/tc-arm.c:13810 +#: config/tc-arm.c:13853 msgid "extraneous shift as part of operand to shift insn" msgstr "" -#: config/tc-arm.c:10377 config/tc-arm.c:13927 +#: config/tc-arm.c:10366 config/tc-arm.c:13916 msgid "immediate too large (bigger than 0xF)" msgstr "" -#: config/tc-arm.c:10401 config/tc-arm.c:10410 +#: config/tc-arm.c:10390 config/tc-arm.c:10399 msgid "selected processor does not support SETPAN instruction" msgstr "" -#: config/tc-arm.c:10469 +#: config/tc-arm.c:10458 msgid "SRS base register must be r13" msgstr "" -#: config/tc-arm.c:10528 +#: config/tc-arm.c:10517 msgid "can only store two consecutive registers" msgstr "" -#: config/tc-arm.c:10650 config/tc-arm.c:10671 +#: config/tc-arm.c:10639 config/tc-arm.c:10660 msgid "only two consecutive VFP SP registers allowed here" msgstr "" -#: config/tc-arm.c:10699 config/tc-arm.c:10714 +#: config/tc-arm.c:10688 config/tc-arm.c:10703 msgid "this addressing mode requires base-register writeback" msgstr "" #. If srcsize is 16, inst.operands[1].imm must be in the range 0-16. #. i.e. immbits must be in range 0 - 16. -#: config/tc-arm.c:10843 +#: config/tc-arm.c:10832 msgid "immediate value out of range, expected range [0, 16]" msgstr "" #. If srcsize is 32, inst.operands[1].imm must be in the range 1-32. #. i.e. immbits must be in range 0 - 31. -#: config/tc-arm.c:10850 +#: config/tc-arm.c:10839 msgid "immediate value out of range, expected range [1, 32]" msgstr "" -#: config/tc-arm.c:10891 +#: config/tc-arm.c:10880 msgid "only r15 allowed here" msgstr "" -#: config/tc-arm.c:11026 +#: config/tc-arm.c:11015 msgid "immediate operand requires iWMMXt2" msgstr "" -#: config/tc-arm.c:11119 +#: config/tc-arm.c:11108 msgid "shift by register not allowed in thumb mode" msgstr "" -#: config/tc-arm.c:11131 config/tc-arm.c:13973 config/tc-arm.c:28057 +#: config/tc-arm.c:11120 config/tc-arm.c:13962 config/tc-arm.c:28002 msgid "shift expression is too large" msgstr "" -#: config/tc-arm.c:11164 +#: config/tc-arm.c:11153 msgid "cannot use register index with this instruction" msgstr "" -#: config/tc-arm.c:11166 +#: config/tc-arm.c:11155 msgid "Thumb does not support negative register indexing" msgstr "" -#: config/tc-arm.c:11168 +#: config/tc-arm.c:11157 msgid "Thumb does not support register post-indexing" msgstr "" -#: config/tc-arm.c:11170 +#: config/tc-arm.c:11159 msgid "Thumb does not support register indexing with writeback" msgstr "" -#: config/tc-arm.c:11172 +#: config/tc-arm.c:11161 msgid "Thumb supports only LSL in shifted register indexing" msgstr "" -#: config/tc-arm.c:11181 config/tc-arm.c:19703 +#: config/tc-arm.c:11170 config/tc-arm.c:19692 msgid "shift out of range" msgstr "" -#: config/tc-arm.c:11190 +#: config/tc-arm.c:11179 msgid "cannot use writeback with this instruction" msgstr "" -#: config/tc-arm.c:11211 +#: config/tc-arm.c:11200 msgid "cannot use post-indexing with PC-relative addressing" msgstr "" -#: config/tc-arm.c:11212 +#: config/tc-arm.c:11201 msgid "cannot use post-indexing with this instruction" msgstr "" -#: config/tc-arm.c:11450 +#: config/tc-arm.c:11439 msgid "cannot honor width suffix" msgstr "" -#: config/tc-arm.c:11464 +#: config/tc-arm.c:11453 msgid "only SUBS PC, LR, #const allowed" msgstr "" -#: config/tc-arm.c:11547 config/tc-arm.c:11707 config/tc-arm.c:11804 -#: config/tc-arm.c:13180 config/tc-arm.c:13488 +#: config/tc-arm.c:11536 config/tc-arm.c:11696 config/tc-arm.c:11793 +#: config/tc-arm.c:13169 config/tc-arm.c:13477 msgid "shift must be constant" msgstr "" -#: config/tc-arm.c:11552 +#: config/tc-arm.c:11541 msgid "shift value over 3 not allowed in thumb mode" msgstr "" -#: config/tc-arm.c:11554 +#: config/tc-arm.c:11543 msgid "only LSL shift allowed in thumb mode" msgstr "" -#: config/tc-arm.c:11578 config/tc-arm.c:11722 config/tc-arm.c:11819 -#: config/tc-arm.c:13193 +#: config/tc-arm.c:11567 config/tc-arm.c:11711 config/tc-arm.c:11808 +#: config/tc-arm.c:13182 msgid "unshifted register required" msgstr "" -#: config/tc-arm.c:11593 config/tc-arm.c:11830 config/tc-arm.c:13343 +#: config/tc-arm.c:11582 config/tc-arm.c:11819 config/tc-arm.c:13332 msgid "dest must overlap one source register" msgstr "" -#: config/tc-arm.c:11725 config/tc-csky.c:6026 +#: config/tc-arm.c:11714 config/tc-csky.c:6044 msgid "dest and source1 must be the same register" msgstr "" -#: config/tc-arm.c:11965 +#: config/tc-arm.c:11954 msgid "" "selected architecture does not support wide conditional branch instruction" msgstr "" -#: config/tc-arm.c:11998 +#: config/tc-arm.c:11987 msgid "instruction is always unconditional" msgstr "" -#: config/tc-arm.c:12173 +#: config/tc-arm.c:12162 msgid "selected processor does not support 'A' form of this instruction" msgstr "" -#: config/tc-arm.c:12176 +#: config/tc-arm.c:12165 msgid "Thumb does not support the 2-argument form of this instruction" msgstr "" -#: config/tc-arm.c:12301 +#: config/tc-arm.c:12290 msgid "SP not allowed in register list" msgstr "" -#: config/tc-arm.c:12305 +#: config/tc-arm.c:12294 msgid "" "having the base register in the register list when using write back is " "UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:12313 +#: config/tc-arm.c:12302 msgid "LR and PC should not both be in register list" msgstr "" -#: config/tc-arm.c:12321 +#: config/tc-arm.c:12310 msgid "PC not allowed in register list" msgstr "" -#: config/tc-arm.c:12366 +#: config/tc-arm.c:12355 msgid "Thumb load/store multiple does not support {reglist}^" msgstr "" -#: config/tc-arm.c:12444 config/tc-arm.c:12478 +#: config/tc-arm.c:12433 config/tc-arm.c:12467 #, c-format msgid "value stored for r%d is UNKNOWN" msgstr "" -#: config/tc-arm.c:12471 +#: config/tc-arm.c:12460 msgid "Thumb-2 instruction only valid in unified syntax" msgstr "" -#: config/tc-arm.c:12475 config/tc-arm.c:12485 +#: config/tc-arm.c:12464 config/tc-arm.c:12474 msgid "this instruction will write back the base register" msgstr "" -#: config/tc-arm.c:12488 +#: config/tc-arm.c:12477 msgid "this instruction will not write back the base register" msgstr "" -#: config/tc-arm.c:12519 +#: config/tc-arm.c:12508 msgid "r14 not allowed as first register when second register is omitted" msgstr "" -#: config/tc-arm.c:12619 +#: config/tc-arm.c:12608 msgid "" "This instruction may be unpredictable if executed on M-profile cores with " "interrupts enabled." msgstr "" -#: config/tc-arm.c:12648 config/tc-arm.c:12661 config/tc-arm.c:12697 +#: config/tc-arm.c:12637 config/tc-arm.c:12650 config/tc-arm.c:12686 msgid "Thumb does not support this addressing mode" msgstr "" -#: config/tc-arm.c:12665 +#: config/tc-arm.c:12654 msgid "byte or halfword not valid for base register" msgstr "" -#: config/tc-arm.c:12668 +#: config/tc-arm.c:12657 msgid "r15 based store not allowed" msgstr "" -#: config/tc-arm.c:12670 +#: config/tc-arm.c:12659 msgid "invalid base register for register offset" msgstr "" -#: config/tc-arm.c:12727 +#: config/tc-arm.c:12716 msgid "r12 not allowed here" msgstr "" -#: config/tc-arm.c:12733 +#: config/tc-arm.c:12722 msgid "base register written back, and overlaps one of transfer registers" msgstr "" -#: config/tc-arm.c:12861 +#: config/tc-arm.c:12850 #, c-format msgid "" "Use of r%u as a source register is deprecated when r%u is the destination " "register." msgstr "" -#: config/tc-arm.c:13056 +#: config/tc-arm.c:13045 msgid "shifts in CMP/MOV instructions are only supported in unified syntax" msgstr "" -#: config/tc-arm.c:13084 +#: config/tc-arm.c:13073 msgid "only lo regs allowed with immediate" msgstr "" -#: config/tc-arm.c:13261 +#: config/tc-arm.c:13250 msgid "Thumb encoding does not support an immediate here" msgstr "" -#: config/tc-arm.c:13348 +#: config/tc-arm.c:13337 msgid "Thumb-2 MUL must not set flags" msgstr "" -#: config/tc-arm.c:13413 +#: config/tc-arm.c:13402 msgid "Thumb does not support NOP with hints" msgstr "" -#: config/tc-arm.c:13573 config/tc-arm.c:13585 +#: config/tc-arm.c:13562 config/tc-arm.c:13574 msgid "invalid register list to push/pop instruction" msgstr "" -#: config/tc-arm.c:13848 +#: config/tc-arm.c:13837 msgid "source1 and dest must be same register" msgstr "" -#: config/tc-arm.c:13873 +#: config/tc-arm.c:13862 msgid "ror #imm not supported" msgstr "" -#: config/tc-arm.c:13924 +#: config/tc-arm.c:13913 msgid "SMC is not permitted on this architecture" msgstr "" -#: config/tc-arm.c:14090 +#: config/tc-arm.c:14079 msgid "Thumb encoding does not support rotation" msgstr "" -#: config/tc-arm.c:14110 +#: config/tc-arm.c:14099 msgid "instruction requires register index" msgstr "" -#: config/tc-arm.c:14120 +#: config/tc-arm.c:14109 msgid "instruction does not allow shifted index" msgstr "" -#: config/tc-arm.c:14276 config/tc-arm.c:29201 +#: config/tc-arm.c:14265 config/tc-arm.c:29146 msgid "out of range label-relative fixup value" msgstr "" -#: config/tc-arm.c:14600 +#: config/tc-arm.c:14589 msgid "invalid neon suffix for non neon instruction" msgstr "" -#: config/tc-arm.c:14995 config/tc-arm.c:15348 config/tc-arm.c:16833 -#: config/tc-arm.c:16913 config/tc-arm.c:16970 config/tc-arm.c:18851 -#: config/tc-arm.c:21039 config/tc-arm.c:21226 +#: config/tc-arm.c:14984 config/tc-arm.c:15337 config/tc-arm.c:16822 +#: config/tc-arm.c:16902 config/tc-arm.c:16959 config/tc-arm.c:18840 +#: config/tc-arm.c:21028 config/tc-arm.c:21215 msgid "invalid instruction shape" msgstr "" -#: config/tc-arm.c:15247 +#: config/tc-arm.c:15236 msgid "types specified in both the mnemonic and operands" msgstr "" -#: config/tc-arm.c:15284 +#: config/tc-arm.c:15273 msgid "operand types can't be inferred" msgstr "" -#: config/tc-arm.c:15290 +#: config/tc-arm.c:15279 msgid "type specifier has the wrong number of parts" msgstr "" -#: config/tc-arm.c:15376 config/tc-arm.c:19112 config/tc-arm.c:19119 +#: config/tc-arm.c:15365 config/tc-arm.c:19101 config/tc-arm.c:19108 msgid "operand size must match register width" msgstr "" -#: config/tc-arm.c:15398 +#: config/tc-arm.c:15387 msgid "inconsistent types in Neon instruction" msgstr "" -#: config/tc-arm.c:15819 +#: config/tc-arm.c:15808 msgid "Type is not allowed for this instruction" msgstr "" -#: config/tc-arm.c:15894 +#: config/tc-arm.c:15883 msgid "MVE vector or ARM register expected" msgstr "" -#: config/tc-arm.c:16011 +#: config/tc-arm.c:16000 msgid "immediate must be either 1, 2, 4 or 8" msgstr "" -#: config/tc-arm.c:16168 +#: config/tc-arm.c:16157 msgid "immediate operand expected in the range [1,8]" msgstr "" -#: config/tc-arm.c:16169 +#: config/tc-arm.c:16158 msgid "immediate operand expected in the range [1,16]" msgstr "" -#: config/tc-arm.c:16311 +#: config/tc-arm.c:16300 msgid "expected LR" msgstr "" -#: config/tc-arm.c:16810 config/tc-arm.c:16890 config/tc-arm.c:18487 -#: config/tc-arm.c:20320 +#: config/tc-arm.c:16799 config/tc-arm.c:16879 config/tc-arm.c:18476 +#: config/tc-arm.c:20309 msgid "immediate out of range for shift" msgstr "" -#: config/tc-arm.c:17104 +#: config/tc-arm.c:17093 msgid "first and second operands shall be the same register" msgstr "" -#: config/tc-arm.c:17218 config/tc-arm.c:17280 +#: config/tc-arm.c:17207 config/tc-arm.c:17269 msgid "destination register and offset register may not be the same" msgstr "" -#: config/tc-arm.c:17230 config/tc-arm.c:17349 +#: config/tc-arm.c:17219 config/tc-arm.c:17338 msgid "immediate must be a multiple of 4 in the range of +/-[0,508]" msgstr "" -#: config/tc-arm.c:17232 +#: config/tc-arm.c:17221 msgid "immediate must be a multiple of 8 in the range of +/-[0,1016]" msgstr "" -#: config/tc-arm.c:17253 +#: config/tc-arm.c:17242 msgid "can not shift offsets when accessing less than half-word" msgstr "" -#: config/tc-arm.c:17255 +#: config/tc-arm.c:17244 msgid "" "shift immediate must be 1, 2 or 3 for half-word, word or double-word " "accesses respectively" msgstr "" -#: config/tc-arm.c:17342 +#: config/tc-arm.c:17331 msgid "immediate must be in the range of +/-[0,127]" msgstr "" -#: config/tc-arm.c:17345 +#: config/tc-arm.c:17334 msgid "immediate must be a multiple of 2 in the range of +/-[0,254]" msgstr "" -#: config/tc-arm.c:17359 config/tc-arm.c:18185 +#: config/tc-arm.c:17348 config/tc-arm.c:18174 msgid "MVE vector register in the range [Q0..Q7] expected" msgstr "" -#: config/tc-arm.c:17675 config/tc-arm.c:19542 +#: config/tc-arm.c:17664 config/tc-arm.c:19531 msgid "scalar out of range for multiply instruction" msgstr "" -#: config/tc-arm.c:17763 +#: config/tc-arm.c:17752 msgid "index must be in the range 0 to 3" msgstr "" -#: config/tc-arm.c:17766 +#: config/tc-arm.c:17755 msgid "indexed register must be less than 8" msgstr "" -#: config/tc-arm.c:17967 config/tc-arm.c:21290 +#: config/tc-arm.c:17956 config/tc-arm.c:21279 msgid "" "Warning: 32-bit element size and same first and third operand makes " "instruction UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:18326 +#: config/tc-arm.c:18315 msgid "instruction form not available on this architecture." msgstr "" -#: config/tc-arm.c:18329 +#: config/tc-arm.c:18318 msgid "this instruction implies use of ARMv8.1 AdvSIMD." msgstr "" -#: config/tc-arm.c:18436 config/tc-arm.c:18461 +#: config/tc-arm.c:18425 config/tc-arm.c:18450 msgid "immediate out of range for insert" msgstr "" -#: config/tc-arm.c:18608 +#: config/tc-arm.c:18597 msgid "immediate out of range for narrowing operation" msgstr "" -#: config/tc-arm.c:18755 +#: config/tc-arm.c:18744 msgid "operands 0 and 1 must be the same register" msgstr "" -#: config/tc-arm.c:18861 config/tc-arm.c:21138 +#: config/tc-arm.c:18850 config/tc-arm.c:21127 msgid "invalid rounding mode" msgstr "" -#: config/tc-arm.c:19332 +#: config/tc-arm.c:19321 msgid "operand size must be specified for immediate VMOV" msgstr "" -#: config/tc-arm.c:19342 +#: config/tc-arm.c:19331 msgid "immediate has bits set outside the operand size" msgstr "" -#: config/tc-arm.c:19577 +#: config/tc-arm.c:19566 msgid "" "vfmal/vfmsl with FP16 type cannot be conditional, the behaviour is " "UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:19685 +#: config/tc-arm.c:19674 msgid "Instruction form not available on this architecture." msgstr "" -#: config/tc-arm.c:19739 +#: config/tc-arm.c:19728 msgid "" "Warning: 64-bit element size and same destination and source operands makes " "instruction UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:19744 +#: config/tc-arm.c:19733 msgid "elements must be smaller than reversal region" msgstr "" -#: config/tc-arm.c:19836 +#: config/tc-arm.c:19825 msgid "Index one must be [2,3] and index two must be two less than index one." msgstr "" -#: config/tc-arm.c:19839 +#: config/tc-arm.c:19828 msgid "Destination registers may not be the same" msgstr "" -#: config/tc-arm.c:20037 config/tc-arm.c:20120 +#: config/tc-arm.c:20026 config/tc-arm.c:20109 msgid "bad type for scalar" msgstr "" -#: config/tc-arm.c:20176 +#: config/tc-arm.c:20165 msgid "" "immediate constant is valid both as a bit-pattern and a floating point value " "(using the fp value)" msgstr "" -#: config/tc-arm.c:20228 config/tc-arm.c:20239 +#: config/tc-arm.c:20217 config/tc-arm.c:20228 msgid "VFP registers must be adjacent" msgstr "" -#: config/tc-arm.c:20329 +#: config/tc-arm.c:20318 msgid "invalid suffix" msgstr "" -#: config/tc-arm.c:20483 +#: config/tc-arm.c:20472 msgid "bad list length for table lookup" msgstr "" -#: config/tc-arm.c:20516 +#: config/tc-arm.c:20505 msgid "writeback (!) must be used for VLDMDB and VSTMDB" msgstr "" -#: config/tc-arm.c:20519 config/tc-arm.c:20545 +#: config/tc-arm.c:20508 config/tc-arm.c:20534 msgid "register list must contain at least 1 and at most 16 registers" msgstr "" -#: config/tc-arm.c:20540 +#: config/tc-arm.c:20529 msgid "register list must contain at least 1 and at most 32 registers" msgstr "" -#: config/tc-arm.c:20593 config/tc-arm.c:20626 +#: config/tc-arm.c:20582 config/tc-arm.c:20615 msgid "Use of PC here is UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:20595 +#: config/tc-arm.c:20584 msgid "Use of PC here is deprecated" msgstr "" -#: config/tc-arm.c:20629 +#: config/tc-arm.c:20618 msgid "instruction does not accept register index" msgstr "" -#: config/tc-arm.c:20632 +#: config/tc-arm.c:20621 msgid "instruction does not accept PC-relative addressing" msgstr "" -#: config/tc-arm.c:20654 config/tc-arm.c:20663 +#: config/tc-arm.c:20643 config/tc-arm.c:20652 msgid "Instruction not permitted on this architecture" msgstr "" -#: config/tc-arm.c:20712 +#: config/tc-arm.c:20701 msgid "bad alignment" msgstr "" -#: config/tc-arm.c:20729 +#: config/tc-arm.c:20718 msgid "bad list type for instruction" msgstr "" -#: config/tc-arm.c:20773 +#: config/tc-arm.c:20762 msgid "unsupported alignment for instruction" msgstr "" -#: config/tc-arm.c:20792 config/tc-arm.c:20886 config/tc-arm.c:20898 -#: config/tc-arm.c:20908 config/tc-arm.c:20922 +#: config/tc-arm.c:20781 config/tc-arm.c:20875 config/tc-arm.c:20887 +#: config/tc-arm.c:20897 config/tc-arm.c:20911 msgid "bad list length" msgstr "" -#: config/tc-arm.c:20797 +#: config/tc-arm.c:20786 msgid "stride of 2 unavailable when element size is 8" msgstr "" -#: config/tc-arm.c:20830 config/tc-arm.c:20906 +#: config/tc-arm.c:20819 config/tc-arm.c:20895 msgid "can't use alignment with this instruction" msgstr "" -#: config/tc-arm.c:20978 +#: config/tc-arm.c:20967 msgid "post-index must be a register" msgstr "" -#: config/tc-arm.c:20980 +#: config/tc-arm.c:20969 msgid "bad register for post-index" msgstr "" -#: config/tc-arm.c:21202 +#: config/tc-arm.c:21191 msgid "scalar out of range" msgstr "" -#: config/tc-arm.c:21335 +#: config/tc-arm.c:21324 msgid "" "Dot Product instructions cannot be conditional, the behaviour is " "UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:21410 config/tc-arm.c:21438 config/tc-arm.c:22120 +#: config/tc-arm.c:21399 config/tc-arm.c:21427 config/tc-arm.c:22109 msgid "index must be 0 or 1" msgstr "" -#: config/tc-arm.c:21413 config/tc-arm.c:21441 config/tc-arm.c:22123 +#: config/tc-arm.c:21402 config/tc-arm.c:21430 config/tc-arm.c:22112 msgid "indexed register must be less than 16" msgstr "" -#: config/tc-arm.c:21479 +#: config/tc-arm.c:21468 msgid "Register must be r0-r14 except r13, or APSR_nzcv." msgstr "" -#: config/tc-arm.c:21482 +#: config/tc-arm.c:21471 msgid "Register must be an even register between r0-r10." msgstr "" -#: config/tc-arm.c:21507 +#: config/tc-arm.c:21496 msgid "CDE Coprocessor must be in range 0-7" msgstr "" -#: config/tc-arm.c:21541 +#: config/tc-arm.c:21530 msgid "cx1d requires consecutive destination registers." msgstr "" -#: config/tc-arm.c:21571 +#: config/tc-arm.c:21560 msgid "cx2d requires consecutive destination registers." msgstr "" -#: config/tc-arm.c:21610 +#: config/tc-arm.c:21599 msgid "cx3d requires consecutive destination registers." msgstr "" -#: config/tc-arm.c:21802 +#: config/tc-arm.c:21791 msgid "'q' register must be in range 0-7" msgstr "" -#: config/tc-arm.c:21805 +#: config/tc-arm.c:21794 msgid "'d' register must be in range 0-15" msgstr "" -#: config/tc-arm.c:21807 +#: config/tc-arm.c:21796 msgid "'s' register must be in range 0-31" msgstr "" -#: config/tc-arm.c:21862 +#: config/tc-arm.c:21851 msgid "vcx instructions with Q registers require MVE" msgstr "" -#: config/tc-arm.c:21867 +#: config/tc-arm.c:21856 msgid "" "vcx instructions with S or D registers require either MVE or Armv8-M " "floating point extension." msgstr "" -#: config/tc-arm.c:21883 +#: config/tc-arm.c:21872 msgid "vcx1 with S or D registers takes immediate within 0-2047" msgstr "" -#: config/tc-arm.c:21899 +#: config/tc-arm.c:21888 msgid "vcx2 with S or D registers takes immediate within 0-63" msgstr "" -#: config/tc-arm.c:21914 +#: config/tc-arm.c:21903 msgid "vcx2 with S or D registers takes immediate within 0-7" msgstr "" -#: config/tc-arm.c:22504 config/tc-arm.c:22625 +#: config/tc-arm.c:22492 config/tc-arm.c:22610 msgid "conditional infixes are deprecated in unified syntax" msgstr "" -#: config/tc-arm.c:22836 +#: config/tc-arm.c:22821 msgid "Warning: conditional outside an IT block for Thumb." msgstr "" -#: config/tc-arm.c:23164 +#: config/tc-arm.c:23149 msgid "Short branches, Undefined, SVC, LDM/STM" msgstr "" -#: config/tc-arm.c:23165 +#: config/tc-arm.c:23150 msgid "Miscellaneous 16-bit instructions" msgstr "" -#: config/tc-arm.c:23166 +#: config/tc-arm.c:23151 msgid "ADR" msgstr "" -#: config/tc-arm.c:23167 +#: config/tc-arm.c:23152 msgid "Literal loads" msgstr "" -#: config/tc-arm.c:23168 +#: config/tc-arm.c:23153 msgid "Hi-register ADD, MOV, CMP, BX, BLX using pc" msgstr "" -#: config/tc-arm.c:23169 +#: config/tc-arm.c:23154 msgid "Hi-register ADD, MOV, CMP using pc" msgstr "" #. NOTE: 0x00dd is not the real encoding, instead, it is the 'tvalue' #. field in asm_opcode. 'tvalue' is used at the stage this check happen. -#: config/tc-arm.c:23172 +#: config/tc-arm.c:23157 msgid "ADD/SUB sp, sp #imm" msgstr "" -#: config/tc-arm.c:23194 +#: config/tc-arm.c:23179 msgid "" "IT blocks containing 32-bit Thumb instructions are performance deprecated in " "ARMv8-A and ARMv8-R" msgstr "" -#: config/tc-arm.c:23206 +#: config/tc-arm.c:23191 #, c-format msgid "" "IT blocks containing 16-bit Thumb instructions of the following class are " "performance deprecated in ARMv8-A and ARMv8-R: %s" msgstr "" -#: config/tc-arm.c:23220 +#: config/tc-arm.c:23205 msgid "" "IT blocks containing more than one conditional instruction are performance " "deprecated in ARMv8-A and ARMv8-R" msgstr "" -#: config/tc-arm.c:23338 +#: config/tc-arm.c:23323 #, c-format msgid "bad instruction `%s'" msgstr "" -#: config/tc-arm.c:23344 +#: config/tc-arm.c:23329 msgid "s suffix on comparison instruction is deprecated" msgstr "" -#: config/tc-arm.c:23364 +#: config/tc-arm.c:23349 msgid "SVC is not permitted on this architecture" msgstr "" -#: config/tc-arm.c:23366 +#: config/tc-arm.c:23351 #, c-format msgid "selected processor does not support `%s' in Thumb mode" msgstr "" -#: config/tc-arm.c:23372 +#: config/tc-arm.c:23357 msgid "Thumb does not support conditional execution" msgstr "" -#: config/tc-arm.c:23392 +#: config/tc-arm.c:23377 #, c-format msgid "" "selected processor does not support 32bit wide variant of instruction `%s'" msgstr "" -#: config/tc-arm.c:23395 +#: config/tc-arm.c:23380 #, c-format msgid "selected processor does not support `%s' in Thumb-2 mode" msgstr "" -#: config/tc-arm.c:23420 +#: config/tc-arm.c:23405 #, c-format msgid "cannot honor width suffix -- `%s'" msgstr "" -#: config/tc-arm.c:23462 +#: config/tc-arm.c:23447 #, c-format msgid "selected processor does not support `%s' in ARM mode" msgstr "" -#: config/tc-arm.c:23467 +#: config/tc-arm.c:23452 #, c-format msgid "width suffixes are invalid in ARM mode -- `%s'" msgstr "" -#: config/tc-arm.c:23500 +#: config/tc-arm.c:23485 #, c-format msgid "attempt to use an ARM instruction on a Thumb-only processor -- `%s'" msgstr "" -#: config/tc-arm.c:23518 +#: config/tc-arm.c:23503 #, c-format msgid "section '%s' finished with an open IT block." msgstr "" -#: config/tc-arm.c:23521 +#: config/tc-arm.c:23506 #, c-format msgid "section '%s' finished with an open VPT/VPST block." msgstr "" -#: config/tc-arm.c:23528 +#: config/tc-arm.c:23513 msgid "file finished with an open IT block." msgstr "" -#: config/tc-arm.c:23530 +#: config/tc-arm.c:23515 msgid "file finished with an open VPT/VPST block." msgstr "" -#: config/tc-arm.c:26696 -#, c-format -msgid "alignments greater than %d bytes not supported in .text sections." -msgstr "" - -#: config/tc-arm.c:26962 config/tc-ia64.c:3588 +#: config/tc-arm.c:26907 config/tc-ia64.c:3586 #, c-format msgid "Group section `%s' has no group signature" msgstr "" -#: config/tc-arm.c:27008 +#: config/tc-arm.c:26953 msgid "handlerdata in cantunwind frame" msgstr "" -#: config/tc-arm.c:27026 +#: config/tc-arm.c:26971 msgid "too many unwind opcodes for personality routine 0" msgstr "" -#: config/tc-arm.c:27059 +#: config/tc-arm.c:27004 msgid "attempt to recreate an unwind entry" msgstr "" -#: config/tc-arm.c:27070 +#: config/tc-arm.c:27015 msgid "too many unwind opcodes" msgstr "" -#: config/tc-arm.c:27374 +#: config/tc-arm.c:27319 #, c-format msgid "[-mwarn-syms]: Assignment makes a symbol match an ARM instruction: %s" msgstr "" -#: config/tc-arm.c:27736 config/tc-arm.c:27804 +#: config/tc-arm.c:27681 config/tc-arm.c:27749 #, c-format msgid "symbol %s is in a different section" msgstr "" -#: config/tc-arm.c:27738 config/tc-arm.c:27806 +#: config/tc-arm.c:27683 config/tc-arm.c:27751 #, c-format msgid "symbol %s is weak and may be overridden later" msgstr "" -#: config/tc-arm.c:27783 config/tc-arm.c:28155 +#: config/tc-arm.c:27728 config/tc-arm.c:28100 #, c-format msgid "invalid constant (%lx) after fixup" msgstr "" -#: config/tc-arm.c:27839 +#: config/tc-arm.c:27784 #, c-format msgid "unable to compute ADRL instructions for PC offset of 0x%lx" msgstr "" -#: config/tc-arm.c:27875 config/tc-arm.c:27905 +#: config/tc-arm.c:27820 config/tc-arm.c:27850 msgid "invalid literal constant: pool needs to be closer" msgstr "" -#: config/tc-arm.c:27878 config/tc-arm.c:27927 +#: config/tc-arm.c:27823 config/tc-arm.c:27872 #, c-format msgid "bad immediate value for offset (%ld)" msgstr "" -#: config/tc-arm.c:27908 +#: config/tc-arm.c:27853 #, c-format msgid "bad immediate value for 8-bit offset (%ld)" msgstr "" -#: config/tc-arm.c:27968 +#: config/tc-arm.c:27913 msgid "offset not a multiple of 4" msgstr "" -#: config/tc-arm.c:28171 +#: config/tc-arm.c:28116 msgid "invalid smc expression" msgstr "" -#: config/tc-arm.c:28181 +#: config/tc-arm.c:28126 msgid "invalid hvc expression" msgstr "" -#: config/tc-arm.c:28192 config/tc-arm.c:28201 +#: config/tc-arm.c:28137 config/tc-arm.c:28146 msgid "invalid swi expression" msgstr "" -#: config/tc-arm.c:28211 +#: config/tc-arm.c:28156 msgid "invalid expression in load/store multiple" msgstr "" -#: config/tc-arm.c:28273 +#: config/tc-arm.c:28218 #, c-format msgid "blx to '%s' an ARM ISA state function changed to bl" msgstr "" -#: config/tc-arm.c:28292 +#: config/tc-arm.c:28237 msgid "misaligned branch destination" msgstr "" -#: config/tc-arm.c:28413 +#: config/tc-arm.c:28358 #, c-format msgid "blx to Thumb func '%s' from Thumb ISA state changed to bl" msgstr "" -#: config/tc-arm.c:28462 +#: config/tc-arm.c:28407 msgid "Thumb2 branch out of range" msgstr "" -#: config/tc-arm.c:28514 config/tc-arm.c:28547 +#: config/tc-arm.c:28459 config/tc-arm.c:28492 msgid "Relocation supported only in FDPIC mode" msgstr "" -#: config/tc-arm.c:28577 +#: config/tc-arm.c:28522 msgid "rel31 relocation overflow" msgstr "" -#: config/tc-arm.c:28599 config/tc-arm.c:28605 config/tc-arm.c:28609 -#: config/tc-arm.c:28656 +#: config/tc-arm.c:28544 config/tc-arm.c:28550 config/tc-arm.c:28554 +#: config/tc-arm.c:28601 msgid "co-processor offset out of range" msgstr "" -#: config/tc-arm.c:28673 +#: config/tc-arm.c:28618 #, c-format msgid "invalid offset, target not word aligned (0x%08lX)" msgstr "" -#: config/tc-arm.c:28679 +#: config/tc-arm.c:28624 msgid "section does not have enough alignment to ensure safe PC-relative loads" msgstr "" -#: config/tc-arm.c:28683 config/tc-arm.c:28692 config/tc-arm.c:28700 -#: config/tc-arm.c:28708 config/tc-arm.c:28716 +#: config/tc-arm.c:28628 config/tc-arm.c:28637 config/tc-arm.c:28645 +#: config/tc-arm.c:28653 config/tc-arm.c:28661 #, c-format msgid "invalid offset, value too big (0x%08lX)" msgstr "" -#: config/tc-arm.c:28757 +#: config/tc-arm.c:28702 msgid "invalid Hi register with immediate" msgstr "" -#: config/tc-arm.c:28773 +#: config/tc-arm.c:28718 msgid "invalid immediate for stack address calculation" msgstr "" -#: config/tc-arm.c:28792 +#: config/tc-arm.c:28737 msgid "address calculation needs a strongly defined nearby symbol" msgstr "" -#: config/tc-arm.c:28808 +#: config/tc-arm.c:28753 msgid "symbol too far away" msgstr "" -#: config/tc-arm.c:28820 +#: config/tc-arm.c:28765 #, c-format msgid "invalid immediate for address calculation (value = 0x%08lX)" msgstr "" -#: config/tc-arm.c:28850 +#: config/tc-arm.c:28795 #, c-format msgid "invalid immediate: %ld is out of range" msgstr "" -#: config/tc-arm.c:28862 +#: config/tc-arm.c:28807 #, c-format msgid "invalid shift value: %ld" msgstr "" -#: config/tc-arm.c:28932 config/tc-arm.c:29003 +#: config/tc-arm.c:28877 config/tc-arm.c:28948 #, c-format msgid "the offset 0x%08lX is not representable" msgstr "" -#: config/tc-arm.c:28964 +#: config/tc-arm.c:28909 #, c-format msgid "Unable to process relocation for thumb opcode: %lx" msgstr "" -#: config/tc-arm.c:29043 +#: config/tc-arm.c:28988 #, c-format msgid "bad offset 0x%08lX (only 12 bits available for the magnitude)" msgstr "" -#: config/tc-arm.c:29082 +#: config/tc-arm.c:29027 #, c-format msgid "bad offset 0x%08lX (only 8 bits available for the magnitude)" msgstr "" -#: config/tc-arm.c:29122 +#: config/tc-arm.c:29067 #, c-format msgid "bad offset 0x%08lX (must be word-aligned)" msgstr "" -#: config/tc-arm.c:29127 +#: config/tc-arm.c:29072 #, c-format msgid "bad offset 0x%08lX (must be an 8-bit number of words)" msgstr "" -#: config/tc-arm.c:29348 config/tc-score.c:7302 +#: config/tc-arm.c:29293 config/tc-score.c:7300 #, c-format msgid "bad relocation fixup type (%d)" msgstr "" -#: config/tc-arm.c:29465 +#: config/tc-arm.c:29410 msgid "literal referenced across section boundary" msgstr "" -#: config/tc-arm.c:29545 +#: config/tc-arm.c:29490 msgid "internal relocation (type: IMMEDIATE) not fixed up" msgstr "" -#: config/tc-arm.c:29550 +#: config/tc-arm.c:29495 msgid "ADRL used for a symbol not defined in the same file" msgstr "" -#: config/tc-arm.c:29557 +#: config/tc-arm.c:29502 #, c-format msgid "%s used for a symbol not defined in the same file" msgstr "" -#: config/tc-arm.c:29573 +#: config/tc-arm.c:29518 #, c-format msgid "undefined local label `%s'" msgstr "" -#: config/tc-arm.c:29579 +#: config/tc-arm.c:29524 msgid "internal_relocation (type: OFFSET_IMM) not fixed up" msgstr "" -#: config/tc-arm.c:29601 config/tc-cris.c:3999 config/tc-csky.c:1152 -#: config/tc-ft32.c:707 config/tc-mcore.c:1932 config/tc-microblaze.c:2062 -#: config/tc-mmix.c:2898 config/tc-moxie.c:823 config/tc-ns32k.c:2245 -#: config/tc-score.c:7389 +#: config/tc-arm.c:29546 config/tc-cris.c:3998 config/tc-csky.c:1176 +#: config/tc-ft32.c:705 config/tc-mcore.c:1932 config/tc-microblaze.c:2047 +#: config/tc-mmix.c:2897 config/tc-moxie.c:819 config/tc-ns32k.c:2247 +#: config/tc-score.c:7387 msgid "<unknown>" msgstr "" -#: config/tc-arm.c:30000 +#: config/tc-arm.c:29945 #, c-format msgid "%s: unexpected function type: %d" msgstr "" -#: config/tc-arm.c:30140 +#: config/tc-arm.c:30085 msgid "use of old and new-style options to set CPU type" msgstr "" -#: config/tc-arm.c:30159 +#: config/tc-arm.c:30104 msgid "use of old and new-style options to set FPU type" msgstr "" -#: config/tc-arm.c:30232 +#: config/tc-arm.c:30177 msgid "hard-float conflicts with specified fpu" msgstr "" -#: config/tc-arm.c:30415 +#: config/tc-arm.c:30360 msgid "generate PIC code" msgstr "" -#: config/tc-arm.c:30416 +#: config/tc-arm.c:30361 msgid "assemble Thumb code" msgstr "" -#: config/tc-arm.c:30417 +#: config/tc-arm.c:30362 msgid "support ARM/Thumb interworking" msgstr "" -#: config/tc-arm.c:30419 +#: config/tc-arm.c:30364 msgid "code uses 32-bit program counter" msgstr "" -#: config/tc-arm.c:30420 +#: config/tc-arm.c:30365 msgid "code uses 26-bit program counter" msgstr "" -#: config/tc-arm.c:30421 +#: config/tc-arm.c:30366 msgid "floating point args are in fp regs" msgstr "" -#: config/tc-arm.c:30423 +#: config/tc-arm.c:30368 msgid "re-entrant code" msgstr "" -#: config/tc-arm.c:30424 +#: config/tc-arm.c:30369 msgid "code is ATPCS conformant" msgstr "" #. These are recognized by the assembler, but have no affect on code. -#: config/tc-arm.c:30430 +#: config/tc-arm.c:30375 msgid "use frame pointer" msgstr "" -#: config/tc-arm.c:30431 +#: config/tc-arm.c:30376 msgid "use stack size checking" msgstr "" -#: config/tc-arm.c:30434 +#: config/tc-arm.c:30379 msgid "do not warn on use of deprecated feature" msgstr "" -#: config/tc-arm.c:30437 +#: config/tc-arm.c:30382 msgid "" "warn about performance deprecated IT instructions in ARMv8-A and ARMv8-R" msgstr "" -#: config/tc-arm.c:30441 +#: config/tc-arm.c:30386 msgid "warn about symbols that match instruction names [default]" msgstr "" -#: config/tc-arm.c:30442 +#: config/tc-arm.c:30387 msgid "disable warnings about symobls that match instructions" msgstr "" #. DON'T add any new processors to this list -- we want the whole list #. to go away... Add them to the processors table instead. -#: config/tc-arm.c:30458 config/tc-arm.c:30459 +#: config/tc-arm.c:30403 config/tc-arm.c:30404 msgid "use -mcpu=arm1" msgstr "" -#: config/tc-arm.c:30460 config/tc-arm.c:30461 +#: config/tc-arm.c:30405 config/tc-arm.c:30406 msgid "use -mcpu=arm2" msgstr "" -#: config/tc-arm.c:30462 config/tc-arm.c:30463 +#: config/tc-arm.c:30407 config/tc-arm.c:30408 msgid "use -mcpu=arm250" msgstr "" -#: config/tc-arm.c:30464 config/tc-arm.c:30465 +#: config/tc-arm.c:30409 config/tc-arm.c:30410 msgid "use -mcpu=arm3" msgstr "" -#: config/tc-arm.c:30466 config/tc-arm.c:30467 +#: config/tc-arm.c:30411 config/tc-arm.c:30412 msgid "use -mcpu=arm6" msgstr "" -#: config/tc-arm.c:30468 config/tc-arm.c:30469 +#: config/tc-arm.c:30413 config/tc-arm.c:30414 msgid "use -mcpu=arm600" msgstr "" -#: config/tc-arm.c:30470 config/tc-arm.c:30471 +#: config/tc-arm.c:30415 config/tc-arm.c:30416 msgid "use -mcpu=arm610" msgstr "" -#: config/tc-arm.c:30472 config/tc-arm.c:30473 +#: config/tc-arm.c:30417 config/tc-arm.c:30418 msgid "use -mcpu=arm620" msgstr "" -#: config/tc-arm.c:30474 config/tc-arm.c:30475 +#: config/tc-arm.c:30419 config/tc-arm.c:30420 msgid "use -mcpu=arm7" msgstr "" -#: config/tc-arm.c:30476 config/tc-arm.c:30477 +#: config/tc-arm.c:30421 config/tc-arm.c:30422 msgid "use -mcpu=arm70" msgstr "" -#: config/tc-arm.c:30478 config/tc-arm.c:30479 +#: config/tc-arm.c:30423 config/tc-arm.c:30424 msgid "use -mcpu=arm700" msgstr "" -#: config/tc-arm.c:30480 config/tc-arm.c:30481 +#: config/tc-arm.c:30425 config/tc-arm.c:30426 msgid "use -mcpu=arm700i" msgstr "" -#: config/tc-arm.c:30482 config/tc-arm.c:30483 +#: config/tc-arm.c:30427 config/tc-arm.c:30428 msgid "use -mcpu=arm710" msgstr "" -#: config/tc-arm.c:30484 config/tc-arm.c:30485 +#: config/tc-arm.c:30429 config/tc-arm.c:30430 msgid "use -mcpu=arm710c" msgstr "" -#: config/tc-arm.c:30486 config/tc-arm.c:30487 +#: config/tc-arm.c:30431 config/tc-arm.c:30432 msgid "use -mcpu=arm720" msgstr "" -#: config/tc-arm.c:30488 config/tc-arm.c:30489 +#: config/tc-arm.c:30433 config/tc-arm.c:30434 msgid "use -mcpu=arm7d" msgstr "" -#: config/tc-arm.c:30490 config/tc-arm.c:30491 +#: config/tc-arm.c:30435 config/tc-arm.c:30436 msgid "use -mcpu=arm7di" msgstr "" -#: config/tc-arm.c:30492 config/tc-arm.c:30493 +#: config/tc-arm.c:30437 config/tc-arm.c:30438 msgid "use -mcpu=arm7m" msgstr "" -#: config/tc-arm.c:30494 config/tc-arm.c:30495 +#: config/tc-arm.c:30439 config/tc-arm.c:30440 msgid "use -mcpu=arm7dm" msgstr "" -#: config/tc-arm.c:30496 config/tc-arm.c:30497 +#: config/tc-arm.c:30441 config/tc-arm.c:30442 msgid "use -mcpu=arm7dmi" msgstr "" -#: config/tc-arm.c:30498 config/tc-arm.c:30499 +#: config/tc-arm.c:30443 config/tc-arm.c:30444 msgid "use -mcpu=arm7100" msgstr "" -#: config/tc-arm.c:30500 config/tc-arm.c:30501 +#: config/tc-arm.c:30445 config/tc-arm.c:30446 msgid "use -mcpu=arm7500" msgstr "" -#: config/tc-arm.c:30502 config/tc-arm.c:30503 +#: config/tc-arm.c:30447 config/tc-arm.c:30448 msgid "use -mcpu=arm7500fe" msgstr "" -#: config/tc-arm.c:30504 config/tc-arm.c:30505 config/tc-arm.c:30506 -#: config/tc-arm.c:30507 +#: config/tc-arm.c:30449 config/tc-arm.c:30450 config/tc-arm.c:30451 +#: config/tc-arm.c:30452 msgid "use -mcpu=arm7tdmi" msgstr "" -#: config/tc-arm.c:30508 config/tc-arm.c:30509 +#: config/tc-arm.c:30453 config/tc-arm.c:30454 msgid "use -mcpu=arm710t" msgstr "" -#: config/tc-arm.c:30510 config/tc-arm.c:30511 +#: config/tc-arm.c:30455 config/tc-arm.c:30456 msgid "use -mcpu=arm720t" msgstr "" -#: config/tc-arm.c:30512 config/tc-arm.c:30513 +#: config/tc-arm.c:30457 config/tc-arm.c:30458 msgid "use -mcpu=arm740t" msgstr "" -#: config/tc-arm.c:30514 config/tc-arm.c:30515 +#: config/tc-arm.c:30459 config/tc-arm.c:30460 msgid "use -mcpu=arm8" msgstr "" -#: config/tc-arm.c:30516 config/tc-arm.c:30517 +#: config/tc-arm.c:30461 config/tc-arm.c:30462 msgid "use -mcpu=arm810" msgstr "" -#: config/tc-arm.c:30518 config/tc-arm.c:30519 +#: config/tc-arm.c:30463 config/tc-arm.c:30464 msgid "use -mcpu=arm9" msgstr "" -#: config/tc-arm.c:30520 config/tc-arm.c:30521 +#: config/tc-arm.c:30465 config/tc-arm.c:30466 msgid "use -mcpu=arm9tdmi" msgstr "" -#: config/tc-arm.c:30522 config/tc-arm.c:30523 +#: config/tc-arm.c:30467 config/tc-arm.c:30468 msgid "use -mcpu=arm920" msgstr "" -#: config/tc-arm.c:30524 config/tc-arm.c:30525 +#: config/tc-arm.c:30469 config/tc-arm.c:30470 msgid "use -mcpu=arm940" msgstr "" -#: config/tc-arm.c:30526 +#: config/tc-arm.c:30471 msgid "use -mcpu=strongarm" msgstr "" -#: config/tc-arm.c:30528 +#: config/tc-arm.c:30473 msgid "use -mcpu=strongarm110" msgstr "" -#: config/tc-arm.c:30530 +#: config/tc-arm.c:30475 msgid "use -mcpu=strongarm1100" msgstr "" -#: config/tc-arm.c:30532 +#: config/tc-arm.c:30477 msgid "use -mcpu=strongarm1110" msgstr "" -#: config/tc-arm.c:30533 +#: config/tc-arm.c:30478 msgid "use -mcpu=xscale" msgstr "" -#: config/tc-arm.c:30534 +#: config/tc-arm.c:30479 msgid "use -mcpu=iwmmxt" msgstr "" -#: config/tc-arm.c:30535 +#: config/tc-arm.c:30480 msgid "use -mcpu=all" msgstr "" #. Architecture variants -- don't add any more to this list either. -#: config/tc-arm.c:30538 config/tc-arm.c:30539 +#: config/tc-arm.c:30483 config/tc-arm.c:30484 msgid "use -march=armv2" msgstr "" -#: config/tc-arm.c:30540 config/tc-arm.c:30541 +#: config/tc-arm.c:30485 config/tc-arm.c:30486 msgid "use -march=armv2a" msgstr "" -#: config/tc-arm.c:30542 config/tc-arm.c:30543 +#: config/tc-arm.c:30487 config/tc-arm.c:30488 msgid "use -march=armv3" msgstr "" -#: config/tc-arm.c:30544 config/tc-arm.c:30545 +#: config/tc-arm.c:30489 config/tc-arm.c:30490 msgid "use -march=armv3m" msgstr "" -#: config/tc-arm.c:30546 config/tc-arm.c:30547 +#: config/tc-arm.c:30491 config/tc-arm.c:30492 msgid "use -march=armv4" msgstr "" -#: config/tc-arm.c:30548 config/tc-arm.c:30549 +#: config/tc-arm.c:30493 config/tc-arm.c:30494 msgid "use -march=armv4t" msgstr "" -#: config/tc-arm.c:30550 config/tc-arm.c:30551 +#: config/tc-arm.c:30495 config/tc-arm.c:30496 msgid "use -march=armv5" msgstr "" -#: config/tc-arm.c:30552 config/tc-arm.c:30553 +#: config/tc-arm.c:30497 config/tc-arm.c:30498 msgid "use -march=armv5t" msgstr "" -#: config/tc-arm.c:30554 config/tc-arm.c:30555 +#: config/tc-arm.c:30499 config/tc-arm.c:30500 msgid "use -march=armv5te" msgstr "" -#: config/tc-arm.c:30556 +#: config/tc-arm.c:30501 msgid "use -mfpu=softvfp" msgstr "" -#: config/tc-arm.c:31713 +#: config/tc-arm.c:31658 msgid "extension does not apply to the base architecture" msgstr "" -#: config/tc-arm.c:31742 +#: config/tc-arm.c:31687 msgid "architectural extensions must be specified in alphabetical order" msgstr "" -#: config/tc-arm.c:31881 config/tc-arm.c:32864 +#: config/tc-arm.c:31826 config/tc-arm.c:32813 #, c-format -msgid "unknown floating point format `%s'\n" +msgid "unknown floating point format `%s'" msgstr "" -#: config/tc-arm.c:31897 config/tc-csky.c:1264 +#: config/tc-arm.c:31842 #, c-format -msgid "unknown floating point abi `%s'\n" +msgid "unknown floating point abi `%s'" msgstr "" -#: config/tc-arm.c:31913 +#: config/tc-arm.c:31858 #, c-format -msgid "unknown EABI `%s'\n" +msgid "unknown EABI `%s'" msgstr "" -#: config/tc-arm.c:31933 +#: config/tc-arm.c:31878 #, c-format msgid "unknown implicit IT mode `%s', should be arm, thumb, always, or never." msgstr "" -#: config/tc-arm.c:31956 config/tc-metag.c:5911 +#: config/tc-arm.c:31901 config/tc-metag.c:5909 msgid "<fpu name>\t assemble for FPU architecture <fpu name>" msgstr "" -#: config/tc-arm.c:31958 +#: config/tc-arm.c:31903 msgid "<abi>\t assemble for floating point ABI <abi>" msgstr "" -#: config/tc-arm.c:31961 +#: config/tc-arm.c:31906 msgid "<ver>\t\t assemble for eabi version <ver>" msgstr "" -#: config/tc-arm.c:31964 +#: config/tc-arm.c:31909 msgid "<mode>\t controls implicit insertion of IT instructions" msgstr "" -#: config/tc-arm.c:31966 +#: config/tc-arm.c:31911 msgid "\t\t\t TI CodeComposer Studio syntax compatibility mode" msgstr "" -#: config/tc-arm.c:31969 +#: config/tc-arm.c:31914 msgid "" "[ieee|alternative]\n" " set the encoding for half precision floating point " @@ -5835,53 +5831,58 @@ msgid "" " or Arm alternative format." msgstr "" -#: config/tc-arm.c:32080 +#: config/tc-arm.c:32025 #, c-format msgid " ARM-specific assembler options:\n" msgstr "" -#: config/tc-arm.c:32100 +#: config/tc-arm.c:32045 #, c-format msgid " --fix-v4bx Allow BX in ARMv4 code\n" msgstr "" -#: config/tc-arm.c:32104 +#: config/tc-arm.c:32049 #, c-format msgid " --fdpic generate an FDPIC object file\n" msgstr "" -#: config/tc-arm.c:32425 -msgid "no architecture contains all the instructions used\n" +#: config/tc-arm.c:32370 +msgid "no architecture contains all the instructions used" msgstr "" -#: config/tc-arm.c:32617 +#: config/tc-arm.c:32562 msgid ".cpu: missing cpu name" msgstr "" -#: config/tc-arm.c:32665 +#: config/tc-arm.c:32610 msgid ".arch: missing architecture name" msgstr "" -#: config/tc-arm.c:32706 +#: config/tc-arm.c:32651 msgid ".object_arch: missing architecture name" msgstr "" -#: config/tc-arm.c:32743 +#: config/tc-arm.c:32688 msgid ".arch_extension: missing architecture extension" msgstr "" -#: config/tc-arm.c:32800 +#: config/tc-arm.c:32746 #, c-format msgid "" "architectural extension `%s' is not allowed for the current base architecture" msgstr "" -#: config/tc-arm.c:32823 +#: config/tc-arm.c:32749 #, c-format -msgid "unknown architecture extension `%s'\n" +msgid "disabling feature `%s' has no effect on the current base architecture" msgstr "" -#: config/tc-arm.c:32844 +#: config/tc-arm.c:32772 +#, c-format +msgid "unknown architecture extension `%s'" +msgstr "" + +#: config/tc-arm.c:32793 msgid ".fpu: missing fpu name" msgstr "" @@ -5944,193 +5945,193 @@ msgstr "" msgid "redefinition of mcu type `%s' to `%s'" msgstr "" -#: config/tc-avr.c:869 +#: config/tc-avr.c:867 msgid "constant value required" msgstr "" -#: config/tc-avr.c:872 +#: config/tc-avr.c:870 #, c-format msgid "number must be positive and less than %d" msgstr "" -#: config/tc-avr.c:898 config/tc-avr.c:1035 +#: config/tc-avr.c:896 config/tc-avr.c:1033 #, c-format msgid "constant out of 8-bit range: %d" msgstr "" -#: config/tc-avr.c:966 config/tc-score.c:1194 read.c:4075 +#: config/tc-avr.c:964 config/tc-score.c:1194 read.c:4128 msgid "illegal expression" msgstr "" -#: config/tc-avr.c:995 config/tc-avr.c:2004 config/tc-pru.c:1870 +#: config/tc-avr.c:993 config/tc-avr.c:2002 config/tc-pru.c:1868 msgid "`)' required" msgstr "" -#: config/tc-avr.c:1105 +#: config/tc-avr.c:1103 msgid "register name or number from 16 to 31 required" msgstr "" -#: config/tc-avr.c:1111 +#: config/tc-avr.c:1109 msgid "register name or number from 0 to 31 required" msgstr "" -#: config/tc-avr.c:1119 +#: config/tc-avr.c:1117 msgid "register r16-r23 required" msgstr "" -#: config/tc-avr.c:1125 +#: config/tc-avr.c:1123 msgid "register number above 15 required" msgstr "" -#: config/tc-avr.c:1131 config/tc-csky.c:6417 config/tc-csky.c:6446 +#: config/tc-avr.c:1129 config/tc-csky.c:6435 config/tc-csky.c:6464 msgid "even register number required" msgstr "" -#: config/tc-avr.c:1137 +#: config/tc-avr.c:1135 msgid "register r24, r26, r28 or r30 required" msgstr "" -#: config/tc-avr.c:1158 +#: config/tc-avr.c:1156 msgid "pointer register (X, Y or Z) required" msgstr "" -#: config/tc-avr.c:1165 +#: config/tc-avr.c:1163 msgid "cannot both predecrement and postincrement" msgstr "" -#: config/tc-avr.c:1173 +#: config/tc-avr.c:1171 msgid "addressing mode not supported" msgstr "" -#: config/tc-avr.c:1179 +#: config/tc-avr.c:1177 msgid "can't predecrement" msgstr "" -#: config/tc-avr.c:1182 +#: config/tc-avr.c:1180 msgid "pointer register Z required" msgstr "" -#: config/tc-avr.c:1201 +#: config/tc-avr.c:1199 msgid "postincrement not supported" msgstr "" -#: config/tc-avr.c:1211 +#: config/tc-avr.c:1209 msgid "pointer register (Y or Z) required" msgstr "" -#: config/tc-avr.c:1333 config/tc-xgate.c:1354 +#: config/tc-avr.c:1331 config/tc-xgate.c:1353 #, c-format msgid "unknown constraint `%c'" msgstr "" -#: config/tc-avr.c:1396 config/tc-avr.c:2686 +#: config/tc-avr.c:1394 config/tc-avr.c:2750 msgid "`,' required" msgstr "" -#: config/tc-avr.c:1417 +#: config/tc-avr.c:1415 msgid "undefined combination of operands" msgstr "" -#: config/tc-avr.c:1426 +#: config/tc-avr.c:1424 msgid "skipping two-word instruction" msgstr "" -#: config/tc-avr.c:1614 config/tc-avr.c:1630 config/tc-avr.c:1761 -#: config/tc-msp430.c:4500 config/tc-msp430.c:4519 +#: config/tc-avr.c:1612 config/tc-avr.c:1628 config/tc-avr.c:1759 +#: config/tc-msp430.c:4504 config/tc-msp430.c:4523 #, c-format msgid "odd address operand: %ld" msgstr "" -#: config/tc-avr.c:1622 config/tc-avr.c:1641 config/tc-avr.c:1659 -#: config/tc-avr.c:1670 config/tc-avr.c:1686 config/tc-avr.c:1694 -#: config/tc-avr.c:1789 config/tc-avr.c:1796 config/tc-d10v.c:503 -#: config/tc-d30v.c:550 config/tc-msp430.c:4508 config/tc-msp430.c:4526 +#: config/tc-avr.c:1620 config/tc-avr.c:1639 config/tc-avr.c:1657 +#: config/tc-avr.c:1668 config/tc-avr.c:1684 config/tc-avr.c:1692 +#: config/tc-avr.c:1787 config/tc-avr.c:1794 config/tc-d10v.c:502 +#: config/tc-d30v.c:550 config/tc-msp430.c:4512 config/tc-msp430.c:4530 #, c-format msgid "operand out of range: %ld" msgstr "" -#: config/tc-avr.c:1677 +#: config/tc-avr.c:1675 #, c-format msgid "operand out of range: 0x%lx" msgstr "" -#: config/tc-avr.c:1782 config/tc-d10v.c:1592 config/tc-d30v.c:2011 -#: config/tc-msp430.c:4597 +#: config/tc-avr.c:1780 config/tc-d10v.c:1591 config/tc-d30v.c:2011 +#: config/tc-msp430.c:4601 #, c-format msgid "line %d: unknown relocation type: 0x%x" msgstr "" -#: config/tc-avr.c:1810 +#: config/tc-avr.c:1808 msgid "only constant expression allowed" msgstr "" #. xgettext:c-format. -#: config/tc-avr.c:1864 config/tc-bfin.c:813 config/tc-d10v.c:1461 -#: config/tc-d30v.c:1768 config/tc-metag.c:7016 config/tc-mn10200.c:775 -#: config/tc-mn10300.c:2178 config/tc-msp430.c:4645 config/tc-ppc.c:7770 -#: config/tc-spu.c:878 config/tc-spu.c:1089 config/tc-v850.c:3360 +#: config/tc-avr.c:1862 config/tc-bfin.c:813 config/tc-d10v.c:1460 +#: config/tc-d30v.c:1768 config/tc-metag.c:7003 config/tc-mn10200.c:774 +#: config/tc-mn10300.c:2178 config/tc-msp430.c:4649 config/tc-ppc.c:7746 +#: config/tc-spu.c:868 config/tc-spu.c:1079 config/tc-v850.c:3336 #: config/tc-z80.c:3871 #, c-format msgid "reloc %d not supported by object file format" msgstr "" -#: config/tc-avr.c:1886 config/tc-ft32.c:232 config/tc-h8300.c:1928 -#: config/tc-mcore.c:881 config/tc-microblaze.c:913 config/tc-moxie.c:180 +#: config/tc-avr.c:1884 config/tc-ft32.c:231 config/tc-h8300.c:1928 +#: config/tc-mcore.c:881 config/tc-microblaze.c:912 config/tc-moxie.c:180 #: config/tc-pj.c:253 config/tc-sh.c:2182 config/tc-wasm32.c:747 #: config/tc-z8k.c:1233 msgid "can't find opcode " msgstr "" -#: config/tc-avr.c:1905 +#: config/tc-avr.c:1903 #, c-format msgid "illegal opcode %s for mcu %s" msgstr "" -#: config/tc-avr.c:1921 +#: config/tc-avr.c:1919 #, c-format msgid "pseudo instruction `%s' not supported" msgstr "" -#: config/tc-avr.c:1943 +#: config/tc-avr.c:1941 msgid "garbage at end of line" msgstr "" -#: config/tc-avr.c:2053 config/tc-pru.c:1902 +#: config/tc-avr.c:2051 config/tc-pru.c:1900 #, c-format msgid "illegal %s relocation size: %d" msgstr "" -#: config/tc-avr.c:2166 config/tc-avr.c:2221 +#: config/tc-avr.c:2164 config/tc-avr.c:2218 #, c-format msgid "unknown record type %d (in %s)" msgstr "" -#: config/tc-avr.c:2242 +#: config/tc-avr.c:2239 #, c-format msgid "Failed to create property section `%s'\n" msgstr "" -#: config/tc-avr.c:2678 +#: config/tc-avr.c:2742 #, c-format msgid "%s requires value 0-2 as operand 1" msgstr "" -#: config/tc-avr.c:2703 +#: config/tc-avr.c:2767 #, c-format msgid "`%s %d' after `%s %d' from %s:%u" msgstr "" -#: config/tc-avr.c:2706 +#: config/tc-avr.c:2770 #, c-format msgid "`%s %d' but no chunk open yet" msgstr "" -#: config/tc-avr.c:2794 +#: config/tc-avr.c:2858 #, c-format msgid "dangling `__gcc_isr %d'" msgstr "" -#: config/tc-avr.c:2796 +#: config/tc-avr.c:2860 msgid "dangling `__gcc_isr'" msgstr "" @@ -6222,33 +6223,33 @@ msgid "" " -mxbpf alias for -misa-spec=xbpf\n" msgstr "" -#: config/tc-bpf.c:588 +#: config/tc-bpf.c:577 msgid "signed instruction operand out of range, shall fit in 32 bits" msgstr "" -#: config/tc-bpf.c:962 +#: config/tc-bpf.c:951 msgid "immediate out of range, shall fit in 32 bits" msgstr "" -#: config/tc-bpf.c:972 +#: config/tc-bpf.c:961 msgid "pc-relative offset out of range, shall fit in 32 bits" msgstr "" -#: config/tc-bpf.c:982 config/tc-bpf.c:992 +#: config/tc-bpf.c:971 config/tc-bpf.c:981 msgid "pc-relative offset out of range, shall fit in 16 bits" msgstr "" -#: config/tc-bpf.c:1375 +#: config/tc-bpf.c:1360 #, c-format msgid "unexpected register name `%s' in expression" msgstr "" -#: config/tc-bpf.c:1706 +#: config/tc-bpf.c:1691 #, c-format msgid "invalid %%-tag in BPF opcode '%s'\n" msgstr "" -#: config/tc-bpf.c:1753 +#: config/tc-bpf.c:1738 #, c-format msgid "unrecognized instruction `%s'" msgstr "" @@ -6284,7 +6285,7 @@ msgstr "" msgid "internal error: reloc %d (`%s') not supported by object file format" msgstr "" -#: config/tc-cr16.c:694 config/tc-i386.c:17857 config/tc-s390.c:2340 +#: config/tc-cr16.c:694 config/tc-i386.c:18106 config/tc-s390.c:2351 msgid "GOT already in symbol table" msgstr "" @@ -6350,104 +6351,104 @@ msgstr "" msgid "Unknown exception: `%s'" msgstr "" -#: config/tc-cr16.c:1554 config/tc-crx.c:1045 +#: config/tc-cr16.c:1555 config/tc-crx.c:1045 #, c-format msgid "Illegal `cinv' parameter: `%c'" msgstr "" -#: config/tc-cr16.c:1575 config/tc-cr16.c:1614 +#: config/tc-cr16.c:1576 config/tc-cr16.c:1615 #, c-format msgid "Unknown register pair: `%d'" msgstr "" #. Issue a error message when register pair is illegal. -#: config/tc-cr16.c:1583 +#: config/tc-cr16.c:1584 #, c-format msgid "Illegal register pair (`%s') in Instruction: `%s'" msgstr "" #. Issue a error message when register pair is illegal. -#: config/tc-cr16.c:1622 +#: config/tc-cr16.c:1623 #, c-format msgid "Illegal index register pair (`%s') in Instruction: `%s'" msgstr "" -#: config/tc-cr16.c:1661 +#: config/tc-cr16.c:1662 #, c-format msgid "Unknown processor register : `%d'" msgstr "" #. Issue a error message when register pair is illegal. -#: config/tc-cr16.c:1669 +#: config/tc-cr16.c:1670 #, c-format msgid "Illegal processor register (`%s') in Instruction: `%s'" msgstr "" -#: config/tc-cr16.c:1717 +#: config/tc-cr16.c:1718 #, c-format msgid "Unknown processor register (32 bit) : `%d'" msgstr "" #. Issue a error message when register pair is illegal. -#: config/tc-cr16.c:1725 +#: config/tc-cr16.c:1726 #, c-format msgid "Illegal 32 bit - processor register (`%s') in Instruction: `%s'" msgstr "" -#: config/tc-cr16.c:2070 config/tc-crx.c:1612 config/tc-crx.c:1629 +#: config/tc-cr16.c:2071 config/tc-crx.c:1612 config/tc-crx.c:1629 #, c-format msgid "Same src/dest register is used (`r%d'), result is undefined" msgstr "" -#: config/tc-cr16.c:2092 +#: config/tc-cr16.c:2093 msgid "RA register is saved twice." msgstr "" -#: config/tc-cr16.c:2096 +#: config/tc-cr16.c:2097 #, c-format msgid "`%s' Illegal use of registers." msgstr "" -#: config/tc-cr16.c:2110 +#: config/tc-cr16.c:2111 #, c-format msgid "`%s' Illegal count-register combination." msgstr "" -#: config/tc-cr16.c:2116 +#: config/tc-cr16.c:2117 #, c-format msgid "`%s' Illegal use of register." msgstr "" -#: config/tc-cr16.c:2125 config/tc-crx.c:1621 +#: config/tc-cr16.c:2126 config/tc-crx.c:1621 #, c-format msgid "`%s' has undefined result" msgstr "" -#: config/tc-cr16.c:2133 +#: config/tc-cr16.c:2134 #, c-format msgid "Same src/dest register is used (`r%d'),result is undefined" msgstr "" -#: config/tc-cr16.c:2304 config/tc-crx.c:1527 +#: config/tc-cr16.c:2305 config/tc-crx.c:1527 msgid "Incorrect number of operands" msgstr "" -#: config/tc-cr16.c:2306 config/tc-crx.c:1529 +#: config/tc-cr16.c:2307 config/tc-crx.c:1529 #, c-format msgid "Illegal type of operand (arg %d)" msgstr "" -#: config/tc-cr16.c:2312 config/tc-crx.c:1535 +#: config/tc-cr16.c:2313 config/tc-crx.c:1535 #, c-format msgid "Operand out of range (arg %d)" msgstr "" -#: config/tc-cr16.c:2315 config/tc-crx.c:1538 +#: config/tc-cr16.c:2316 config/tc-crx.c:1538 #, c-format msgid "Operand has odd displacement (arg %d)" msgstr "" -#: config/tc-cr16.c:2318 config/tc-cr16.c:2349 config/tc-crx.c:1553 +#: config/tc-cr16.c:2319 config/tc-cr16.c:2350 config/tc-crx.c:1553 #: config/tc-crx.c:1581 #, c-format msgid "Illegal operand (arg %d)" @@ -6455,29 +6456,29 @@ msgstr "" #. Give an error if a frag containing code is not aligned to a 2-byte #. boundary. -#: config/tc-cr16.c:2451 config/tc-cr16.h:74 config/tc-crx.c:1903 +#: config/tc-cr16.c:2452 config/tc-cr16.h:74 config/tc-crx.c:1903 #: config/tc-crx.h:77 msgid "instruction address is not a multiple of 2" msgstr "" -#: config/tc-cr16.c:2474 config/tc-cris.c:1550 config/tc-cris.c:1558 -#: config/tc-crx.c:1939 config/tc-dlx.c:681 config/tc-hppa.c:3206 -#: config/tc-hppa.c:3213 config/tc-sparc.c:1753 config/tc-sparc.c:1761 +#: config/tc-cr16.c:2475 config/tc-cris.c:1549 config/tc-cris.c:1557 +#: config/tc-crx.c:1939 config/tc-dlx.c:681 config/tc-hppa.c:3207 +#: config/tc-hppa.c:3214 config/tc-sparc.c:1755 config/tc-sparc.c:1763 #, c-format msgid "Unknown opcode: `%s'" msgstr "" -#: config/tc-cris.c:550 config/tc-m68hc11.c:3894 +#: config/tc-cris.c:550 config/tc-m68hc11.c:3891 #, c-format msgid "internal inconsistency problem in %s: fr_symbol %lx" msgstr "" -#: config/tc-cris.c:554 config/tc-m68hc11.c:3898 config/tc-msp430.c:4991 +#: config/tc-cris.c:554 config/tc-m68hc11.c:3895 config/tc-msp430.c:4995 #, c-format msgid "internal inconsistency problem in %s: resolved symbol" msgstr "" -#: config/tc-cris.c:564 config/tc-m68hc11.c:3904 +#: config/tc-cris.c:564 config/tc-m68hc11.c:3901 #, c-format msgid "internal inconsistency problem in %s: fr_subtype %d" msgstr "" @@ -6532,251 +6533,251 @@ msgstr "" msgid "Buggy opcode: `%s' \"%s\"\n" msgstr "" -#: config/tc-cris.c:1656 +#: config/tc-cris.c:1655 #, c-format msgid "Immediate value not in 5 bit unsigned range: %ld" msgstr "" -#: config/tc-cris.c:1672 +#: config/tc-cris.c:1671 #, c-format msgid "Immediate value not in 4 bit unsigned range: %ld" msgstr "" -#: config/tc-cris.c:1724 +#: config/tc-cris.c:1723 #, c-format msgid "Immediate value not in 6 bit range: %ld" msgstr "" -#: config/tc-cris.c:1740 +#: config/tc-cris.c:1739 #, c-format msgid "Immediate value not in 6 bit unsigned range: %ld" msgstr "" #. Others have a generic warning. -#: config/tc-cris.c:1849 +#: config/tc-cris.c:1848 #, c-format msgid "Unimplemented register `%s' specified" msgstr "" #. We've come to the end of instructions with this #. opcode, so it must be an error. -#: config/tc-cris.c:2093 +#: config/tc-cris.c:2092 msgid "Illegal operands" msgstr "" -#: config/tc-cris.c:2134 config/tc-cris.c:2174 +#: config/tc-cris.c:2133 config/tc-cris.c:2173 #, c-format msgid "Immediate value not in 8 bit range: %ld" msgstr "" -#: config/tc-cris.c:2144 config/tc-cris.c:2195 +#: config/tc-cris.c:2143 config/tc-cris.c:2194 #, c-format msgid "Immediate value not in 16 bit range: %ld" msgstr "" -#: config/tc-cris.c:2179 +#: config/tc-cris.c:2178 #, c-format msgid "Immediate value not in 8 bit signed range: %ld" msgstr "" -#: config/tc-cris.c:2184 +#: config/tc-cris.c:2183 #, c-format msgid "Immediate value not in 8 bit unsigned range: %ld" msgstr "" -#: config/tc-cris.c:2200 +#: config/tc-cris.c:2199 #, c-format msgid "Immediate value not in 16 bit signed range: %ld" msgstr "" -#: config/tc-cris.c:2205 +#: config/tc-cris.c:2204 #, c-format msgid "Immediate value not in 16 bit unsigned range: %ld" msgstr "" -#: config/tc-cris.c:2231 +#: config/tc-cris.c:2230 msgid "TLS relocation size does not match operand size" msgstr "" -#: config/tc-cris.c:2232 +#: config/tc-cris.c:2231 msgid "PIC relocation size does not match operand size" msgstr "" -#: config/tc-cris.c:3379 +#: config/tc-cris.c:3378 msgid "Calling gen_cond_branch_32 for .arch common_v10_v32\n" msgstr "" -#: config/tc-cris.c:3383 +#: config/tc-cris.c:3382 msgid "32-bit conditional branch generated" msgstr "" -#: config/tc-cris.c:3444 +#: config/tc-cris.c:3443 msgid "Complex expression not supported" msgstr "" #. FIXME: Is this function mentioned in the internals.texi manual? If #. not, add it. -#: config/tc-cris.c:3594 +#: config/tc-cris.c:3593 msgid "Bad call to md_atof () - floating point formats are not supported" msgstr "" -#: config/tc-cris.c:3635 +#: config/tc-cris.c:3634 msgid "PC-relative relocation must be trivially resolved" msgstr "" -#: config/tc-cris.c:3707 +#: config/tc-cris.c:3706 #, c-format msgid "Value not in 16 bit range: %ld" msgstr "" -#: config/tc-cris.c:3715 +#: config/tc-cris.c:3714 #, c-format msgid "Value not in 16 bit signed range: %ld" msgstr "" -#: config/tc-cris.c:3723 +#: config/tc-cris.c:3722 #, c-format msgid "Value not in 8 bit range: %ld" msgstr "" -#: config/tc-cris.c:3730 +#: config/tc-cris.c:3729 #, c-format msgid "Value not in 8 bit signed range: %ld" msgstr "" -#: config/tc-cris.c:3740 +#: config/tc-cris.c:3739 #, c-format msgid "Value not in 4 bit unsigned range: %ld" msgstr "" -#: config/tc-cris.c:3747 +#: config/tc-cris.c:3746 #, c-format msgid "Value not in 5 bit unsigned range: %ld" msgstr "" -#: config/tc-cris.c:3754 +#: config/tc-cris.c:3753 #, c-format msgid "Value not in 6 bit range: %ld" msgstr "" -#: config/tc-cris.c:3761 +#: config/tc-cris.c:3760 #, c-format msgid "Value not in 6 bit unsigned range: %ld" msgstr "" -#: config/tc-cris.c:3805 +#: config/tc-cris.c:3804 #, c-format msgid "Please use --help to see usage and options for this assembler.\n" msgstr "" -#: config/tc-cris.c:3817 +#: config/tc-cris.c:3816 msgid "--no-underscore is invalid with a.out format" msgstr "" -#: config/tc-cris.c:3829 +#: config/tc-cris.c:3828 msgid "--pic is invalid for this object format" msgstr "" -#: config/tc-cris.c:3843 +#: config/tc-cris.c:3842 #, c-format msgid "invalid <arch> in --march=<arch>: %s" msgstr "" -#: config/tc-cris.c:3952 config/tc-ft32.c:688 config/tc-moxie.c:776 +#: config/tc-cris.c:3951 config/tc-ft32.c:686 config/tc-moxie.c:772 msgid "" "Semantics error. This type of operand can not be relocated, it must be an " "assembly-time constant" msgstr "" -#: config/tc-cris.c:4000 config/tc-ft32.c:708 config/tc-moxie.c:824 +#: config/tc-cris.c:3999 config/tc-ft32.c:706 config/tc-moxie.c:820 #, c-format msgid "Cannot generate relocation type for symbol %s, code %s" msgstr "" #. The messages are formatted to line up with the generic options. -#: config/tc-cris.c:4013 +#: config/tc-cris.c:4012 #, c-format msgid "CRIS-specific options:\n" msgstr "" -#: config/tc-cris.c:4015 +#: config/tc-cris.c:4014 msgid "" " -h, -H Don't execute, print this help text. Deprecated.\n" msgstr "" -#: config/tc-cris.c:4017 +#: config/tc-cris.c:4016 msgid " -N Warn when branches are expanded to jumps.\n" msgstr "" -#: config/tc-cris.c:4019 +#: config/tc-cris.c:4018 msgid "" " --underscore User symbols are normally prepended with " "underscore.\n" msgstr "" -#: config/tc-cris.c:4021 +#: config/tc-cris.c:4020 msgid " Registers will not need any prefix.\n" msgstr "" -#: config/tc-cris.c:4023 +#: config/tc-cris.c:4022 msgid " --no-underscore User symbols do not have any prefix.\n" msgstr "" -#: config/tc-cris.c:4025 +#: config/tc-cris.c:4024 msgid " Registers will require a `$'-prefix.\n" msgstr "" -#: config/tc-cris.c:4028 +#: config/tc-cris.c:4027 msgid " --pic\t\t\tEnable generation of position-independent code.\n" msgstr "" -#: config/tc-cris.c:4031 +#: config/tc-cris.c:4030 msgid "" " --march=<arch>\t\tGenerate code for <arch>. Valid choices for <arch>\n" "\t\t\t\tare v0_v10, v10, v32 and common_v10_v32.\n" msgstr "" -#: config/tc-cris.c:4080 +#: config/tc-cris.c:4078 msgid "Invalid pc-relative relocation" msgstr "" -#: config/tc-cris.c:4125 +#: config/tc-cris.c:4123 #, c-format msgid "Adjusted signed .word (%ld) overflows: `switch'-statement too large." msgstr "" -#: config/tc-cris.c:4155 +#: config/tc-cris.c:4153 #, c-format msgid ".syntax %s requires command-line option `--underscore'" msgstr "" -#: config/tc-cris.c:4164 +#: config/tc-cris.c:4162 #, c-format msgid ".syntax %s requires command-line option `--no-underscore'" msgstr "" -#: config/tc-cris.c:4201 +#: config/tc-cris.c:4199 msgid "Unknown .syntax operand" msgstr "" -#: config/tc-cris.c:4211 +#: config/tc-cris.c:4209 msgid "Pseudodirective .file is only valid when generating ELF" msgstr "" -#: config/tc-cris.c:4223 +#: config/tc-cris.c:4221 msgid "Pseudodirective .loc is only valid when generating ELF" msgstr "" -#: config/tc-cris.c:4238 +#: config/tc-cris.c:4236 #, c-format msgid "internal inconsistency problem: %s called for %d bytes" msgstr "" -#: config/tc-cris.c:4390 +#: config/tc-cris.c:4388 msgid "unknown operand to .arch" msgstr "" -#: config/tc-cris.c:4399 +#: config/tc-cris.c:4397 msgid ".arch <arch> requires a matching --march=... option" msgstr "" @@ -6871,263 +6872,263 @@ msgstr "" #. Variable not in small data read only segment accessed #. using small data read only anchor. -#: config/tc-csky.c:1149 config/tc-mcore.c:1927 config/tc-microblaze.c:2054 -#: config/tc-microblaze.c:2358 config/tc-microblaze.c:2381 +#: config/tc-csky.c:1173 config/tc-mcore.c:1927 config/tc-microblaze.c:2039 +#: config/tc-microblaze.c:2341 config/tc-microblaze.c:2364 msgid "unknown" msgstr "" -#: config/tc-csky.c:1151 +#: config/tc-csky.c:1175 #, c-format msgid "pcrel offset for branch to %s too far (0x%lx)" msgstr "" -#: config/tc-csky.c:1235 +#: config/tc-csky.c:1288 #, c-format -msgid "unknown architecture `%s'" +msgid "unknown floating point abi `%s'\n" msgstr "" -#: config/tc-csky.c:1408 +#: config/tc-csky.c:1432 #, c-format msgid "C-SKY assembler options:\n" msgstr "" -#: config/tc-csky.c:1410 +#: config/tc-csky.c:1434 #, c-format msgid " -march=ARCH\t\t\tselect architecture ARCH:" msgstr "" -#: config/tc-csky.c:1429 +#: config/tc-csky.c:1453 #, c-format msgid " -mcpu=CPU\t\t\tselect processor CPU:" msgstr "" -#: config/tc-csky.c:1456 +#: config/tc-csky.c:1480 #, c-format msgid " -mfloat-abi=ABI\t\tselect float ABI:" msgstr "" -#: config/tc-csky.c:1475 +#: config/tc-csky.c:1499 #, c-format msgid " -EL -mlittle-endian\t\tgenerate little-endian output\n" msgstr "" -#: config/tc-csky.c:1477 +#: config/tc-csky.c:1501 #, c-format msgid " -EB -mbig-endian\t\tgenerate big-endian output\n" msgstr "" -#: config/tc-csky.c:1479 +#: config/tc-csky.c:1503 #, c-format msgid " -fpic -pic\t\t\tgenerate position-independent code\n" msgstr "" -#: config/tc-csky.c:1482 +#: config/tc-csky.c:1506 #, c-format msgid " -mljump\t\t\ttransform jbf, jbt, jbr to jmpi (CK800 only)\n" msgstr "" -#: config/tc-csky.c:1484 +#: config/tc-csky.c:1508 #, c-format msgid " -mno-ljump\n" msgstr "" -#: config/tc-csky.c:1488 +#: config/tc-csky.c:1512 #, c-format msgid " -mbranch-stub\t\t\tenable branch stubs for PC-relative calls\n" msgstr "" -#: config/tc-csky.c:1490 +#: config/tc-csky.c:1514 #, c-format msgid " -mno-branch-stub\n" msgstr "" -#: config/tc-csky.c:1494 +#: config/tc-csky.c:1518 #, c-format msgid " -force2bsr -mforce2bsr\ttransform jbsr to bsr\n" msgstr "" -#: config/tc-csky.c:1496 +#: config/tc-csky.c:1520 #, c-format msgid " -no-force2bsr -mno-force2bsr\n" msgstr "" -#: config/tc-csky.c:1498 +#: config/tc-csky.c:1522 #, c-format msgid " -jsri2bsr -mjsri2bsr\t\ttransform jsri to bsr\n" msgstr "" -#: config/tc-csky.c:1500 +#: config/tc-csky.c:1524 #, c-format msgid " -no-jsri2bsr -mno-jsri2bsr\n" msgstr "" -#: config/tc-csky.c:1503 +#: config/tc-csky.c:1527 #, c-format msgid " -mnolrw -mno-lrw\t\timplement lrw as movih + ori\n" msgstr "" -#: config/tc-csky.c:1505 +#: config/tc-csky.c:1529 #, c-format msgid " -melrw\t\t\tenable extended lrw (CK800 only)\n" msgstr "" -#: config/tc-csky.c:1507 +#: config/tc-csky.c:1531 #, c-format msgid " -mno-elrw\n" msgstr "" -#: config/tc-csky.c:1510 +#: config/tc-csky.c:1534 #, c-format msgid " -mlaf -mliterals-after-func\temit literals after each function\n" msgstr "" -#: config/tc-csky.c:1512 +#: config/tc-csky.c:1536 #, c-format msgid " -mno-laf -mno-literals-after-func\n" msgstr "" -#: config/tc-csky.c:1514 +#: config/tc-csky.c:1538 #, c-format msgid "" " -mlabr -mliterals-after-br\temit literals after branch instructions\n" msgstr "" -#: config/tc-csky.c:1516 +#: config/tc-csky.c:1540 #, c-format msgid " -mno-labr -mnoliterals-after-br\n" msgstr "" -#: config/tc-csky.c:1519 +#: config/tc-csky.c:1543 #, c-format msgid " -mistack\t\t\tenable interrupt stack instructions\n" msgstr "" -#: config/tc-csky.c:1521 +#: config/tc-csky.c:1545 #, c-format msgid " -mno-istack\n" msgstr "" -#: config/tc-csky.c:1524 +#: config/tc-csky.c:1548 #, c-format msgid " -mhard-float\t\t\tenable hard float instructions\n" msgstr "" -#: config/tc-csky.c:1526 +#: config/tc-csky.c:1550 #, c-format msgid " -mmp\t\t\t\tenable multiprocessor instructions\n" msgstr "" -#: config/tc-csky.c:1528 +#: config/tc-csky.c:1552 #, c-format msgid " -mcp\t\t\t\tenable coprocessor instructions\n" msgstr "" -#: config/tc-csky.c:1530 +#: config/tc-csky.c:1554 #, c-format msgid " -mcache\t\t\tenable cache prefetch instruction\n" msgstr "" -#: config/tc-csky.c:1532 +#: config/tc-csky.c:1556 #, c-format msgid " -msecurity\t\t\tenable security instructions\n" msgstr "" -#: config/tc-csky.c:1534 +#: config/tc-csky.c:1558 #, c-format msgid " -mtrust\t\t\tenable trust instructions\n" msgstr "" -#: config/tc-csky.c:1536 +#: config/tc-csky.c:1560 #, c-format msgid " -mdsp\t\t\t\tenable DSP instructions\n" msgstr "" -#: config/tc-csky.c:1538 +#: config/tc-csky.c:1562 #, c-format msgid " -medsp\t\t\tenable enhanced DSP instructions\n" msgstr "" -#: config/tc-csky.c:1540 +#: config/tc-csky.c:1564 #, c-format msgid " -mvdsp\t\t\tenable vector DSP instructions\n" msgstr "" -#: config/tc-csky.c:1773 +#: config/tc-csky.c:1797 msgid "C-SKY ABI v1 (ck510/ck610) does not support -mbranch-stub" msgstr "" -#: config/tc-csky.c:1778 +#: config/tc-csky.c:1802 msgid "-mno-force2bsr is ignored with -mbranch-stub" msgstr "" -#: config/tc-csky.c:1786 +#: config/tc-csky.c:1810 msgid "-mno-force2bsr is ignored for ck801/ck802" msgstr "" -#: config/tc-csky.c:1813 +#: config/tc-csky.c:1837 msgid "-mljump is ignored for ck801/ck802" msgstr "" -#: config/tc-csky.c:2095 config/tc-mcore.c:689 +#: config/tc-csky.c:2119 config/tc-mcore.c:689 msgid "more than 65K literal pools" msgstr "" -#: config/tc-csky.c:2342 read.c:3786 +#: config/tc-csky.c:2366 read.c:3839 #, c-format msgid "bad floating literal: %s" msgstr "" -#: config/tc-csky.c:2490 config/tc-mcore.c:743 +#: config/tc-csky.c:2514 config/tc-mcore.c:743 msgid "missing ']'" msgstr "" -#: config/tc-csky.c:2518 config/tc-mips.c:14358 config/tc-mips.c:14422 -#: config/tc-mips.c:14433 config/tc-score.c:2688 config/tc-score.c:2735 +#: config/tc-csky.c:2542 config/tc-mips.c:14364 config/tc-mips.c:14418 +#: config/tc-mips.c:14432 config/tc-score.c:2686 config/tc-score.c:2732 msgid "unrecognized opcode" msgstr "" -#: config/tc-csky.c:3653 config/tc-mcore.c:1164 +#: config/tc-csky.c:3673 config/tc-mcore.c:1164 msgid "translating mgeni to movi" msgstr "" -#: config/tc-csky.c:5301 config/tc-tilegx.c:1451 config/tc-tilepro.c:1310 +#: config/tc-csky.c:5319 config/tc-tilegx.c:1443 config/tc-tilepro.c:1306 #, c-format msgid "unsupported BFD relocation size %d" msgstr "" -#: config/tc-csky.c:5924 +#: config/tc-csky.c:5942 msgid "second operand must be 4" msgstr "" -#: config/tc-csky.c:5948 config/tc-mcore.c:1527 +#: config/tc-csky.c:5966 config/tc-mcore.c:1527 msgid "second operand must be 1" msgstr "" -#: config/tc-csky.c:6021 config/tc-xtensa.c:1988 +#: config/tc-csky.c:6039 config/tc-xtensa.c:1989 msgid "register number out of range" msgstr "" -#: config/tc-csky.c:6031 +#: config/tc-csky.c:6049 msgid "64-bit operator src/dst register must be less than 15" msgstr "" -#: config/tc-csky.c:7858 +#: config/tc-csky.c:7871 msgid "the first operand must be a symbol" msgstr "" -#: config/tc-csky.c:7867 +#: config/tc-csky.c:7880 msgid "missing stack size" msgstr "" -#: config/tc-csky.c:7880 config/tc-score.c:4240 +#: config/tc-csky.c:7893 config/tc-score.c:4237 msgid "value not in range [0, 0xffffffff]" msgstr "" -#: config/tc-csky.c:7890 config/tc-mcore.c:782 +#: config/tc-csky.c:7903 config/tc-mcore.c:782 msgid "operand must be a constant" msgstr "" -#: config/tc-d10v.c:216 +#: config/tc-d10v.c:215 #, c-format msgid "" "D10V options:\n" @@ -7138,129 +7139,129 @@ msgid "" " instructions together.\n" msgstr "" -#: config/tc-d10v.c:573 +#: config/tc-d10v.c:572 msgid "operand is not an immediate" msgstr "" -#: config/tc-d10v.c:590 +#: config/tc-d10v.c:589 #, c-format msgid "operand out of range: %lu" msgstr "" -#: config/tc-d10v.c:650 +#: config/tc-d10v.c:649 msgid "Instruction must be executed in parallel with another instruction." msgstr "" -#: config/tc-d10v.c:704 config/tc-d10v.c:712 +#: config/tc-d10v.c:703 config/tc-d10v.c:711 #, c-format msgid "packing conflict: %s must dispatch sequentially" msgstr "" -#: config/tc-d10v.c:811 +#: config/tc-d10v.c:810 #, c-format msgid "resource conflict (R%d)" msgstr "" -#: config/tc-d10v.c:814 +#: config/tc-d10v.c:813 #, c-format msgid "resource conflict (A%d)" msgstr "" -#: config/tc-d10v.c:816 +#: config/tc-d10v.c:815 msgid "resource conflict (PSW)" msgstr "" -#: config/tc-d10v.c:818 +#: config/tc-d10v.c:817 msgid "resource conflict (C flag)" msgstr "" -#: config/tc-d10v.c:820 +#: config/tc-d10v.c:819 msgid "resource conflict (F flag)" msgstr "" -#: config/tc-d10v.c:970 +#: config/tc-d10v.c:969 msgid "Instruction must be executed in parallel" msgstr "" -#: config/tc-d10v.c:973 +#: config/tc-d10v.c:972 msgid "Long instructions may not be combined." msgstr "" -#: config/tc-d10v.c:1006 +#: config/tc-d10v.c:1005 msgid "One of these instructions may not be executed in parallel." msgstr "" -#: config/tc-d10v.c:1010 config/tc-d30v.c:1034 +#: config/tc-d10v.c:1009 config/tc-d30v.c:1034 msgid "Two IU instructions may not be executed in parallel" msgstr "" -#: config/tc-d10v.c:1012 config/tc-d10v.c:1020 config/tc-d10v.c:1034 -#: config/tc-d10v.c:1049 config/tc-d30v.c:1035 config/tc-d30v.c:1044 +#: config/tc-d10v.c:1011 config/tc-d10v.c:1019 config/tc-d10v.c:1033 +#: config/tc-d10v.c:1048 config/tc-d30v.c:1035 config/tc-d30v.c:1044 msgid "Swapping instruction order" msgstr "" -#: config/tc-d10v.c:1018 config/tc-d30v.c:1041 +#: config/tc-d10v.c:1017 config/tc-d30v.c:1041 msgid "Two MU instructions may not be executed in parallel" msgstr "" -#: config/tc-d10v.c:1038 config/tc-d30v.c:1061 +#: config/tc-d10v.c:1037 config/tc-d30v.c:1061 msgid "IU instruction may not be in the left container" msgstr "" -#: config/tc-d10v.c:1040 config/tc-d10v.c:1055 +#: config/tc-d10v.c:1039 config/tc-d10v.c:1054 msgid "" "Instruction in R container is squashed by flow control instruction in L " "container." msgstr "" -#: config/tc-d10v.c:1053 config/tc-d30v.c:1072 +#: config/tc-d10v.c:1052 config/tc-d30v.c:1072 msgid "MU instruction may not be in the right container" msgstr "" -#: config/tc-d10v.c:1059 config/tc-d30v.c:1084 +#: config/tc-d10v.c:1058 config/tc-d30v.c:1084 msgid "unknown execution type passed to write_2_short()" msgstr "" -#: config/tc-d10v.c:1188 config/tc-d10v.c:1361 +#: config/tc-d10v.c:1187 config/tc-d10v.c:1360 msgid "bad opcode or operands" msgstr "" -#: config/tc-d10v.c:1263 +#: config/tc-d10v.c:1262 msgid "value out of range" msgstr "" -#: config/tc-d10v.c:1337 +#: config/tc-d10v.c:1336 msgid "illegal operand - register name found where none expected" msgstr "" -#: config/tc-d10v.c:1372 +#: config/tc-d10v.c:1371 msgid "Register number must be EVEN" msgstr "" -#: config/tc-d10v.c:1375 +#: config/tc-d10v.c:1374 msgid "Unsupported use of sp" msgstr "" -#: config/tc-d10v.c:1394 +#: config/tc-d10v.c:1393 #, c-format msgid "cr%d is a reserved control register" msgstr "" -#: config/tc-d10v.c:1569 +#: config/tc-d10v.c:1568 #, c-format msgid "line %d: rep or repi must include at least 4 instructions" msgstr "" -#: config/tc-d10v.c:1761 +#: config/tc-d10v.c:1760 msgid "can't find previous opcode " msgstr "" -#: config/tc-d10v.c:1773 +#: config/tc-d10v.c:1772 #, c-format msgid "could not assemble: %s" msgstr "" -#: config/tc-d10v.c:1788 config/tc-d10v.c:1810 config/tc-d30v.c:1741 +#: config/tc-d10v.c:1787 config/tc-d10v.c:1809 config/tc-d30v.c:1741 msgid "Unable to mix instructions as specified" msgstr "" @@ -7415,7 +7416,7 @@ msgstr "" msgid "Invalid expression after %%%%\n" msgstr "" -#: config/tc-dlx.c:692 config/tc-tic4x.c:2456 +#: config/tc-dlx.c:692 config/tc-tic4x.c:2452 #, c-format msgid "Unknown opcode `%s'." msgstr "" @@ -7461,8 +7462,8 @@ msgstr "" msgid "Invalid expression after # number\n" msgstr "" -#: config/tc-dlx.c:1180 config/tc-m32r.c:2273 config/tc-nds32.c:7840 -#: config/tc-sparc.c:4015 +#: config/tc-dlx.c:1180 config/tc-m32r.c:2272 config/tc-nds32.c:7832 +#: config/tc-sparc.c:4021 #, c-format msgid "internal error: can't export reloc type %d (`%s')" msgstr "" @@ -7472,28 +7473,28 @@ msgstr "" msgid "EPIPHANY specific command line options:\n" msgstr "" -#: config/tc-epiphany.c:367 +#: config/tc-epiphany.c:363 msgid "register number too large for push/pop" msgstr "" -#: config/tc-epiphany.c:371 +#: config/tc-epiphany.c:367 msgid "register is out of order" msgstr "" -#: config/tc-epiphany.c:385 +#: config/tc-epiphany.c:381 msgid "malformed reglist in push/pop" msgstr "" #. Checks for behavioral restrictions on LD/ST instructions. -#: config/tc-epiphany.c:431 +#: config/tc-epiphany.c:427 msgid "destination register modified by displacement-post-modified address" msgstr "" -#: config/tc-epiphany.c:432 +#: config/tc-epiphany.c:428 msgid "ldrd/strd requires even:odd register pair" msgstr "" -#: config/tc-epiphany.c:820 config/tc-m32r.c:1785 +#: config/tc-epiphany.c:816 config/tc-m32r.c:1784 msgid "Addend to unresolved symbol not on word boundary." msgstr "" @@ -7661,42 +7662,42 @@ msgstr "" msgid "illegal register number" msgstr "" -#: config/tc-ft32.c:239 config/tc-moxie.c:186 config/tc-pj.c:260 +#: config/tc-ft32.c:238 config/tc-moxie.c:186 config/tc-pj.c:260 #, c-format msgid "unknown opcode %s" msgstr "" -#: config/tc-ft32.c:264 +#: config/tc-ft32.c:263 #, c-format msgid "unknown width specifier '.%c'" msgstr "" -#: config/tc-ft32.c:387 +#: config/tc-ft32.c:386 msgid "internal error in argument parsing" msgstr "" -#: config/tc-ft32.c:400 +#: config/tc-ft32.c:399 msgid "expected comma separator" msgstr "" -#: config/tc-ft32.c:412 config/tc-moxie.c:230 config/tc-moxie.c:290 +#: config/tc-ft32.c:411 config/tc-moxie.c:230 config/tc-moxie.c:290 #: config/tc-moxie.c:302 config/tc-moxie.c:335 config/tc-moxie.c:367 -#: config/tc-moxie.c:400 config/tc-moxie.c:454 config/tc-moxie.c:508 -#: config/tc-moxie.c:518 config/tc-moxie.c:541 config/tc-moxie.c:554 +#: config/tc-moxie.c:400 config/tc-moxie.c:454 config/tc-moxie.c:505 +#: config/tc-moxie.c:515 config/tc-moxie.c:538 config/tc-moxie.c:551 #: config/tc-pj.c:308 msgid "extra stuff on line ignored" msgstr "" -#: config/tc-ft32.c:472 config/tc-lm32.c:236 config/tc-moxie.c:585 +#: config/tc-ft32.c:471 config/tc-lm32.c:236 config/tc-moxie.c:582 msgid "bad call to md_atof" msgstr "" -#: config/tc-ft32.c:522 +#: config/tc-ft32.c:521 #, c-format msgid "FT32 options:\n" msgstr "" -#: config/tc-ft32.c:523 +#: config/tc-ft32.c:522 #, c-format msgid "" "\n" @@ -7840,9 +7841,9 @@ msgstr "" #. This seems more sane than saying "too many operands". We'll #. get here only if the trailing trash starts with a comma. -#: config/tc-h8300.c:1814 config/tc-mips.c:14374 config/tc-mips.c:14442 -#: config/tc-mmix.c:469 config/tc-mmix.c:481 config/tc-mmix.c:2537 -#: config/tc-mmix.c:2561 config/tc-mmix.c:2834 +#: config/tc-h8300.c:1814 config/tc-mips.c:14380 config/tc-mips.c:14441 +#: config/tc-mmix.c:469 config/tc-mmix.c:481 config/tc-mmix.c:2536 +#: config/tc-mmix.c:2560 config/tc-mmix.c:2833 msgid "invalid operands" msgstr "" @@ -7850,29 +7851,29 @@ msgstr "" msgid "operand/size mis-match" msgstr "" -#: config/tc-h8300.c:1945 config/tc-sh.c:2537 config/tc-z8k.c:1243 +#: config/tc-h8300.c:1944 config/tc-sh.c:2538 config/tc-z8k.c:1243 msgid "unknown opcode" msgstr "" -#: config/tc-h8300.c:1978 +#: config/tc-h8300.c:1977 msgid "invalid operand in ldm" msgstr "" -#: config/tc-h8300.c:1987 +#: config/tc-h8300.c:1986 msgid "invalid operand in stm" msgstr "" -#: config/tc-h8300.c:2186 +#: config/tc-h8300.c:2185 #, c-format msgid "Invalid argument to --mach option: %s" msgstr "" -#: config/tc-h8300.c:2197 +#: config/tc-h8300.c:2196 #, c-format msgid " H8300-specific assembler options:\n" msgstr "" -#: config/tc-h8300.c:2198 +#: config/tc-h8300.c:2197 #, c-format msgid "" " -mach=<name> Set the H8300 machine type to one of:\n" @@ -7880,32 +7881,32 @@ msgid "" "h8300sxn\n" msgstr "" -#: config/tc-h8300.c:2201 +#: config/tc-h8300.c:2200 #, c-format msgid " -h-tick-hex Support H'00 style hex constants\n" msgstr "" -#: config/tc-h8300.c:2210 +#: config/tc-h8300.c:2209 #, c-format msgid "call to tc_aout_fix_to_chars \n" msgstr "" -#: config/tc-h8300.c:2219 +#: config/tc-h8300.c:2218 #, c-format msgid "call to md_convert_frag \n" msgstr "" -#: config/tc-h8300.c:2270 +#: config/tc-h8300.c:2269 #, c-format msgid "call to md_estimate_size_before_relax \n" msgstr "" -#: config/tc-h8300.c:2285 +#: config/tc-h8300.c:2284 msgid "Unexpected reference to a symbol in a non-code section" msgstr "" -#: config/tc-h8300.c:2322 config/tc-mcore.c:2208 config/tc-microblaze.c:2552 -#: config/tc-pj.c:488 config/tc-sh.c:3886 config/tc-tic6x.c:4515 +#: config/tc-h8300.c:2321 config/tc-mcore.c:2208 config/tc-microblaze.c:2535 +#: config/tc-pj.c:488 config/tc-sh.c:3882 config/tc-tic6x.c:4514 #, c-format msgid "Cannot represent relocation type %s" msgstr "" @@ -7939,257 +7940,257 @@ msgstr "" msgid "Invalid field selector. Assuming F%%." msgstr "" -#: config/tc-hppa.c:1288 +#: config/tc-hppa.c:1287 msgid "Bad segment in expression." msgstr "" -#: config/tc-hppa.c:1313 +#: config/tc-hppa.c:1312 #, c-format msgid "Invalid Nullification: (%c)" msgstr "" -#: config/tc-hppa.c:1379 +#: config/tc-hppa.c:1378 msgid "Cannot handle fixup" msgstr "" -#: config/tc-hppa.c:1663 +#: config/tc-hppa.c:1662 #, c-format msgid " -Q ignored\n" msgstr "" -#: config/tc-hppa.c:1667 +#: config/tc-hppa.c:1666 #, c-format msgid " -c print a warning if a comment is found\n" msgstr "" -#: config/tc-hppa.c:1733 +#: config/tc-hppa.c:1732 #, c-format msgid "no hppa_fixup entry for fixup type 0x%x" msgstr "" -#: config/tc-hppa.c:1912 +#: config/tc-hppa.c:1911 msgid "Unknown relocation encountered in md_apply_fix." msgstr "" -#: config/tc-hppa.c:2100 config/tc-hppa.c:2125 +#: config/tc-hppa.c:2099 config/tc-hppa.c:2124 #, c-format msgid "Undefined register: '%s'." msgstr "" -#: config/tc-hppa.c:2159 +#: config/tc-hppa.c:2158 #, c-format msgid "Non-absolute symbol: '%s'." msgstr "" -#: config/tc-hppa.c:2174 +#: config/tc-hppa.c:2173 #, c-format msgid "Undefined absolute constant: '%s'." msgstr "" -#: config/tc-hppa.c:2205 config/tc-hppa.c:5686 +#: config/tc-hppa.c:2204 config/tc-hppa.c:5691 msgid "could not update architecture and machine" msgstr "" -#: config/tc-hppa.c:2243 +#: config/tc-hppa.c:2242 #, c-format msgid "Invalid FP Compare Condition: %s" msgstr "" -#: config/tc-hppa.c:2298 +#: config/tc-hppa.c:2297 #, c-format msgid "Invalid FTEST completer: %s" msgstr "" -#: config/tc-hppa.c:2364 config/tc-hppa.c:2401 +#: config/tc-hppa.c:2363 config/tc-hppa.c:2400 #, c-format msgid "Invalid FP Operand Format: %3s" msgstr "" -#: config/tc-hppa.c:2519 +#: config/tc-hppa.c:2518 msgid "Bad segment (should be absolute)." msgstr "" -#: config/tc-hppa.c:2579 +#: config/tc-hppa.c:2578 #, c-format msgid "Invalid argument location: %s\n" msgstr "" -#: config/tc-hppa.c:2608 +#: config/tc-hppa.c:2607 #, c-format msgid "Invalid argument description: %d" msgstr "" -#: config/tc-hppa.c:3437 +#: config/tc-hppa.c:3442 msgid "Invalid Indexed Load Completer." msgstr "" -#: config/tc-hppa.c:3442 +#: config/tc-hppa.c:3447 msgid "Invalid Indexed Load Completer Syntax." msgstr "" -#: config/tc-hppa.c:3476 +#: config/tc-hppa.c:3481 msgid "Invalid Short Load/Store Completer." msgstr "" -#: config/tc-hppa.c:3537 config/tc-hppa.c:3542 +#: config/tc-hppa.c:3542 config/tc-hppa.c:3547 msgid "Invalid Store Bytes Short Completer" msgstr "" -#: config/tc-hppa.c:3857 config/tc-hppa.c:3863 +#: config/tc-hppa.c:3862 config/tc-hppa.c:3868 msgid "Invalid left/right combination completer" msgstr "" -#: config/tc-hppa.c:3912 config/tc-hppa.c:3919 +#: config/tc-hppa.c:3917 config/tc-hppa.c:3924 msgid "Invalid permutation completer" msgstr "" -#: config/tc-hppa.c:4019 +#: config/tc-hppa.c:4024 #, c-format msgid "Invalid Add Condition: %s" msgstr "" -#: config/tc-hppa.c:4035 config/tc-hppa.c:4045 +#: config/tc-hppa.c:4040 config/tc-hppa.c:4050 msgid "Invalid Add and Branch Condition" msgstr "" -#: config/tc-hppa.c:4066 config/tc-hppa.c:4211 +#: config/tc-hppa.c:4071 config/tc-hppa.c:4216 msgid "Invalid Compare/Subtract Condition" msgstr "" -#: config/tc-hppa.c:4106 +#: config/tc-hppa.c:4111 #, c-format msgid "Invalid Branch On Bit Condition: %c" msgstr "" -#: config/tc-hppa.c:4109 +#: config/tc-hppa.c:4114 msgid "Missing Branch On Bit Condition" msgstr "" -#: config/tc-hppa.c:4194 +#: config/tc-hppa.c:4199 #, c-format msgid "Invalid Compare/Subtract Condition: %s" msgstr "" -#: config/tc-hppa.c:4226 +#: config/tc-hppa.c:4231 msgid "Invalid Compare and Branch Condition" msgstr "" -#: config/tc-hppa.c:4322 +#: config/tc-hppa.c:4327 msgid "Invalid Logical Instruction Condition." msgstr "" -#: config/tc-hppa.c:4384 +#: config/tc-hppa.c:4389 msgid "Invalid Shift/Extract/Deposit Condition." msgstr "" -#: config/tc-hppa.c:4501 +#: config/tc-hppa.c:4506 msgid "Invalid Unit Instruction Condition." msgstr "" -#: config/tc-hppa.c:4980 config/tc-hppa.c:5012 config/tc-hppa.c:5043 -#: config/tc-hppa.c:5073 +#: config/tc-hppa.c:4985 config/tc-hppa.c:5017 config/tc-hppa.c:5048 +#: config/tc-hppa.c:5078 msgid "Branch to unaligned address" msgstr "" -#: config/tc-hppa.c:5255 +#: config/tc-hppa.c:5260 msgid "Invalid SFU identifier" msgstr "" -#: config/tc-hppa.c:5305 +#: config/tc-hppa.c:5310 msgid "Invalid COPR identifier" msgstr "" -#: config/tc-hppa.c:5435 +#: config/tc-hppa.c:5440 msgid "Invalid Floating Point Operand Format." msgstr "" -#: config/tc-hppa.c:5555 config/tc-hppa.c:5575 config/tc-hppa.c:5595 -#: config/tc-hppa.c:5615 config/tc-hppa.c:5635 +#: config/tc-hppa.c:5560 config/tc-hppa.c:5580 config/tc-hppa.c:5600 +#: config/tc-hppa.c:5620 config/tc-hppa.c:5640 msgid "Invalid register for single precision fmpyadd or fmpysub" msgstr "" -#: config/tc-hppa.c:5703 +#: config/tc-hppa.c:5708 #, c-format msgid "Invalid operands %s" msgstr "" -#: config/tc-hppa.c:5713 +#: config/tc-hppa.c:5718 #, c-format msgid "Immediates %d and %d will give undefined behavior." msgstr "" -#: config/tc-hppa.c:5765 config/tc-hppa.c:6959 config/tc-hppa.c:7014 +#: config/tc-hppa.c:5770 config/tc-hppa.c:6959 config/tc-hppa.c:7014 msgid "Missing function name for .PROC (corrupted label chain)" msgstr "" -#: config/tc-hppa.c:5768 config/tc-hppa.c:7017 +#: config/tc-hppa.c:5773 config/tc-hppa.c:7017 msgid "Missing function name for .PROC" msgstr "" -#: config/tc-hppa.c:5827 +#: config/tc-hppa.c:5832 msgid "Argument to .BLOCK/.BLOCKZ must be between 0 and 0x3fffffff" msgstr "" -#: config/tc-hppa.c:5918 +#: config/tc-hppa.c:5923 #, c-format msgid "Invalid .CALL argument: %s" msgstr "" -#: config/tc-hppa.c:6063 +#: config/tc-hppa.c:6065 msgid ".callinfo is not within a procedure definition" msgstr "" -#: config/tc-hppa.c:6081 +#: config/tc-hppa.c:6083 #, c-format msgid "FRAME parameter must be a multiple of 8: %d\n" msgstr "" -#: config/tc-hppa.c:6098 +#: config/tc-hppa.c:6100 msgid "Value for ENTRY_GR must be in the range 3..18\n" msgstr "" -#: config/tc-hppa.c:6109 +#: config/tc-hppa.c:6111 msgid "Value for ENTRY_FR must be in the range 12..21\n" msgstr "" -#: config/tc-hppa.c:6118 +#: config/tc-hppa.c:6120 msgid "Value for ENTRY_SR must be 3\n" msgstr "" -#: config/tc-hppa.c:6167 +#: config/tc-hppa.c:6169 #, c-format msgid "Invalid .CALLINFO argument: %s" msgstr "" -#: config/tc-hppa.c:6289 +#: config/tc-hppa.c:6291 msgid "The .ENTER pseudo-op is not supported" msgstr "" -#: config/tc-hppa.c:6305 +#: config/tc-hppa.c:6307 msgid "Misplaced .entry. Ignored." msgstr "" -#: config/tc-hppa.c:6309 +#: config/tc-hppa.c:6311 msgid "Missing .callinfo." msgstr "" -#: config/tc-hppa.c:6374 +#: config/tc-hppa.c:6375 msgid ".REG expression must be a register" msgstr "" -#: config/tc-hppa.c:6390 +#: config/tc-hppa.c:6391 msgid "bad or irreducible absolute expression; zero assumed" msgstr "" -#: config/tc-hppa.c:6401 +#: config/tc-hppa.c:6402 msgid ".REG must use a label" msgstr "" -#: config/tc-hppa.c:6403 +#: config/tc-hppa.c:6404 msgid ".EQU must use a label" msgstr "" -#: config/tc-hppa.c:6458 +#: config/tc-hppa.c:6459 #, c-format msgid "Symbol '%s' could not be created." msgstr "" @@ -8307,841 +8308,845 @@ msgstr "" msgid "Invalid .SUBSPACE argument" msgstr "" -#: config/tc-hppa.c:7676 +#: config/tc-hppa.c:7675 #, c-format msgid "Internal error: Unable to find containing space for %s." msgstr "" -#: config/tc-hppa.c:8237 +#: config/tc-hppa.c:8236 msgid "-R option not supported on this target." msgstr "" -#: config/tc-hppa.c:8259 +#: config/tc-hppa.c:8258 #, c-format msgid "internal error: losing opcode: `%s' \"%s\"\n" msgstr "" -#: config/tc-hppa.c:8269 config/tc-sparc.c:999 +#: config/tc-hppa.c:8268 config/tc-sparc.c:999 msgid "Broken assembler. No assembly attempted." msgstr "" -#: config/tc-i386.c:1558 -#, c-format -msgid "i386_output_nops called to generate nops of at most %d bytes!" -msgstr "" - -#: config/tc-i386.c:1738 +#: config/tc-i386.c:1709 #, c-format msgid "invalid single nop size: %d (expect within [0, %d])" msgstr "" -#: config/tc-i386.c:1787 +#: config/tc-i386.c:1755 msgid "jump over nop padding out of range" msgstr "" -#: config/tc-i386.c:2103 +#: config/tc-i386.c:2097 msgid "same oszc flag used twice" msgstr "" -#: config/tc-i386.c:2135 config/tc-i386.c:2146 +#: config/tc-i386.c:2134 config/tc-i386.c:2145 config/tc-i386.c:2182 +#: config/tc-i386.c:2193 msgid "unrecognized pseudo-suffix" msgstr "" -#: config/tc-i386.c:2182 +#: config/tc-i386.c:2159 +msgid "scc= value must be between 0 and 15 (decimal)" +msgstr "" + +#: config/tc-i386.c:2229 msgid "unrecognized oszc flags or illegal `,' in pseudo-suffix" msgstr "" -#: config/tc-i386.c:2199 +#: config/tc-i386.c:2247 msgid "missing `}' or `,' in pseudo-suffix" msgstr "" -#: config/tc-i386.c:2867 +#: config/tc-i386.c:2981 #, c-format msgid "0x%<PRIx64> shortened to 0x%<PRIx64>" msgstr "" -#: config/tc-i386.c:2964 config/tc-i386.c:4580 config/tc-i386.c:4591 -#: config/tc-i386.c:10628 +#: config/tc-i386.c:3078 config/tc-i386.c:4695 config/tc-i386.c:4706 +#: config/tc-i386.c:10751 msgid "same type of prefix used twice" msgstr "" -#: config/tc-i386.c:2976 config/tc-i386.c:3304 +#: config/tc-i386.c:3090 config/tc-i386.c:3418 #, c-format msgid "64bit mode not supported on `%s'." msgstr "" -#: config/tc-i386.c:2983 config/tc-i386.c:3311 +#: config/tc-i386.c:3097 config/tc-i386.c:3425 #, c-format msgid "32bit mode not supported on `%s'." msgstr "" -#: config/tc-i386.c:3035 +#: config/tc-i386.c:3149 msgid "bad argument to syntax directive." msgstr "" -#: config/tc-i386.c:3092 +#: config/tc-i386.c:3206 #, c-format msgid "bad argument to %s_check directive." msgstr "" -#: config/tc-i386.c:3096 +#: config/tc-i386.c:3210 #, c-format msgid "missing argument for %s_check directive" msgstr "" -#: config/tc-i386.c:3123 +#: config/tc-i386.c:3237 #, c-format msgid "`%s' is not supported on `%s'" msgstr "" -#: config/tc-i386.c:3191 +#: config/tc-i386.c:3305 msgid "missing cpu architecture" msgstr "" -#: config/tc-i386.c:3230 +#: config/tc-i386.c:3344 msgid ".arch stack is empty" msgstr "" -#: config/tc-i386.c:3246 +#: config/tc-i386.c:3360 #, c-format msgid "this `.arch pop' requires `.code%u%s' to be in effect" msgstr "" -#: config/tc-i386.c:3357 +#: config/tc-i386.c:3471 msgid "Unrecognized vector size specifier" msgstr "" -#: config/tc-i386.c:3394 +#: config/tc-i386.c:3508 #, c-format msgid "no such architecture: `%s'" msgstr "" -#: config/tc-i386.c:3410 +#: config/tc-i386.c:3524 #, c-format msgid "no such architecture modifier: `%s'" msgstr "" -#: config/tc-i386.c:3426 config/tc-i386.c:3449 +#: config/tc-i386.c:3540 config/tc-i386.c:3563 msgid "Intel MCU is 32bit ELF only" msgstr "" -#: config/tc-i386.c:3456 config/tc-i386.c:17765 +#: config/tc-i386.c:3570 config/tc-i386.c:18013 msgid "unknown architecture" msgstr "" -#: config/tc-i386.c:3831 +#: config/tc-i386.c:3943 msgid "there are no pc-relative size relocations" msgstr "" -#: config/tc-i386.c:3843 +#: config/tc-i386.c:3955 #, c-format msgid "unknown relocation (%u)" msgstr "" -#: config/tc-i386.c:3845 +#: config/tc-i386.c:3957 #, c-format msgid "%u-byte relocation cannot be applied to %u-byte field" msgstr "" -#: config/tc-i386.c:3849 +#: config/tc-i386.c:3961 msgid "non-pc-relative relocation for pc-relative field" msgstr "" -#: config/tc-i386.c:3854 +#: config/tc-i386.c:3966 msgid "relocated field and relocation type differ in signedness" msgstr "" -#: config/tc-i386.c:3863 +#: config/tc-i386.c:3975 msgid "there are no unsigned pc-relative relocations" msgstr "" -#: config/tc-i386.c:3871 +#: config/tc-i386.c:3983 #, c-format msgid "cannot do %u byte pc-relative relocation" msgstr "" -#: config/tc-i386.c:3888 +#: config/tc-i386.c:4000 #, c-format msgid "cannot do %s %u byte relocation" msgstr "" -#: config/tc-i386.c:4352 +#: config/tc-i386.c:4469 #, c-format msgid "ambiguous broadcast for `%s', using %u-bit form" msgstr "" -#: config/tc-i386.c:4581 +#: config/tc-i386.c:4696 msgid "conflicting use of `data16' prefix" msgstr "" -#: config/tc-i386.c:4668 +#: config/tc-i386.c:4784 #, c-format msgid "can't encode register '%s%s' in an instruction requiring %s prefix" msgstr "" -#: config/tc-i386.c:4710 +#: config/tc-i386.c:4826 #, c-format msgid "size override not allowed with `%s'" msgstr "" -#: config/tc-i386.c:4717 +#: config/tc-i386.c:4833 #, c-format msgid "address override not allowed with `%s'" msgstr "" -#: config/tc-i386.c:4771 config/tc-i386.c:7240 +#: config/tc-i386.c:4887 config/tc-i386.c:7357 #, c-format msgid "invalid instruction `%s' after `%s'" msgstr "" -#: config/tc-i386.c:4777 +#: config/tc-i386.c:4893 #, c-format msgid "missing `lock' with `%s'" msgstr "" -#: config/tc-i386.c:4784 +#: config/tc-i386.c:4900 #, c-format msgid "instruction `%s' after `xacquire' not allowed" msgstr "" -#: config/tc-i386.c:4790 +#: config/tc-i386.c:4906 #, c-format msgid "memory destination needed for instruction `%s' after `xrelease'" msgstr "" -#: config/tc-i386.c:6224 +#: config/tc-i386.c:6340 msgid "`.noopt' arguments ignored" msgstr "" -#: config/tc-i386.c:6410 +#: config/tc-i386.c:6526 #, c-format msgid "`%s` changes flags which would affect control flow behavior" msgstr "" -#: config/tc-i386.c:6452 +#: config/tc-i386.c:6568 #, c-format msgid "indirect `%s` with memory operand should be avoided" msgstr "" -#: config/tc-i386.c:6462 +#: config/tc-i386.c:6578 #, c-format msgid "`%s` skips -mlfence-before-indirect-branch on `%s`" msgstr "" -#: config/tc-i386.c:6481 +#: config/tc-i386.c:6597 #, c-format msgid "`%s` skips -mlfence-before-ret on `%s`" msgstr "" -#: config/tc-i386.c:6831 +#: config/tc-i386.c:6949 #, c-format msgid "@%s operator cannot be used with `%s'" msgstr "" -#: config/tc-i386.c:6836 +#: config/tc-i386.c:6954 #, c-format msgid "@%s operator can be used with `%s', but format is wrong" msgstr "" -#: config/tc-i386.c:6841 +#: config/tc-i386.c:6959 #, c-format msgid "@%s operator requires no SIB" msgstr "" -#: config/tc-i386.c:6845 +#: config/tc-i386.c:6963 #, c-format msgid "@%s operator requires base register" msgstr "" -#: config/tc-i386.c:6849 +#: config/tc-i386.c:6967 #, c-format msgid "@%s operator requires no base/index register" msgstr "" -#: config/tc-i386.c:6854 +#: config/tc-i386.c:6972 #, c-format msgid "@%s operator requires no base register" msgstr "" -#: config/tc-i386.c:6858 +#: config/tc-i386.c:6976 #, c-format msgid "@%s operator requires `%sebx' as index register" msgstr "" -#: config/tc-i386.c:6863 +#: config/tc-i386.c:6981 #, c-format msgid "@%s operator requires `%seax' as base register" msgstr "" -#: config/tc-i386.c:6868 +#: config/tc-i386.c:6986 #, c-format msgid "@%s operator requires `%seax/%srax' as base register" msgstr "" -#: config/tc-i386.c:6873 +#: config/tc-i386.c:6991 #, c-format msgid "@%s operator requires `%sebx' as base register" msgstr "" -#: config/tc-i386.c:6878 +#: config/tc-i386.c:6996 #, c-format msgid "@%s operator requires `%srip' as base register" msgstr "" -#: config/tc-i386.c:6883 +#: config/tc-i386.c:7001 #, c-format msgid "@%s operator requires `%seax' as dest register" msgstr "" -#: config/tc-i386.c:6888 +#: config/tc-i386.c:7006 #, c-format msgid "@%s operator requires `%srdi' as dest register" msgstr "" -#: config/tc-i386.c:6893 +#: config/tc-i386.c:7011 #, c-format msgid "@%s operator requires scale factor of 1" msgstr "" -#: config/tc-i386.c:6898 +#: config/tc-i386.c:7016 #, c-format msgid "@%s operator requires 32-bit base register" msgstr "" -#: config/tc-i386.c:6903 +#: config/tc-i386.c:7021 #, c-format msgid "@%s operator requires 32-bit dest register" msgstr "" -#: config/tc-i386.c:6908 +#: config/tc-i386.c:7026 #, c-format msgid "@%s operator requires 64-bit dest register" msgstr "" -#: config/tc-i386.c:6913 +#: config/tc-i386.c:7031 #, c-format msgid "@%s operator requires 32-bit or 64-bit dest register" msgstr "" -#: config/tc-i386.c:7081 +#: config/tc-i386.c:7198 msgid "operand size mismatch" msgstr "" -#: config/tc-i386.c:7084 +#: config/tc-i386.c:7201 msgid "operand type mismatch" msgstr "" -#: config/tc-i386.c:7087 +#: config/tc-i386.c:7204 msgid "register type mismatch" msgstr "" -#: config/tc-i386.c:7090 +#: config/tc-i386.c:7207 msgid "number of operands mismatch" msgstr "" -#: config/tc-i386.c:7093 +#: config/tc-i386.c:7210 msgid "invalid instruction suffix" msgstr "" -#: config/tc-i386.c:7096 +#: config/tc-i386.c:7213 msgid "constant doesn't fit in 4 bits" msgstr "" -#: config/tc-i386.c:7099 +#: config/tc-i386.c:7216 msgid "unsupported with Intel mnemonic" msgstr "" -#: config/tc-i386.c:7102 +#: config/tc-i386.c:7219 msgid "unsupported syntax" msgstr "" -#: config/tc-i386.c:7105 +#: config/tc-i386.c:7222 msgid "extended GPR cannot be used as base/index" msgstr "" -#: config/tc-i386.c:7108 +#: config/tc-i386.c:7225 msgid "{nf} unsupported" msgstr "" -#: config/tc-i386.c:7111 +#: config/tc-i386.c:7228 #, c-format msgid "unsupported instruction `%s'" msgstr "" -#: config/tc-i386.c:7115 config/tc-i386.c:7633 +#: config/tc-i386.c:7232 config/tc-i386.c:7755 #, c-format msgid "`%s' is not supported on `%s%s'" msgstr "" -#: config/tc-i386.c:7124 +#: config/tc-i386.c:7241 #, c-format msgid "`%s%c' is not supported in 64-bit mode" msgstr "" -#: config/tc-i386.c:7128 +#: config/tc-i386.c:7245 #, c-format msgid "`%s%c' is only supported in 64-bit mode" msgstr "" -#: config/tc-i386.c:7135 config/tc-i386.c:7627 +#: config/tc-i386.c:7252 config/tc-i386.c:7749 #, c-format msgid "`%s' is not supported in 64-bit mode" msgstr "" -#: config/tc-i386.c:7138 config/tc-i386.c:7626 +#: config/tc-i386.c:7255 config/tc-i386.c:7748 #, c-format msgid "`%s' is only supported in 64-bit mode" msgstr "" -#: config/tc-i386.c:7143 +#: config/tc-i386.c:7260 msgid "no VEX/XOP encoding" msgstr "" -#: config/tc-i386.c:7146 +#: config/tc-i386.c:7263 msgid "no EVEX encoding" msgstr "" -#: config/tc-i386.c:7149 +#: config/tc-i386.c:7266 msgid "invalid SIB address" msgstr "" -#: config/tc-i386.c:7152 +#: config/tc-i386.c:7269 msgid "invalid VSIB address" msgstr "" -#: config/tc-i386.c:7155 +#: config/tc-i386.c:7272 msgid "mask, index, and destination registers must be distinct" msgstr "" -#: config/tc-i386.c:7158 +#: config/tc-i386.c:7275 msgid "all tmm registers must be distinct" msgstr "" -#: config/tc-i386.c:7161 +#: config/tc-i386.c:7278 msgid "destination and source registers must be distinct" msgstr "" -#: config/tc-i386.c:7164 +#: config/tc-i386.c:7281 msgid "two dest registers must be distinct" msgstr "" -#: config/tc-i386.c:7167 +#: config/tc-i386.c:7284 msgid "rex2 pseudo prefix cannot be used" msgstr "" -#: config/tc-i386.c:7170 +#: config/tc-i386.c:7287 msgid "unsupported vector index register" msgstr "" -#: config/tc-i386.c:7173 +#: config/tc-i386.c:7290 msgid "unsupported broadcast" msgstr "" -#: config/tc-i386.c:7176 +#: config/tc-i386.c:7293 msgid "broadcast is needed for operand of such type" msgstr "" -#: config/tc-i386.c:7179 +#: config/tc-i386.c:7296 msgid "unsupported masking" msgstr "" -#: config/tc-i386.c:7182 +#: config/tc-i386.c:7299 msgid "mask not on destination operand" msgstr "" -#: config/tc-i386.c:7185 +#: config/tc-i386.c:7302 msgid "default mask isn't allowed" msgstr "" -#: config/tc-i386.c:7188 +#: config/tc-i386.c:7305 msgid "unsupported static rounding/sae" msgstr "" -#: config/tc-i386.c:7191 +#: config/tc-i386.c:7308 #, c-format msgid "vector size above %u required for `%s'" msgstr "" -#: config/tc-i386.c:7195 +#: config/tc-i386.c:7312 msgid "'rsp' register cannot be used" msgstr "" -#: config/tc-i386.c:7198 +#: config/tc-i386.c:7315 msgid "internal error" msgstr "" -#: config/tc-i386.c:7201 +#: config/tc-i386.c:7318 #, c-format msgid "%s for `%s'" msgstr "" -#: config/tc-i386.c:7230 +#: config/tc-i386.c:7347 #, c-format msgid "SSE instruction `%s' is used" msgstr "" -#: config/tc-i386.c:7254 +#: config/tc-i386.c:7371 msgid "expecting lockable instruction after `lock'" msgstr "" -#: config/tc-i386.c:7287 +#: config/tc-i386.c:7404 #, c-format msgid "data size prefix invalid with `%s'" msgstr "" -#: config/tc-i386.c:7298 +#: config/tc-i386.c:7415 msgid "expecting valid branch instruction after `bnd'" msgstr "" -#: config/tc-i386.c:7302 +#: config/tc-i386.c:7419 msgid "expecting indirect branch instruction after `notrack'" msgstr "" -#: config/tc-i386.c:7307 +#: config/tc-i386.c:7424 msgid "32-bit address isn't allowed in 64-bit MPX instructions." msgstr "" -#: config/tc-i386.c:7311 +#: config/tc-i386.c:7428 msgid "16-bit address isn't allowed in MPX instructions" msgstr "" -#: config/tc-i386.c:7321 +#: config/tc-i386.c:7438 msgid "replacing `rep'/`repe' prefix by `bnd'" msgstr "" -#: config/tc-i386.c:7341 +#: config/tc-i386.c:7458 #, c-format msgid "input/output port address isn't allowed with `%s'" msgstr "" -#: config/tc-i386.c:7374 +#: config/tc-i386.c:7491 #, c-format msgid "'%s' only supports RIP-relative address" msgstr "" #. UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. -#: config/tc-i386.c:7423 +#: config/tc-i386.c:7545 #, c-format msgid "translating to `%sp'" msgstr "" -#: config/tc-i386.c:7430 +#: config/tc-i386.c:7552 #, c-format msgid "instruction `%s' isn't supported outside of protected mode." msgstr "" -#: config/tc-i386.c:7443 +#: config/tc-i386.c:7565 #, c-format msgid "REX prefix invalid with `%s'" msgstr "" -#: config/tc-i386.c:7450 +#: config/tc-i386.c:7572 #, c-format msgid "{rex2} prefix invalid with `%s'" msgstr "" -#: config/tc-i386.c:7576 config/tc-i386.c:7890 +#: config/tc-i386.c:7698 config/tc-i386.c:8015 #, c-format msgid "no such instruction: `%s'" msgstr "" -#: config/tc-i386.c:7602 config/tc-i386.c:7941 +#: config/tc-i386.c:7724 config/tc-i386.c:8066 #, c-format msgid "invalid character %s in mnemonic" msgstr "" -#: config/tc-i386.c:7609 +#: config/tc-i386.c:7731 msgid "expecting prefix; got nothing" msgstr "" -#: config/tc-i386.c:7611 +#: config/tc-i386.c:7733 msgid "expecting mnemonic; got nothing" msgstr "" -#: config/tc-i386.c:7647 +#: config/tc-i386.c:7769 #, c-format msgid "redundant %s prefix" msgstr "" -#: config/tc-i386.c:7712 +#: config/tc-i386.c:7838 msgid "{nf} cannot be combined with {vex}/{vex3}" msgstr "" -#: config/tc-i386.c:7762 +#: config/tc-i386.c:7914 #, c-format msgid "ignoring `.s' suffix due to earlier `{%s}'" msgstr "" -#: config/tc-i386.c:7772 +#: config/tc-i386.c:7924 msgid "ignoring `.d8' suffix due to earlier `{disp<N>}'" msgstr "" -#: config/tc-i386.c:7782 +#: config/tc-i386.c:7934 msgid "ignoring `.d32' suffix due to earlier `{disp<N>}'" msgstr "" -#: config/tc-i386.c:7873 +#: config/tc-i386.c:7998 #, c-format msgid "found `%sd'; assuming `%sl' was meant" msgstr "" -#: config/tc-i386.c:7990 +#: config/tc-i386.c:8115 #, c-format msgid "invalid character %s before operand %d" msgstr "" -#: config/tc-i386.c:8002 +#: config/tc-i386.c:8127 #, c-format msgid "unbalanced double quotes in operand %d." msgstr "" -#: config/tc-i386.c:8009 +#: config/tc-i386.c:8134 #, c-format msgid "unbalanced parenthesis in operand %d." msgstr "" -#: config/tc-i386.c:8022 +#: config/tc-i386.c:8147 #, c-format msgid "invalid character %s in operand %d" msgstr "" -#: config/tc-i386.c:8042 +#: config/tc-i386.c:8167 #, c-format msgid "spurious operands; (%d operands/instruction max)" msgstr "" -#: config/tc-i386.c:8052 config/tc-i386.c:13607 +#: config/tc-i386.c:8177 config/tc-i386.c:13795 #, c-format msgid "too many memory references for `%s'" msgstr "" -#: config/tc-i386.c:8073 config/tc-i386.c:13601 +#: config/tc-i386.c:8198 config/tc-i386.c:13789 msgid "expecting operand after ','; got nothing" msgstr "" -#: config/tc-i386.c:8078 +#: config/tc-i386.c:8203 msgid "expecting operand before ','; got nothing" msgstr "" -#: config/tc-i386.c:8368 +#: config/tc-i386.c:8493 #, c-format msgid "0x%<PRIx64> out of range of signed 32bit displacement" msgstr "" -#: config/tc-i386.c:8572 +#: config/tc-i386.c:8697 msgid "mask, index, and destination registers should be distinct" msgstr "" -#: config/tc-i386.c:8589 +#: config/tc-i386.c:8714 msgid "index and destination registers should be distinct" msgstr "" -#: config/tc-i386.c:9718 +#: config/tc-i386.c:9841 #, c-format msgid "indirect %s without `*'" msgstr "" #. Warn them that a data or address size prefix doesn't #. affect assembly of the next line of code. -#: config/tc-i386.c:9725 +#: config/tc-i386.c:9848 #, c-format msgid "stand-alone `%s' prefix" msgstr "" -#: config/tc-i386.c:9732 +#: config/tc-i386.c:9855 #, c-format msgid "mnemonic suffix used with `%s'" msgstr "" -#: config/tc-i386.c:9737 +#: config/tc-i386.c:9860 msgid "" "NOTE: Such forms are deprecated and will be rejected by a future version of " "the assembler" msgstr "" -#: config/tc-i386.c:9822 +#: config/tc-i386.c:9945 #, c-format msgid "`%s' operand %u must use `%ses' segment" msgstr "" -#: config/tc-i386.c:9952 +#: config/tc-i386.c:10075 msgid "generating 16-bit `iret' for .code16gcc directive" msgstr "" -#: config/tc-i386.c:9956 +#: config/tc-i386.c:10079 #, c-format msgid "generating 32-bit `%s', unlike earlier gas versions" msgstr "" -#: config/tc-i386.c:10120 +#: config/tc-i386.c:10243 #, c-format msgid "ambiguous operand size for `%s'" msgstr "" -#: config/tc-i386.c:10125 +#: config/tc-i386.c:10248 #, c-format msgid "" "no instruction mnemonic suffix given and no register operands; can't size `%" "s'" msgstr "" -#: config/tc-i386.c:10130 +#: config/tc-i386.c:10253 #, c-format msgid "%s; using default for `%s'" msgstr "" -#: config/tc-i386.c:10132 +#: config/tc-i386.c:10255 msgid "ambiguous operand size" msgstr "" -#: config/tc-i386.c:10133 +#: config/tc-i386.c:10256 msgid "no instruction mnemonic suffix given and no register operands" msgstr "" -#: config/tc-i386.c:10282 +#: config/tc-i386.c:10405 #, c-format msgid "16-bit addressing unavailable for `%s'" msgstr "" -#: config/tc-i386.c:10350 +#: config/tc-i386.c:10473 #, c-format msgid "invalid register operand size for `%s'" msgstr "" #. Any other register is bad. -#: config/tc-i386.c:10389 config/tc-i386.c:10413 config/tc-i386.c:10453 -#: config/tc-i386.c:10490 +#: config/tc-i386.c:10512 config/tc-i386.c:10536 config/tc-i386.c:10576 +#: config/tc-i386.c:10613 #, c-format msgid "`%s%s' not allowed with `%s%c'" msgstr "" -#: config/tc-i386.c:10426 config/tc-i386.c:10465 config/tc-i386.c:10502 +#: config/tc-i386.c:10549 config/tc-i386.c:10588 config/tc-i386.c:10625 #, c-format msgid "incorrect register `%s%s' used with `%c' suffix" msgstr "" -#: config/tc-i386.c:10592 +#: config/tc-i386.c:10715 msgid "no instruction mnemonic suffix given; can't determine immediate size" msgstr "" -#: config/tc-i386.c:10799 +#: config/tc-i386.c:10921 #, c-format msgid "operand %u `%s%s' implicitly denotes `%s%s' to `%s%s' group in `%s'" msgstr "" #. Reversed arguments on faddp or fmulp. -#: config/tc-i386.c:10846 +#: config/tc-i386.c:10968 #, c-format msgid "translating to `%s %s%s,%s%s'" msgstr "" #. Extraneous `l' suffix on fp insn. -#: config/tc-i386.c:10853 +#: config/tc-i386.c:10975 #, c-format msgid "translating to `%s %s%s'" msgstr "" -#: config/tc-i386.c:10866 +#: config/tc-i386.c:10988 #, c-format msgid "you can't `%s %s%s'" msgstr "" -#: config/tc-i386.c:10923 +#: config/tc-i386.c:11045 #, c-format msgid "segment override on `%s' is ineffectual" msgstr "" -#: config/tc-i386.c:11381 config/tc-loongarch.c:1245 config/tc-riscv.c:1979 +#: config/tc-i386.c:11506 config/tc-loongarch.c:1222 config/tc-riscv.c:1990 msgid "relaxable branches not supported in absolute section" msgstr "" -#: config/tc-i386.c:11416 config/tc-i386.c:11559 config/tc-i386.c:11641 +#: config/tc-i386.c:11541 config/tc-i386.c:11684 config/tc-i386.c:11766 #, c-format msgid "skipping prefixes on `%s'" msgstr "" -#: config/tc-i386.c:11667 +#: config/tc-i386.c:11792 msgid "16-bit jump out of range" msgstr "" -#: config/tc-i386.c:11694 config/tc-i386.c:12436 +#: config/tc-i386.c:11819 config/tc-i386.c:12567 msgid "pseudo prefix without instruction" msgstr "" -#: config/tc-i386.c:11706 +#: config/tc-i386.c:11831 msgid "pseudo prefix ahead of label; ignoring" msgstr "" -#: config/tc-i386.c:12025 config/tc-i386.c:12058 config/tc-i386.c:12147 +#: config/tc-i386.c:12150 config/tc-i386.c:12184 config/tc-i386.c:12273 #, c-format msgid "`%s` skips -malign-branch-boundary on `%s`" msgstr "" -#: config/tc-i386.c:12316 +#: config/tc-i386.c:12446 msgid "use .code16 to ensure correct addressing mode" msgstr "" -#: config/tc-i386.c:12344 +#: config/tc-i386.c:12474 #, c-format msgid "Cannot convert `%s' in 16-bit mode" msgstr "" -#: config/tc-i386.c:12346 +#: config/tc-i386.c:12476 #, c-format msgid "Cannot convert `%s' with `-momit-lock-prefix=yes' in effect" msgstr "" -#: config/tc-i386.c:12591 config/tc-i386.c:12594 +#: config/tc-i386.c:12724 config/tc-i386.c:12727 #, c-format msgid "instruction length of %u bytes exceeds the limit of 15" msgstr "" -#: config/tc-i386.c:13145 +#: config/tc-i386.c:13299 #, c-format msgid "@%s reloc is not supported with %d-bit output format" msgstr "" -#: config/tc-i386.c:13203 +#: config/tc-i386.c:13357 #, c-format msgid "missing or invalid expression `%s'" msgstr "" -#: config/tc-i386.c:13212 +#: config/tc-i386.c:13366 #, c-format msgid "invalid PLT expression `%s'" msgstr "" -#: config/tc-i386.c:13311 +#: config/tc-i386.c:13466 msgid "pseudo-prefix conflicts with encoding specifier" msgstr "" -#: config/tc-i386.c:13335 +#: config/tc-i386.c:13490 msgid "illegal prefix used with VEX/XOP/EVEX" msgstr "" -#: config/tc-i386.c:13646 +#: config/tc-i386.c:13769 +msgid "SCC/OSZC specifier cannot be used here" +msgstr "" + +#: config/tc-i386.c:13834 #, c-format msgid "opcode residual (%#<PRIx64>) too wide" msgstr "" -#: config/tc-i386.c:13662 +#: config/tc-i386.c:13850 msgid "eGPR use conflicts with encoding specifier" msgstr "" -#: config/tc-i386.c:13683 config/tc-i386.c:13727 +#: config/tc-i386.c:13871 config/tc-i386.c:13923 msgid "too many register/memory operands" msgstr "" -#: config/tc-i386.c:13694 config/tc-i386.c:13701 +#: config/tc-i386.c:13883 config/tc-i386.c:13890 config/tc-i386.c:13897 msgid "too few register/memory operands" msgstr "" -#: config/tc-i386.c:13714 +#: config/tc-i386.c:13907 #, c-format msgid "constant doesn't fit in %d bits" msgstr "" -#: config/tc-i386.c:13778 +#: config/tc-i386.c:13974 msgid "VSIB unavailable with legacy encoding" msgstr "" @@ -9149,373 +9154,394 @@ msgstr "" #. an 8-bit immediate like for 4-register-operand insns, but that #. would require ugly fiddling with process_operands() and/or #. build_modrm_byte(). -#: config/tc-i386.c:13789 +#: config/tc-i386.c:13985 msgid "too many register operands with VSIB" msgstr "" -#: config/tc-i386.c:13808 +#: config/tc-i386.c:14004 #, c-format msgid "can't encode register '%s%s' with VEX/XOP/EVEX" msgstr "" -#: config/tc-i386.c:14013 +#: config/tc-i386.c:14209 msgid "conflicting .insn operands" msgstr "" -#: config/tc-i386.c:14046 read.c:4318 +#: config/tc-i386.c:14217 +#, c-format +msgid "APX functionality cannot be used with %s encodings" +msgstr "" + +#: config/tc-i386.c:14242 +msgid "opcode space cannot be larger than 7" +msgstr "" + +#: config/tc-i386.c:14247 +msgid "ND and broadcast cannot be used at the same time" +msgstr "" + +#: config/tc-i386.c:14252 +msgid "{nf} and masking cannot be used at the same time" +msgstr "" + +#: config/tc-i386.c:14258 +msgid "SCC cannot be used at the same time {nf} / masking" +msgstr "" + +#: config/tc-i386.c:14278 read.c:4381 msgid "SCFI: hand-crafting instructions not supported" msgstr "" -#: config/tc-i386.c:14115 +#: config/tc-i386.c:14347 #, c-format msgid "duplicated `{%s}'" msgstr "" -#: config/tc-i386.c:14188 +#: config/tc-i386.c:14420 #, c-format msgid "Unsupported broadcast: `%s'" msgstr "" -#: config/tc-i386.c:14263 +#: config/tc-i386.c:14495 #, c-format msgid "`%s%s' can't be used for write mask" msgstr "" -#: config/tc-i386.c:14283 +#: config/tc-i386.c:14515 #, c-format msgid "invalid write mask `%s'" msgstr "" -#: config/tc-i386.c:14304 +#: config/tc-i386.c:14536 #, c-format msgid "duplicated `%s'" msgstr "" -#: config/tc-i386.c:14314 +#: config/tc-i386.c:14546 #, c-format msgid "invalid zeroing-masking `%s'" msgstr "" -#: config/tc-i386.c:14332 +#: config/tc-i386.c:14564 #, c-format msgid "missing `}' in `%s'" msgstr "" #. We don't know this one. -#: config/tc-i386.c:14344 +#: config/tc-i386.c:14576 #, c-format msgid "unknown vector operation: `%s'" msgstr "" -#: config/tc-i386.c:14350 +#: config/tc-i386.c:14582 msgid "zeroing-masking only allowed with write mask" msgstr "" -#: config/tc-i386.c:14370 +#: config/tc-i386.c:14602 #, c-format msgid "at most %d immediate operands are allowed" msgstr "" -#: config/tc-i386.c:14409 config/tc-i386.c:14668 +#: config/tc-i386.c:14641 config/tc-i386.c:14900 #, c-format msgid "junk `%s' after expression" msgstr "" -#: config/tc-i386.c:14422 +#: config/tc-i386.c:14654 #, c-format msgid "illegal immediate register operand %s" msgstr "" -#: config/tc-i386.c:14436 +#: config/tc-i386.c:14668 #, c-format msgid "missing or invalid immediate expression `%s'" msgstr "" -#: config/tc-i386.c:14459 config/tc-i386.c:14747 +#: config/tc-i386.c:14691 config/tc-i386.c:14979 #, c-format msgid "unimplemented segment %s in operand" msgstr "" -#: config/tc-i386.c:14508 +#: config/tc-i386.c:14740 #, c-format msgid "expecting scale factor of 1, 2, 4, or 8: got `%s'" msgstr "" -#: config/tc-i386.c:14517 +#: config/tc-i386.c:14749 #, c-format msgid "scale factor of %d without an index register" msgstr "" -#: config/tc-i386.c:14539 +#: config/tc-i386.c:14771 #, c-format msgid "at most %d displacement operands are allowed" msgstr "" -#: config/tc-i386.c:14723 +#: config/tc-i386.c:14955 #, c-format msgid "missing or invalid displacement expression `%s'" msgstr "" -#: config/tc-i386.c:14898 +#: config/tc-i386.c:15144 #, c-format msgid "`%s' is not valid here (expected `%c%s%s%c')" msgstr "" -#: config/tc-i386.c:14910 +#: config/tc-i386.c:15156 #, c-format msgid "`%s' is not a valid %s expression" msgstr "" -#: config/tc-i386.c:14924 +#: config/tc-i386.c:15170 #, c-format msgid "invalid `%s' prefix" msgstr "" -#: config/tc-i386.c:14954 +#: config/tc-i386.c:15200 #, c-format msgid "`%s' cannot be used here" msgstr "" -#: config/tc-i386.c:14961 +#: config/tc-i386.c:15207 msgid "register scaling is being ignored here" msgstr "" -#: config/tc-i386.c:15009 +#: config/tc-i386.c:15255 #, c-format msgid "Missing '}': '%s'" msgstr "" -#: config/tc-i386.c:15015 +#: config/tc-i386.c:15261 #, c-format msgid "Junk after '}': '%s'" msgstr "" -#: config/tc-i386.c:15090 +#: config/tc-i386.c:15336 #, c-format msgid "bad memory operand `%s'" msgstr "" -#: config/tc-i386.c:15106 +#: config/tc-i386.c:15352 #, c-format msgid "junk `%s' after register" msgstr "" -#: config/tc-i386.c:15113 +#: config/tc-i386.c:15359 #, c-format msgid "`%s%s' cannot be used here" msgstr "" -#: config/tc-i386.c:15136 +#: config/tc-i386.c:15382 #, c-format msgid "`%s': misplaced `{%s}'" msgstr "" -#: config/tc-i386.c:15143 config/tc-i386.c:15317 config/tc-i386.c:15361 +#: config/tc-i386.c:15389 config/tc-i386.c:15563 config/tc-i386.c:15607 #, c-format msgid "bad register name `%s'" msgstr "" -#: config/tc-i386.c:15151 +#: config/tc-i386.c:15397 msgid "immediate operand illegal with absolute jump" msgstr "" -#: config/tc-i386.c:15158 +#: config/tc-i386.c:15404 #, c-format msgid "`%s': RC/SAE operand must follow immediate operands" msgstr "" -#: config/tc-i386.c:15171 +#: config/tc-i386.c:15417 #, c-format msgid "`%s': misplaced `%s'" msgstr "" -#: config/tc-i386.c:15222 +#: config/tc-i386.c:15468 msgid "unbalanced figure braces" msgstr "" -#: config/tc-i386.c:15306 +#: config/tc-i386.c:15552 #, c-format msgid "expecting `,' or `)' after index register in `%s'" msgstr "" -#: config/tc-i386.c:15334 +#: config/tc-i386.c:15580 #, c-format msgid "expecting `)' after scale factor in `%s'" msgstr "" -#: config/tc-i386.c:15342 +#: config/tc-i386.c:15588 #, c-format msgid "expecting index register or scale factor after `,'; got '%c'" msgstr "" -#: config/tc-i386.c:15350 +#: config/tc-i386.c:15596 #, c-format msgid "expecting `,' or `)' after base register in `%s'" msgstr "" #. It's not a memory operand; argh! -#: config/tc-i386.c:15400 +#: config/tc-i386.c:15646 #, c-format msgid "invalid char %s beginning operand %d `%s'" msgstr "" -#: config/tc-i386.c:16059 +#: config/tc-i386.c:16305 #, c-format msgid "%s:%u: add %d%s at 0x%llx to align %s within %d-byte boundary\n" msgstr "" -#: config/tc-i386.c:16062 +#: config/tc-i386.c:16308 #, c-format msgid "" "%s:%u: add additional %d%s at 0x%llx to align %s within %d-byte boundary\n" msgstr "" -#: config/tc-i386.c:16068 +#: config/tc-i386.c:16314 #, c-format msgid "" "%s:%u: add %d%s-byte nop at 0x%llx to align %s within %d-byte boundary\n" msgstr "" -#: config/tc-i386.c:16135 +#: config/tc-i386.c:16381 msgid "long jump required" msgstr "" -#: config/tc-i386.c:16190 +#: config/tc-i386.c:16436 msgid "jump target out of range" msgstr "" -#: config/tc-i386.c:16668 +#: config/tc-i386.c:16916 #, c-format msgid "register '%s%s' cannot be used here" msgstr "" -#: config/tc-i386.c:16934 +#: config/tc-i386.c:17182 #, c-format msgid "invalid -mx86-used-note= option: `%s'" msgstr "" -#: config/tc-i386.c:16957 +#: config/tc-i386.c:17205 msgid "no compiled in support for x86_64" msgstr "" -#: config/tc-i386.c:16976 +#: config/tc-i386.c:17224 msgid "no compiled in support for 32bit x86_64" msgstr "" -#: config/tc-i386.c:16997 +#: config/tc-i386.c:17245 msgid "no compiled in support for ix86" msgstr "" -#: config/tc-i386.c:17030 config/tc-i386.c:17116 +#: config/tc-i386.c:17278 config/tc-i386.c:17364 #, c-format msgid "invalid -march= option: `%s'" msgstr "" -#: config/tc-i386.c:17086 +#: config/tc-i386.c:17334 msgid "Unrecognized vector size specifier ignored" msgstr "" -#: config/tc-i386.c:17126 config/tc-i386.c:17138 +#: config/tc-i386.c:17374 config/tc-i386.c:17386 #, c-format msgid "invalid -mtune= option: `%s'" msgstr "" -#: config/tc-i386.c:17147 +#: config/tc-i386.c:17395 #, c-format msgid "invalid -mmnemonic= option: `%s'" msgstr "" -#: config/tc-i386.c:17156 +#: config/tc-i386.c:17404 #, c-format msgid "invalid -msyntax= option: `%s'" msgstr "" -#: config/tc-i386.c:17184 +#: config/tc-i386.c:17432 #, c-format msgid "invalid -msse-check= option: `%s'" msgstr "" -#: config/tc-i386.c:17195 +#: config/tc-i386.c:17443 #, c-format msgid "invalid -moperand-check= option: `%s'" msgstr "" -#: config/tc-i386.c:17204 +#: config/tc-i386.c:17452 #, c-format msgid "invalid -mavxscalar= option: `%s'" msgstr "" -#: config/tc-i386.c:17213 +#: config/tc-i386.c:17461 #, c-format msgid "invalid -mvexwig= option: `%s'" msgstr "" -#: config/tc-i386.c:17228 +#: config/tc-i386.c:17476 #, c-format msgid "invalid -mevexlig= option: `%s'" msgstr "" -#: config/tc-i386.c:17241 +#: config/tc-i386.c:17489 #, c-format msgid "invalid -mevexrcig= option: `%s'" msgstr "" -#: config/tc-i386.c:17250 +#: config/tc-i386.c:17498 #, c-format msgid "invalid -mevexwig= option: `%s'" msgstr "" -#: config/tc-i386.c:17265 +#: config/tc-i386.c:17513 #, c-format msgid "invalid -momit-lock-prefix= option: `%s'" msgstr "" -#: config/tc-i386.c:17274 +#: config/tc-i386.c:17522 #, c-format msgid "invalid -mfence-as-lock-add= option: `%s'" msgstr "" -#: config/tc-i386.c:17283 +#: config/tc-i386.c:17531 #, c-format msgid "invalid -mlfence-after-load= option: `%s'" msgstr "" -#: config/tc-i386.c:17300 +#: config/tc-i386.c:17548 #, c-format msgid "invalid -mlfence-before-indirect-branch= option: `%s'" msgstr "" -#: config/tc-i386.c:17314 +#: config/tc-i386.c:17562 #, c-format msgid "invalid -mlfence-before-ret= option: `%s'" msgstr "" -#: config/tc-i386.c:17324 +#: config/tc-i386.c:17572 #, c-format msgid "invalid -mrelax-relocations= option: `%s'" msgstr "" -#: config/tc-i386.c:17353 +#: config/tc-i386.c:17601 #, c-format msgid "invalid -malign-branch-boundary= value: %s" msgstr "" -#: config/tc-i386.c:17367 +#: config/tc-i386.c:17615 #, c-format msgid "invalid -malign-branch-prefix-size= value: %s" msgstr "" -#: config/tc-i386.c:17394 +#: config/tc-i386.c:17642 #, c-format msgid "invalid -malign-branch= option: `%s'" msgstr "" -#: config/tc-i386.c:17443 +#: config/tc-i386.c:17691 #, c-format msgid "invalid -mtls-check= option: `%s'" msgstr "" -#: config/tc-i386.c:17569 +#: config/tc-i386.c:17817 #, c-format msgid "" " -Qy, -Qn ignored\n" @@ -9523,7 +9549,7 @@ msgid "" " -k ignored\n" msgstr "" -#: config/tc-i386.c:17574 +#: config/tc-i386.c:17822 #, c-format msgid "" " -n do not optimize code alignment\n" @@ -9531,32 +9557,32 @@ msgid "" " -q quieten some warnings\n" msgstr "" -#: config/tc-i386.c:17579 +#: config/tc-i386.c:17827 #, c-format msgid " -s ignored\n" msgstr "" -#: config/tc-i386.c:17584 +#: config/tc-i386.c:17832 #, c-format msgid " --32/--64/--x32 generate 32bit/64bit/x32 object\n" msgstr "" -#: config/tc-i386.c:17587 +#: config/tc-i386.c:17835 #, c-format msgid " --32/--64 generate 32bit/64bit object\n" msgstr "" -#: config/tc-i386.c:17592 +#: config/tc-i386.c:17840 #, c-format msgid " --divide do not treat `/' as a comment character\n" msgstr "" -#: config/tc-i386.c:17595 +#: config/tc-i386.c:17843 #, c-format msgid " --divide ignored\n" msgstr "" -#: config/tc-i386.c:17598 +#: config/tc-i386.c:17846 #, c-format msgid "" " -march=CPU[,+EXTENSION...]\n" @@ -9564,24 +9590,24 @@ msgid "" "of:\n" msgstr "" -#: config/tc-i386.c:17602 +#: config/tc-i386.c:17850 #, c-format msgid "" " EXTENSION is combination of (possibly \"no\"-" "prefixed):\n" msgstr "" -#: config/tc-i386.c:17605 +#: config/tc-i386.c:17853 #, c-format msgid " -mtune=CPU optimize for CPU, CPU is one of:\n" msgstr "" -#: config/tc-i386.c:17608 +#: config/tc-i386.c:17856 #, c-format msgid " -msse2avx encode SSE instructions with VEX prefix\n" msgstr "" -#: config/tc-i386.c:17610 +#: config/tc-i386.c:17858 #, c-format msgid "" " -muse-unaligned-vector-move\n" @@ -9589,21 +9615,21 @@ msgid "" "move\n" msgstr "" -#: config/tc-i386.c:17613 +#: config/tc-i386.c:17861 #, c-format msgid "" " -msse-check=[none|error|warning] (default: none)\n" " check SSE instructions\n" msgstr "" -#: config/tc-i386.c:17616 +#: config/tc-i386.c:17864 #, c-format msgid "" " -moperand-check=[none|error|warning] (default: warning)\n" " check operand combinations for validity\n" msgstr "" -#: config/tc-i386.c:17619 +#: config/tc-i386.c:17867 #, c-format msgid "" " -mavxscalar=[128|256] (default: 128)\n" @@ -9612,7 +9638,7 @@ msgid "" " length\n" msgstr "" -#: config/tc-i386.c:17623 +#: config/tc-i386.c:17871 #, c-format msgid "" " -mvexwig=[0|1] (default: 0)\n" @@ -9620,7 +9646,7 @@ msgid "" " for VEX.W bit ignored instructions\n" msgstr "" -#: config/tc-i386.c:17627 +#: config/tc-i386.c:17875 #, c-format msgid "" " -mevexlig=[128|256|512] (default: 128)\n" @@ -9629,7 +9655,7 @@ msgid "" " length\n" msgstr "" -#: config/tc-i386.c:17631 +#: config/tc-i386.c:17879 #, c-format msgid "" " -mevexwig=[0|1] (default: 0)\n" @@ -9638,7 +9664,7 @@ msgid "" " for EVEX.W bit ignored instructions\n" msgstr "" -#: config/tc-i386.c:17635 +#: config/tc-i386.c:17883 #, c-format msgid "" " -mevexrcig=[rne|rd|ru|rz] (default: rne)\n" @@ -9647,77 +9673,77 @@ msgid "" " for SAE-only ignored instructions\n" msgstr "" -#: config/tc-i386.c:17639 +#: config/tc-i386.c:17887 #, c-format msgid " -mmnemonic=[att|intel] " msgstr "" -#: config/tc-i386.c:17642 +#: config/tc-i386.c:17890 #, c-format msgid "(default: att)\n" msgstr "" -#: config/tc-i386.c:17644 +#: config/tc-i386.c:17892 #, c-format msgid "(default: intel)\n" msgstr "" -#: config/tc-i386.c:17645 +#: config/tc-i386.c:17893 #, c-format msgid " use AT&T/Intel mnemonic (AT&T syntax only)\n" msgstr "" -#: config/tc-i386.c:17647 +#: config/tc-i386.c:17895 #, c-format msgid "" " -msyntax=[att|intel] (default: att)\n" " use AT&T/Intel syntax\n" msgstr "" -#: config/tc-i386.c:17650 +#: config/tc-i386.c:17898 #, c-format msgid " -mindex-reg support pseudo index registers\n" msgstr "" -#: config/tc-i386.c:17652 +#: config/tc-i386.c:17900 #, c-format msgid " -mnaked-reg don't require `%%' prefix for registers\n" msgstr "" -#: config/tc-i386.c:17654 +#: config/tc-i386.c:17902 #, c-format msgid " -madd-bnd-prefix add BND prefix for all valid branches\n" msgstr "" -#: config/tc-i386.c:17657 +#: config/tc-i386.c:17905 #, c-format msgid " -mshared disable branch optimization for shared code\n" msgstr "" -#: config/tc-i386.c:17659 +#: config/tc-i386.c:17907 #, c-format msgid " -mx86-used-note=[no|yes] " msgstr "" -#: config/tc-i386.c:17665 +#: config/tc-i386.c:17913 #, c-format msgid "" " generate x86 used ISA and feature properties\n" msgstr "" -#: config/tc-i386.c:17669 +#: config/tc-i386.c:17917 #, c-format msgid " -mbig-obj generate big object files\n" msgstr "" -#: config/tc-i386.c:17672 +#: config/tc-i386.c:17920 #, c-format msgid "" " -momit-lock-prefix=[no|yes] (default: no)\n" " strip all lock prefixes\n" msgstr "" -#: config/tc-i386.c:17675 +#: config/tc-i386.c:17923 #, c-format msgid "" " -mfence-as-lock-add=[no|yes] (default: no)\n" @@ -9725,34 +9751,34 @@ msgid "" " lock addl $0x0, (%%{re}sp)\n" msgstr "" -#: config/tc-i386.c:17679 +#: config/tc-i386.c:17927 #, c-format msgid " -mrelax-relocations=[no|yes] " msgstr "" -#: config/tc-i386.c:17685 +#: config/tc-i386.c:17933 #, c-format msgid " generate relax relocations\n" msgstr "" -#: config/tc-i386.c:17688 +#: config/tc-i386.c:17936 #, c-format msgid " -mtls-check=[no|yes] " msgstr "" -#: config/tc-i386.c:17694 +#: config/tc-i386.c:17942 #, c-format msgid " check TLS relocation\n" msgstr "" -#: config/tc-i386.c:17697 +#: config/tc-i386.c:17945 #, c-format msgid "" " -malign-branch-boundary=NUM (default: 0)\n" " align branches within NUM byte boundary\n" msgstr "" -#: config/tc-i386.c:17700 +#: config/tc-i386.c:17948 #, c-format msgid "" " -malign-branch=TYPE[+TYPE...] (default: jcc+fused+jmp)\n" @@ -9762,28 +9788,28 @@ msgid "" " specify types of branches to align\n" msgstr "" -#: config/tc-i386.c:17705 +#: config/tc-i386.c:17953 #, c-format msgid "" " -malign-branch-prefix-size=NUM (default: 5)\n" " align branches with NUM prefixes per instruction\n" msgstr "" -#: config/tc-i386.c:17708 +#: config/tc-i386.c:17956 #, c-format msgid "" " -mbranches-within-32B-boundaries\n" " align branches within 32 byte boundary\n" msgstr "" -#: config/tc-i386.c:17711 +#: config/tc-i386.c:17959 #, c-format msgid "" " -mlfence-after-load=[no|yes] (default: no)\n" " generate lfence after load\n" msgstr "" -#: config/tc-i386.c:17714 +#: config/tc-i386.c:17962 #, c-format msgid "" " -mlfence-before-indirect-branch=[none|all|register|memory] (default: " @@ -9791,74 +9817,74 @@ msgid "" " generate lfence before indirect near branch\n" msgstr "" -#: config/tc-i386.c:17717 +#: config/tc-i386.c:17965 #, c-format msgid "" " -mlfence-before-ret=[none|or|not|shl|yes] (default: none)\n" " generate lfence before ret\n" msgstr "" -#: config/tc-i386.c:17720 +#: config/tc-i386.c:17968 #, c-format msgid " -mamd64 accept only AMD64 ISA [default]\n" msgstr "" -#: config/tc-i386.c:17722 +#: config/tc-i386.c:17970 #, c-format msgid " -mintel64 accept only Intel64 ISA\n" msgstr "" -#: config/tc-i386.c:17761 +#: config/tc-i386.c:18009 #, c-format msgid "Intel MCU doesn't support `%s' architecture" msgstr "" -#: config/tc-i386.c:17769 +#: config/tc-i386.c:18017 msgid "SCFI is not supported for this ABI" msgstr "" -#: config/tc-i386.c:17820 +#: config/tc-i386.c:18068 msgid "Intel MCU is 32bit only" msgstr "" -#: config/tc-i386.c:17932 +#: config/tc-i386.c:18182 #, c-format msgid "invalid %s relocation against register" msgstr "" -#: config/tc-i386.c:18069 +#: config/tc-i386.c:18328 msgid "symbol size computation overflow" msgstr "" -#: config/tc-i386.c:18148 config/tc-sparc.c:3856 +#: config/tc-i386.c:18412 config/tc-sparc.c:3862 #, c-format msgid "can not do %d byte pc-relative relocation" msgstr "" -#: config/tc-i386.c:18166 +#: config/tc-i386.c:18430 #, c-format msgid "can not do %d byte relocation" msgstr "" -#: config/tc-i386.c:18234 +#: config/tc-i386.c:18498 #, c-format msgid "cannot represent relocation type %s in x32 mode" msgstr "" -#: config/tc-i386.c:18275 config/tc-s390.c:2835 +#: config/tc-i386.c:18544 config/tc-s390.c:2846 #, c-format msgid "cannot represent relocation type %s" msgstr "" -#: config/tc-i386.c:18410 +#: config/tc-i386.c:18679 msgid "bad .section directive: want a,l,w,x,M,S,G,T in string" msgstr "" -#: config/tc-i386.c:18413 +#: config/tc-i386.c:18682 msgid "bad .section directive: want a,w,x,M,S,G,T in string" msgstr "" -#: config/tc-i386.c:18423 +#: config/tc-i386.c:18692 msgid ".largecomm supported only in 64bit mode, producing .comm" msgstr "" @@ -9894,312 +9920,312 @@ msgstr "" msgid "expected ',' after symbol size" msgstr "" -#: config/tc-ia64.c:1212 config/tc-ia64.c:1246 +#: config/tc-ia64.c:1210 config/tc-ia64.c:1244 msgid "record type is not valid" msgstr "" -#: config/tc-ia64.c:1315 +#: config/tc-ia64.c:1313 msgid "Invalid record type for P3 format." msgstr "" -#: config/tc-ia64.c:1351 +#: config/tc-ia64.c:1349 msgid "Invalid record type for format P6" msgstr "" -#: config/tc-ia64.c:1531 config/tc-ia64.c:1583 +#: config/tc-ia64.c:1529 config/tc-ia64.c:1581 msgid "Invalid record type for format B1" msgstr "" -#: config/tc-ia64.c:1616 +#: config/tc-ia64.c:1614 msgid "Invalid record type for format X1" msgstr "" -#: config/tc-ia64.c:1658 +#: config/tc-ia64.c:1656 msgid "Invalid record type for format X3" msgstr "" -#: config/tc-ia64.c:1696 +#: config/tc-ia64.c:1694 msgid "Previous .save incomplete" msgstr "" -#: config/tc-ia64.c:2519 +#: config/tc-ia64.c:2517 msgid "spill_mask record unimplemented." msgstr "" -#: config/tc-ia64.c:2576 +#: config/tc-ia64.c:2574 msgid "record_type_not_valid" msgstr "" -#: config/tc-ia64.c:2660 +#: config/tc-ia64.c:2658 msgid "Ignoring attempt to spill beyond end of region" msgstr "" -#: config/tc-ia64.c:2719 +#: config/tc-ia64.c:2717 msgid "Only constant space allocation is supported" msgstr "" -#: config/tc-ia64.c:2733 +#: config/tc-ia64.c:2731 msgid "Only constant offsets are supported" msgstr "" -#: config/tc-ia64.c:2757 +#: config/tc-ia64.c:2755 msgid "Section switching in code is not supported." msgstr "" -#: config/tc-ia64.c:2799 +#: config/tc-ia64.c:2797 msgid "Insn slot not set in unwind record." msgstr "" -#: config/tc-ia64.c:2873 +#: config/tc-ia64.c:2871 msgid "frgr_mem record before region record!" msgstr "" -#: config/tc-ia64.c:2884 +#: config/tc-ia64.c:2882 msgid "fr_mem record before region record!" msgstr "" -#: config/tc-ia64.c:2893 +#: config/tc-ia64.c:2891 msgid "gr_mem record before region record!" msgstr "" -#: config/tc-ia64.c:2902 +#: config/tc-ia64.c:2900 msgid "br_mem record before region record!" msgstr "" -#: config/tc-ia64.c:2912 +#: config/tc-ia64.c:2910 msgid "gr_gr record before region record!" msgstr "" -#: config/tc-ia64.c:2920 +#: config/tc-ia64.c:2918 msgid "br_gr record before region record!" msgstr "" -#: config/tc-ia64.c:3038 +#: config/tc-ia64.c:3036 #, c-format msgid "First operand to .%s must be a predicate" msgstr "" -#: config/tc-ia64.c:3042 +#: config/tc-ia64.c:3040 #, c-format msgid "Pointless use of p0 as first operand to .%s" msgstr "" -#: config/tc-ia64.c:3098 +#: config/tc-ia64.c:3096 #, c-format msgid "Operand %d to .%s must be a preserved register" msgstr "" -#: config/tc-ia64.c:3134 +#: config/tc-ia64.c:3132 #, c-format msgid "Operand %d to .%s must be a writable register" msgstr "" -#: config/tc-ia64.c:3158 +#: config/tc-ia64.c:3156 #, c-format msgid "Radix `%s' unsupported or invalid" msgstr "" -#: config/tc-ia64.c:3188 config/tc-ia64.c:3193 +#: config/tc-ia64.c:3186 config/tc-ia64.c:3191 #, c-format msgid ".%s outside of %s" msgstr "" -#: config/tc-ia64.c:3279 +#: config/tc-ia64.c:3277 msgid "Tags on unwind pseudo-ops aren't supported, yet" msgstr "" -#: config/tc-ia64.c:3301 +#: config/tc-ia64.c:3299 msgid "First operand to .fframe must be a constant" msgstr "" -#: config/tc-ia64.c:3321 +#: config/tc-ia64.c:3319 msgid "First operand to .vframe must be a general register" msgstr "" -#: config/tc-ia64.c:3329 +#: config/tc-ia64.c:3327 msgid "Operand of .vframe contradicts .prologue" msgstr "" -#: config/tc-ia64.c:3339 +#: config/tc-ia64.c:3337 msgid ".vframepsp is meaningless, assuming .vframesp was meant" msgstr "" -#: config/tc-ia64.c:3347 +#: config/tc-ia64.c:3345 msgid "Operand to .vframesp must be a constant (sp-relative offset)" msgstr "" -#: config/tc-ia64.c:3374 +#: config/tc-ia64.c:3372 msgid "First operand to .save not a register" msgstr "" -#: config/tc-ia64.c:3380 +#: config/tc-ia64.c:3378 msgid "Second operand to .save not a valid register" msgstr "" -#: config/tc-ia64.c:3411 config/tc-ia64.c:3422 config/tc-ia64.c:3430 +#: config/tc-ia64.c:3409 config/tc-ia64.c:3420 config/tc-ia64.c:3428 msgid "Second operand of .save contradicts .prologue" msgstr "" -#: config/tc-ia64.c:3437 +#: config/tc-ia64.c:3435 msgid "First operand to .save not a valid register" msgstr "" -#: config/tc-ia64.c:3455 +#: config/tc-ia64.c:3453 msgid "First operand to .restore must be stack pointer (sp)" msgstr "" -#: config/tc-ia64.c:3464 +#: config/tc-ia64.c:3462 msgid "Second operand to .restore must be a constant >= 0" msgstr "" -#: config/tc-ia64.c:3474 +#: config/tc-ia64.c:3472 #, c-format msgid "Epilogue count of %lu exceeds number of nested prologues (%u)" msgstr "" -#: config/tc-ia64.c:3560 +#: config/tc-ia64.c:3558 #, c-format msgid "Illegal section name `%s' (causes unwind section name clash)" msgstr "" -#: config/tc-ia64.c:3735 +#: config/tc-ia64.c:3734 msgid "First operand to .altrp not a valid branch register" msgstr "" -#: config/tc-ia64.c:3764 +#: config/tc-ia64.c:3763 #, c-format msgid "First operand to .%s not a register" msgstr "" -#: config/tc-ia64.c:3769 +#: config/tc-ia64.c:3768 #, c-format msgid "Second operand to .%s not a constant" msgstr "" -#: config/tc-ia64.c:3836 +#: config/tc-ia64.c:3835 #, c-format msgid "First operand to .%s not a valid register" msgstr "" -#: config/tc-ia64.c:3859 +#: config/tc-ia64.c:3858 msgid "First operand to .save.g must be a positive 4-bit constant" msgstr "" -#: config/tc-ia64.c:3872 +#: config/tc-ia64.c:3871 msgid "Second operand to .save.g must be a general register" msgstr "" -#: config/tc-ia64.c:3877 +#: config/tc-ia64.c:3876 #, c-format msgid "Second operand to .save.g must be the first of %d general registers" msgstr "" -#: config/tc-ia64.c:3900 +#: config/tc-ia64.c:3899 msgid "Operand to .save.f must be a positive 20-bit constant" msgstr "" -#: config/tc-ia64.c:3923 +#: config/tc-ia64.c:3922 msgid "First operand to .save.b must be a positive 5-bit constant" msgstr "" -#: config/tc-ia64.c:3936 +#: config/tc-ia64.c:3935 msgid "Second operand to .save.b must be a general register" msgstr "" -#: config/tc-ia64.c:3941 +#: config/tc-ia64.c:3940 #, c-format msgid "Second operand to .save.b must be the first of %d general registers" msgstr "" -#: config/tc-ia64.c:3967 +#: config/tc-ia64.c:3966 msgid "First operand to .save.gf must be a non-negative 4-bit constant" msgstr "" -#: config/tc-ia64.c:3975 +#: config/tc-ia64.c:3974 msgid "Second operand to .save.gf must be a non-negative 20-bit constant" msgstr "" -#: config/tc-ia64.c:3983 +#: config/tc-ia64.c:3982 msgid "Operands to .save.gf may not be both zero" msgstr "" -#: config/tc-ia64.c:4000 +#: config/tc-ia64.c:3999 msgid "Operand to .spill must be a constant" msgstr "" -#: config/tc-ia64.c:4069 +#: config/tc-ia64.c:4068 #, c-format msgid "Operand %d to .%s must be a constant" msgstr "" -#: config/tc-ia64.c:4090 +#: config/tc-ia64.c:4089 #, c-format msgid "Missing .label_state %ld" msgstr "" -#: config/tc-ia64.c:4144 +#: config/tc-ia64.c:4143 msgid "Operand to .label_state must be a constant" msgstr "" -#: config/tc-ia64.c:4163 +#: config/tc-ia64.c:4162 msgid "Operand to .copy_state must be a constant" msgstr "" -#: config/tc-ia64.c:4186 +#: config/tc-ia64.c:4185 msgid "First operand to .unwabi must be a constant" msgstr "" -#: config/tc-ia64.c:4192 +#: config/tc-ia64.c:4191 msgid "Second operand to .unwabi must be a constant" msgstr "" -#: config/tc-ia64.c:4226 +#: config/tc-ia64.c:4225 msgid "Missing .endp after previous .proc" msgstr "" -#: config/tc-ia64.c:4243 +#: config/tc-ia64.c:4242 msgid "Empty argument of .proc" msgstr "" -#: config/tc-ia64.c:4248 +#: config/tc-ia64.c:4247 #, c-format msgid "`%s' was already defined" msgstr "" -#: config/tc-ia64.c:4291 +#: config/tc-ia64.c:4290 msgid "Initial .body should precede any instructions" msgstr "" -#: config/tc-ia64.c:4310 +#: config/tc-ia64.c:4309 msgid ".prologue within prologue" msgstr "" -#: config/tc-ia64.c:4315 +#: config/tc-ia64.c:4314 msgid "Initial .prologue should precede any instructions" msgstr "" -#: config/tc-ia64.c:4325 +#: config/tc-ia64.c:4324 msgid "First operand to .prologue must be a positive 4-bit constant" msgstr "" -#: config/tc-ia64.c:4327 +#: config/tc-ia64.c:4326 msgid "Pointless use of zero first operand to .prologue" msgstr "" -#: config/tc-ia64.c:4343 +#: config/tc-ia64.c:4342 msgid "Using a constant as second operand to .prologue is deprecated" msgstr "" -#: config/tc-ia64.c:4349 +#: config/tc-ia64.c:4348 msgid "Second operand to .prologue must be a general register" msgstr "" -#: config/tc-ia64.c:4354 +#: config/tc-ia64.c:4353 #, c-format msgid "Second operand to .prologue must be the first of %d general registers" msgstr "" -#: config/tc-ia64.c:4467 +#: config/tc-ia64.c:4466 #, c-format msgid "`%s' was not defined within procedure" msgstr "" @@ -10552,7 +10578,7 @@ msgid "Expected '('" msgstr "" #: config/tc-ia64.c:7896 config/tc-pdp11.c:466 config/tc-pdp11.c:530 -#: config/tc-pdp11.c:564 config/tc-tilegx.c:1044 config/tc-tilepro.c:932 +#: config/tc-pdp11.c:564 config/tc-tilegx.c:1042 config/tc-tilepro.c:930 #: config/tc-xstormy16.c:154 msgid "Missing ')'" msgstr "" @@ -10673,27 +10699,27 @@ msgstr "" msgid "Can't add stop bit to mark end of instruction group" msgstr "" -#: config/tc-ia64.c:11744 read.c:2690 read.c:3349 read.c:3917 stabs.c:461 +#: config/tc-ia64.c:11743 read.c:2739 read.c:3398 read.c:3970 stabs.c:461 #, c-format msgid "expected comma after \"%s\"" msgstr "" -#: config/tc-ia64.c:11785 +#: config/tc-ia64.c:11784 #, c-format msgid "`%s' is already the alias of %s `%s'" msgstr "" -#: config/tc-ia64.c:11796 +#: config/tc-ia64.c:11795 #, c-format msgid "%s `%s' already has an alias `%s'" msgstr "" -#: config/tc-ia64.c:11829 +#: config/tc-ia64.c:11828 #, c-format msgid "symbol `%s' aliased to `%s' is not used" msgstr "" -#: config/tc-ia64.c:11855 +#: config/tc-ia64.c:11854 #, c-format msgid "section `%s' aliased to `%s' is not used" msgstr "" @@ -10741,19 +10767,19 @@ msgstr "" msgid "Unmatched high relocation" msgstr "" -#: config/tc-iq2000.c:820 config/tc-mips.c:19791 config/tc-score.c:5784 +#: config/tc-iq2000.c:820 config/tc-mips.c:19808 config/tc-score.c:5783 msgid ".end not in text section" msgstr "" -#: config/tc-iq2000.c:824 config/tc-score.c:5787 +#: config/tc-iq2000.c:824 config/tc-score.c:5786 msgid ".end directive without a preceding .ent directive." msgstr "" -#: config/tc-iq2000.c:833 config/tc-score.c:5795 +#: config/tc-iq2000.c:833 config/tc-score.c:5794 msgid ".end symbol does not match .ent symbol." msgstr "" -#: config/tc-iq2000.c:836 config/tc-mips.c:19811 config/tc-score.c:5800 +#: config/tc-iq2000.c:836 config/tc-mips.c:19828 config/tc-score.c:5799 msgid ".end directive missing or unknown symbol" msgstr "" @@ -10761,7 +10787,7 @@ msgstr "" msgid "Expected simple number." msgstr "" -#: config/tc-iq2000.c:883 config/tc-mips.c:19716 config/tc-score.c:5650 +#: config/tc-iq2000.c:883 config/tc-mips.c:19733 config/tc-score.c:5649 #, c-format msgid " *input_line_pointer == '%c' 0x%02x\n" msgstr "" @@ -10770,7 +10796,7 @@ msgstr "" msgid "Invalid number" msgstr "" -#: config/tc-iq2000.c:919 config/tc-score.c:5681 +#: config/tc-iq2000.c:919 config/tc-score.c:5680 msgid ".ent or .aent not in text section." msgstr "" @@ -10790,12 +10816,12 @@ msgstr "" msgid "signed37 PCREL value out of range" msgstr "" -#: config/tc-loongarch.c:521 +#: config/tc-loongarch.c:501 #, c-format msgid "insn name: %s\tformat: %s\tsyntax error" msgstr "" -#: config/tc-loongarch.c:524 +#: config/tc-loongarch.c:504 #, c-format msgid "" "insn name: %s\n" @@ -10803,7 +10829,7 @@ msgid "" "we want macro but macro is NULL" msgstr "" -#: config/tc-loongarch.c:529 +#: config/tc-loongarch.c:509 #, c-format msgid "" "insn name: %s\n" @@ -10811,33 +10837,33 @@ msgid "" "macro: %s\tsyntax error" msgstr "" -#: config/tc-loongarch.c:570 +#: config/tc-loongarch.c:550 #, c-format msgid "Unsupported use of %s" msgstr "" -#: config/tc-loongarch.c:627 config/tc-riscv.c:4994 +#: config/tc-loongarch.c:607 config/tc-riscv.c:5124 msgid ".option pop with no .option push" msgstr "" -#: config/tc-loongarch.c:637 config/tc-riscv.c:5007 +#: config/tc-loongarch.c:617 config/tc-riscv.c:5138 #, c-format msgid "unrecognized .option directive: %s" msgstr "" -#: config/tc-loongarch.c:700 +#: config/tc-loongarch.c:680 msgid "internal error: we have no internal label yet" msgstr "" -#: config/tc-loongarch.c:805 +#: config/tc-loongarch.c:785 msgid "This label shouldn't be with addend." msgstr "" -#: config/tc-loongarch.c:851 +#: config/tc-loongarch.c:831 msgid "expr too huge" msgstr "" -#: config/tc-loongarch.c:878 +#: config/tc-loongarch.c:858 #, c-format msgid "" "not support reloc bit-field\n" @@ -10845,22 +10871,22 @@ msgid "" "args: %s" msgstr "" -#: config/tc-loongarch.c:949 config/tc-loongarch.c:974 +#: config/tc-loongarch.c:929 config/tc-loongarch.c:952 #, c-format msgid "register alias %s is deprecated, use %s instead" msgstr "" -#: config/tc-loongarch.c:1007 +#: config/tc-loongarch.c:985 msgid "unknown escape" msgstr "" -#: config/tc-loongarch.c:1034 +#: config/tc-loongarch.c:1012 #, c-format msgid "require imm low %d bit is 0." msgstr "" #. How to do after we detect overflow. -#: config/tc-loongarch.c:1046 +#: config/tc-loongarch.c:1024 #, c-format msgid "" "Immediate overflow.\n" @@ -10868,72 +10894,72 @@ msgid "" "arg: %s" msgstr "" -#: config/tc-loongarch.c:1129 +#: config/tc-loongarch.c:1106 msgid "" "atomic memory operations insns require rd != rj && rd != rk when rd isn't r0" msgstr "" -#: config/tc-loongarch.c:1143 +#: config/tc-loongarch.c:1120 msgid "bstr(ins|pick).[wd] require msbd >= lsbd" msgstr "" -#: config/tc-loongarch.c:1153 +#: config/tc-loongarch.c:1130 msgid "g?csrxchg require rj != r0 && rj != r1" msgstr "" -#: config/tc-loongarch.c:1259 +#: config/tc-loongarch.c:1236 #, c-format msgid "no HOWTO loong relocation number %d" msgstr "" -#: config/tc-loongarch.c:1272 +#: config/tc-loongarch.c:1249 msgid "Internal error: not support relax now" msgstr "" -#: config/tc-loongarch.c:1334 +#: config/tc-loongarch.c:1311 #, c-format msgid "li overflow: hi32:0x%x lo32:0x%x" msgstr "" -#: config/tc-loongarch.c:1339 +#: config/tc-loongarch.c:1316 msgid "we can't li.d on 32bit-arch" msgstr "" -#: config/tc-loongarch.c:1438 +#: config/tc-loongarch.c:1416 #, c-format msgid "no match insn: %s\t%s" msgstr "" -#: config/tc-loongarch.c:1586 config/tc-loongarch.c:1593 +#: config/tc-loongarch.c:1587 config/tc-loongarch.c:1594 msgid "Relocation against a constant" msgstr "" -#: config/tc-loongarch.c:1801 config/tc-riscv.c:4723 +#: config/tc-loongarch.c:1802 config/tc-riscv.c:4821 #, c-format msgid "internal: bad CFA value #%d" msgstr "" -#: config/tc-loongarch.c:1813 +#: config/tc-loongarch.c:1814 msgid "Relocation against a constant." msgstr "" -#: config/tc-loongarch.c:1894 config/tc-riscv.c:5228 +#: config/tc-loongarch.c:1895 config/tc-riscv.c:5359 #, c-format msgid "cannot represent %s relocation in object file" msgstr "" -#: config/tc-loongarch.c:1923 +#: config/tc-loongarch.c:1924 #, c-format msgid "unknown register `%s`" msgstr "" -#: config/tc-loongarch.c:1997 +#: config/tc-loongarch.c:1998 #, c-format msgid "LARCH options:\n" msgstr "" #. FIXME -#: config/tc-loongarch.c:1999 +#: config/tc-loongarch.c:2000 #, c-format msgid "" " -mthin-add-sub\t Convert a pair of R_LARCH_ADD32/64 and R_LARCH_SUB32/64 " @@ -10946,7 +10972,7 @@ msgid "" "\t\t\t can't be used when partial linking (ld -r).\n" msgstr "" -#: config/tc-loongarch.c:2052 +#: config/tc-loongarch.c:2053 msgid "internal error: cannot get align symbol" msgstr "" @@ -11181,11 +11207,11 @@ msgid ".SCOMMon length (%ld.) <0! Ignored." msgstr "" #: config/tc-m32r.c:1513 config/tc-microblaze.c:197 config/tc-ppc.c:2421 -#: config/tc-ppc.c:4355 config/tc-ppc.c:4410 +#: config/tc-ppc.c:4354 config/tc-ppc.c:4409 msgid "ignoring bad alignment" msgstr "" -#: config/tc-m32r.c:1525 config/tc-microblaze.c:232 config/tc-v850.c:380 +#: config/tc-m32r.c:1525 config/tc-microblaze.c:232 config/tc-v850.c:379 msgid "Common alignment not a power of 2" msgstr "" @@ -11199,16 +11225,16 @@ msgstr "" msgid "Length of .scomm \"%s\" is already %ld. Not changed to %ld." msgstr "" -#: config/tc-m32r.c:1926 config/tc-m32r.c:1979 config/tc-nds32.c:4786 -#: config/tc-nds32.c:4830 config/tc-sh.c:391 config/tc-sh.c:2047 +#: config/tc-m32r.c:1925 config/tc-m32r.c:1978 config/tc-nds32.c:4781 +#: config/tc-nds32.c:4825 config/tc-sh.c:391 config/tc-sh.c:2048 msgid "Invalid PIC expression." msgstr "" -#: config/tc-m32r.c:2070 +#: config/tc-m32r.c:2069 msgid "Unmatched high/shigh reloc" msgstr "" -#: config/tc-m68hc11.c:416 +#: config/tc-m68hc11.c:415 #, c-format msgid "" "Motorola 68HC11/68HC12/68HCS12 options:\n" @@ -11231,18 +11257,18 @@ msgid "" " (used for testing)\n" msgstr "" -#: config/tc-m68hc11.c:464 config/tc-xgate.c:284 +#: config/tc-m68hc11.c:463 config/tc-xgate.c:284 #, c-format msgid "Default target `%s' is not supported." msgstr "" #. Dump the opcode statistics table. -#: config/tc-m68hc11.c:482 +#: config/tc-m68hc11.c:481 #, c-format msgid "Name # Modes Min ops Max ops Modes mask # Used\n" msgstr "" -#: config/tc-m68hc11.c:561 +#: config/tc-m68hc11.c:560 #, c-format msgid "Option `%s' is not recognized." msgstr "" @@ -11343,15 +11369,15 @@ msgstr "" msgid "Missing `]' to close indexed-indirect mode." msgstr "" -#: config/tc-m68hc11.c:1328 config/tc-m68hc11.c:2961 config/tc-m68hc11.c:3073 -#: config/tc-m68hc11.c:3147 config/tc-m68hc11.c:3331 config/tc-m68hc11.c:3402 +#: config/tc-m68hc11.c:1328 config/tc-m68hc11.c:2960 config/tc-m68hc11.c:3072 +#: config/tc-m68hc11.c:3146 config/tc-m68hc11.c:3330 config/tc-m68hc11.c:3401 msgid "Illegal operand." msgstr "" #. Looks like OP_R_R. -#: config/tc-m68hc11.c:1333 config/tc-m68hc11.c:2966 config/tc-m68hc11.c:3078 -#: config/tc-m68hc11.c:3152 config/tc-m68hc11.c:3258 config/tc-m68hc11.c:3310 -#: config/tc-m68hc11.c:3318 config/tc-m68hc11.c:3336 +#: config/tc-m68hc11.c:1333 config/tc-m68hc11.c:2965 config/tc-m68hc11.c:3077 +#: config/tc-m68hc11.c:3151 config/tc-m68hc11.c:3257 config/tc-m68hc11.c:3309 +#: config/tc-m68hc11.c:3317 config/tc-m68hc11.c:3335 msgid "Missing operand." msgstr "" @@ -11397,7 +11423,7 @@ msgstr "" msgid "The trap id must be a constant." msgstr "" -#: config/tc-m68hc11.c:1629 config/tc-m68hc11.c:1784 config/tc-xgate.c:1347 +#: config/tc-m68hc11.c:1629 config/tc-m68hc11.c:1784 config/tc-xgate.c:1346 #, c-format msgid "Operand `%x' not recognized in fixup8." msgstr "" @@ -11417,179 +11443,179 @@ msgstr "" msgid "Unexpected branch conversion with `%x'" msgstr "" -#: config/tc-m68hc11.c:1887 config/tc-m68hc11.c:2019 +#: config/tc-m68hc11.c:1887 config/tc-m68hc11.c:2018 #, c-format msgid "Operand out of range for a relative branch: `%ld'" msgstr "" -#: config/tc-m68hc11.c:1987 +#: config/tc-m68hc11.c:1986 msgid "Invalid register for dbcc/tbcc instruction." msgstr "" -#: config/tc-m68hc11.c:2075 +#: config/tc-m68hc11.c:2074 #, c-format msgid "Increment/decrement value is out of range: `%ld'." msgstr "" -#: config/tc-m68hc11.c:2087 +#: config/tc-m68hc11.c:2086 msgid "Expecting a register." msgstr "" -#: config/tc-m68hc11.c:2102 +#: config/tc-m68hc11.c:2101 msgid "Invalid register for post/pre increment." msgstr "" -#: config/tc-m68hc11.c:2132 +#: config/tc-m68hc11.c:2131 msgid "Invalid register." msgstr "" -#: config/tc-m68hc11.c:2139 +#: config/tc-m68hc11.c:2138 #, c-format msgid "Offset out of 16-bit range: %ld." msgstr "" -#: config/tc-m68hc11.c:2145 +#: config/tc-m68hc11.c:2144 #, c-format msgid "Offset out of 5-bit range for movw/movb insn: %ld." msgstr "" -#: config/tc-m68hc11.c:2270 +#: config/tc-m68hc11.c:2269 msgid "Expecting register D for indexed indirect mode." msgstr "" -#: config/tc-m68hc11.c:2272 +#: config/tc-m68hc11.c:2271 msgid "Indexed indirect mode is not allowed for movb/movw." msgstr "" -#: config/tc-m68hc11.c:2289 +#: config/tc-m68hc11.c:2288 msgid "Invalid accumulator register." msgstr "" -#: config/tc-m68hc11.c:2315 +#: config/tc-m68hc11.c:2314 msgid "Invalid indexed register." msgstr "" -#: config/tc-m68hc11.c:2325 +#: config/tc-m68hc11.c:2324 msgid "Addressing mode not implemented yet." msgstr "" -#: config/tc-m68hc11.c:2339 +#: config/tc-m68hc11.c:2338 msgid "Invalid source register for this instruction, use 'tfr'." msgstr "" -#: config/tc-m68hc11.c:2341 +#: config/tc-m68hc11.c:2340 msgid "Invalid source register." msgstr "" -#: config/tc-m68hc11.c:2346 +#: config/tc-m68hc11.c:2345 msgid "Invalid destination register for this instruction, use 'tfr'." msgstr "" -#: config/tc-m68hc11.c:2348 +#: config/tc-m68hc11.c:2347 msgid "Invalid destination register." msgstr "" -#: config/tc-m68hc11.c:2523 +#: config/tc-m68hc11.c:2522 msgid "Invalid indexed register, expecting register X." msgstr "" -#: config/tc-m68hc11.c:2525 +#: config/tc-m68hc11.c:2524 msgid "Invalid indexed register, expecting register Y." msgstr "" -#: config/tc-m68hc11.c:2844 config/tc-s12z.c:3804 +#: config/tc-m68hc11.c:2843 config/tc-s12z.c:3802 msgid "No instruction or missing opcode." msgstr "" -#: config/tc-m68hc11.c:2854 config/tc-m68hc11.c:3533 +#: config/tc-m68hc11.c:2853 config/tc-m68hc11.c:3530 #, c-format msgid "Opcode `%s' is not recognized." msgstr "" -#: config/tc-m68hc11.c:2903 config/tc-m68hc11.c:3452 config/tc-m68hc11.c:3555 +#: config/tc-m68hc11.c:2902 config/tc-m68hc11.c:3451 config/tc-m68hc11.c:3552 #, c-format msgid "Garbage at end of instruction: `%s'." msgstr "" -#: config/tc-m68hc11.c:3440 +#: config/tc-m68hc11.c:3439 #, c-format msgid "Failed to find a valid mode for `%s'." msgstr "" -#: config/tc-m68hc11.c:3464 config/tc-m68hc11.c:3683 config/tc-m68hc11.c:3689 +#: config/tc-m68hc11.c:3463 config/tc-m68hc11.c:3680 config/tc-m68hc11.c:3686 #, c-format msgid "Invalid operand for `%s'" msgstr "" -#: config/tc-m68hc11.c:3741 +#: config/tc-m68hc11.c:3738 #, c-format msgid "Invalid mode: %s\n" msgstr "" -#: config/tc-m68hc11.c:3800 +#: config/tc-m68hc11.c:3797 msgid "bad .relax format" msgstr "" -#: config/tc-m68hc11.c:3844 config/tc-s12z.c:3897 config/tc-xgate.c:630 +#: config/tc-m68hc11.c:3841 config/tc-s12z.c:3895 config/tc-xgate.c:627 #, c-format msgid "Relocation %d is not supported by object file format." msgstr "" -#: config/tc-m68hc11.c:4121 +#: config/tc-m68hc11.c:4118 msgid "bra or bsr with undefined symbol." msgstr "" -#: config/tc-m68hc11.c:4222 config/tc-m68hc11.c:4279 +#: config/tc-m68hc11.c:4219 config/tc-m68hc11.c:4276 #, c-format msgid "Subtype %d is not recognized." msgstr "" -#: config/tc-m68hc11.c:4368 config/tc-s12z.c:3978 config/tc-xgate.c:708 -#: config/tc-xgate.c:717 +#: config/tc-m68hc11.c:4365 config/tc-s12z.c:3976 config/tc-xgate.c:705 +#: config/tc-xgate.c:714 msgid "Value out of 16-bit range." msgstr "" -#: config/tc-m68hc11.c:4390 +#: config/tc-m68hc11.c:4387 #, c-format msgid "Value %ld too large for 8-bit PC-relative branch." msgstr "" -#: config/tc-m68hc11.c:4400 config/tc-xgate.c:674 +#: config/tc-m68hc11.c:4397 config/tc-xgate.c:671 #, c-format msgid "Value %ld too large for 9-bit PC-relative branch." msgstr "" -#: config/tc-m68hc11.c:4409 config/tc-xgate.c:691 +#: config/tc-m68hc11.c:4406 config/tc-xgate.c:688 #, c-format msgid "Value %ld too large for 10-bit PC-relative branch." msgstr "" -#: config/tc-m68hc11.c:4417 +#: config/tc-m68hc11.c:4414 #, c-format msgid "Auto increment/decrement offset '%ld' is out of range." msgstr "" -#: config/tc-m68hc11.c:4430 +#: config/tc-m68hc11.c:4427 #, c-format msgid "Offset out of 5-bit range for movw/movb insn: %ld" msgstr "" -#: config/tc-m68hc11.c:4441 +#: config/tc-m68hc11.c:4438 #, c-format msgid "Offset out of 9-bit range for movw/movb insn: %ld" msgstr "" -#: config/tc-m68hc11.c:4453 +#: config/tc-m68hc11.c:4450 #, c-format msgid "Offset out of 16-bit range for movw/movb insn: %ld" msgstr "" -#: config/tc-m68hc11.c:4470 config/tc-s12z.c:3984 config/tc-xgate.c:752 +#: config/tc-m68hc11.c:4467 config/tc-s12z.c:3982 config/tc-xgate.c:749 #, c-format msgid "Line %d: unknown relocation type: 0x%x." msgstr "" -#: config/tc-m68hc11.c:4495 config/tc-z80.c:3452 config/tc-z80.c:3472 +#: config/tc-m68hc11.c:4492 config/tc-z80.c:3452 config/tc-z80.c:3472 msgid "Invalid directive" msgstr "" @@ -11618,16 +11644,16 @@ msgstr "" msgid "Unable to produce reloc against symbol '%s'" msgstr "" -#: config/tc-m68k.c:1261 config/tc-vax.c:2324 +#: config/tc-m68k.c:1261 config/tc-vax.c:2322 #, c-format msgid "Cannot make %s relocation PC relative" msgstr "" -#: config/tc-m68k.c:1343 config/tc-vax.c:1874 +#: config/tc-m68k.c:1343 config/tc-vax.c:1872 msgid "No operator" msgstr "" -#: config/tc-m68k.c:1373 config/tc-vax.c:1890 +#: config/tc-m68k.c:1373 config/tc-vax.c:1888 msgid "Unknown operator" msgstr "" @@ -11648,7 +11674,7 @@ msgid "operands mismatch" msgstr "" #: config/tc-m68k.c:2431 config/tc-m68k.c:2437 config/tc-m68k.c:2443 -#: config/tc-mmix.c:2499 config/tc-mmix.c:2523 +#: config/tc-mmix.c:2498 config/tc-mmix.c:2522 msgid "operand out of range" msgstr "" @@ -11723,7 +11749,7 @@ msgstr "" msgid "wrong register in floating-point reglist" msgstr "" -#: config/tc-m68k.c:3820 config/tc-m68k.c:3852 config/tc-sparc.c:3140 +#: config/tc-m68k.c:3820 config/tc-m68k.c:3852 config/tc-sparc.c:3146 msgid "failed sanity check." msgstr "" @@ -11860,7 +11886,7 @@ msgstr "" msgid "restore without save" msgstr "" -#: config/tc-m68k.c:6119 config/tc-m68k.c:6489 +#: config/tc-m68k.c:6119 config/tc-m68k.c:6488 msgid "syntax error in structured control directive" msgstr "" @@ -11868,114 +11894,114 @@ msgstr "" msgid "missing condition code in structured control directive" msgstr "" -#: config/tc-m68k.c:6235 +#: config/tc-m68k.c:6234 #, c-format msgid "" "Condition <%c%c> in structured control directive can not be encoded correctly" msgstr "" -#: config/tc-m68k.c:6531 +#: config/tc-m68k.c:6529 msgid "missing then" msgstr "" -#: config/tc-m68k.c:6612 +#: config/tc-m68k.c:6610 msgid "else without matching if" msgstr "" -#: config/tc-m68k.c:6645 +#: config/tc-m68k.c:6643 msgid "endi without matching if" msgstr "" -#: config/tc-m68k.c:6685 +#: config/tc-m68k.c:6683 msgid "break outside of structured loop" msgstr "" -#: config/tc-m68k.c:6723 +#: config/tc-m68k.c:6721 msgid "next outside of structured loop" msgstr "" -#: config/tc-m68k.c:6774 +#: config/tc-m68k.c:6771 msgid "missing =" msgstr "" -#: config/tc-m68k.c:6812 +#: config/tc-m68k.c:6809 msgid "missing to or downto" msgstr "" -#: config/tc-m68k.c:6848 config/tc-m68k.c:6882 config/tc-m68k.c:7096 +#: config/tc-m68k.c:6845 config/tc-m68k.c:6879 config/tc-m68k.c:7094 msgid "missing do" msgstr "" -#: config/tc-m68k.c:6983 +#: config/tc-m68k.c:6982 msgid "endf without for" msgstr "" -#: config/tc-m68k.c:7037 +#: config/tc-m68k.c:7036 msgid "until without repeat" msgstr "" -#: config/tc-m68k.c:7131 +#: config/tc-m68k.c:7129 msgid "endw without while" msgstr "" -#: config/tc-m68k.c:7164 config/tc-m68k.c:7192 +#: config/tc-m68k.c:7162 config/tc-m68k.c:7191 msgid "already assembled instructions" msgstr "" -#: config/tc-m68k.c:7269 +#: config/tc-m68k.c:7271 #, c-format msgid "`%s' is deprecated, use `%s'" msgstr "" -#: config/tc-m68k.c:7288 +#: config/tc-m68k.c:7290 #, c-format msgid "cpu `%s' unrecognized" msgstr "" -#: config/tc-m68k.c:7307 +#: config/tc-m68k.c:7309 #, c-format msgid "architecture `%s' unrecognized" msgstr "" -#: config/tc-m68k.c:7328 +#: config/tc-m68k.c:7330 #, c-format msgid "extension `%s' unrecognized" msgstr "" -#: config/tc-m68k.c:7443 +#: config/tc-m68k.c:7445 #, c-format msgid "option `-A%s' is deprecated: use `-%s'" msgstr "" -#: config/tc-m68k.c:7476 +#: config/tc-m68k.c:7478 msgid "architecture features both enabled and disabled" msgstr "" -#: config/tc-m68k.c:7503 +#: config/tc-m68k.c:7505 msgid "selected processor does not have all features of selected architecture" msgstr "" -#: config/tc-m68k.c:7512 +#: config/tc-m68k.c:7514 msgid "m68k and cf features both selected" msgstr "" -#: config/tc-m68k.c:7524 +#: config/tc-m68k.c:7526 msgid "68040 and 68851 specified; mmu instructions may assemble incorrectly" msgstr "" -#: config/tc-m68k.c:7556 +#: config/tc-m68k.c:7558 #, c-format msgid "" "-march=<arch>\t\tset architecture\n" "-mcpu=<cpu>\t\tset cpu [default %s]\n" msgstr "" -#: config/tc-m68k.c:7561 +#: config/tc-m68k.c:7563 #, c-format msgid "-m[no-]%-16s enable/disable %s architecture extension\n" msgstr "" -#: config/tc-m68k.c:7567 +#: config/tc-m68k.c:7569 #, c-format msgid "" "-l\t\t\tuse 1 word for refs to undefined symbols [default 2]\n" @@ -11991,53 +12017,53 @@ msgid "" "--disp-size-default-32\tdisplacement with unknown size is 32 bits (default)\n" msgstr "" -#: config/tc-m68k.c:7581 +#: config/tc-m68k.c:7583 #, c-format msgid "Architecture variants are: " msgstr "" -#: config/tc-m68k.c:7590 +#: config/tc-m68k.c:7592 #, c-format msgid "Processor variants are: " msgstr "" -#: config/tc-m68k.c:7597 config/tc-xtensa.c:6412 +#: config/tc-m68k.c:7599 config/tc-xtensa.c:6413 #, c-format msgid "\n" msgstr "" -#: config/tc-m68k.c:7628 +#: config/tc-m68k.c:7630 #, c-format msgid "Error %s in %s\n" msgstr "" -#: config/tc-m68k.c:7632 +#: config/tc-m68k.c:7634 #, c-format msgid "Opcode(%d.%s): " msgstr "" -#: config/tc-m68k.c:7777 +#: config/tc-m68k.c:7779 msgid "Not a defined coldfire architecture" msgstr "" -#: config/tc-m68k.c:7886 read.c:4809 +#: config/tc-m68k.c:7888 read.c:4871 #, c-format msgid "%s relocations do not fit in %u byte" msgid_plural "%s relocations do not fit in %u bytes" msgstr[0] "" msgstr[1] "" -#: config/tc-m68k.c:7928 config/tc-ppc.c:2594 +#: config/tc-m68k.c:7930 config/tc-ppc.c:2593 msgid "unknown .gnu_attribute value" msgstr "" -#: config/tc-m68k.c:7972 +#: config/tc-m68k.c:7974 #, c-format msgid "Adjusted signed .word (%#lx) overflows: `switch'-statement too large." msgstr "" -#: config/tc-mcore.c:521 config/tc-microblaze.c:487 config/tc-microblaze.c:515 -#: config/tc-microblaze.c:552 config/tc-microblaze.c:564 +#: config/tc-mcore.c:521 config/tc-microblaze.c:486 config/tc-microblaze.c:514 +#: config/tc-microblaze.c:551 config/tc-microblaze.c:563 #, c-format msgid "register expected, but saw '%.6s'" msgstr "" @@ -12068,11 +12094,11 @@ msgstr "" msgid "base register expected" msgstr "" -#: config/tc-mcore.c:888 config/tc-microblaze.c:920 -#: config/tc-microblaze.c:1056 config/tc-microblaze.c:1090 -#: config/tc-microblaze.c:1626 config/tc-microblaze.c:1694 -#: config/tc-microblaze.c:1769 config/tc-microblaze.c:2192 -#: config/tc-microblaze.c:2241 +#: config/tc-mcore.c:888 config/tc-microblaze.c:919 +#: config/tc-microblaze.c:1051 config/tc-microblaze.c:1083 +#: config/tc-microblaze.c:1617 config/tc-microblaze.c:1683 +#: config/tc-microblaze.c:1756 config/tc-microblaze.c:2176 +#: config/tc-microblaze.c:2224 #, c-format msgid "unknown opcode \"%s\"" msgstr "" @@ -12159,12 +12185,12 @@ msgstr "" msgid "`af' must appear alone" msgstr "" -#: config/tc-mcore.c:1588 config/tc-microblaze.c:1807 +#: config/tc-mcore.c:1588 config/tc-microblaze.c:1794 #, c-format msgid "unimplemented opcode \"%s\"" msgstr "" -#: config/tc-mcore.c:1597 config/tc-microblaze.c:1816 +#: config/tc-mcore.c:1597 config/tc-microblaze.c:1803 #, c-format msgid "ignoring operands: %s " msgstr "" @@ -12185,11 +12211,11 @@ msgid "" " -EL assemble for a little endian system\n" msgstr "" -#: config/tc-mcore.c:1709 config/tc-microblaze.c:1926 +#: config/tc-mcore.c:1709 config/tc-microblaze.c:1911 msgid "failed sanity check: short_jump" msgstr "" -#: config/tc-mcore.c:1719 config/tc-microblaze.c:1936 +#: config/tc-mcore.c:1719 config/tc-microblaze.c:1921 msgid "failed sanity check: long_jump" msgstr "" @@ -12220,12 +12246,12 @@ msgstr "" msgid "pcrel for loopt too far (0x%lx)" msgstr "" -#: config/tc-mcore.c:2189 config/tc-microblaze.c:2529 config/tc-tic30.c:1364 +#: config/tc-mcore.c:2189 config/tc-microblaze.c:2512 config/tc-tic30.c:1364 #, c-format msgid "Can not do %d byte %srelocation" msgstr "" -#: config/tc-mcore.c:2191 config/tc-microblaze.c:2531 config/tc-tic30.c:1365 +#: config/tc-mcore.c:2191 config/tc-microblaze.c:2514 config/tc-tic30.c:1365 msgid "pc-relative " msgstr "" @@ -12337,395 +12363,395 @@ msgstr "" msgid ".vliw unavailable when VLIW is disabled." msgstr "" -#: config/tc-metag.c:456 +#: config/tc-metag.c:455 msgid "no floating point unit specified" msgstr "" -#: config/tc-metag.c:721 +#: config/tc-metag.c:720 #, c-format msgid "offset must be a multiple of %d" msgstr "" -#: config/tc-metag.c:737 config/tc-metag.c:4443 +#: config/tc-metag.c:736 config/tc-metag.c:4441 msgid "offset and base must be from the same unit" msgstr "" -#: config/tc-metag.c:868 config/tc-metag.c:3167 config/tc-metag.c:3269 +#: config/tc-metag.c:867 config/tc-metag.c:3166 config/tc-metag.c:3268 msgid "invalid destination register" msgstr "" -#: config/tc-metag.c:884 config/tc-metag.c:902 config/tc-metag.c:1293 -#: config/tc-metag.c:1311 config/tc-metag.c:1530 config/tc-metag.c:3099 -#: config/tc-metag.c:3184 config/tc-metag.c:3286 +#: config/tc-metag.c:883 config/tc-metag.c:901 config/tc-metag.c:1292 +#: config/tc-metag.c:1310 config/tc-metag.c:1529 config/tc-metag.c:3098 +#: config/tc-metag.c:3183 config/tc-metag.c:3285 msgid "invalid memory operand" msgstr "" -#: config/tc-metag.c:939 config/tc-metag.c:3117 +#: config/tc-metag.c:938 config/tc-metag.c:3116 msgid "invalid source register" msgstr "" -#: config/tc-metag.c:1024 +#: config/tc-metag.c:1023 msgid "invalid destination unit" msgstr "" -#: config/tc-metag.c:1032 +#: config/tc-metag.c:1031 msgid "mov cannot use RD port as destination" msgstr "" -#: config/tc-metag.c:1057 +#: config/tc-metag.c:1056 msgid "invalid source unit" msgstr "" -#: config/tc-metag.c:1065 +#: config/tc-metag.c:1064 msgid "source and address units must not be shared for this addressing mode" msgstr "" -#: config/tc-metag.c:1073 config/tc-metag.c:1676 +#: config/tc-metag.c:1072 config/tc-metag.c:1675 msgid "set can only use RD port as source" msgstr "" -#: config/tc-metag.c:1088 config/tc-metag.c:1189 config/tc-metag.c:1440 -#: config/tc-metag.c:1697 config/tc-metag.c:4053 +#: config/tc-metag.c:1087 config/tc-metag.c:1188 config/tc-metag.c:1439 +#: config/tc-metag.c:1696 config/tc-metag.c:4052 #, c-format msgid "base unit must be one of %s" msgstr "" #. We already tried to encode as an extended GET/SET. #. Parsing as a standard GET/SET provides a smaller offset. -#: config/tc-metag.c:1109 config/tc-metag.c:1215 config/tc-metag.c:3130 -#: config/tc-metag.c:3197 config/tc-metag.c:3299 config/tc-metag.c:4580 +#: config/tc-metag.c:1108 config/tc-metag.c:1214 config/tc-metag.c:3129 +#: config/tc-metag.c:3196 config/tc-metag.c:3298 config/tc-metag.c:4578 msgid "offset value out of range" msgstr "" -#: config/tc-metag.c:1169 +#: config/tc-metag.c:1168 msgid "destination unit must be RD" msgstr "" -#: config/tc-metag.c:1279 +#: config/tc-metag.c:1278 msgid "invalid destination register list" msgstr "" -#: config/tc-metag.c:1326 +#: config/tc-metag.c:1325 msgid "invalid source register list" msgstr "" -#: config/tc-metag.c:1351 +#: config/tc-metag.c:1350 msgid "register list must be even numbered" msgstr "" -#: config/tc-metag.c:1357 +#: config/tc-metag.c:1356 msgid "register list must be from the same unit" msgstr "" -#: config/tc-metag.c:1380 +#: config/tc-metag.c:1379 msgid "register list must not contain duplicates" msgstr "" -#: config/tc-metag.c:1636 +#: config/tc-metag.c:1635 msgid "MDRD value must be between 1 and 8" msgstr "" -#: config/tc-metag.c:1727 +#: config/tc-metag.c:1726 msgid "invalid destination memory operand" msgstr "" -#: config/tc-metag.c:1742 +#: config/tc-metag.c:1741 msgid "invalid source memory operand" msgstr "" -#: config/tc-metag.c:1749 +#: config/tc-metag.c:1748 #, c-format msgid "address units must be one of %s" msgstr "" -#: config/tc-metag.c:1756 +#: config/tc-metag.c:1755 msgid "base and offset must be from the same unit" msgstr "" -#: config/tc-metag.c:1764 +#: config/tc-metag.c:1763 msgid "source and destination increment mode must agree" msgstr "" -#: config/tc-metag.c:2039 +#: config/tc-metag.c:2038 msgid "" "PC, CT, TR and TT are treated as if they are a single unit but operands must " "be in different units" msgstr "" -#: config/tc-metag.c:2048 +#: config/tc-metag.c:2047 msgid "source and destination register must be in different units" msgstr "" -#: config/tc-metag.c:2080 +#: config/tc-metag.c:2079 #, c-format msgid "register unit must be one of %s" msgstr "" -#: config/tc-metag.c:2167 +#: config/tc-metag.c:2166 #, c-format msgid "link register unit must be one of %s" msgstr "" -#: config/tc-metag.c:2173 +#: config/tc-metag.c:2172 msgid "link register must be in a low numbered register" msgstr "" -#: config/tc-metag.c:2190 config/tc-metag.c:2715 config/tc-metag.c:2769 +#: config/tc-metag.c:2189 config/tc-metag.c:2714 config/tc-metag.c:2768 msgid "target out of range" msgstr "" -#: config/tc-metag.c:2671 +#: config/tc-metag.c:2670 msgid "invalid quickrot unit specified" msgstr "" -#: config/tc-metag.c:2687 +#: config/tc-metag.c:2686 msgid "invalid quickrot register specified" msgstr "" -#: config/tc-metag.c:2741 +#: config/tc-metag.c:2740 msgid "source register must be in the trigger unit" msgstr "" -#: config/tc-metag.c:2844 +#: config/tc-metag.c:2843 msgid "Source registers must be in the same unit" msgstr "" -#: config/tc-metag.c:3554 config/tc-metag.c:3718 config/tc-metag.c:3986 +#: config/tc-metag.c:3553 config/tc-metag.c:3717 config/tc-metag.c:3985 msgid "destination register should be even numbered" msgstr "" -#: config/tc-metag.c:3626 +#: config/tc-metag.c:3625 msgid "comparison must be with register or #0" msgstr "" -#: config/tc-metag.c:3692 config/tc-metag.c:3757 +#: config/tc-metag.c:3691 config/tc-metag.c:3756 msgid "instruction cannot operate on pair values" msgstr "" -#: config/tc-metag.c:3703 +#: config/tc-metag.c:3702 msgid "zero flag is not valid for this instruction" msgstr "" -#: config/tc-metag.c:3724 +#: config/tc-metag.c:3723 msgid "source register should be even numbered" msgstr "" -#: config/tc-metag.c:3784 config/tc-metag.c:3793 +#: config/tc-metag.c:3783 config/tc-metag.c:3792 msgid "fraction bits value out of range" msgstr "" -#: config/tc-metag.c:3975 +#: config/tc-metag.c:3974 msgid "simd instructions operate on pair values (L prefix)" msgstr "" -#: config/tc-metag.c:3993 +#: config/tc-metag.c:3992 msgid "source registers should be even numbered" msgstr "" -#: config/tc-metag.c:4271 +#: config/tc-metag.c:4270 #, c-format msgid "expected ']', not %c in %s" msgstr "" -#: config/tc-metag.c:4390 +#: config/tc-metag.c:4388 msgid "invalid register for memory access" msgstr "" -#: config/tc-metag.c:4503 config/tc-metag.c:4631 +#: config/tc-metag.c:4501 config/tc-metag.c:4629 msgid "unexpected end of line" msgstr "" -#: config/tc-metag.c:4550 +#: config/tc-metag.c:4548 msgid "'H' modifier only valid for accumulator registers" msgstr "" -#: config/tc-metag.c:4603 +#: config/tc-metag.c:4601 msgid "base unit must be either A0 or A1" msgstr "" -#: config/tc-metag.c:4676 config/tc-metag.c:5119 +#: config/tc-metag.c:4674 config/tc-metag.c:5117 msgid "invalid register" msgstr "" -#: config/tc-metag.c:4787 config/tc-metag.c:5528 config/tc-metag.c:5550 +#: config/tc-metag.c:4785 config/tc-metag.c:5526 config/tc-metag.c:5548 msgid "invalid register operand" msgstr "" -#: config/tc-metag.c:4824 +#: config/tc-metag.c:4822 msgid "could not parse template definition" msgstr "" -#: config/tc-metag.c:5011 +#: config/tc-metag.c:5009 msgid "QUICKRoT 64-bit extension not applicable to this instruction" msgstr "" -#: config/tc-metag.c:5067 +#: config/tc-metag.c:5065 msgid "invalid operands for cross-unit op" msgstr "" -#: config/tc-metag.c:5109 +#: config/tc-metag.c:5107 msgid "missing flags: one of 'P', 'N' or 'Z' required" msgstr "" -#: config/tc-metag.c:5137 +#: config/tc-metag.c:5135 msgid "'P', 'N' or 'Z' flags may only be specified when accumulating" msgstr "" -#: config/tc-metag.c:5158 +#: config/tc-metag.c:5156 msgid "accumulator not a valid destination" msgstr "" -#: config/tc-metag.c:5168 config/tc-metag.c:5384 config/tc-metag.c:5568 +#: config/tc-metag.c:5166 config/tc-metag.c:5382 config/tc-metag.c:5566 msgid "invalid immediate value" msgstr "" -#: config/tc-metag.c:5180 +#: config/tc-metag.c:5178 msgid "immediate value not allowed when source & dest differ" msgstr "" -#: config/tc-metag.c:5212 +#: config/tc-metag.c:5210 #, c-format msgid "invalid register operand: %s" msgstr "" -#: config/tc-metag.c:5246 +#: config/tc-metag.c:5244 msgid "QUICKRoT extension requires 4 registers" msgstr "" -#: config/tc-metag.c:5253 +#: config/tc-metag.c:5251 msgid "invalid fourth register" msgstr "" -#: config/tc-metag.c:5260 +#: config/tc-metag.c:5258 msgid "A0.2,A0.3,A1.2,A1.3 required for QUICKRoT register" msgstr "" -#: config/tc-metag.c:5288 +#: config/tc-metag.c:5286 msgid "DSP RAM pointer in incorrect unit" msgstr "" -#: config/tc-metag.c:5334 +#: config/tc-metag.c:5332 msgid "invalid register operand #1" msgstr "" -#: config/tc-metag.c:5348 +#: config/tc-metag.c:5346 msgid "invalid register operand #2" msgstr "" -#: config/tc-metag.c:5412 +#: config/tc-metag.c:5410 msgid "this instruction does not accept an immediate" msgstr "" -#: config/tc-metag.c:5432 +#: config/tc-metag.c:5430 msgid "invalid register operand #3" msgstr "" -#: config/tc-metag.c:5444 +#: config/tc-metag.c:5442 msgid "this instruction does not accept an accumulator" msgstr "" -#: config/tc-metag.c:5462 +#: config/tc-metag.c:5460 msgid "invalid register operand #4" msgstr "" -#: config/tc-metag.c:5539 +#: config/tc-metag.c:5537 msgid "invalid accumulator register" msgstr "" -#: config/tc-metag.c:5595 +#: config/tc-metag.c:5593 msgid "conditional instruction cannot use G flag" msgstr "" -#: config/tc-metag.c:5606 +#: config/tc-metag.c:5604 msgid "conditional instruction cannot use B flag" msgstr "" -#: config/tc-metag.c:5617 +#: config/tc-metag.c:5615 msgid "conditional instruction cannot use R flag" msgstr "" -#: config/tc-metag.c:5726 +#: config/tc-metag.c:5724 msgid "'L' modifier not valid for this instruction" msgstr "" -#: config/tc-metag.c:5858 +#: config/tc-metag.c:5856 #, c-format msgid "missing fpu name `%s'" msgstr "" -#: config/tc-metag.c:5869 +#: config/tc-metag.c:5867 #, c-format msgid "unknown fpu `%s'" msgstr "" -#: config/tc-metag.c:5884 +#: config/tc-metag.c:5882 #, c-format msgid "missing DSP name `%s'" msgstr "" -#: config/tc-metag.c:5895 +#: config/tc-metag.c:5893 #, c-format msgid "unknown DSP `%s'" msgstr "" -#: config/tc-metag.c:5913 +#: config/tc-metag.c:5911 msgid "<dsp name>\t assemble for DSP architecture <dsp name>" msgstr "" -#: config/tc-metag.c:5950 +#: config/tc-metag.c:5948 #, c-format msgid " Meta specific command line options:\n" msgstr "" -#: config/tc-metag.c:6039 +#: config/tc-metag.c:6037 msgid "premature end of floating point prefix" msgstr "" -#: config/tc-metag.c:6099 +#: config/tc-metag.c:6097 msgid "unknown floating point prefix character" msgstr "" -#: config/tc-metag.c:6248 +#: config/tc-metag.c:6246 #, c-format msgid "unknown DSP prefix character %c %s" msgstr "" -#: config/tc-metag.c:6511 +#: config/tc-metag.c:6507 #, c-format msgid "instruction mnemonic too long: %s" msgstr "" -#: config/tc-metag.c:6566 +#: config/tc-metag.c:6562 #, c-format msgid "junk at end of line: \"%s\"" msgstr "" -#: config/tc-metag.c:6573 +#: config/tc-metag.c:6569 #, c-format msgid "failed to assemble instruction: \"%s\"" msgstr "" -#: config/tc-metag.c:6578 +#: config/tc-metag.c:6574 #, c-format msgid "unknown floating point mnemonic: \"%s\"" msgstr "" -#: config/tc-metag.c:6580 +#: config/tc-metag.c:6576 #, c-format msgid "unknown mnemonic: \"%s\"" msgstr "" -#: config/tc-metag.c:6631 +#: config/tc-metag.c:6627 #, c-format msgid "cannot assemble DSP instruction, DSP option not set: %s" msgstr "" -#: config/tc-metag.c:6638 +#: config/tc-metag.c:6634 #, c-format msgid "cannot assemble FPU instruction, FPU option not set: %s" msgstr "" -#: config/tc-metag.c:6733 config/tc-nds32.c:7347 +#: config/tc-metag.c:6729 config/tc-nds32.c:7341 msgid "Bad call to md_atof()" msgstr "" @@ -12734,888 +12760,888 @@ msgstr "" msgid "Length of .lcomm \"%s\" is already %ld. Not changed to %ld." msgstr "" -#: config/tc-microblaze.c:492 config/tc-microblaze.c:521 -#: config/tc-microblaze.c:558 +#: config/tc-microblaze.c:491 config/tc-microblaze.c:520 +#: config/tc-microblaze.c:557 #, c-format msgid "Invalid register number at '%.6s'" msgstr "" -#: config/tc-microblaze.c:723 +#: config/tc-microblaze.c:722 msgid "operand must be a constant or a label" msgstr "" -#: config/tc-microblaze.c:732 +#: config/tc-microblaze.c:731 #, c-format msgid "operand must be absolute in range %lx..%lx, not %lx" msgstr "" -#: config/tc-microblaze.c:934 config/tc-microblaze.c:941 -#: config/tc-microblaze.c:948 config/tc-microblaze.c:981 -#: config/tc-microblaze.c:988 config/tc-microblaze.c:994 -#: config/tc-microblaze.c:1113 config/tc-microblaze.c:1120 -#: config/tc-microblaze.c:1126 config/tc-microblaze.c:1157 -#: config/tc-microblaze.c:1165 config/tc-microblaze.c:1179 -#: config/tc-microblaze.c:1197 config/tc-microblaze.c:1238 -#: config/tc-microblaze.c:1245 config/tc-microblaze.c:1265 -#: config/tc-microblaze.c:1272 config/tc-microblaze.c:1292 -#: config/tc-microblaze.c:1299 config/tc-microblaze.c:1317 -#: config/tc-microblaze.c:1324 config/tc-microblaze.c:1346 -#: config/tc-microblaze.c:1353 config/tc-microblaze.c:1371 -#: config/tc-microblaze.c:1383 config/tc-microblaze.c:1401 -#: config/tc-microblaze.c:1418 config/tc-microblaze.c:1425 -#: config/tc-microblaze.c:1471 config/tc-microblaze.c:1478 -#: config/tc-microblaze.c:1524 config/tc-microblaze.c:1531 -#: config/tc-microblaze.c:1553 config/tc-microblaze.c:1560 -#: config/tc-microblaze.c:1580 config/tc-microblaze.c:1586 -#: config/tc-microblaze.c:1648 config/tc-microblaze.c:1654 -#: config/tc-microblaze.c:1716 config/tc-microblaze.c:1792 +#: config/tc-microblaze.c:933 config/tc-microblaze.c:940 +#: config/tc-microblaze.c:947 config/tc-microblaze.c:980 +#: config/tc-microblaze.c:987 config/tc-microblaze.c:993 +#: config/tc-microblaze.c:1106 config/tc-microblaze.c:1113 +#: config/tc-microblaze.c:1119 config/tc-microblaze.c:1150 +#: config/tc-microblaze.c:1158 config/tc-microblaze.c:1172 +#: config/tc-microblaze.c:1190 config/tc-microblaze.c:1231 +#: config/tc-microblaze.c:1238 config/tc-microblaze.c:1258 +#: config/tc-microblaze.c:1265 config/tc-microblaze.c:1285 +#: config/tc-microblaze.c:1292 config/tc-microblaze.c:1310 +#: config/tc-microblaze.c:1317 config/tc-microblaze.c:1339 +#: config/tc-microblaze.c:1346 config/tc-microblaze.c:1364 +#: config/tc-microblaze.c:1376 config/tc-microblaze.c:1394 +#: config/tc-microblaze.c:1411 config/tc-microblaze.c:1418 +#: config/tc-microblaze.c:1464 config/tc-microblaze.c:1471 +#: config/tc-microblaze.c:1517 config/tc-microblaze.c:1524 +#: config/tc-microblaze.c:1546 config/tc-microblaze.c:1553 +#: config/tc-microblaze.c:1573 config/tc-microblaze.c:1579 +#: config/tc-microblaze.c:1639 config/tc-microblaze.c:1645 +#: config/tc-microblaze.c:1705 config/tc-microblaze.c:1779 msgid "Error in statement syntax" msgstr "" -#: config/tc-microblaze.c:954 config/tc-microblaze.c:956 -#: config/tc-microblaze.c:958 config/tc-microblaze.c:998 -#: config/tc-microblaze.c:1000 config/tc-microblaze.c:1130 -#: config/tc-microblaze.c:1132 config/tc-microblaze.c:1171 -#: config/tc-microblaze.c:1173 config/tc-microblaze.c:1251 -#: config/tc-microblaze.c:1253 config/tc-microblaze.c:1278 -#: config/tc-microblaze.c:1280 config/tc-microblaze.c:1305 -#: config/tc-microblaze.c:1328 config/tc-microblaze.c:1359 -#: config/tc-microblaze.c:1389 config/tc-microblaze.c:1407 -#: config/tc-microblaze.c:1537 config/tc-microblaze.c:1539 -#: config/tc-microblaze.c:1566 config/tc-microblaze.c:1568 -#: config/tc-microblaze.c:1590 config/tc-microblaze.c:1658 -#: config/tc-microblaze.c:1722 +#: config/tc-microblaze.c:953 config/tc-microblaze.c:955 +#: config/tc-microblaze.c:957 config/tc-microblaze.c:997 +#: config/tc-microblaze.c:999 config/tc-microblaze.c:1123 +#: config/tc-microblaze.c:1125 config/tc-microblaze.c:1164 +#: config/tc-microblaze.c:1166 config/tc-microblaze.c:1244 +#: config/tc-microblaze.c:1246 config/tc-microblaze.c:1271 +#: config/tc-microblaze.c:1273 config/tc-microblaze.c:1298 +#: config/tc-microblaze.c:1321 config/tc-microblaze.c:1352 +#: config/tc-microblaze.c:1382 config/tc-microblaze.c:1400 +#: config/tc-microblaze.c:1530 config/tc-microblaze.c:1532 +#: config/tc-microblaze.c:1559 config/tc-microblaze.c:1561 +#: config/tc-microblaze.c:1583 config/tc-microblaze.c:1649 +#: config/tc-microblaze.c:1711 msgid "Cannot use special register with this instruction" msgstr "" -#: config/tc-microblaze.c:1008 +#: config/tc-microblaze.c:1007 msgid "lmi pseudo instruction should not use a label in imm field" msgstr "" -#: config/tc-microblaze.c:1010 +#: config/tc-microblaze.c:1009 msgid "smi pseudo instruction should not use a label in imm field" msgstr "" -#: config/tc-microblaze.c:1135 +#: config/tc-microblaze.c:1128 msgid "Symbol used as immediate for shift instruction" msgstr "" -#: config/tc-microblaze.c:1144 +#: config/tc-microblaze.c:1137 #, c-format msgid "Shift value > 32. using <value %% 32>" msgstr "" -#: config/tc-microblaze.c:1184 +#: config/tc-microblaze.c:1177 msgid "Symbol used as immediate width value for bit field instruction" msgstr "" -#: config/tc-microblaze.c:1191 +#: config/tc-microblaze.c:1184 msgid "Width value must be less than 32" msgstr "" -#: config/tc-microblaze.c:1202 +#: config/tc-microblaze.c:1195 msgid "Symbol used as immediate shift value for bit field instruction" msgstr "" -#: config/tc-microblaze.c:1213 +#: config/tc-microblaze.c:1206 #, c-format msgid "Shift value greater than 32. using <value %% 32>" msgstr "" -#: config/tc-microblaze.c:1219 +#: config/tc-microblaze.c:1212 msgid "Width value + shift value must not be greater than 32" msgstr "" -#: config/tc-microblaze.c:1331 +#: config/tc-microblaze.c:1324 msgid "Symbol used as immediate value for msrset/msrclr instructions" msgstr "" -#: config/tc-microblaze.c:1460 config/tc-microblaze.c:1513 +#: config/tc-microblaze.c:1453 config/tc-microblaze.c:1506 msgid "invalid value for special purpose register" msgstr "" -#: config/tc-microblaze.c:1730 +#: config/tc-microblaze.c:1719 msgid "An IMM instruction should not be present in the .s file" msgstr "" -#: config/tc-microblaze.c:1794 +#: config/tc-microblaze.c:1781 msgid "Symbol used as immediate for mbar instruction" msgstr "" -#: config/tc-microblaze.c:1800 +#: config/tc-microblaze.c:1787 #, c-format msgid "Immediate value for mbar > 32. using <value %% 32>" msgstr "" -#: config/tc-microblaze.c:1874 +#: config/tc-microblaze.c:1861 msgid "Bad call to MD_NTOF()" msgstr "" -#: config/tc-microblaze.c:2143 +#: config/tc-microblaze.c:2128 #, c-format msgid "pcrel for branch to %s too far (0x%x)" msgstr "" #. We know the abs value: Should never happen. -#: config/tc-microblaze.c:2304 +#: config/tc-microblaze.c:2287 msgid "Absolute PC-relative value in relaxation code. Assembler error....." msgstr "" #. Cannot have a PC-relative branch to a diff segment. -#: config/tc-microblaze.c:2318 +#: config/tc-microblaze.c:2301 #, c-format msgid "PC relative branch to label %s which is not in the instruction space" msgstr "" -#: config/tc-microblaze.c:2361 +#: config/tc-microblaze.c:2344 msgid "" "Variable is accessed using small data read only anchor, but it is not in the " "small data read only section" msgstr "" -#: config/tc-microblaze.c:2384 +#: config/tc-microblaze.c:2367 msgid "" "Variable is accessed using small data read write anchor, but it is not in " "the small data read write section" msgstr "" -#: config/tc-microblaze.c:2393 +#: config/tc-microblaze.c:2376 msgid "Incorrect fr_opcode value in frag. Internal error....." msgstr "" #. We know the abs value: Should never happen. -#: config/tc-microblaze.c:2400 +#: config/tc-microblaze.c:2383 msgid "Absolute value in relaxation code. Assembler error....." msgstr "" #. fprintf(stream, _(" MicroBlaze options:\n -noSmall Data in the comm and data sections do not go into the small data section\n")); -#: config/tc-microblaze.c:2585 +#: config/tc-microblaze.c:2568 #, c-format msgid " MicroBlaze specific assembler options:\n" msgstr "" -#: config/tc-microblaze.c:2586 +#: config/tc-microblaze.c:2569 msgid "assemble for a big endian cpu" msgstr "" -#: config/tc-microblaze.c:2587 +#: config/tc-microblaze.c:2570 msgid "assemble for a little endian cpu" msgstr "" -#: config/tc-mips.c:2184 +#: config/tc-mips.c:2183 #, c-format msgid "the %d-bit %s architecture does not support the `%s' extension" msgstr "" -#: config/tc-mips.c:2187 +#: config/tc-mips.c:2186 #, c-format msgid "the `%s' extension requires %s%d revision %d or greater" msgstr "" -#: config/tc-mips.c:2196 +#: config/tc-mips.c:2195 #, c-format msgid "the `%s' extension was removed in %s%d revision %d" msgstr "" -#: config/tc-mips.c:2205 +#: config/tc-mips.c:2204 #, c-format msgid "the `%s' extension requires 64-bit FPRs" msgstr "" -#: config/tc-mips.c:3057 config/tc-mips.c:16644 +#: config/tc-mips.c:3056 config/tc-mips.c:16661 #, c-format msgid "unrecognized register name `%s'" msgstr "" -#: config/tc-mips.c:3284 +#: config/tc-mips.c:3283 msgid "invalid register range" msgstr "" -#: config/tc-mips.c:3312 +#: config/tc-mips.c:3311 msgid "vector element must be constant" msgstr "" -#: config/tc-mips.c:3322 +#: config/tc-mips.c:3321 msgid "missing `]'" msgstr "" -#: config/tc-mips.c:3545 +#: config/tc-mips.c:3544 #, c-format msgid "internal: bad mips opcode (mask error): %s %s" msgstr "" -#: config/tc-mips.c:3572 +#: config/tc-mips.c:3571 #, c-format msgid "internal: unknown operand type: %s %s" msgstr "" -#: config/tc-mips.c:3605 +#: config/tc-mips.c:3604 #, c-format msgid "internal: bad mips opcode (bits 0x%08lx doubly defined): %s %s" msgstr "" -#: config/tc-mips.c:3613 +#: config/tc-mips.c:3612 #, c-format msgid "internal: bad mips opcode (bits 0x%08lx undefined): %s %s" msgstr "" -#: config/tc-mips.c:3620 +#: config/tc-mips.c:3619 #, c-format msgid "internal: bad mips opcode (bits 0x%08lx defined): %s %s" msgstr "" -#: config/tc-mips.c:3655 +#: config/tc-mips.c:3654 #, c-format msgid "internal error: bad microMIPS opcode (incorrect length: %u): %s %s" msgstr "" -#: config/tc-mips.c:3663 +#: config/tc-mips.c:3662 #, c-format msgid "internal error: bad microMIPS opcode (opcode/length mismatch): %s %s" msgstr "" -#: config/tc-mips.c:3688 +#: config/tc-mips.c:3687 msgid "-G may not be used in position-independent code" msgstr "" -#: config/tc-mips.c:3694 +#: config/tc-mips.c:3693 msgid "-G may not be used with abicalls" msgstr "" -#: config/tc-mips.c:3799 +#: config/tc-mips.c:3798 msgid "broken assembler, no assembly attempted" msgstr "" -#: config/tc-mips.c:3947 +#: config/tc-mips.c:3946 #, c-format msgid ".gnu_attribute %d,%d is incompatible with `%s'" msgstr "" -#: config/tc-mips.c:3954 +#: config/tc-mips.c:3953 #, c-format msgid ".gnu_attribute %d,%d requires `%s'" msgstr "" -#: config/tc-mips.c:4015 +#: config/tc-mips.c:4014 #, c-format msgid ".gnu_attribute %d,%d is no longer supported" msgstr "" -#: config/tc-mips.c:4024 +#: config/tc-mips.c:4023 #, c-format msgid ".gnu_attribute %d,%d is not a recognized floating-point ABI" msgstr "" -#: config/tc-mips.c:4037 +#: config/tc-mips.c:4036 msgid "`gp=64' used with a 32-bit processor" msgstr "" -#: config/tc-mips.c:4040 +#: config/tc-mips.c:4039 msgid "`gp=32' used with a 64-bit ABI" msgstr "" -#: config/tc-mips.c:4043 +#: config/tc-mips.c:4042 msgid "`gp=64' used with a 32-bit ABI" msgstr "" -#: config/tc-mips.c:4050 +#: config/tc-mips.c:4049 msgid "`fp=xx' used with a cpu lacking ldc1/sdc1 instructions" msgstr "" -#: config/tc-mips.c:4052 +#: config/tc-mips.c:4051 msgid "`fp=xx' cannot be used with `singlefloat'" msgstr "" -#: config/tc-mips.c:4056 +#: config/tc-mips.c:4055 msgid "`fp=64' used with a 32-bit fpu" msgstr "" -#: config/tc-mips.c:4060 +#: config/tc-mips.c:4059 msgid "`fp=64' used with a 32-bit ABI" msgstr "" -#: config/tc-mips.c:4065 +#: config/tc-mips.c:4064 msgid "`fp=32' used with a 64-bit ABI" msgstr "" -#: config/tc-mips.c:4067 +#: config/tc-mips.c:4066 msgid "`fp=32' used with a MIPS R6 cpu" msgstr "" -#: config/tc-mips.c:4070 +#: config/tc-mips.c:4069 msgid "Unknown size of floating point registers" msgstr "" -#: config/tc-mips.c:4075 +#: config/tc-mips.c:4074 msgid "`nooddspreg` cannot be used with a 64-bit ABI" msgstr "" -#: config/tc-mips.c:4078 config/tc-mips.c:4082 +#: config/tc-mips.c:4077 config/tc-mips.c:4081 #, c-format msgid "`%s' cannot be used with `%s'" msgstr "" -#: config/tc-mips.c:4087 +#: config/tc-mips.c:4086 #, c-format msgid "branch relaxation is not supported in `%s'" msgstr "" -#: config/tc-mips.c:4173 config/tc-mips.c:17527 +#: config/tc-mips.c:4172 config/tc-mips.c:17544 #, c-format msgid "`%s' does not support legacy NaN" msgstr "" -#: config/tc-mips.c:4220 +#: config/tc-mips.c:4219 #, c-format msgid "returned from mips_ip(%s) insn_opcode = 0x%x\n" msgstr "" -#: config/tc-mips.c:4924 +#: config/tc-mips.c:4931 #, c-format msgid "operand %d out of range" msgstr "" -#: config/tc-mips.c:4932 +#: config/tc-mips.c:4939 #, c-format msgid "operand %d must be constant" msgstr "" -#: config/tc-mips.c:4976 read.c:4594 read.c:5364 read.c:5490 write.c:250 +#: config/tc-mips.c:4983 read.c:4657 read.c:5426 read.c:5554 write.c:250 #: write.c:1058 msgid "register value used as expression" msgstr "" -#: config/tc-mips.c:4989 +#: config/tc-mips.c:4996 #, c-format msgid "operand %d must be an immediate expression" msgstr "" -#: config/tc-mips.c:5111 config/tc-mips.c:5113 +#: config/tc-mips.c:5118 config/tc-mips.c:5120 #, c-format msgid "float register should be even, was %d" msgstr "" -#: config/tc-mips.c:5126 +#: config/tc-mips.c:5133 #, c-format msgid "condition code register should be even for %s, was %d" msgstr "" -#: config/tc-mips.c:5131 +#: config/tc-mips.c:5138 #, c-format msgid "condition code register should be 0 or 4 for %s, was %d" msgstr "" -#: config/tc-mips.c:5452 +#: config/tc-mips.c:5459 msgid "invalid performance register" msgstr "" -#: config/tc-mips.c:5548 config/tc-mips.c:6019 +#: config/tc-mips.c:5555 config/tc-mips.c:6026 msgid "the source register must not be $0" msgstr "" -#: config/tc-mips.c:5824 +#: config/tc-mips.c:5831 msgid "missing frame size" msgstr "" -#: config/tc-mips.c:5829 +#: config/tc-mips.c:5836 msgid "frame size specified twice" msgstr "" -#: config/tc-mips.c:5834 +#: config/tc-mips.c:5841 msgid "invalid frame size" msgstr "" -#: config/tc-mips.c:5874 +#: config/tc-mips.c:5881 #, c-format msgid "operand %d must be an immediate" msgstr "" -#: config/tc-mips.c:5889 +#: config/tc-mips.c:5896 msgid "invalid element selector" msgstr "" -#: config/tc-mips.c:5902 +#: config/tc-mips.c:5909 #, c-format msgid "operand %d must be scalar" msgstr "" -#: config/tc-mips.c:6082 +#: config/tc-mips.c:6089 msgid "floating-point expression required" msgstr "" -#: config/tc-mips.c:6182 +#: config/tc-mips.c:6189 #, c-format msgid "cannot use `%s' in this section" msgstr "" -#: config/tc-mips.c:6329 +#: config/tc-mips.c:6336 msgid "used $at without \".set noat\"" msgstr "" -#: config/tc-mips.c:6331 +#: config/tc-mips.c:6338 #, c-format msgid "used $%u with \".set at=$%u\"" msgstr "" -#: config/tc-mips.c:7510 +#: config/tc-mips.c:7517 #, c-format msgid "wrong size instruction in a %u-bit branch delay slot" msgstr "" -#: config/tc-mips.c:7530 config/tc-mips.c:7540 config/tc-mips.c:15944 +#: config/tc-mips.c:7537 config/tc-mips.c:7547 config/tc-mips.c:15962 #, c-format msgid "jump to misaligned address (0x%lx)" msgstr "" -#: config/tc-mips.c:7555 config/tc-mips.c:7575 config/tc-mips.c:7592 -#: config/tc-mips.c:9142 config/tc-mips.c:15798 config/tc-mips.c:15805 -#: config/tc-mips.c:16198 config/tc-mips.c:19046 +#: config/tc-mips.c:7562 config/tc-mips.c:7582 config/tc-mips.c:7599 +#: config/tc-mips.c:9148 config/tc-mips.c:15816 config/tc-mips.c:15823 +#: config/tc-mips.c:16216 config/tc-mips.c:19063 #, c-format msgid "branch to misaligned address (0x%lx)" msgstr "" -#: config/tc-mips.c:7561 config/tc-mips.c:7579 config/tc-mips.c:7596 -#: config/tc-mips.c:9145 +#: config/tc-mips.c:7568 config/tc-mips.c:7586 config/tc-mips.c:7603 +#: config/tc-mips.c:9151 #, c-format msgid "branch address range overflow (0x%lx)" msgstr "" -#: config/tc-mips.c:7841 +#: config/tc-mips.c:7847 msgid "extended instruction in delay slot" msgstr "" -#: config/tc-mips.c:8305 +#: config/tc-mips.c:8311 msgid "source and destination must be different" msgstr "" -#: config/tc-mips.c:8308 +#: config/tc-mips.c:8314 msgid "a destination register must be supplied" msgstr "" -#: config/tc-mips.c:8313 +#: config/tc-mips.c:8319 msgid "the source register must not be $31" msgstr "" -#: config/tc-mips.c:8561 config/tc-mips.c:14536 config/tc-mips.c:19193 +#: config/tc-mips.c:8567 config/tc-mips.c:14535 config/tc-mips.c:19210 msgid "invalid unextended operand value" msgstr "" -#: config/tc-mips.c:8679 +#: config/tc-mips.c:8685 #, c-format msgid "opcode not supported on this processor: %s (%s)" msgstr "" -#: config/tc-mips.c:8758 +#: config/tc-mips.c:8764 msgid "opcode not supported in the `insn32' mode" msgstr "" -#: config/tc-mips.c:8761 +#: config/tc-mips.c:8767 #, c-format msgid "unrecognized %d-bit version of microMIPS opcode" msgstr "" -#: config/tc-mips.c:8817 +#: config/tc-mips.c:8823 msgid "unrecognized unextended version of MIPS16 opcode" msgstr "" -#: config/tc-mips.c:8820 +#: config/tc-mips.c:8826 msgid "unrecognized extended version of MIPS16 opcode" msgstr "" -#: config/tc-mips.c:8870 config/tc-mips.c:19064 +#: config/tc-mips.c:8876 config/tc-mips.c:19081 msgid "" "macro instruction expanded into multiple instructions in a branch delay slot" msgstr "" -#: config/tc-mips.c:8873 config/tc-mips.c:19072 +#: config/tc-mips.c:8879 config/tc-mips.c:19089 msgid "macro instruction expanded into multiple instructions" msgstr "" -#: config/tc-mips.c:8877 +#: config/tc-mips.c:8883 msgid "" "macro instruction expanded into a wrong size instruction in a 16-bit branch " "delay slot" msgstr "" -#: config/tc-mips.c:8879 +#: config/tc-mips.c:8885 msgid "" "macro instruction expanded into a wrong size instruction in a 32-bit branch " "delay slot" msgstr "" -#: config/tc-mips.c:9342 +#: config/tc-mips.c:9348 msgid "operand overflow" msgstr "" -#: config/tc-mips.c:9361 config/tc-mips.c:9946 config/tc-mips.c:14017 +#: config/tc-mips.c:9367 config/tc-mips.c:9952 config/tc-mips.c:14023 msgid "macro used $at after \".set noat\"" msgstr "" -#: config/tc-mips.c:9506 config/tc-mips.c:12329 config/tc-mips.c:13010 +#: config/tc-mips.c:9512 config/tc-mips.c:12335 config/tc-mips.c:13016 #, c-format msgid "number (0x%<PRIx64>) larger than 32 bits" msgstr "" -#: config/tc-mips.c:9527 +#: config/tc-mips.c:9533 msgid "number larger than 64 bits" msgstr "" -#: config/tc-mips.c:9824 config/tc-mips.c:9852 config/tc-mips.c:9890 -#: config/tc-mips.c:9935 config/tc-mips.c:12573 config/tc-mips.c:12612 -#: config/tc-mips.c:12651 config/tc-mips.c:13107 config/tc-mips.c:13159 +#: config/tc-mips.c:9830 config/tc-mips.c:9858 config/tc-mips.c:9896 +#: config/tc-mips.c:9941 config/tc-mips.c:12579 config/tc-mips.c:12618 +#: config/tc-mips.c:12657 config/tc-mips.c:13113 config/tc-mips.c:13165 msgid "PIC code offset overflow (max 16 signed bits)" msgstr "" -#: config/tc-mips.c:10478 +#: config/tc-mips.c:10484 #, c-format msgid "BALIGN immediate not 0, 1, 2 or 3 (%lu)" msgstr "" #. Result is always true. -#: config/tc-mips.c:10574 +#: config/tc-mips.c:10580 #, c-format msgid "branch %s is always true" msgstr "" -#: config/tc-mips.c:10802 config/tc-mips.c:10910 +#: config/tc-mips.c:10808 config/tc-mips.c:10916 msgid "divide by zero" msgstr "" -#: config/tc-mips.c:11000 +#: config/tc-mips.c:11006 msgid "dla used to load 32-bit register; recommend using la instead" msgstr "" -#: config/tc-mips.c:11004 +#: config/tc-mips.c:11010 msgid "la used to load 64-bit address; recommend using dla instead" msgstr "" -#: config/tc-mips.c:11113 config/tc-riscv.c:2364 +#: config/tc-mips.c:11119 config/tc-riscv.c:2375 msgid "offset too large" msgstr "" -#: config/tc-mips.c:11287 config/tc-mips.c:11565 +#: config/tc-mips.c:11293 config/tc-mips.c:11571 msgid "PIC code offset overflow (max 32 signed bits)" msgstr "" -#: config/tc-mips.c:11635 config/tc-mips.c:11711 +#: config/tc-mips.c:11641 config/tc-mips.c:11717 #, c-format msgid "opcode not supported in the `insn32' mode `%s'" msgstr "" -#: config/tc-mips.c:11663 +#: config/tc-mips.c:11669 msgid "MIPS PIC call to register other than $25" msgstr "" -#: config/tc-mips.c:11679 config/tc-mips.c:11690 config/tc-mips.c:11823 -#: config/tc-mips.c:11834 +#: config/tc-mips.c:11685 config/tc-mips.c:11696 config/tc-mips.c:11829 +#: config/tc-mips.c:11840 msgid "no .cprestore pseudo-op used in PIC code" msgstr "" -#: config/tc-mips.c:11684 config/tc-mips.c:11828 +#: config/tc-mips.c:11690 config/tc-mips.c:11834 msgid "no .frame pseudo-op used in PIC code" msgstr "" -#: config/tc-mips.c:11849 +#: config/tc-mips.c:11855 msgid "non-PIC jump used in PIC library" msgstr "" -#: config/tc-mips.c:12830 +#: config/tc-mips.c:12836 #, c-format msgid "Unable to generate `%s' compliant code without mthc1" msgstr "" -#: config/tc-mips.c:13571 +#: config/tc-mips.c:13577 #, c-format msgid "instruction %s: result is always false" msgstr "" -#: config/tc-mips.c:13724 +#: config/tc-mips.c:13730 #, c-format msgid "instruction %s: result is always true" msgstr "" #. FIXME: Check if this is one of the itbl macros, since they #. are added dynamically. -#: config/tc-mips.c:14013 +#: config/tc-mips.c:14019 #, c-format msgid "macro %s not implemented yet" msgstr "" -#: config/tc-mips.c:14546 +#: config/tc-mips.c:14545 msgid "extended operand requested but not required" msgstr "" -#: config/tc-mips.c:14555 +#: config/tc-mips.c:14554 msgid "operand value out of range for instruction" msgstr "" -#: config/tc-mips.c:14654 +#: config/tc-mips.c:14655 #, c-format msgid "relocation %s isn't supported by the current ABI" msgstr "" -#: config/tc-mips.c:14711 +#: config/tc-mips.c:14712 msgid "unclosed '('" msgstr "" -#: config/tc-mips.c:14773 +#: config/tc-mips.c:14774 #, c-format msgid "a different %s was already specified, is now %s" msgstr "" -#: config/tc-mips.c:14940 +#: config/tc-mips.c:14941 msgid "-mmicromips cannot be used with -mips16" msgstr "" -#: config/tc-mips.c:14955 +#: config/tc-mips.c:14956 msgid "-mips16 cannot be used with -micromips" msgstr "" -#: config/tc-mips.c:15124 config/tc-mips.c:15182 +#: config/tc-mips.c:15125 config/tc-mips.c:15183 msgid "no compiled in support for 64 bit object file format" msgstr "" -#: config/tc-mips.c:15189 +#: config/tc-mips.c:15190 #, c-format msgid "invalid abi -mabi=%s" msgstr "" -#: config/tc-mips.c:15229 +#: config/tc-mips.c:15230 #, c-format msgid "invalid NaN setting -mnan=%s" msgstr "" -#: config/tc-mips.c:15263 +#: config/tc-mips.c:15264 msgid "-G not supported in this configuration" msgstr "" -#: config/tc-mips.c:15289 +#: config/tc-mips.c:15290 #, c-format msgid "-%s conflicts with the other architecture options, which imply -%s" msgstr "" -#: config/tc-mips.c:15302 +#: config/tc-mips.c:15303 #, c-format msgid "gas doesn't understand your configure target %s" msgstr "" -#: config/tc-mips.c:15307 +#: config/tc-mips.c:15308 #, c-format msgid "-march=%s is not compatible with the selected ABI" msgstr "" -#: config/tc-mips.c:15802 config/tc-mips.c:16192 config/tc-mips.c:19043 +#: config/tc-mips.c:15820 config/tc-mips.c:16210 config/tc-mips.c:19060 msgid "branch to a symbol in another ISA mode" msgstr "" -#: config/tc-mips.c:15809 config/tc-mips.c:15949 config/tc-mips.c:16202 +#: config/tc-mips.c:15827 config/tc-mips.c:15967 config/tc-mips.c:16220 #, c-format msgid "cannot encode misaligned addend in the relocatable field (0x%lx)" msgstr "" -#: config/tc-mips.c:15846 +#: config/tc-mips.c:15864 msgid "PC-relative reference to a different section" msgstr "" -#: config/tc-mips.c:15918 config/tc-riscv.c:4627 +#: config/tc-mips.c:15936 config/tc-riscv.c:4725 msgid "TLS relocation against a constant" msgstr "" -#: config/tc-mips.c:15938 +#: config/tc-mips.c:15956 msgid "jump to a symbol in another ISA mode" msgstr "" -#: config/tc-mips.c:15941 +#: config/tc-mips.c:15959 msgid "JALX to a symbol in the same ISA mode" msgstr "" -#: config/tc-mips.c:16024 +#: config/tc-mips.c:16042 msgid "unsupported constant in relocation" msgstr "" -#: config/tc-mips.c:16097 +#: config/tc-mips.c:16115 #, c-format msgid "PC-relative access using misaligned symbol (%lx)" msgstr "" -#: config/tc-mips.c:16101 +#: config/tc-mips.c:16119 #, c-format msgid "PC-relative access using misaligned offset (%lx)" msgstr "" -#: config/tc-mips.c:16114 config/tc-mips.c:16133 +#: config/tc-mips.c:16132 config/tc-mips.c:16151 msgid "PC-relative access out of range" msgstr "" -#: config/tc-mips.c:16120 +#: config/tc-mips.c:16138 #, c-format msgid "PC-relative access to misaligned address (%lx)" msgstr "" -#: config/tc-mips.c:16289 +#: config/tc-mips.c:16307 #, c-format msgid "alignment too large, %d assumed" msgstr "" -#: config/tc-mips.c:16292 +#: config/tc-mips.c:16310 msgid "alignment negative, 0 assumed" msgstr "" -#: config/tc-mips.c:16524 +#: config/tc-mips.c:16541 #, c-format msgid "%s: no such section" msgstr "" -#: config/tc-mips.c:16580 +#: config/tc-mips.c:16597 #, c-format msgid ".option pic%d not supported" msgstr "" -#: config/tc-mips.c:16582 +#: config/tc-mips.c:16599 #, c-format msgid ".option pic%d not supported in VxWorks PIC mode" msgstr "" -#: config/tc-mips.c:16594 config/tc-mips.c:16934 +#: config/tc-mips.c:16611 config/tc-mips.c:16951 msgid "-G may not be used with SVR4 PIC code" msgstr "" -#: config/tc-mips.c:16600 +#: config/tc-mips.c:16617 #, c-format msgid "unrecognized option \"%s\"" msgstr "" -#: config/tc-mips.c:16706 +#: config/tc-mips.c:16723 #, c-format msgid "unknown architecture %s" msgstr "" -#: config/tc-mips.c:16721 config/tc-mips.c:16885 +#: config/tc-mips.c:16738 config/tc-mips.c:16902 #, c-format msgid "unknown ISA level %s" msgstr "" -#: config/tc-mips.c:16731 +#: config/tc-mips.c:16748 #, c-format msgid "unknown ISA or architecture %s" msgstr "" -#: config/tc-mips.c:16790 +#: config/tc-mips.c:16807 msgid "`noreorder' must be set before `nomacro'" msgstr "" -#: config/tc-mips.c:16820 +#: config/tc-mips.c:16837 msgid ".set pop with no .set push" msgstr "" -#: config/tc-mips.c:16839 +#: config/tc-mips.c:16856 #, c-format msgid "tried to set unrecognized symbol: %s\n" msgstr "" -#: config/tc-mips.c:16912 +#: config/tc-mips.c:16929 #, c-format msgid ".module used with unrecognized symbol: %s\n" msgstr "" -#: config/tc-mips.c:16918 +#: config/tc-mips.c:16935 msgid ".module is not permitted after generating code" msgstr "" -#: config/tc-mips.c:16978 config/tc-mips.c:17057 config/tc-mips.c:17161 -#: config/tc-mips.c:17191 config/tc-mips.c:17240 +#: config/tc-mips.c:16995 config/tc-mips.c:17074 config/tc-mips.c:17178 +#: config/tc-mips.c:17208 config/tc-mips.c:17257 #, c-format msgid "%s not supported in MIPS16 mode" msgstr "" -#: config/tc-mips.c:16985 +#: config/tc-mips.c:17002 msgid ".cpload not in noreorder section" msgstr "" -#: config/tc-mips.c:17066 config/tc-mips.c:17085 +#: config/tc-mips.c:17083 config/tc-mips.c:17102 msgid "missing argument separator ',' for .cpsetup" msgstr "" -#: config/tc-mips.c:17283 config/tc-riscv.c:5027 +#: config/tc-mips.c:17300 config/tc-riscv.c:5158 #, c-format msgid "unsupported use of %s" msgstr "" -#: config/tc-mips.c:17374 +#: config/tc-mips.c:17391 msgid "unsupported use of .gpword" msgstr "" -#: config/tc-mips.c:17412 +#: config/tc-mips.c:17429 msgid "unsupported use of .gpdword" msgstr "" -#: config/tc-mips.c:17444 +#: config/tc-mips.c:17461 msgid "unsupported use of .ehword" msgstr "" -#: config/tc-mips.c:17531 +#: config/tc-mips.c:17548 msgid "bad .nan directive" msgstr "" -#: config/tc-mips.c:17580 +#: config/tc-mips.c:17597 #, c-format msgid "ignoring attempt to redefine symbol %s" msgstr "" -#: config/tc-mips.c:17595 ecoff.c:3358 +#: config/tc-mips.c:17612 ecoff.c:3328 msgid "bad .weakext directive" msgstr "" -#: config/tc-mips.c:18568 config/tc-mips.c:18845 +#: config/tc-mips.c:18585 config/tc-mips.c:18862 msgid "relaxed out-of-range branch into a jump" msgstr "" -#: config/tc-mips.c:19068 +#: config/tc-mips.c:19085 msgid "extended instruction in a branch delay slot" msgstr "" -#: config/tc-mips.c:19182 config/tc-xtensa.c:1690 config/tc-xtensa.c:1968 +#: config/tc-mips.c:19199 config/tc-xtensa.c:1690 config/tc-xtensa.c:1969 msgid "unsupported relocation" msgstr "" -#: config/tc-mips.c:19690 config/tc-score.c:5624 +#: config/tc-mips.c:19707 config/tc-score.c:5623 msgid "expected simple number" msgstr "" -#: config/tc-mips.c:19718 config/tc-score.c:5651 +#: config/tc-mips.c:19735 config/tc-score.c:5650 msgid "invalid number" msgstr "" -#: config/tc-mips.c:19795 ecoff.c:2987 +#: config/tc-mips.c:19812 ecoff.c:2959 msgid ".end directive without a preceding .ent directive" msgstr "" -#: config/tc-mips.c:19804 +#: config/tc-mips.c:19821 msgid ".end symbol does not match .ent symbol" msgstr "" -#: config/tc-mips.c:19881 +#: config/tc-mips.c:19898 msgid ".ent or .aent not in text section" msgstr "" -#: config/tc-mips.c:19884 config/tc-score.c:5683 +#: config/tc-mips.c:19901 config/tc-score.c:5682 msgid "missing .end" msgstr "" -#: config/tc-mips.c:19967 +#: config/tc-mips.c:19984 msgid ".mask/.fmask outside of .ent" msgstr "" -#: config/tc-mips.c:19974 +#: config/tc-mips.c:19991 msgid "bad .mask/.fmask directive" msgstr "" -#: config/tc-mips.c:20278 +#: config/tc-mips.c:20295 #, c-format msgid "bad value (%s) for %s" msgstr "" -#: config/tc-mips.c:20342 +#: config/tc-mips.c:20359 #, c-format msgid "" "MIPS options:\n" @@ -13626,7 +13652,7 @@ msgid "" "\t\t\timplicitly with the gp register [default 8]\n" msgstr "" -#: config/tc-mips.c:20349 +#: config/tc-mips.c:20366 #, c-format msgid "" "-mips1\t\t\tgenerate MIPS ISA I instructions\n" @@ -13647,7 +13673,7 @@ msgid "" "-march=CPU/-mtune=CPU\tgenerate code/schedule for CPU, where CPU is one of:\n" msgstr "" -#: config/tc-mips.c:20374 +#: config/tc-mips.c:20391 #, c-format msgid "" "-mCPU\t\t\tequivalent to -march=CPU -mtune=CPU. Deprecated.\n" @@ -13655,105 +13681,105 @@ msgid "" "\t\t\tFor -mCPU and -no-mCPU, CPU must be one of:\n" msgstr "" -#: config/tc-mips.c:20387 +#: config/tc-mips.c:20404 #, c-format msgid "" "-mips16\t\t\tgenerate mips16 instructions\n" "-no-mips16\t\tdo not generate mips16 instructions\n" msgstr "" -#: config/tc-mips.c:20390 +#: config/tc-mips.c:20407 #, c-format msgid "" "-mmips16e2\t\tgenerate MIPS16e2 instructions\n" "-mno-mips16e2\t\tdo not generate MIPS16e2 instructions\n" msgstr "" -#: config/tc-mips.c:20393 +#: config/tc-mips.c:20410 #, c-format msgid "" "-mmicromips\t\tgenerate microMIPS instructions\n" "-mno-micromips\t\tdo not generate microMIPS instructions\n" msgstr "" -#: config/tc-mips.c:20396 +#: config/tc-mips.c:20413 #, c-format msgid "" "-msmartmips\t\tgenerate smartmips instructions\n" "-mno-smartmips\t\tdo not generate smartmips instructions\n" msgstr "" -#: config/tc-mips.c:20399 +#: config/tc-mips.c:20416 #, c-format msgid "" "-mdsp\t\t\tgenerate DSP instructions\n" "-mno-dsp\t\tdo not generate DSP instructions\n" msgstr "" -#: config/tc-mips.c:20402 +#: config/tc-mips.c:20419 #, c-format msgid "" "-mdspr2\t\t\tgenerate DSP R2 instructions\n" "-mno-dspr2\t\tdo not generate DSP R2 instructions\n" msgstr "" -#: config/tc-mips.c:20405 +#: config/tc-mips.c:20422 #, c-format msgid "" "-mdspr3\t\t\tgenerate DSP R3 instructions\n" "-mno-dspr3\t\tdo not generate DSP R3 instructions\n" msgstr "" -#: config/tc-mips.c:20408 +#: config/tc-mips.c:20425 #, c-format msgid "" "-mmt\t\t\tgenerate MT instructions\n" "-mno-mt\t\t\tdo not generate MT instructions\n" msgstr "" -#: config/tc-mips.c:20411 +#: config/tc-mips.c:20428 #, c-format msgid "" "-mmcu\t\t\tgenerate MCU instructions\n" "-mno-mcu\t\tdo not generate MCU instructions\n" msgstr "" -#: config/tc-mips.c:20414 +#: config/tc-mips.c:20431 #, c-format msgid "" "-mmsa\t\t\tgenerate MSA instructions\n" "-mno-msa\t\tdo not generate MSA instructions\n" msgstr "" -#: config/tc-mips.c:20417 +#: config/tc-mips.c:20434 #, c-format msgid "" "-mxpa\t\t\tgenerate eXtended Physical Address (XPA) instructions\n" "-mno-xpa\t\tdo not generate eXtended Physical Address (XPA) instructions\n" msgstr "" -#: config/tc-mips.c:20420 +#: config/tc-mips.c:20437 #, c-format msgid "" "-mvirt\t\t\tgenerate Virtualization instructions\n" "-mno-virt\t\tdo not generate Virtualization instructions\n" msgstr "" -#: config/tc-mips.c:20423 +#: config/tc-mips.c:20440 #, c-format msgid "" "-mcrc\t\t\tgenerate CRC instructions\n" "-mno-crc\t\tdo not generate CRC instructions\n" msgstr "" -#: config/tc-mips.c:20426 +#: config/tc-mips.c:20443 #, c-format msgid "" "-mginv\t\t\tgenerate Global INValidate (GINV) instructions\n" "-mno-ginv\t\tdo not generate Global INValidate instructions\n" msgstr "" -#: config/tc-mips.c:20429 +#: config/tc-mips.c:20446 #, c-format msgid "" "-mloongson-mmi\t\tgenerate Loongson MultiMedia extensions Instructions (MMI) " @@ -13762,7 +13788,7 @@ msgid "" "Instructions\n" msgstr "" -#: config/tc-mips.c:20432 +#: config/tc-mips.c:20449 #, c-format msgid "" "-mloongson-cam\t\tgenerate Loongson Content Address Memory (CAM) " @@ -13771,35 +13797,35 @@ msgid "" "Instructions\n" msgstr "" -#: config/tc-mips.c:20435 +#: config/tc-mips.c:20452 #, c-format msgid "" "-mloongson-ext\t\tgenerate Loongson EXTensions (EXT) instructions\n" "-mno-loongson-ext\tdo not generate Loongson EXTensions Instructions\n" msgstr "" -#: config/tc-mips.c:20438 +#: config/tc-mips.c:20455 #, c-format msgid "" "-mloongson-ext2\t\tgenerate Loongson EXTensions R2 (EXT2) instructions\n" "-mno-loongson-ext2\tdo not generate Loongson EXTensions R2 Instructions\n" msgstr "" -#: config/tc-mips.c:20441 +#: config/tc-mips.c:20458 #, c-format msgid "" "-minsn32\t\tonly generate 32-bit microMIPS instructions\n" "-mno-insn32\t\tgenerate all microMIPS instructions\n" msgstr "" -#: config/tc-mips.c:20445 +#: config/tc-mips.c:20462 #, c-format msgid "" "-mfix-loongson3-llsc\twork around Loongson3 LL/SC errata, default\n" "-mno-fix-loongson3-llsc\tdisable work around Loongson3 LL/SC errata\n" msgstr "" -#: config/tc-mips.c:20449 +#: config/tc-mips.c:20466 #, c-format msgid "" "-mfix-loongson3-llsc\twork around Loongson3 LL/SC errata\n" @@ -13807,7 +13833,7 @@ msgid "" "default\n" msgstr "" -#: config/tc-mips.c:20453 +#: config/tc-mips.c:20470 #, c-format msgid "" "-mfix-loongson2f-jump\twork around Loongson2F JUMP instructions\n" @@ -13829,7 +13855,7 @@ msgid "" "--break, --no-trap\tbreak exception on div by 0 and mult overflow\n" msgstr "" -#: config/tc-mips.c:20471 +#: config/tc-mips.c:20488 #, c-format msgid "" "-mhard-float\t\tallow floating-point instructions\n" @@ -13844,7 +13870,7 @@ msgid "" "-mnan=ENCODING\t\tselect an IEEE 754 NaN encoding convention, either of:\n" msgstr "" -#: config/tc-mips.c:20489 +#: config/tc-mips.c:20506 #, c-format msgid "" "-KPIC, -call_shared\tgenerate SVR4 position independent code\n" @@ -13858,26 +13884,26 @@ msgid "" "-mabi=ABI\t\tcreate ABI conformant object file for:\n" msgstr "" -#: config/tc-mips.c:20510 +#: config/tc-mips.c:20527 #, c-format msgid "-32\t\t\tcreate o32 ABI object file%s\n" msgstr "" -#: config/tc-mips.c:20512 config/tc-mips.c:20515 config/tc-mips.c:20518 +#: config/tc-mips.c:20529 config/tc-mips.c:20532 config/tc-mips.c:20535 msgid " (default)" msgstr "" -#: config/tc-mips.c:20513 +#: config/tc-mips.c:20530 #, c-format msgid "-n32\t\t\tcreate n32 ABI object file%s\n" msgstr "" -#: config/tc-mips.c:20516 +#: config/tc-mips.c:20533 #, c-format msgid "-64\t\t\tcreate 64 ABI object file%s\n" msgstr "" -#: config/tc-mips.c:20598 +#: config/tc-mips.c:20615 msgid "missing .end at end of assembly" msgstr "" @@ -13954,8 +13980,8 @@ msgstr "" msgid "specified location wasn't TETRA-aligned" msgstr "" -#: config/tc-mmix.c:965 config/tc-mmix.c:980 config/tc-mmix.c:4215 -#: config/tc-mmix.c:4231 +#: config/tc-mmix.c:965 config/tc-mmix.c:980 config/tc-mmix.c:4201 +#: config/tc-mmix.c:4217 msgid "unaligned data at an absolute location is not supported" msgstr "" @@ -14018,107 +14044,107 @@ msgstr "" #. The BFD_RELOC_MMIX_LOCAL-specific message is supposed to be #. user-friendly, though a little bit non-substantial. -#: config/tc-mmix.c:2651 +#: config/tc-mmix.c:2650 msgid "directive LOCAL must be placed in code or data" msgstr "" -#: config/tc-mmix.c:2652 +#: config/tc-mmix.c:2651 msgid "internal confusion: relocation in a section without contents" msgstr "" -#: config/tc-mmix.c:2766 +#: config/tc-mmix.c:2765 msgid "internal: BFD_RELOC_MMIX_BASE_PLUS_OFFSET not resolved to section" msgstr "" -#: config/tc-mmix.c:2814 +#: config/tc-mmix.c:2813 msgid "no suitable GREG definition for operands" msgstr "" -#: config/tc-mmix.c:2873 +#: config/tc-mmix.c:2872 msgid "operands were not reducible at assembly-time" msgstr "" -#: config/tc-mmix.c:2899 +#: config/tc-mmix.c:2898 #, c-format msgid "cannot generate relocation type for symbol %s, code %s" msgstr "" -#: config/tc-mmix.c:2919 +#: config/tc-mmix.c:2918 #, c-format msgid "internal: unhandled label %s" msgstr "" -#: config/tc-mmix.c:2948 +#: config/tc-mmix.c:2951 msgid "[0-9]H labels may not appear alone on a line" msgstr "" -#: config/tc-mmix.c:2956 +#: config/tc-mmix.c:2959 msgid "[0-9]H labels do not mix with dot-pseudos" msgstr "" -#: config/tc-mmix.c:3044 +#: config/tc-mmix.c:3045 msgid "invalid characters in input" msgstr "" -#: config/tc-mmix.c:3150 +#: config/tc-mmix.c:3139 msgid "empty label field for IS" msgstr "" -#: config/tc-mmix.c:3476 +#: config/tc-mmix.c:3464 #, c-format msgid "internal: unexpected relax type %d:%d" msgstr "" -#: config/tc-mmix.c:3500 +#: config/tc-mmix.c:3488 msgid "BSPEC without ESPEC." msgstr "" -#: config/tc-mmix.c:3565 +#: config/tc-mmix.c:3553 msgid "LOC to section unknown or indeterminable at first pass" msgstr "" -#: config/tc-mmix.c:3751 +#: config/tc-mmix.c:3737 msgid "internal: GREG expression not resolved to section" msgstr "" -#: config/tc-mmix.c:3800 +#: config/tc-mmix.c:3786 msgid "register section has contents\n" msgstr "" -#: config/tc-mmix.c:3926 +#: config/tc-mmix.c:3912 msgid "section change from within a BSPEC/ESPEC pair is not supported" msgstr "" -#: config/tc-mmix.c:3947 +#: config/tc-mmix.c:3933 msgid "directive LOC from within a BSPEC/ESPEC pair is not supported" msgstr "" -#: config/tc-mmix.c:3957 +#: config/tc-mmix.c:3943 msgid "invalid LOC expression" msgstr "" -#: config/tc-mmix.c:4002 config/tc-mmix.c:4029 +#: config/tc-mmix.c:3988 config/tc-mmix.c:4015 msgid "LOC expression stepping backwards is not supported" msgstr "" #. We will only get here in rare cases involving #NO_APP, #. where the unterminated string is not recognized by the #. preformatting pass. -#: config/tc-mmix.c:4138 config/tc-mmix.c:4296 config/tc-z80.c:3202 +#: config/tc-mmix.c:4124 config/tc-mmix.c:4282 config/tc-z80.c:3202 msgid "unterminated string" msgstr "" -#: config/tc-mmix.c:4155 +#: config/tc-mmix.c:4141 msgid "BYTE expression not a pure number" msgstr "" #. Note that mmixal does not allow negative numbers in #. BYTE sequences, so neither should we. -#: config/tc-mmix.c:4164 +#: config/tc-mmix.c:4150 msgid "BYTE expression not in the range 0..255" msgstr "" -#: config/tc-mmix.c:4213 config/tc-mmix.c:4229 +#: config/tc-mmix.c:4199 config/tc-mmix.c:4215 msgid "data item with alignment larger than location" msgstr "" @@ -14135,15 +14161,15 @@ msgid "" "none yet\n" msgstr "" -#: config/tc-mn10200.c:890 config/tc-mn10300.c:1253 config/tc-s390.c:1928 -#: config/tc-v850.c:2320 +#: config/tc-mn10200.c:886 config/tc-mn10300.c:1253 config/tc-s390.c:1949 +#: config/tc-v850.c:2297 #, c-format msgid "Unrecognized opcode: `%s'" msgstr "" #. xgettext:c-format. -#: config/tc-mn10200.c:1134 config/tc-mn10300.c:1822 config/tc-ppc.c:4003 -#: config/tc-s390.c:1837 config/tc-v850.c:3036 +#: config/tc-mn10200.c:1130 config/tc-mn10300.c:1822 config/tc-ppc.c:4002 +#: config/tc-s390.c:1859 config/tc-v850.c:3013 #, c-format msgid "junk at end of line: `%s'" msgstr "" @@ -14191,18 +14217,18 @@ msgstr "" msgid "expecting indirect register `($rX)'" msgstr "" -#: config/tc-moxie.c:557 config/tc-pj.c:313 +#: config/tc-moxie.c:554 config/tc-pj.c:313 msgid "Something forgot to clean up\n" msgstr "" -#: config/tc-moxie.c:641 +#: config/tc-moxie.c:638 #, c-format msgid "" " -EB assemble for a big endian system (default)\n" " -EL assemble for a little endian system\n" msgstr "" -#: config/tc-moxie.c:701 +#: config/tc-moxie.c:698 msgid "pcrel too far BFD_RELOC_MOXIE_10" msgstr "" @@ -14472,9 +14498,9 @@ msgstr "" msgid "r2 should not be used in indexed addressing mode" msgstr "" -#: config/tc-msp430.c:2293 config/tc-msp430.c:2368 config/tc-msp430.c:3514 -#: config/tc-msp430.c:3582 config/tc-msp430.c:3699 config/tc-msp430.c:4121 -#: config/tc-msp430.c:4220 config/tc-msp430.c:4271 +#: config/tc-msp430.c:2293 config/tc-msp430.c:2368 config/tc-msp430.c:3512 +#: config/tc-msp430.c:3580 config/tc-msp430.c:3703 config/tc-msp430.c:4125 +#: config/tc-msp430.c:4224 config/tc-msp430.c:4275 #, c-format msgid "extra characters '%s' at end of operand '%s'" msgstr "" @@ -14498,8 +14524,8 @@ msgid "this addressing mode is not applicable for destination operand" msgstr "" #: config/tc-msp430.c:2444 config/tc-msp430.c:2579 config/tc-msp430.c:2616 -#: config/tc-msp430.c:2646 config/tc-msp430.c:3450 config/tc-msp430.c:3533 -#: config/tc-msp430.c:3621 +#: config/tc-msp430.c:2646 config/tc-msp430.c:3448 config/tc-msp430.c:3531 +#: config/tc-msp430.c:3625 #, c-format msgid "expected register as second argument of %s" msgstr "" @@ -14524,188 +14550,188 @@ msgstr "" msgid "constant generator source register found in %s" msgstr "" -#: config/tc-msp430.c:2840 +#: config/tc-msp430.c:2839 msgid "no size modifier after period, .w assumed" msgstr "" -#: config/tc-msp430.c:2844 +#: config/tc-msp430.c:2842 #, c-format msgid "unrecognised instruction size modifier .%c" msgstr "" -#: config/tc-msp430.c:2858 +#: config/tc-msp430.c:2856 #, c-format msgid "junk found after instruction: %s.%s" msgstr "" -#: config/tc-msp430.c:2878 +#: config/tc-msp430.c:2876 #, c-format msgid "instruction %s.a does not exist" msgstr "" -#: config/tc-msp430.c:2892 +#: config/tc-msp430.c:2890 #, c-format msgid "instruction %s requires %d operand" msgid_plural "instruction %s requires %d operands" msgstr[0] "" msgstr[1] "" -#: config/tc-msp430.c:2910 +#: config/tc-msp430.c:2908 #, c-format msgid "instruction %s requires MSP430X mcu" msgstr "" -#: config/tc-msp430.c:2930 +#: config/tc-msp430.c:2928 #, c-format msgid "unable to repeat %s insn" msgstr "" -#: config/tc-msp430.c:3002 +#: config/tc-msp430.c:3000 msgid "CPU12: CMP/BIT with PC destination ignores next instruction" msgstr "" -#: config/tc-msp430.c:3010 +#: config/tc-msp430.c:3008 msgid "CPU19: Instruction setting CPUOFF must be followed by a NOP" msgstr "" -#: config/tc-msp430.c:3017 +#: config/tc-msp430.c:3015 msgid "internal error: unknown nop check state" msgstr "" -#: config/tc-msp430.c:3071 config/tc-msp430.c:3073 config/tc-msp430.c:3782 -#: config/tc-msp430.c:3784 +#: config/tc-msp430.c:3069 config/tc-msp430.c:3071 config/tc-msp430.c:3786 +#: config/tc-msp430.c:3788 msgid "CPU11: PC is destination of SR altering instruction" msgstr "" -#: config/tc-msp430.c:3088 config/tc-msp430.c:3090 config/tc-msp430.c:3195 -#: config/tc-msp430.c:3197 config/tc-msp430.c:3799 config/tc-msp430.c:3801 -#: config/tc-msp430.c:4020 config/tc-msp430.c:4022 +#: config/tc-msp430.c:3086 config/tc-msp430.c:3088 config/tc-msp430.c:3193 +#: config/tc-msp430.c:3195 config/tc-msp430.c:3803 config/tc-msp430.c:3805 +#: config/tc-msp430.c:4024 config/tc-msp430.c:4026 msgid "CPU13: SR is destination of SR altering instruction" msgstr "" -#: config/tc-msp430.c:3106 config/tc-msp430.c:3207 config/tc-msp430.c:3885 -#: config/tc-msp430.c:4054 +#: config/tc-msp430.c:3104 config/tc-msp430.c:3205 config/tc-msp430.c:3889 +#: config/tc-msp430.c:4058 msgid "repeat instruction used with non-register mode instruction" msgstr "" -#: config/tc-msp430.c:3181 config/tc-msp430.c:3540 config/tc-msp430.c:4010 +#: config/tc-msp430.c:3179 config/tc-msp430.c:3538 config/tc-msp430.c:4014 #, c-format msgid "%s: attempt to rotate the PC register" msgstr "" -#: config/tc-msp430.c:3432 config/tc-msp430.c:3508 +#: config/tc-msp430.c:3430 config/tc-msp430.c:3506 #, c-format msgid "expected #n as first argument of %s" msgstr "" -#: config/tc-msp430.c:3438 +#: config/tc-msp430.c:3436 #, c-format msgid "extra characters '%s' at end of constant expression '%s'" msgstr "" -#: config/tc-msp430.c:3443 config/tc-msp430.c:3519 +#: config/tc-msp430.c:3441 config/tc-msp430.c:3517 #, c-format msgid "expected constant expression as first argument of %s" msgstr "" -#: config/tc-msp430.c:3469 +#: config/tc-msp430.c:3467 msgid "Too many registers popped" msgstr "" -#: config/tc-msp430.c:3479 +#: config/tc-msp430.c:3477 msgid "Cannot use POPM to restore the SR register" msgstr "" -#: config/tc-msp430.c:3499 config/tc-msp430.c:3568 +#: config/tc-msp430.c:3497 config/tc-msp430.c:3566 #, c-format msgid "repeat count cannot be used with %s" msgstr "" -#: config/tc-msp430.c:3526 +#: config/tc-msp430.c:3524 #, c-format msgid "expected first argument of %s to be in the range 1-4" msgstr "" -#: config/tc-msp430.c:3591 +#: config/tc-msp430.c:3595 #, c-format msgid "expected value of first argument of %s to fit into 20-bits" msgstr "" -#: config/tc-msp430.c:3610 +#: config/tc-msp430.c:3614 #, c-format msgid "expected register name or constant as first argument of %s" msgstr "" -#: config/tc-msp430.c:3704 +#: config/tc-msp430.c:3708 msgid "expected constant value as argument to RPT" msgstr "" -#: config/tc-msp430.c:3710 +#: config/tc-msp430.c:3714 msgid "expected constant in the range 2..16" msgstr "" -#: config/tc-msp430.c:3725 +#: config/tc-msp430.c:3729 msgid "PC used as an argument to RPT" msgstr "" -#: config/tc-msp430.c:3731 +#: config/tc-msp430.c:3735 msgid "expected constant or register name as argument to RPT insn" msgstr "" -#: config/tc-msp430.c:3738 +#: config/tc-msp430.c:3742 msgid "Illegal emulated instruction" msgstr "" -#: config/tc-msp430.c:4039 +#: config/tc-msp430.c:4043 #, c-format msgid "%s instruction does not accept a .b suffix" msgstr "" -#: config/tc-msp430.c:4152 +#: config/tc-msp430.c:4156 #, c-format msgid "Even number required. Rounded to %d" msgstr "" -#: config/tc-msp430.c:4163 +#: config/tc-msp430.c:4167 #, c-format msgid "Wrong displacement %d" msgstr "" -#: config/tc-msp430.c:4185 +#: config/tc-msp430.c:4189 msgid "instruction requires label sans '$'" msgstr "" -#: config/tc-msp430.c:4189 +#: config/tc-msp430.c:4193 msgid "instruction requires label or value in range -511:512" msgstr "" -#: config/tc-msp430.c:4195 config/tc-msp430.c:4249 config/tc-msp430.c:4297 +#: config/tc-msp430.c:4199 config/tc-msp430.c:4253 config/tc-msp430.c:4301 msgid "instruction requires label" msgstr "" -#: config/tc-msp430.c:4203 config/tc-msp430.c:4255 +#: config/tc-msp430.c:4207 config/tc-msp430.c:4259 msgid "polymorphs are not enabled. Use -mP option to enable." msgstr "" -#: config/tc-msp430.c:4301 +#: config/tc-msp430.c:4305 msgid "Illegal instruction or not implemented opcode." msgstr "" -#: config/tc-msp430.c:4355 +#: config/tc-msp430.c:4359 msgid "can't find opcode" msgstr "" -#: config/tc-msp430.c:4868 +#: config/tc-msp430.c:4872 #, c-format msgid "internal inconsistency problem in %s: insn %04lx" msgstr "" -#: config/tc-msp430.c:4910 config/tc-msp430.c:4942 +#: config/tc-msp430.c:4914 config/tc-msp430.c:4946 #, c-format msgid "internal inconsistency problem in %s: ext. insn %04lx" msgstr "" -#: config/tc-msp430.c:4954 +#: config/tc-msp430.c:4958 #, c-format msgid "internal inconsistency problem in %s: %lx" msgstr "" @@ -14950,173 +14976,173 @@ msgstr "" msgid "unknown ABI version`%s'\n" msgstr "" -#: config/tc-nds32.c:4339 +#: config/tc-nds32.c:4337 #, c-format msgid "Different arguments of .vec_size are found, previous %d, current %d" msgstr "" -#: config/tc-nds32.c:4344 +#: config/tc-nds32.c:4342 #, c-format msgid "Argument of .vec_size is expected 4 or 16, actual: %d." msgstr "" -#: config/tc-nds32.c:4348 +#: config/tc-nds32.c:4346 msgid "Argument of .vec_size is not a constant." msgstr "" -#: config/tc-nds32.c:4934 +#: config/tc-nds32.c:4929 #, c-format msgid "Don't know how to handle this field. %s" msgstr "" -#: config/tc-nds32.c:5299 +#: config/tc-nds32.c:5294 #, c-format msgid "instruction %s requires enabling performance extension" msgstr "" -#: config/tc-nds32.c:5311 +#: config/tc-nds32.c:5306 #, c-format msgid "instruction %s requires enabling performance extension II" msgstr "" -#: config/tc-nds32.c:5323 +#: config/tc-nds32.c:5318 #, c-format msgid "instruction %s requires enabling AUDIO extension" msgstr "" -#: config/tc-nds32.c:5335 +#: config/tc-nds32.c:5330 #, c-format msgid "instruction %s requires enabling STRING extension" msgstr "" -#: config/tc-nds32.c:5349 +#: config/tc-nds32.c:5344 #, c-format msgid "instruction %s requires enabling DIV & DX_REGS extension" msgstr "" -#: config/tc-nds32.c:5364 +#: config/tc-nds32.c:5359 #, c-format msgid "instruction %s requires enabling FPU extension" msgstr "" -#: config/tc-nds32.c:5376 +#: config/tc-nds32.c:5371 #, c-format msgid "instruction %s requires enabling FPU_SP extension" msgstr "" -#: config/tc-nds32.c:5388 +#: config/tc-nds32.c:5383 #, c-format msgid "instruction %s requires enabling FPU_DP extension" msgstr "" -#: config/tc-nds32.c:5399 config/tc-nds32.c:5407 +#: config/tc-nds32.c:5394 config/tc-nds32.c:5402 #, c-format msgid "instruction %s requires enabling FPU_MAC extension" msgstr "" -#: config/tc-nds32.c:5415 +#: config/tc-nds32.c:5410 #, c-format msgid "instruction %s requires enabling DX_REGS extension" msgstr "" -#: config/tc-nds32.c:5431 +#: config/tc-nds32.c:5426 #, c-format msgid "instruction %s requires enabling dsp extension" msgstr "" -#: config/tc-nds32.c:5443 +#: config/tc-nds32.c:5438 #, c-format msgid "instruction %s requires enabling zol extension" msgstr "" -#: config/tc-nds32.c:5448 +#: config/tc-nds32.c:5443 #, c-format msgid "internal error: unknown instruction attribute: 0x%08x" msgstr "" -#: config/tc-nds32.c:5741 +#: config/tc-nds32.c:5736 #, c-format msgid "relax hint unrecognized instruction: line %d." msgstr "" -#: config/tc-nds32.c:5796 +#: config/tc-nds32.c:5791 #, c-format msgid "Can not find match relax hint. Line: %d" msgstr "" -#: config/tc-nds32.c:5994 +#: config/tc-nds32.c:5988 msgid "Internal error: .relax_hint KEY is not a number!" msgstr "" -#: config/tc-nds32.c:6022 +#: config/tc-nds32.c:6016 #, c-format msgid "Internal error: Relax hint (%s) error. %s: %s (%x)" msgstr "" -#: config/tc-nds32.c:6099 +#: config/tc-nds32.c:6093 #, c-format msgid "Internal error: Range error. %s" msgstr "" -#: config/tc-nds32.c:6160 +#: config/tc-nds32.c:6154 msgid "Multiple BFD_RELOC_NDS32_PTR_RESOLVED patterns are not supported yet!" msgstr "" -#: config/tc-nds32.c:6308 +#: config/tc-nds32.c:6302 #, c-format msgid "Not support instruction %s in verbatim." msgstr "" -#: config/tc-nds32.c:6315 +#: config/tc-nds32.c:6309 #, c-format msgid "16-bit instruction is disabled: %s." msgstr "" -#: config/tc-nds32.c:6342 +#: config/tc-nds32.c:6336 #, c-format msgid "Instruction %s not supported in the baseline." msgstr "" -#: config/tc-nds32.c:6409 +#: config/tc-nds32.c:6403 #, c-format msgid "Unrecognized opcode, %s." msgstr "" -#: config/tc-nds32.c:6412 +#: config/tc-nds32.c:6406 #, c-format msgid "Incorrect syntax, %s." msgstr "" -#: config/tc-nds32.c:6415 +#: config/tc-nds32.c:6409 #, c-format msgid "Unrecognized operand/register, %s." msgstr "" -#: config/tc-nds32.c:6418 +#: config/tc-nds32.c:6412 #, c-format msgid "Operand out of range, %s." msgstr "" -#: config/tc-nds32.c:6421 +#: config/tc-nds32.c:6415 #, c-format msgid "Prohibited register used for reduced-register, %s." msgstr "" -#: config/tc-nds32.c:6424 +#: config/tc-nds32.c:6418 #, c-format msgid "Junk at end of line, %s." msgstr "" -#: config/tc-nds32.c:7122 +#: config/tc-nds32.c:7116 msgid "Addend to unresolved symbol is not on word boundary." msgstr "" #. Should never here. -#: config/tc-nds32.c:7617 +#: config/tc-nds32.c:7609 msgid "Used FPU instructions requires enabling FPU extension" msgstr "" -#: config/tc-nds32.c:7813 +#: config/tc-nds32.c:7805 #, c-format msgid "Internal error: Unknown fixup type %d (`%s')" msgstr "" @@ -15181,106 +15207,106 @@ msgstr "" msgid "Bad opcode-table-option, check in file ns32k-opcode.h" msgstr "" -#: config/tc-ns32k.c:1108 +#: config/tc-ns32k.c:1110 msgid "No such opcode" msgstr "" -#: config/tc-ns32k.c:1183 +#: config/tc-ns32k.c:1185 msgid "Bad suffix, defaulting to d" msgstr "" -#: config/tc-ns32k.c:1210 +#: config/tc-ns32k.c:1212 msgid "Too many operands passed to instruction" msgstr "" #. Check error in default. -#: config/tc-ns32k.c:1222 +#: config/tc-ns32k.c:1224 msgid "Wrong numbers of operands in default, check ns32k-opcodes.h" msgstr "" -#: config/tc-ns32k.c:1225 +#: config/tc-ns32k.c:1227 msgid "Wrong number of operands" msgstr "" -#: config/tc-ns32k.c:1298 +#: config/tc-ns32k.c:1300 #, c-format msgid "Can not do %d byte pc-relative relocation for storage type %d" msgstr "" -#: config/tc-ns32k.c:1301 +#: config/tc-ns32k.c:1303 #, c-format msgid "Can not do %d byte relocation for storage type %d" msgstr "" -#: config/tc-ns32k.c:1393 +#: config/tc-ns32k.c:1395 #, c-format msgid "value of %ld out of byte displacement range." msgstr "" -#: config/tc-ns32k.c:1403 +#: config/tc-ns32k.c:1405 #, c-format msgid "value of %ld out of word displacement range." msgstr "" -#: config/tc-ns32k.c:1418 +#: config/tc-ns32k.c:1420 #, c-format msgid "value of %ld out of double word displacement range." msgstr "" -#: config/tc-ns32k.c:1439 +#: config/tc-ns32k.c:1441 #, c-format msgid "Internal logic error. Line %d, file: \"%s\"" msgstr "" -#: config/tc-ns32k.c:1487 +#: config/tc-ns32k.c:1489 #, c-format msgid "Internal logic error. line %d, file \"%s\"" msgstr "" -#: config/tc-ns32k.c:1588 +#: config/tc-ns32k.c:1590 msgid "Bit field out of range" msgstr "" -#: config/tc-ns32k.c:1688 +#: config/tc-ns32k.c:1690 msgid "iif convert internal pcrel/binary" msgstr "" -#: config/tc-ns32k.c:1705 +#: config/tc-ns32k.c:1707 msgid "Bignum too big for long" msgstr "" -#: config/tc-ns32k.c:1782 +#: config/tc-ns32k.c:1784 msgid "iif convert internal pcrel/pointer" msgstr "" -#: config/tc-ns32k.c:1787 +#: config/tc-ns32k.c:1789 msgid "Internal logic error in iif.iifP[n].type" msgstr "" #. We can't relax this case. -#: config/tc-ns32k.c:1823 +#: config/tc-ns32k.c:1825 msgid "Can't relax difference" msgstr "" -#: config/tc-ns32k.c:1864 +#: config/tc-ns32k.c:1866 msgid "Displacement too large for :d" msgstr "" -#: config/tc-ns32k.c:1877 +#: config/tc-ns32k.c:1879 msgid "Internal logic error in iif.iifP[].type" msgstr "" -#: config/tc-ns32k.c:2141 +#: config/tc-ns32k.c:2143 #, c-format msgid "invalid architecture option -m%s, ignored" msgstr "" -#: config/tc-ns32k.c:2154 +#: config/tc-ns32k.c:2156 #, c-format msgid "invalid default displacement size \"%s\". Defaulting to %d." msgstr "" -#: config/tc-ns32k.c:2170 +#: config/tc-ns32k.c:2172 #, c-format msgid "" "NS32K options:\n" @@ -15288,7 +15314,7 @@ msgid "" "--disp-size-default=<1|2|4>\n" msgstr "" -#: config/tc-ns32k.c:2246 +#: config/tc-ns32k.c:2248 #, c-format msgid "Cannot find relocation type for symbol %s, code %d" msgstr "" @@ -15362,8 +15388,8 @@ msgstr "" msgid "6-bit displacement out of range" msgstr "" -#: config/tc-pdp11.c:1015 config/tc-tilegx.c:1212 config/tc-tilepro.c:1095 -#: config/tc-vax.c:1945 +#: config/tc-pdp11.c:1015 config/tc-tilegx.c:1204 config/tc-tilepro.c:1091 +#: config/tc-vax.c:1943 msgid "Too many operands" msgstr "" @@ -15392,12 +15418,12 @@ msgid "" "-big\t\t\tgenerate big endian code\n" msgstr "" -#: config/tc-pj.c:380 config/tc-sh.c:3580 config/tc-sh.c:3587 -#: config/tc-sh.c:3594 config/tc-sh.c:3601 +#: config/tc-pj.c:380 config/tc-sh.c:3577 config/tc-sh.c:3584 +#: config/tc-sh.c:3591 config/tc-sh.c:3598 msgid "pcrel too far" msgstr "" -#: config/tc-ppc.c:964 config/tc-ppc.c:972 config/tc-ppc.c:3497 +#: config/tc-ppc.c:964 config/tc-ppc.c:972 config/tc-ppc.c:3496 msgid "invalid register expression" msgstr "" @@ -15414,7 +15440,7 @@ msgstr "" msgid "%s unsupported" msgstr "" -#: config/tc-ppc.c:1268 config/tc-s390.c:493 config/tc-s390.c:500 +#: config/tc-ppc.c:1268 config/tc-s390.c:506 config/tc-s390.c:513 #, c-format msgid "invalid switch -m%s" msgstr "" @@ -15809,7 +15835,7 @@ msgstr "" msgid "symbol+offset@%s not supported" msgstr "" -#: config/tc-ppc.c:2358 config/tc-ppc.c:4223 config/tc-ppc.c:7693 +#: config/tc-ppc.c:2358 config/tc-ppc.c:4222 config/tc-ppc.c:7669 msgid "data in executable section" msgstr "" @@ -15831,253 +15857,253 @@ msgstr "" msgid "common alignment not a power of 2" msgstr "" -#: config/tc-ppc.c:2500 +#: config/tc-ppc.c:2499 #, c-format msgid "expected comma after name `%s' in .localentry directive" msgstr "" -#: config/tc-ppc.c:2510 +#: config/tc-ppc.c:2509 msgid "missing expression in .localentry directive" msgstr "" -#: config/tc-ppc.c:2531 +#: config/tc-ppc.c:2530 #, c-format msgid ".localentry expression for `%s' is not a valid power of 2" msgstr "" -#: config/tc-ppc.c:2548 +#: config/tc-ppc.c:2547 #, c-format msgid ".localentry expression for `%s' does not evaluate to a constant" msgstr "" -#: config/tc-ppc.c:2563 +#: config/tc-ppc.c:2562 msgid "missing expression in .abiversion directive" msgstr "" -#: config/tc-ppc.c:2572 +#: config/tc-ppc.c:2571 msgid ".abiversion expression does not evaluate to a constant" msgstr "" -#: config/tc-ppc.c:2652 +#: config/tc-ppc.c:2651 msgid "relocation cannot be done when using -mrelocatable" msgstr "" -#: config/tc-ppc.c:2698 +#: config/tc-ppc.c:2697 msgid "TOC section size exceeds 64k" msgstr "" -#: config/tc-ppc.c:3258 +#: config/tc-ppc.c:3257 #, c-format msgid "%s howto doesn't match size/pcrel in gas" msgstr "" -#: config/tc-ppc.c:3337 +#: config/tc-ppc.c:3336 #, c-format msgid "unrecognized opcode: `%s'" msgstr "" #. lmw, stmw, lswi, lswx, stswi, stswx -#: config/tc-ppc.c:3348 +#: config/tc-ppc.c:3347 #, c-format msgid "`%s' invalid when little-endian" msgstr "" -#: config/tc-ppc.c:3690 +#: config/tc-ppc.c:3689 #, c-format msgid "@tls may not be used with \"%s\" operands" msgstr "" -#: config/tc-ppc.c:3693 +#: config/tc-ppc.c:3692 msgid "@tls may only be used in last operand" msgstr "" -#: config/tc-ppc.c:3731 config/tc-ppc.c:3741 config/tc-ppc.c:3751 -#: config/tc-ppc.c:3766 +#: config/tc-ppc.c:3730 config/tc-ppc.c:3740 config/tc-ppc.c:3750 +#: config/tc-ppc.c:3765 #, c-format msgid "%s unsupported on this instruction" msgstr "" -#: config/tc-ppc.c:3813 +#: config/tc-ppc.c:3812 #, c-format msgid "assuming %s on symbol" msgstr "" -#: config/tc-ppc.c:3936 +#: config/tc-ppc.c:3935 msgid "unsupported relocation for DS offset field" msgstr "" -#: config/tc-ppc.c:3989 +#: config/tc-ppc.c:3988 #, c-format msgid "syntax error; found `%c', expected `%c'" msgstr "" -#: config/tc-ppc.c:3994 +#: config/tc-ppc.c:3993 #, c-format msgid "syntax error; end of line, expected `%c'" msgstr "" -#: config/tc-ppc.c:4059 config/tc-ppc.c:6863 +#: config/tc-ppc.c:4058 config/tc-ppc.c:6852 #, c-format msgid "instruction address is not a multiple of %d" msgstr "" -#: config/tc-ppc.c:4180 +#: config/tc-ppc.c:4179 msgid "bad .section directive: want a,e,v,w,x,M,S,G,T in string" msgstr "" -#: config/tc-ppc.c:4330 +#: config/tc-ppc.c:4329 msgid "missing size" msgstr "" -#: config/tc-ppc.c:4339 +#: config/tc-ppc.c:4338 msgid "negative size" msgstr "" -#: config/tc-ppc.c:4366 +#: config/tc-ppc.c:4365 msgid "Unknown visibility field in .comm" msgstr "" -#: config/tc-ppc.c:4384 +#: config/tc-ppc.c:4383 msgid "missing real symbol name" msgstr "" -#: config/tc-ppc.c:4423 +#: config/tc-ppc.c:4422 msgid "attempt to redefine symbol" msgstr "" -#: config/tc-ppc.c:4732 +#: config/tc-ppc.c:4730 #, c-format msgid "no known dwarf XCOFF section for flag 0x%08x\n" msgstr "" -#: config/tc-ppc.c:4745 +#: config/tc-ppc.c:4743 #, c-format msgid "label %s was not defined in this dwarf section" msgstr "" -#: config/tc-ppc.c:4859 +#: config/tc-ppc.c:4857 msgid "the XCOFF file format does not support arbitrary sections" msgstr "" -#: config/tc-ppc.c:4897 +#: config/tc-ppc.c:4895 msgid "Unknown visibility field in .extern" msgstr "" -#: config/tc-ppc.c:4934 +#: config/tc-ppc.c:4932 msgid "Unknown visibility field in .globl" msgstr "" -#: config/tc-ppc.c:4971 +#: config/tc-ppc.c:4969 msgid "Unknown visibility field in .weak" msgstr "" -#: config/tc-ppc.c:5022 +#: config/tc-ppc.c:5020 msgid ".ref outside .csect" msgstr "" -#: config/tc-ppc.c:5043 config/tc-ppc.c:5303 +#: config/tc-ppc.c:5041 config/tc-ppc.c:5301 msgid "missing symbol name" msgstr "" -#: config/tc-ppc.c:5073 +#: config/tc-ppc.c:5071 msgid "missing rename string" msgstr "" -#: config/tc-ppc.c:5103 config/tc-ppc.c:5705 +#: config/tc-ppc.c:5101 config/tc-ppc.c:5702 msgid "missing value" msgstr "" -#: config/tc-ppc.c:5121 +#: config/tc-ppc.c:5119 msgid "illegal .stabx expression; zero assumed" msgstr "" -#: config/tc-ppc.c:5153 +#: config/tc-ppc.c:5151 msgid "missing class" msgstr "" -#: config/tc-ppc.c:5162 +#: config/tc-ppc.c:5160 msgid "missing type" msgstr "" -#: config/tc-ppc.c:5189 +#: config/tc-ppc.c:5187 msgid ".stabx of storage class stsym must be within .bs/.es" msgstr "" -#: config/tc-ppc.c:5493 +#: config/tc-ppc.c:5490 msgid "nested .bs blocks" msgstr "" -#: config/tc-ppc.c:5524 +#: config/tc-ppc.c:5521 msgid ".es without preceding .bs" msgstr "" -#: config/tc-ppc.c:5697 +#: config/tc-ppc.c:5694 msgid "non-constant byte count" msgstr "" -#: config/tc-ppc.c:5772 +#: config/tc-ppc.c:5769 msgid ".tc not in .toc section" msgstr "" -#: config/tc-ppc.c:5790 +#: config/tc-ppc.c:5787 msgid ".tc with no label" msgstr "" -#: config/tc-ppc.c:5818 +#: config/tc-ppc.c:5815 #, c-format msgid ".tc with storage class %d not yet supported" msgstr "" -#: config/tc-ppc.c:5887 config/tc-s390.c:2187 +#: config/tc-ppc.c:5884 config/tc-s390.c:2196 msgid ".machine stack overflow" msgstr "" -#: config/tc-ppc.c:5894 config/tc-s390.c:2198 +#: config/tc-ppc.c:5891 config/tc-s390.c:2207 msgid ".machine stack underflow" msgstr "" -#: config/tc-ppc.c:5936 config/tc-s390.c:2210 +#: config/tc-ppc.c:5933 config/tc-s390.c:2219 #, c-format msgid "invalid machine `%s'" msgstr "" -#: config/tc-ppc.c:5981 +#: config/tc-ppc.c:5978 msgid "bad symbol suffix" msgstr "" -#: config/tc-ppc.c:6080 +#: config/tc-ppc.c:6077 msgid "unrecognized symbol suffix" msgstr "" -#: config/tc-ppc.c:6168 +#: config/tc-ppc.c:6161 msgid ".ef with no preceding .function" msgstr "" -#: config/tc-ppc.c:6307 +#: config/tc-ppc.c:6296 #, c-format msgid "warning: symbol %s has no csect" msgstr "" -#: config/tc-ppc.c:6639 +#: config/tc-ppc.c:6628 msgid "symbol in .toc does not match any .tc" msgstr "" -#: config/tc-ppc.c:7395 +#: config/tc-ppc.c:7371 #, c-format msgid "%s unsupported as instruction fixup" msgstr "" -#: config/tc-ppc.c:7494 +#: config/tc-ppc.c:7470 #, c-format msgid "unsupported relocation against %s" msgstr "" -#: config/tc-ppc.c:7656 +#: config/tc-ppc.c:7632 #, c-format msgid "R_TLSML relocation doesn't target a TOC entry named \"_$TLSML\": %s" msgstr "" -#: config/tc-ppc.c:7676 +#: config/tc-ppc.c:7652 #, c-format msgid "Gas failure, reloc value %d\n" msgstr "" @@ -16185,50 +16211,50 @@ msgstr "" msgid "value %lu is too large for a byte operand" msgstr "" -#: config/tc-pru.c:1115 +#: config/tc-pru.c:1114 #, c-format msgid "loop count constant %ld is out of range [1..%d]" msgstr "" -#: config/tc-pru.c:1215 config/tc-pru.c:1241 +#: config/tc-pru.c:1214 config/tc-pru.c:1240 #, c-format msgid "byte count constant %ld is out of range [1..%d]" msgstr "" -#: config/tc-pru.c:1222 config/tc-pru.c:1248 +#: config/tc-pru.c:1221 config/tc-pru.c:1247 msgid "only r0 can be used as byte count register" msgstr "" -#: config/tc-pru.c:1224 config/tc-pru.c:1250 +#: config/tc-pru.c:1223 config/tc-pru.c:1249 msgid "only r0.bX byte fields of r0 can be used as byte count" msgstr "" -#: config/tc-pru.c:1263 +#: config/tc-pru.c:1262 #, c-format msgid "invalid constant table offset %ld" msgstr "" -#: config/tc-pru.c:1274 +#: config/tc-pru.c:1273 #, c-format msgid "invalid WakeOnStatus %ld" msgstr "" -#: config/tc-pru.c:1285 +#: config/tc-pru.c:1284 #, c-format msgid "invalid XFR WideBus Address %ld" msgstr "" -#: config/tc-pru.c:1318 config/tc-pru.c:1343 config/tc-pru.c:1363 +#: config/tc-pru.c:1317 config/tc-pru.c:1342 config/tc-pru.c:1362 #, c-format msgid "badly formed expression near %s" msgstr "" -#: config/tc-pru.c:1389 +#: config/tc-pru.c:1388 #, c-format msgid "expecting %c near %s" msgstr "" -#: config/tc-pru.c:1553 +#: config/tc-pru.c:1552 #, c-format msgid "" "PRU options:\n" @@ -16237,317 +16263,372 @@ msgid "" msgstr "" #. Unrecognised instruction - error. -#: config/tc-pru.c:1724 +#: config/tc-pru.c:1722 #, c-format msgid "unrecognised instruction %s" msgstr "" -#: config/tc-pru.c:1781 +#: config/tc-pru.c:1779 #, c-format msgid "can't represent relocation type %s" msgstr "" -#: config/tc-pru.c:1827 +#: config/tc-pru.c:1825 #, c-format msgid "Label \"%s\" matches a CPU register name" msgstr "" -#: config/tc-riscv.c:237 +#: config/tc-riscv.c:239 #, c-format msgid "" "unknown default privileged spec `%s' set by -mpriv-spec or --with-priv-spec" msgstr "" #. Still can not find the privileged spec class. -#: config/tc-riscv.c:259 +#: config/tc-riscv.c:261 #, c-format msgid "" "unknown default privileged spec `%d.%d.%d' set by privileged elf attributes" msgstr "" -#: config/tc-riscv.c:357 +#: config/tc-riscv.c:347 msgid "" "the architecture string of -march and elf architecture attributes cannot be " "empty" msgstr "" -#: config/tc-riscv.c:920 config/tc-riscv.c:981 config/tc-riscv.c:1807 +#: config/tc-riscv.c:913 config/tc-riscv.c:974 config/tc-riscv.c:1820 #, c-format msgid "internal: duplicate %s" msgstr "" -#: config/tc-riscv.c:1167 +#: config/tc-riscv.c:1166 #, c-format msgid "internal: bad RISC-V CSR class (0x%x)" msgstr "" -#: config/tc-riscv.c:1173 +#: config/tc-riscv.c:1172 #, c-format msgid "invalid CSR `%s', needs rv32i extension" msgstr "" -#: config/tc-riscv.c:1175 +#: config/tc-riscv.c:1174 #, c-format msgid "invalid CSR `%s', needs `h' extension" msgstr "" -#: config/tc-riscv.c:1179 +#: config/tc-riscv.c:1178 #, c-format msgid "invalid CSR `%s', needs `%s' extension" msgstr "" -#: config/tc-riscv.c:1202 +#: config/tc-riscv.c:1201 #, c-format msgid "invalid CSR `%s' for the privileged spec `%s'" msgstr "" -#: config/tc-riscv.c:1452 +#: config/tc-riscv.c:1450 msgid "cannot find `}' for cm.push/cm.pop" msgstr "" -#: config/tc-riscv.c:1488 +#: config/tc-riscv.c:1486 #, c-format msgid "internal: bad RISC-V opcode (mask error): %s %s" msgstr "" -#: config/tc-riscv.c:1767 +#: config/tc-riscv.c:1780 #, c-format msgid "internal: bad RISC-V opcode (unknown operand type `%s'): %s %s" msgstr "" -#: config/tc-riscv.c:1776 +#: config/tc-riscv.c:1789 #, c-format msgid "internal: bad RISC-V opcode (bits %#llx undefined or invalid): %s %s" msgstr "" -#: config/tc-riscv.c:1818 +#: config/tc-riscv.c:1831 msgid "internal: broken assembler. No assembly attempted" msgstr "" -#: config/tc-riscv.c:1993 +#: config/tc-riscv.c:2004 #, c-format msgid "internal: unsupported RISC-V relocation number %d" msgstr "" -#: config/tc-riscv.c:2109 +#: config/tc-riscv.c:2120 #, c-format msgid "internal: invalid macro argument `%s'" msgstr "" -#: config/tc-riscv.c:2159 config/tc-riscv.c:2237 +#: config/tc-riscv.c:2170 config/tc-riscv.c:2248 msgid "unsupported large constant" msgstr "" -#: config/tc-riscv.c:2161 +#: config/tc-riscv.c:2172 #, c-format msgid "unknown CSR `%s'" msgstr "" -#: config/tc-riscv.c:2164 +#: config/tc-riscv.c:2175 #, c-format msgid "instruction %s requires absolute expression" msgstr "" -#: config/tc-riscv.c:2332 +#: config/tc-riscv.c:2343 msgid "must provide temp if destination overlaps mask" msgstr "" -#: config/tc-riscv.c:2425 +#: config/tc-riscv.c:2436 #, c-format msgid "internal: macro %s not implemented" msgstr "" -#: config/tc-riscv.c:2627 config/tc-riscv.c:2687 +#: config/tc-riscv.c:2638 config/tc-riscv.c:2698 msgid "multiple vsew constants" msgstr "" -#: config/tc-riscv.c:2635 +#: config/tc-riscv.c:2646 msgid "multiple vlmul constants" msgstr "" -#: config/tc-riscv.c:2643 +#: config/tc-riscv.c:2654 msgid "multiple vta constants" msgstr "" -#: config/tc-riscv.c:2651 +#: config/tc-riscv.c:2662 msgid "multiple vma constants" msgstr "" -#: config/tc-riscv.c:2697 +#: config/tc-riscv.c:2708 msgid "multiple vlen constants" msgstr "" -#: config/tc-riscv.c:2706 +#: config/tc-riscv.c:2717 msgid "multiple vediv constants" msgstr "" #. Reset error message of the previous round. -#: config/tc-riscv.c:2872 +#: config/tc-riscv.c:2883 msgid "illegal operands" msgstr "" -#: config/tc-riscv.c:2923 +#: config/tc-riscv.c:2935 #, c-format msgid "read-only CSR is written `%s'" msgstr "" -#: config/tc-riscv.c:2933 +#: config/tc-riscv.c:2945 msgid "illegal opcode for zve32x" msgstr "" -#: config/tc-riscv.c:3185 +#: config/tc-riscv.c:3197 msgid "bad value for compressed funct6 field, value must be 0...63" msgstr "" -#: config/tc-riscv.c:3200 +#: config/tc-riscv.c:3212 msgid "bad value for compressed funct4 field, value must be 0...15" msgstr "" -#: config/tc-riscv.c:3215 +#: config/tc-riscv.c:3227 msgid "bad value for compressed funct3 field, value must be 0...7" msgstr "" -#: config/tc-riscv.c:3230 +#: config/tc-riscv.c:3242 msgid "bad value for compressed funct2 field, value must be 0...3" msgstr "" -#: config/tc-riscv.c:3323 +#: config/tc-riscv.c:3335 msgid "bad value for vsetivli immediate field, value must be 0..1023" msgstr "" -#: config/tc-riscv.c:3335 +#: config/tc-riscv.c:3347 msgid "bad value for vsetvli immediate field, value must be 0..2047" msgstr "" -#: config/tc-riscv.c:3348 +#: config/tc-riscv.c:3360 msgid "bad value for vector immediate field, value must be -16...15" msgstr "" -#: config/tc-riscv.c:3360 +#: config/tc-riscv.c:3372 msgid "bad value for vector immediate field, value must be 0...31" msgstr "" -#: config/tc-riscv.c:3372 +#: config/tc-riscv.c:3384 msgid "bad value for vector immediate field, value must be -15...16" msgstr "" -#: config/tc-riscv.c:3384 +#: config/tc-riscv.c:3396 msgid "bad value for vector immediate field, value must be 0...63" msgstr "" -#: config/tc-riscv.c:3447 config/tc-riscv.c:3458 +#: config/tc-riscv.c:3459 config/tc-riscv.c:3470 #, c-format msgid "improper shift amount (%<PRIu64>)" msgstr "" -#: config/tc-riscv.c:3469 +#: config/tc-riscv.c:3481 #, c-format msgid "improper CSRxI immediate (%<PRIu64>)" msgstr "" -#: config/tc-riscv.c:3486 +#: config/tc-riscv.c:3498 #, c-format msgid "improper CSR address (%<PRIu64>)" msgstr "" -#: config/tc-riscv.c:3666 +#: config/tc-riscv.c:3678 msgid "lui expression not in range 0..1048575" msgstr "" -#: config/tc-riscv.c:3699 +#: config/tc-riscv.c:3711 msgid "" "bad value for opcode field, value must be 0...127 and lower 2 bits must be " "0x3" msgstr "" -#: config/tc-riscv.c:3715 +#: config/tc-riscv.c:3727 msgid "bad value for opcode field, value must be 0...2" msgstr "" -#: config/tc-riscv.c:3738 +#: config/tc-riscv.c:3750 msgid "bad value for funct7 field, value must be 0...127" msgstr "" -#: config/tc-riscv.c:3753 +#: config/tc-riscv.c:3765 msgid "bad value for funct3 field, value must be 0...7" msgstr "" -#: config/tc-riscv.c:3768 +#: config/tc-riscv.c:3780 msgid "bad value for funct2 field, value must be 0...3" msgstr "" -#: config/tc-riscv.c:3786 +#: config/tc-riscv.c:3798 #, c-format msgid "Improper bs immediate (%lu)" msgstr "" -#: config/tc-riscv.c:3797 +#: config/tc-riscv.c:3809 #, c-format msgid "Improper rnum immediate (%lu)" msgstr "" -#: config/tc-riscv.c:3829 +#: config/tc-riscv.c:3841 #, c-format msgid "improper prefetch offset (%ld)" msgstr "" -#: config/tc-riscv.c:3857 +#: config/tc-riscv.c:3869 msgid "" "bad fli constant operand, supported constants must be in decimal or " "hexadecimal floating-point literal form" msgstr "" -#: config/tc-riscv.c:3988 +#: config/tc-riscv.c:4000 msgid "bad value for th.vsetvli immediate field, value must be 0..2047" msgstr "" -#: config/tc-riscv.c:3999 +#: config/tc-riscv.c:4011 #, c-format msgid "unexpected literal (%s)" msgstr "" -#: config/tc-riscv.c:4021 +#: config/tc-riscv.c:4033 #, c-format msgid "improper immediate value (%<PRIu64>)" msgstr "" -#: config/tc-riscv.c:4027 +#: config/tc-riscv.c:4039 #, c-format msgid "improper immediate value (%<PRIi64>)" msgstr "" -#: config/tc-riscv.c:4142 +#: config/tc-riscv.c:4154 #, c-format msgid "bad value for <bit-%s-%s> field, value must be 0...%d" msgstr "" -#: config/tc-riscv.c:4188 +#: config/tc-riscv.c:4200 +#, c-format +msgid "Improper hint amount (%lu)" +msgstr "" + +#: config/tc-riscv.c:4211 +#, c-format +msgid "Improper immediate amount (%lu)" +msgstr "" + +#: config/tc-riscv.c:4223 +#, c-format +msgid "Improper LDP offset amount (%lu)" +msgstr "" + +#: config/tc-riscv.c:4236 +#, c-format +msgid "Improper LWP offset amount (%lu)" +msgstr "" + +#: config/tc-riscv.c:4249 +#, c-format +msgid "Improper SDP offset amount (%lu)" +msgstr "" + +#: config/tc-riscv.c:4264 +#, c-format +msgid "Improper SWP offset amount (%lu)" +msgstr "" + +#: config/tc-riscv.c:4286 #, c-format msgid "internal: unknown argument type `%s'" msgstr "" -#: config/tc-riscv.c:4240 +#: config/tc-riscv.c:4338 msgid "values must be constant" msgstr "" -#: config/tc-riscv.c:4247 +#: config/tc-riscv.c:4345 msgid "unrecognized values" msgstr "" -#: config/tc-riscv.c:4255 config/tc-riscv.c:4266 config/tc-riscv.c:4280 +#: config/tc-riscv.c:4353 config/tc-riscv.c:4364 config/tc-riscv.c:4378 msgid "value conflicts with instruction length" msgstr "" -#: config/tc-riscv.c:4820 +#: config/tc-riscv.c:4856 +#, c-format +msgid "invalid J-type offset (%+lld)" +msgstr "" + +#: config/tc-riscv.c:4874 +#, c-format +msgid "invalid B-type offset (%+lld)" +msgstr "" + +#: config/tc-riscv.c:4892 +#, c-format +msgid "invalid CB-type offset (%+lld)" +msgstr "" + +#: config/tc-riscv.c:4910 +#, c-format +msgid "invalid CJ-type offset (%+lld)" +msgstr "" + +#: config/tc-riscv.c:4942 msgid "too many pcrel_hi" msgstr "" -#: config/tc-riscv.c:4866 +#: config/tc-riscv.c:4952 +#, c-format +msgid "invalid pcrel_hi offset (%+lld)" +msgstr "" + +#: config/tc-riscv.c:4995 #, c-format msgid "internal: bad relocation #%d" msgstr "" -#: config/tc-riscv.c:5369 +#: config/tc-riscv.c:5500 #, c-format msgid "" "RISC-V options:\n" @@ -16558,7 +16639,7 @@ msgid "" " -misa-spec=ISAspec set the RISC-V ISA spec (2.2, 20190608, " "20191213)\n" " -mpriv-spec=PRIVspec set the RISC-V privilege spec (1.10, 1.11, " -"1.12)\n" +"1.12, 1.13)\n" " -mabi=ABI set the RISC-V ABI\n" " -mrelax enable relax (default)\n" " -mno-relax disable relax\n" @@ -16572,33 +16653,33 @@ msgid "" " -mlittle-endian assemble for little-endian\n" msgstr "" -#: config/tc-riscv.c:5414 +#: config/tc-riscv.c:5545 #, c-format msgid "unknown register `%s'" msgstr "" -#: config/tc-riscv.c:5449 +#: config/tc-riscv.c:5581 msgid "non-constant .sleb128 is not supported" msgstr "" -#: config/tc-riscv.c:5451 +#: config/tc-riscv.c:5583 msgid ".uleb128 only supports constant or subtract expressions" msgstr "" -#: config/tc-riscv.c:5553 +#: config/tc-riscv.c:5687 #, c-format msgid "internal: bad RISC-V privileged spec (%s)" msgstr "" -#: config/tc-riscv.c:5706 +#: config/tc-riscv.c:5840 msgid "architecture elf attributes must set before any instructions" msgstr "" -#: config/tc-riscv.c:5724 +#: config/tc-riscv.c:5858 msgid "privileged elf attributes must set before any instructions" msgstr "" -#: config/tc-riscv.c:5746 +#: config/tc-riscv.c:5880 msgid "missing symbol name for .variant_cc directive" msgstr "" @@ -16610,12 +16691,12 @@ msgstr "" msgid "8-bit relocation used in 16-bit operand" msgstr "" -#: config/tc-rl78.c:243 config/tc-rx.c:875 +#: config/tc-rl78.c:243 config/tc-rx.c:876 #, c-format msgid "Value %d doesn't fit in unsigned %d-bit field" msgstr "" -#: config/tc-rl78.c:249 config/tc-rx.c:881 +#: config/tc-rl78.c:249 config/tc-rx.c:882 #, c-format msgid "Value %d doesn't fit in signed %d-bit field" msgstr "" @@ -16660,46 +16741,46 @@ msgstr "" msgid " --m64bit-doubles Source code uses 64-bit doubles\n" msgstr "" -#: config/tc-rl78.c:439 +#: config/tc-rl78.c:437 #, c-format msgid "%%%s() must be outermost term in expression" msgstr "" -#: config/tc-rl78.c:667 config/tc-rx.c:2242 +#: config/tc-rl78.c:665 config/tc-rx.c:2243 #, c-format msgid "unsupported constant size %d\n" msgstr "" -#: config/tc-rl78.c:683 +#: config/tc-rl78.c:681 #, c-format msgid "%%hi16/%%lo16 only applies to .short or .hword" msgstr "" -#: config/tc-rl78.c:693 +#: config/tc-rl78.c:691 #, c-format msgid "%%hi8 only applies to .byte" msgstr "" -#: config/tc-rl78.c:705 config/tc-rx.c:2249 +#: config/tc-rl78.c:703 config/tc-rx.c:2250 msgid "difference of two symbols only supported with .long, .short, or .byte" msgstr "" -#: config/tc-rl78.c:1226 config/tc-rx.c:2176 +#: config/tc-rl78.c:1224 config/tc-rx.c:2177 #, c-format msgid "bad frag at %p : fix %ld addr %ld %ld \n" msgstr "" -#: config/tc-rl78.c:1442 +#: config/tc-rl78.c:1440 #, c-format msgid "value of %ld too large for 8-bit branch" msgstr "" -#: config/tc-rl78.c:1453 +#: config/tc-rl78.c:1451 #, c-format msgid "value of %ld too large for 16-bit branch" msgstr "" -#: config/tc-rl78.c:1502 config/tc-rx.c:2441 +#: config/tc-rl78.c:1500 config/tc-rx.c:2442 #, c-format msgid "Unknown reloc in md_apply_fix: %s" msgstr "" @@ -16774,65 +16855,65 @@ msgstr "" msgid " --mno-allow-string-insns" msgstr "" -#: config/tc-rx.c:291 +#: config/tc-rx.c:292 msgid "no filename following .INCLUDE pseudo-op" msgstr "" -#: config/tc-rx.c:392 +#: config/tc-rx.c:393 #, c-format msgid "unable to locate include file: %s" msgstr "" -#: config/tc-rx.c:443 +#: config/tc-rx.c:444 #, c-format msgid "unrecognised alignment value in .SECTION directive: %s" msgstr "" -#: config/tc-rx.c:460 +#: config/tc-rx.c:461 #, c-format msgid "unknown parameter following .SECTION directive: %s" msgstr "" -#: config/tc-rx.c:546 +#: config/tc-rx.c:547 msgid "expecting either ON or OFF after .list" msgstr "" -#: config/tc-rx.c:582 +#: config/tc-rx.c:583 #, c-format msgid "The \".%s\" pseudo-op is not implemented\n" msgstr "" -#: config/tc-rx.c:954 config/tc-rx.c:956 +#: config/tc-rx.c:955 config/tc-rx.c:957 #, c-format msgid "Value %d and %d out of range" msgstr "" -#: config/tc-rx.c:1111 +#: config/tc-rx.c:1112 msgid "The .DEFINE pseudo-op is not implemented" msgstr "" -#: config/tc-rx.c:1113 +#: config/tc-rx.c:1114 msgid "The .MACRO pseudo-op is not implemented" msgstr "" -#: config/tc-rx.c:1115 +#: config/tc-rx.c:1116 msgid "The .BTEQU pseudo-op is not implemented." msgstr "" -#: config/tc-rx.c:2107 +#: config/tc-rx.c:2108 msgid "invalid immediate size" msgstr "" -#: config/tc-rx.c:2126 +#: config/tc-rx.c:2127 msgid "invalid immediate field position" msgstr "" -#: config/tc-rx.c:2293 +#: config/tc-rx.c:2294 #, c-format msgid "jump not 3..10 bytes away (is %d)" msgstr "" -#: config/tc-rx.c:2684 +#: config/tc-rx.c:2685 msgid "" "Use of an RX string instruction detected in a file being assembled without " "string instruction support" @@ -16869,119 +16950,119 @@ msgstr "" msgid "An immediate value in a source operand is inappropriate" msgstr "" -#: config/tc-s12z.c:504 config/tc-s12z.c:605 +#: config/tc-s12z.c:504 config/tc-s12z.c:603 msgid "Bad operand for constant offset" msgstr "" -#: config/tc-s12z.c:532 config/tc-s12z.c:623 +#: config/tc-s12z.c:532 config/tc-s12z.c:621 msgid "Invalid operand for register offset" msgstr "" -#: config/tc-s12z.c:638 +#: config/tc-s12z.c:636 msgid "Invalid register for postdecrement operation" msgstr "" -#: config/tc-s12z.c:674 +#: config/tc-s12z.c:672 msgid "Invalid register for preincrement operation" msgstr "" -#: config/tc-s12z.c:692 +#: config/tc-s12z.c:690 msgid "Invalid register for predecrement operation" msgstr "" -#: config/tc-s12z.c:811 +#: config/tc-s12z.c:809 msgid "Garbage at end of instruction" msgstr "" -#: config/tc-s12z.c:940 +#: config/tc-s12z.c:938 msgid "Offset is outside of 15 bit range" msgstr "" -#: config/tc-s12z.c:1056 +#: config/tc-s12z.c:1054 msgid "Bad size" msgstr "" -#: config/tc-s12z.c:1101 config/tc-s12z.c:1161 config/tc-s12z.c:1223 -#: config/tc-s12z.c:1288 +#: config/tc-s12z.c:1099 config/tc-s12z.c:1159 config/tc-s12z.c:1221 +#: config/tc-s12z.c:1286 msgid "BAD MUL" msgstr "" -#: config/tc-s12z.c:1428 +#: config/tc-s12z.c:1426 #, c-format msgid "Source register for %s is no larger than the destination register" msgstr "" -#: config/tc-s12z.c:1431 +#: config/tc-s12z.c:1429 msgid "The destination and source registers are identical" msgstr "" -#: config/tc-s12z.c:1455 +#: config/tc-s12z.c:1453 #, c-format msgid "Immediate value %ld is out of range for instruction %s" msgstr "" -#: config/tc-s12z.c:1526 +#: config/tc-s12z.c:1524 #, c-format msgid "trap value %ld is not valid" msgstr "" -#: config/tc-s12z.c:1966 +#: config/tc-s12z.c:1964 msgid "Shift value should be in the range [0,31]" msgstr "" -#: config/tc-s12z.c:2013 +#: config/tc-s12z.c:2011 msgid "Bad shift mode" msgstr "" -#: config/tc-s12z.c:2026 +#: config/tc-s12z.c:2024 msgid "Bad shift *direction" msgstr "" -#: config/tc-s12z.c:2284 +#: config/tc-s12z.c:2282 #, c-format msgid "Immediate operand %ld is inappropriate for size of instruction" msgstr "" -#: config/tc-s12z.c:2375 config/tc-s12z.c:2444 config/tc-s12z.c:2512 +#: config/tc-s12z.c:2373 config/tc-s12z.c:2442 config/tc-s12z.c:2510 #, c-format msgid "Invalid width value for %s" msgstr "" -#: config/tc-s12z.c:2388 config/tc-s12z.c:2457 config/tc-s12z.c:2525 +#: config/tc-s12z.c:2386 config/tc-s12z.c:2455 config/tc-s12z.c:2523 #, c-format msgid "Invalid offset value for %s" msgstr "" -#: config/tc-s12z.c:3822 +#: config/tc-s12z.c:3820 #, c-format msgid "Invalid instruction: \"%s\"" msgstr "" -#: config/tc-s12z.c:3823 +#: config/tc-s12z.c:3821 #, c-format msgid "First invalid token: \"%s\"" msgstr "" -#: config/tc-s390.c:280 config/tc-sparc.c:310 +#: config/tc-s390.c:293 config/tc-sparc.c:310 msgid "Invalid default architecture, broken assembler." msgstr "" -#: config/tc-s390.c:426 +#: config/tc-s390.c:439 #, c-format msgid "no such machine extension `%s'" msgstr "" -#: config/tc-s390.c:437 +#: config/tc-s390.c:450 #, c-format msgid "junk at end of machine string, first unrecognized character is `%c'" msgstr "" -#: config/tc-s390.c:512 config/tc-sparc.c:489 +#: config/tc-s390.c:525 config/tc-sparc.c:489 #, c-format msgid "invalid architecture -A%s" msgstr "" -#: config/tc-s390.c:535 +#: config/tc-s390.c:548 #, c-format msgid "" "S390 options:\n" @@ -17002,14 +17083,14 @@ msgid "" " do not warn about register name type mismatches\n" msgstr "" -#: config/tc-s390.c:553 +#: config/tc-s390.c:566 #, c-format msgid "" " -V print assembler version number\n" " -Qy, -Qn ignored\n" msgstr "" -#: config/tc-s390.c:556 +#: config/tc-s390.c:569 #, c-format msgid "" "Deprecated S390 options:\n" @@ -17018,12 +17099,12 @@ msgid "" "arch5)\n" msgstr "" -#: config/tc-s390.c:635 +#: config/tc-s390.c:648 msgid "The 64-bit file format is used without z/Architecture instructions." msgstr "" #. xgettext:c-format. -#: config/tc-s390.c:681 +#: config/tc-s390.c:694 #, c-format msgid "" "operand %d: operand out of range (%<PRId64> is not between %<PRId64> and %" @@ -17031,217 +17112,222 @@ msgid "" msgstr "" #. xgettext:c-format. -#: config/tc-s390.c:693 +#: config/tc-s390.c:706 #, c-format msgid "operand out of range (%<PRId64> is not between %<PRId64> and %<PRId64>)" msgstr "" -#: config/tc-s390.c:947 +#: config/tc-s390.c:960 #, c-format msgid "identifier+constant@%s means identifier@%s+constant" msgstr "" -#: config/tc-s390.c:1028 +#: config/tc-s390.c:1041 msgid "Can't handle O_big in s390_exp_compare" msgstr "" -#: config/tc-s390.c:1110 +#: config/tc-s390.c:1123 msgid "Invalid suffix for literal pool entry" msgstr "" -#: config/tc-s390.c:1167 +#: config/tc-s390.c:1180 msgid "Big number is too big" msgstr "" -#: config/tc-s390.c:1316 +#: config/tc-s390.c:1329 msgid "relocation not applicable" msgstr "" -#: config/tc-s390.c:1331 +#: config/tc-s390.c:1344 msgid "base register" msgstr "" -#: config/tc-s390.c:1333 +#: config/tc-s390.c:1346 msgid "displacement" msgstr "" -#: config/tc-s390.c:1337 +#: config/tc-s390.c:1350 msgid "vector index register" msgstr "" -#: config/tc-s390.c:1339 +#: config/tc-s390.c:1352 msgid "index register" msgstr "" -#: config/tc-s390.c:1342 +#: config/tc-s390.c:1355 msgid "length" msgstr "" -#: config/tc-s390.c:1344 config/tc-s390.c:1539 +#: config/tc-s390.c:1357 config/tc-s390.c:1558 msgid "access register" msgstr "" -#: config/tc-s390.c:1346 config/tc-s390.c:1542 +#: config/tc-s390.c:1359 config/tc-s390.c:1561 msgid "control register" msgstr "" -#: config/tc-s390.c:1348 config/tc-s390.c:1547 +#: config/tc-s390.c:1361 config/tc-s390.c:1566 msgid "floating-point register" msgstr "" -#: config/tc-s390.c:1350 +#: config/tc-s390.c:1363 msgid "general-purpose register" msgstr "" -#: config/tc-s390.c:1352 config/tc-s390.c:1555 +#: config/tc-s390.c:1365 config/tc-s390.c:1574 msgid "vector register" msgstr "" -#: config/tc-s390.c:1356 +#: config/tc-s390.c:1369 msgid "signed number" msgstr "" -#: config/tc-s390.c:1358 +#: config/tc-s390.c:1371 msgid "unsigned number" msgstr "" -#: config/tc-s390.c:1479 +#: config/tc-s390.c:1470 +#, c-format +msgid "operand %d: missing vector index register operand" +msgstr "" + +#: config/tc-s390.c:1497 #, c-format msgid "operand %d: illegal operand" msgstr "" -#: config/tc-s390.c:1484 +#: config/tc-s390.c:1502 #, c-format msgid "operand %d: missing %s operand" msgstr "" -#: config/tc-s390.c:1496 config/tc-s390.c:1660 +#: config/tc-s390.c:1514 config/tc-s390.c:1679 #, c-format msgid "operand %d: too many fixups" msgstr "" -#: config/tc-s390.c:1506 +#: config/tc-s390.c:1524 #, c-format msgid "operand %d: invalid length field specified" msgstr "" -#: config/tc-s390.c:1511 +#: config/tc-s390.c:1530 #, c-format msgid "operand %d: index register specified but zero" msgstr "" -#: config/tc-s390.c:1516 +#: config/tc-s390.c:1535 #, c-format msgid "operand %d: base register specified but zero" msgstr "" -#: config/tc-s390.c:1521 +#: config/tc-s390.c:1540 #, c-format msgid "" "operand %d: odd numbered general purpose register specified as register pair" msgstr "" -#: config/tc-s390.c:1529 +#: config/tc-s390.c:1548 #, c-format msgid "" "operand %d: invalid floating-point register (FPR) pair (valid FPR pair " "operands are 0, 1, 4, 5, 8, 9, 12 or 13)" msgstr "" -#: config/tc-s390.c:1550 +#: config/tc-s390.c:1569 msgid "general register" msgstr "" -#: config/tc-s390.c:1560 +#: config/tc-s390.c:1579 #, c-format msgid "operand %d: expected %s name as base register" msgstr "" -#: config/tc-s390.c:1563 +#: config/tc-s390.c:1582 #, c-format msgid "operand %d: expected %s name as index register" msgstr "" -#: config/tc-s390.c:1566 +#: config/tc-s390.c:1585 #, c-format msgid "operand %d: expected %s name" msgstr "" -#: config/tc-s390.c:1656 +#: config/tc-s390.c:1675 #, c-format msgid "operand %d: invalid operand suffix" msgstr "" -#: config/tc-s390.c:1680 +#: config/tc-s390.c:1702 #, c-format msgid "operand %d: syntax error; missing '(' after displacement" msgstr "" -#: config/tc-s390.c:1701 config/tc-s390.c:1752 config/tc-s390.c:1797 +#: config/tc-s390.c:1723 config/tc-s390.c:1774 config/tc-s390.c:1819 #, c-format msgid "operand %d: syntax error; expected ','" msgstr "" -#: config/tc-s390.c:1732 +#: config/tc-s390.c:1754 #, c-format msgid "operand %d: syntax error; missing ')' after base register" msgstr "" -#: config/tc-s390.c:1776 +#: config/tc-s390.c:1798 #, c-format msgid "operand %d: syntax error; '%c' not allowed here" msgstr "" -#: config/tc-s390.c:1933 +#: config/tc-s390.c:1954 #, c-format msgid "Opcode %s not available in this mode" msgstr "" -#: config/tc-s390.c:1978 config/tc-s390.c:2001 config/tc-s390.c:2014 +#: config/tc-s390.c:1999 config/tc-s390.c:2021 config/tc-s390.c:2034 msgid "Invalid .insn format\n" msgstr "" -#: config/tc-s390.c:1986 +#: config/tc-s390.c:2006 #, c-format msgid "Unrecognized opcode format: `%s'" msgstr "" -#: config/tc-s390.c:2017 +#: config/tc-s390.c:2037 msgid "second operand of .insn not a constant\n" msgstr "" -#: config/tc-s390.c:2020 +#: config/tc-s390.c:2040 msgid "missing comma after insn constant\n" msgstr "" -#: config/tc-s390.c:2259 +#: config/tc-s390.c:2269 msgid ".machinemode stack overflow" msgstr "" -#: config/tc-s390.c:2266 +#: config/tc-s390.c:2276 msgid ".machinemode stack underflow" msgstr "" -#: config/tc-s390.c:2283 +#: config/tc-s390.c:2293 #, c-format msgid "invalid machine mode `%s'" msgstr "" -#: config/tc-s390.c:2605 +#: config/tc-s390.c:2616 msgid "unsupported relocation type" msgstr "" -#: config/tc-s390.c:2660 +#: config/tc-s390.c:2671 #, c-format msgid "cannot emit PC relative %s relocation%s%s" msgstr "" -#: config/tc-s390.c:2799 +#: config/tc-s390.c:2810 #, c-format msgid "Gas failure, reloc type %s\n" msgstr "" -#: config/tc-s390.c:2801 +#: config/tc-s390.c:2812 #, c-format msgid "Gas failure, reloc type #%i\n" msgstr "" @@ -17279,7 +17365,7 @@ msgstr "" msgid "register expected, not '%.100s'" msgstr "" -#: config/tc-score.c:1144 config/tc-score.c:5483 +#: config/tc-score.c:1144 config/tc-score.c:5482 msgid "rd must be even number." msgstr "" @@ -17288,9 +17374,9 @@ msgstr "" msgid "invalid constant: %d bit expression not in range %u..%u" msgstr "" -#: config/tc-score.c:1521 config/tc-score.c:1528 config/tc-score.c:2893 -#: config/tc-score.c:2898 config/tc-score.c:3163 config/tc-score.c:3168 -#: config/tc-score.c:3460 +#: config/tc-score.c:1521 config/tc-score.c:1528 config/tc-score.c:2890 +#: config/tc-score.c:2895 config/tc-score.c:3160 config/tc-score.c:3165 +#: config/tc-score.c:3457 #, c-format msgid "invalid constant: %d bit expression not in range %d..%d" msgstr "" @@ -17308,299 +17394,304 @@ msgstr "" msgid "low register (r0-r15) expected, not '%.100s'" msgstr "" -#: config/tc-score.c:2139 config/tc-score.c:3480 config/tc-score.c:3648 -#: config/tc-score.c:3693 +#: config/tc-score.c:2139 config/tc-score.c:3477 config/tc-score.c:3645 +#: config/tc-score.c:3690 #, c-format msgid "missing [" msgstr "" -#: config/tc-score.c:2153 config/tc-score.c:3101 config/tc-score.c:3303 -#: config/tc-score.c:3319 config/tc-score.c:3390 config/tc-score.c:3445 -#: config/tc-score.c:3669 config/tc-score.c:3714 config/tc-score.c:3863 -#: config/tc-score.c:3917 config/tc-score.c:3963 +#: config/tc-score.c:2153 config/tc-score.c:3098 config/tc-score.c:3300 +#: config/tc-score.c:3316 config/tc-score.c:3387 config/tc-score.c:3442 +#: config/tc-score.c:3666 config/tc-score.c:3711 config/tc-score.c:3860 +#: config/tc-score.c:3914 config/tc-score.c:3960 #, c-format msgid "missing ]" msgstr "" -#: config/tc-score.c:2343 +#: config/tc-score.c:2342 #, c-format msgid "Fix data dependency: %s %s -- %s %s (insert %d nop!/%d)" msgstr "" -#: config/tc-score.c:2362 +#: config/tc-score.c:2361 #, c-format msgid "Fix data dependency: %s %s -- %s %s (insert 1 pflush/%d)" msgstr "" -#: config/tc-score.c:2378 config/tc-score.c:2385 +#: config/tc-score.c:2377 config/tc-score.c:2384 #, c-format msgid "data dependency: %s %s -- %s %s (%d/%d bubble)" msgstr "" -#: config/tc-score.c:2836 +#: config/tc-score.c:2833 msgid "address offset must be half word alignment" msgstr "" -#: config/tc-score.c:2844 +#: config/tc-score.c:2841 msgid "address offset must be word alignment" msgstr "" -#: config/tc-score.c:2984 config/tc-score.c:3121 +#: config/tc-score.c:2981 config/tc-score.c:3118 msgid "register same as write-back base" msgstr "" -#: config/tc-score.c:3091 +#: config/tc-score.c:3088 msgid "pre-indexed expression expected" msgstr "" -#: config/tc-score.c:3420 +#: config/tc-score.c:3417 #, c-format msgid "invalid register number: %d is not in [r0--r7]" msgstr "" -#: config/tc-score.c:3437 +#: config/tc-score.c:3434 msgid "comma is expected" msgstr "" -#: config/tc-score.c:3468 +#: config/tc-score.c:3465 #, c-format msgid "invalid constant: %d is not word align integer" msgstr "" -#: config/tc-score.c:3507 config/tc-score.c:3550 +#: config/tc-score.c:3504 config/tc-score.c:3547 msgid "invalid constant: 32 bit expression not word align" msgstr "" -#: config/tc-score.c:3516 config/tc-score.c:3559 +#: config/tc-score.c:3513 config/tc-score.c:3556 msgid "invalid constant: 32 bit expression not in range [0, 0xffffffff]" msgstr "" -#: config/tc-score.c:3592 +#: config/tc-score.c:3589 msgid "" "invalid constant: 32 bit expression not in range [-0x80000000, 0x7fffffff]" msgstr "" -#: config/tc-score.c:3781 config/tc-score.c:3809 +#: config/tc-score.c:3778 config/tc-score.c:3806 msgid "imm5 should >= 2" msgstr "" -#: config/tc-score.c:3786 config/tc-score.c:3815 +#: config/tc-score.c:3783 config/tc-score.c:3812 msgid "reg should <= 31" msgstr "" -#: config/tc-score.c:3857 config/tc-score.c:3908 +#: config/tc-score.c:3854 config/tc-score.c:3905 msgid "missing +" msgstr "" -#: config/tc-score.c:3901 +#: config/tc-score.c:3898 #, c-format msgid "%s register same as write-back base" msgstr "" -#: config/tc-score.c:3903 +#: config/tc-score.c:3900 msgid "destination" msgstr "" -#: config/tc-score.c:3903 +#: config/tc-score.c:3900 msgid "source" msgstr "" -#: config/tc-score.c:4234 config/tc-score.c:4310 config/tc-score.c:4945 +#: config/tc-score.c:4231 config/tc-score.c:4307 config/tc-score.c:4944 msgid "expression error" msgstr "" -#: config/tc-score.c:4316 +#: config/tc-score.c:4313 msgid "value not in range [-0xffffffff, 0xffffffff]" msgstr "" -#: config/tc-score.c:4344 +#: config/tc-score.c:4341 msgid "li rd label isn't correct instruction form" msgstr "" -#: config/tc-score.c:4511 config/tc-score.c:4665 config/tc-score.c:5196 -#: config/tc-score.c:5224 +#: config/tc-score.c:4508 config/tc-score.c:4662 config/tc-score.c:5195 +#: config/tc-score.c:5223 msgid "lacking label " msgstr "" -#: config/tc-score.c:4895 +#: config/tc-score.c:4894 msgid "s3_PIC code offset overflow (max 16 signed bits)" msgstr "" -#: config/tc-score.c:4951 +#: config/tc-score.c:4950 msgid "value not in range [0, 0x7fffffff]" msgstr "" -#: config/tc-score.c:4956 +#: config/tc-score.c:4955 msgid "end on line error" msgstr "" -#: config/tc-score.c:5203 +#: config/tc-score.c:5202 msgid "invalid constant: 25 bit expression not in range [-16777216, 16777215]" msgstr "" -#: config/tc-score.c:5230 +#: config/tc-score.c:5229 msgid "invalid constant: 20 bit expression not in range -2^19..2^19-1" msgstr "" -#: config/tc-score.c:5263 +#: config/tc-score.c:5262 msgid "lacking label" msgstr "" -#: config/tc-score.c:5268 +#: config/tc-score.c:5267 msgid "invalid constant: 10 bit expression not in range [-2^9, 2^9-1]" msgstr "" -#: config/tc-score.c:5363 +#: config/tc-score.c:5362 msgid "pce instruction error (16 bit || 16 bit)." msgstr "" -#: config/tc-score.c:5381 config/tc-score.c:5405 config/tc-score.c:5432 -#: config/tc-score.c:5461 config/tc-score.c:5510 +#: config/tc-score.c:5380 config/tc-score.c:5404 config/tc-score.c:5431 +#: config/tc-score.c:5460 config/tc-score.c:5509 msgid "score3d instruction." msgstr "" -#: config/tc-score.c:6000 +#: config/tc-score.c:5999 msgid "Unsupported use of .gpword" msgstr "" -#: config/tc-score.c:6096 +#: config/tc-score.c:6095 #, c-format msgid "BSS length (%d) < 0 ignored" msgstr "" -#: config/tc-score.c:6110 read.c:2558 +#: config/tc-score.c:6109 read.c:2607 #, c-format msgid "error setting flags for \".sbss\": %s" msgstr "" -#: config/tc-score.c:6124 config/tc-sparc.c:4164 +#: config/tc-score.c:6123 config/tc-sparc.c:4170 msgid "missing alignment" msgstr "" -#: config/tc-score.c:6161 +#: config/tc-score.c:6160 #, c-format msgid "alignment too large; %d assumed" msgstr "" -#: config/tc-score.c:6166 read.c:2619 +#: config/tc-score.c:6165 read.c:2668 msgid "alignment negative; 0 assumed" msgstr "" #. Error routine. -#: config/tc-score.c:6526 config/tc-score.c:6550 +#: config/tc-score.c:6524 config/tc-score.c:6548 msgid "size is not 4 or 6" msgstr "" -#: config/tc-score.c:6609 +#: config/tc-score.c:6607 msgid "bad call to MD_ATOF()" msgstr "" -#: config/tc-score.c:7108 config/tc-score.c:7174 +#: config/tc-score.c:7106 config/tc-score.c:7172 #, c-format msgid " branch relocation truncate (0x%x) [-2^9 ~ 2^9-1]" msgstr "" -#: config/tc-score.c:7123 config/tc-score.c:7152 config/tc-score.c:7204 +#: config/tc-score.c:7121 config/tc-score.c:7150 config/tc-score.c:7202 #, c-format msgid " branch relocation truncate (0x%x) [-2^19 ~ 2^19-1]" msgstr "" -#: config/tc-score.c:7229 +#: config/tc-score.c:7227 #, c-format msgid " branch relocation truncate (0x%x) [-2^9 ~ 2^9-1]" msgstr "" -#: config/tc-score.c:7399 +#: config/tc-score.c:7397 #, c-format msgid "cannot represent %s relocation in this object file format1" msgstr "" -#: config/tc-score.c:7690 +#: config/tc-score.c:7624 +#, c-format +msgid "unknown architecture `%s'\n" +msgstr "" + +#: config/tc-score.c:7688 #, c-format msgid "Sunplus-v2-0-0-20060510\n" msgstr "" -#: config/tc-score.c:7710 +#: config/tc-score.c:7708 #, c-format msgid " Score-specific assembler options:\n" msgstr "" -#: config/tc-score.c:7712 +#: config/tc-score.c:7710 #, c-format msgid " -EB\t\tassemble code for a big-endian cpu\n" msgstr "" -#: config/tc-score.c:7717 +#: config/tc-score.c:7715 #, c-format msgid " -EL\t\tassemble code for a little-endian cpu\n" msgstr "" -#: config/tc-score.c:7721 +#: config/tc-score.c:7719 #, c-format msgid " -FIXDD\t\tfix data dependencies\n" msgstr "" -#: config/tc-score.c:7723 +#: config/tc-score.c:7721 #, c-format msgid "" " -NWARN\t\tdo not print warning message when fixing data " "dependencies\n" msgstr "" -#: config/tc-score.c:7725 +#: config/tc-score.c:7723 #, c-format msgid " -SCORE5\t\tassemble code for target SCORE5\n" msgstr "" -#: config/tc-score.c:7727 +#: config/tc-score.c:7725 #, c-format msgid " -SCORE5U\tassemble code for target SCORE5U\n" msgstr "" -#: config/tc-score.c:7729 +#: config/tc-score.c:7727 #, c-format msgid " -SCORE7\t\tassemble code for target SCORE7 [default]\n" msgstr "" -#: config/tc-score.c:7731 +#: config/tc-score.c:7729 #, c-format msgid " -SCORE3\t\tassemble code for target SCORE3\n" msgstr "" -#: config/tc-score.c:7733 +#: config/tc-score.c:7731 #, c-format msgid " -march=score7\tassemble code for target SCORE7 [default]\n" msgstr "" -#: config/tc-score.c:7735 +#: config/tc-score.c:7733 #, c-format msgid " -march=score3\tassemble code for target SCORE3\n" msgstr "" -#: config/tc-score.c:7737 +#: config/tc-score.c:7735 #, c-format msgid "" " -USE_R1\t\tassemble code for no warning message when using temp " "register r1\n" msgstr "" -#: config/tc-score.c:7739 +#: config/tc-score.c:7737 #, c-format msgid " -KPIC\t\tgenerate PIC\n" msgstr "" -#: config/tc-score.c:7741 +#: config/tc-score.c:7739 #, c-format msgid " -O0\t\tdo not perform any optimizations\n" msgstr "" -#: config/tc-score.c:7743 +#: config/tc-score.c:7741 #, c-format msgid "" " -G gpnum\tassemble code for setting gpsize, default is 8 bytes\n" msgstr "" -#: config/tc-score.c:7745 +#: config/tc-score.c:7743 #, c-format msgid " -V \t\tSunplus release version\n" msgstr "" @@ -17613,62 +17704,62 @@ msgstr "" msgid "directive .little encountered when option -little required" msgstr "" -#: config/tc-sh.c:1025 +#: config/tc-sh.c:1026 msgid "illegal double indirection" msgstr "" -#: config/tc-sh.c:1034 +#: config/tc-sh.c:1035 msgid "illegal register after @-" msgstr "" -#: config/tc-sh.c:1050 +#: config/tc-sh.c:1051 msgid "must be @(r0,...)" msgstr "" -#: config/tc-sh.c:1074 +#: config/tc-sh.c:1075 msgid "syntax error in @(r0,...)" msgstr "" -#: config/tc-sh.c:1079 +#: config/tc-sh.c:1080 msgid "syntax error in @(r0...)" msgstr "" -#: config/tc-sh.c:1124 +#: config/tc-sh.c:1125 msgid "Deprecated syntax." msgstr "" -#: config/tc-sh.c:1136 config/tc-sh.c:1141 +#: config/tc-sh.c:1137 config/tc-sh.c:1142 msgid "syntax error in @(disp,[Rn, gbr, pc])" msgstr "" -#: config/tc-sh.c:1146 +#: config/tc-sh.c:1147 msgid "expecting )" msgstr "" -#: config/tc-sh.c:1154 +#: config/tc-sh.c:1155 msgid "illegal register after @" msgstr "" -#: config/tc-sh.c:1780 +#: config/tc-sh.c:1781 #, c-format msgid "unhandled %d\n" msgstr "" -#: config/tc-sh.c:1993 +#: config/tc-sh.c:1994 #, c-format msgid "Invalid register: 'r%d'" msgstr "" -#: config/tc-sh.c:2106 +#: config/tc-sh.c:2107 #, c-format msgid "failed for %d\n" msgstr "" -#: config/tc-sh.c:2112 +#: config/tc-sh.c:2113 msgid "misplaced PIC operand" msgstr "" -#: config/tc-sh.c:2223 config/tc-sh.c:2596 +#: config/tc-sh.c:2223 config/tc-sh.c:2597 msgid "invalid operands for opcode" msgstr "" @@ -17748,33 +17839,33 @@ msgstr "" msgid "unrecognized characters at end of parallel processing insn" msgstr "" -#: config/tc-sh.c:2535 +#: config/tc-sh.c:2536 msgid "opcode not valid for this cpu variant" msgstr "" -#: config/tc-sh.c:2566 +#: config/tc-sh.c:2567 msgid "Delayed branches not available on SH1" msgstr "" -#: config/tc-sh.c:2601 +#: config/tc-sh.c:2602 #, c-format msgid "excess operands: '%s'" msgstr "" -#: config/tc-sh.c:2678 +#: config/tc-sh.c:2679 msgid ".uses pseudo-op seen when not relaxing" msgstr "" -#: config/tc-sh.c:2684 +#: config/tc-sh.c:2685 msgid "bad .uses format" msgstr "" -#: config/tc-sh.c:2802 +#: config/tc-sh.c:2803 #, c-format msgid "Invalid argument to --isa option: %s" msgstr "" -#: config/tc-sh.c:2826 +#: config/tc-sh.c:2827 #, c-format msgid "" "SH options:\n" @@ -17791,70 +17882,70 @@ msgid "" " | fp" msgstr "" -#: config/tc-sh.c:2851 +#: config/tc-sh.c:2852 #, c-format msgid "--fdpic\t\t\tgenerate an FDPIC object file\n" msgstr "" -#: config/tc-sh.c:2927 +#: config/tc-sh.c:2928 msgid ".uses does not refer to a local symbol in the same section" msgstr "" -#: config/tc-sh.c:2946 +#: config/tc-sh.c:2947 msgid "can't find fixup pointed to by .uses" msgstr "" -#: config/tc-sh.c:2966 +#: config/tc-sh.c:2967 msgid ".uses target does not refer to a local symbol in the same section" msgstr "" -#: config/tc-sh.c:3039 +#: config/tc-sh.c:3038 msgid "displacement overflows 12-bit field" msgstr "" -#: config/tc-sh.c:3042 +#: config/tc-sh.c:3041 #, c-format msgid "displacement to defined symbol %s overflows 12-bit field" msgstr "" -#: config/tc-sh.c:3046 +#: config/tc-sh.c:3045 #, c-format msgid "displacement to undefined symbol %s overflows 12-bit field" msgstr "" -#: config/tc-sh.c:3119 +#: config/tc-sh.c:3117 msgid "displacement overflows 8-bit field" msgstr "" -#: config/tc-sh.c:3122 +#: config/tc-sh.c:3120 #, c-format msgid "displacement to defined symbol %s overflows 8-bit field" msgstr "" -#: config/tc-sh.c:3126 +#: config/tc-sh.c:3124 #, c-format msgid "displacement to undefined symbol %s overflows 8-bit field " msgstr "" -#: config/tc-sh.c:3139 +#: config/tc-sh.c:3137 #, c-format msgid "overflow in branch to %s; converted into longer instruction sequence" msgstr "" -#: config/tc-sh.c:3204 config/tc-sh.c:3251 config/tc-sparc.c:4628 -#: config/tc-sparc.c:4652 +#: config/tc-sh.c:3202 config/tc-sh.c:3248 config/tc-sparc.c:4632 +#: config/tc-sparc.c:4655 msgid "misaligned data" msgstr "" -#: config/tc-sh.c:3557 +#: config/tc-sh.c:3554 msgid "offset to unaligned destination" msgstr "" -#: config/tc-sh.c:3562 +#: config/tc-sh.c:3559 msgid "negative offset" msgstr "" -#: config/tc-sh.c:3702 +#: config/tc-sh.c:3699 msgid "misaligned offset" msgstr "" @@ -17988,288 +18079,288 @@ msgstr "" msgid "failed special case insn sanity check" msgstr "" -#: config/tc-sparc.c:1797 +#: config/tc-sparc.c:1799 msgid ": invalid membar mask name" msgstr "" -#: config/tc-sparc.c:1813 +#: config/tc-sparc.c:1815 msgid ": invalid membar mask expression" msgstr "" -#: config/tc-sparc.c:1818 +#: config/tc-sparc.c:1820 msgid ": invalid membar mask number" msgstr "" -#: config/tc-sparc.c:1833 +#: config/tc-sparc.c:1835 msgid ": invalid siam mode expression" msgstr "" -#: config/tc-sparc.c:1838 +#: config/tc-sparc.c:1840 msgid ": invalid siam mode number" msgstr "" -#: config/tc-sparc.c:1854 +#: config/tc-sparc.c:1856 msgid ": invalid prefetch function name" msgstr "" -#: config/tc-sparc.c:1862 +#: config/tc-sparc.c:1864 msgid ": invalid prefetch function expression" msgstr "" -#: config/tc-sparc.c:1867 +#: config/tc-sparc.c:1869 msgid ": invalid prefetch function number" msgstr "" -#: config/tc-sparc.c:1894 config/tc-sparc.c:1900 config/tc-sparc.c:1909 +#: config/tc-sparc.c:1896 config/tc-sparc.c:1902 config/tc-sparc.c:1911 msgid ": unrecognizable privileged register" msgstr "" -#: config/tc-sparc.c:1932 config/tc-sparc.c:1938 config/tc-sparc.c:1947 +#: config/tc-sparc.c:1934 config/tc-sparc.c:1940 config/tc-sparc.c:1949 msgid ": unrecognizable hyperprivileged register" msgstr "" -#: config/tc-sparc.c:1970 config/tc-sparc.c:1976 config/tc-sparc.c:1985 +#: config/tc-sparc.c:1972 config/tc-sparc.c:1978 config/tc-sparc.c:1987 msgid ": unrecognizable ancillary state register" msgstr "" -#: config/tc-sparc.c:2018 +#: config/tc-sparc.c:2020 msgid ": asr number must be between 0 and 31" msgstr "" -#: config/tc-sparc.c:2027 +#: config/tc-sparc.c:2029 #, c-format msgid ": expecting %asrN" msgstr "" -#: config/tc-sparc.c:2069 +#: config/tc-sparc.c:2071 msgid ": crypto immediate must be between 0 and 31" msgstr "" -#: config/tc-sparc.c:2078 +#: config/tc-sparc.c:2080 msgid ": expecting crypto immediate" msgstr "" -#: config/tc-sparc.c:2239 config/tc-sparc.c:2278 config/tc-sparc.c:2706 -#: config/tc-sparc.c:2742 +#: config/tc-sparc.c:2241 config/tc-sparc.c:2280 config/tc-sparc.c:2712 +#: config/tc-sparc.c:2748 #, c-format msgid "Illegal operands: %%%s requires arguments in ()" msgstr "" -#: config/tc-sparc.c:2246 +#: config/tc-sparc.c:2248 #, c-format msgid "" "Illegal operands: %%%s cannot be used together with other relocs in the insn " "()" msgstr "" -#: config/tc-sparc.c:2257 +#: config/tc-sparc.c:2259 #, c-format msgid "Illegal operands: %%%s can be only used with call __tls_get_addr" msgstr "" -#: config/tc-sparc.c:2464 +#: config/tc-sparc.c:2470 msgid "detected global register use not covered by .register pseudo-op" msgstr "" -#: config/tc-sparc.c:2566 +#: config/tc-sparc.c:2572 msgid ": There are only 64 f registers; [0-63]" msgstr "" -#: config/tc-sparc.c:2568 config/tc-sparc.c:2586 +#: config/tc-sparc.c:2574 config/tc-sparc.c:2592 msgid ": There are only 32 f registers; [0-31]" msgstr "" -#: config/tc-sparc.c:2578 +#: config/tc-sparc.c:2584 msgid ": There are only 32 single precision f registers; [0-31]" msgstr "" -#: config/tc-sparc.c:2631 +#: config/tc-sparc.c:2637 msgid ": Instruction requires frs2 and frsd must be the same register" msgstr "" -#: config/tc-sparc.c:2751 +#: config/tc-sparc.c:2757 #, c-format msgid "Expression inside %%%s could not be parsed" msgstr "" -#: config/tc-sparc.c:2759 +#: config/tc-sparc.c:2765 #, c-format msgid "" "Illegal operands: Can't do arithmetics other than + and - involving %%%s()" msgstr "" -#: config/tc-sparc.c:2876 +#: config/tc-sparc.c:2882 #, c-format msgid "Illegal operands: Can't add non-constant expression to %%%s()" msgstr "" -#: config/tc-sparc.c:2886 +#: config/tc-sparc.c:2892 #, c-format msgid "" "Illegal operands: Can't do arithmetics involving %%%s() of a relocatable " "symbol" msgstr "" -#: config/tc-sparc.c:2904 +#: config/tc-sparc.c:2910 msgid ": PC-relative operand can't be a constant" msgstr "" -#: config/tc-sparc.c:2911 +#: config/tc-sparc.c:2917 msgid ": TLS operand can't be a constant" msgstr "" -#: config/tc-sparc.c:2939 +#: config/tc-sparc.c:2945 msgid ": Immediate value in cbcond is out of range." msgstr "" -#: config/tc-sparc.c:2965 +#: config/tc-sparc.c:2971 msgid ": invalid ASI name" msgstr "" -#: config/tc-sparc.c:2974 +#: config/tc-sparc.c:2980 msgid ": invalid ASI expression" msgstr "" -#: config/tc-sparc.c:2979 +#: config/tc-sparc.c:2985 msgid ": invalid ASI number" msgstr "" -#: config/tc-sparc.c:3084 +#: config/tc-sparc.c:3090 msgid ": non-immdiate imm2 operand" msgstr "" -#: config/tc-sparc.c:3089 +#: config/tc-sparc.c:3095 msgid ": imm2 immediate operand out of range (0-3)" msgstr "" -#: config/tc-sparc.c:3108 +#: config/tc-sparc.c:3114 msgid "OPF immediate operand out of range (0-0x1ff)" msgstr "" -#: config/tc-sparc.c:3113 +#: config/tc-sparc.c:3119 msgid "non-immediate OPF operand, ignored" msgstr "" -#: config/tc-sparc.c:3132 +#: config/tc-sparc.c:3138 msgid ": invalid cpreg name" msgstr "" -#: config/tc-sparc.c:3161 +#: config/tc-sparc.c:3167 #, c-format msgid "Illegal operands%s" msgstr "" -#: config/tc-sparc.c:3210 +#: config/tc-sparc.c:3216 #, c-format msgid "architecture bumped from \"%s\" to \"%s\" on \"%s\"" msgstr "" -#: config/tc-sparc.c:3251 +#: config/tc-sparc.c:3257 #, c-format msgid "Architecture mismatch on \"%s %s\"." msgstr "" -#: config/tc-sparc.c:3252 +#: config/tc-sparc.c:3258 #, c-format msgid "(Requires %s; requested architecture is %s.)" msgstr "" -#: config/tc-sparc.c:3264 +#: config/tc-sparc.c:3270 #, c-format msgid "Hardware capability \"%s\" not enabled for \"%s\"." msgstr "" -#: config/tc-sparc.c:3650 config/tc-sparc.c:3657 config/tc-sparc.c:3664 -#: config/tc-sparc.c:3671 config/tc-sparc.c:3678 config/tc-sparc.c:3687 -#: config/tc-sparc.c:3699 config/tc-sparc.c:3710 config/tc-sparc.c:3732 -#: config/tc-sparc.c:3756 write.c:1211 +#: config/tc-sparc.c:3656 config/tc-sparc.c:3663 config/tc-sparc.c:3670 +#: config/tc-sparc.c:3677 config/tc-sparc.c:3684 config/tc-sparc.c:3693 +#: config/tc-sparc.c:3705 config/tc-sparc.c:3716 config/tc-sparc.c:3738 +#: config/tc-sparc.c:3762 write.c:1211 msgid "relocation overflow" msgstr "" -#: config/tc-sparc.c:3811 +#: config/tc-sparc.c:3817 #, c-format msgid "bad or unhandled relocation type: 0x%02x" msgstr "" -#: config/tc-sparc.c:4126 +#: config/tc-sparc.c:4132 msgid "Expected comma after name" msgstr "" -#: config/tc-sparc.c:4135 +#: config/tc-sparc.c:4141 #, c-format msgid "BSS length (%d.) <0! Ignored." msgstr "" -#: config/tc-sparc.c:4147 +#: config/tc-sparc.c:4153 msgid "bad .reserve segment -- expected BSS segment" msgstr "" -#: config/tc-sparc.c:4173 config/tc-sparc.c:4300 +#: config/tc-sparc.c:4179 config/tc-sparc.c:4305 msgid "negative alignment" msgstr "" -#: config/tc-sparc.c:4183 config/tc-sparc.c:4321 read.c:1588 read.c:2631 +#: config/tc-sparc.c:4189 config/tc-sparc.c:4326 read.c:1577 read.c:2680 msgid "alignment not a power of 2" msgstr "" -#: config/tc-sparc.c:4229 +#: config/tc-sparc.c:4234 #, c-format msgid "Ignoring attempt to re-define symbol %s" msgstr "" -#: config/tc-sparc.c:4252 config/tc-v850.c:280 +#: config/tc-sparc.c:4257 config/tc-v850.c:279 msgid "Expected comma after symbol-name" msgstr "" -#: config/tc-sparc.c:4262 +#: config/tc-sparc.c:4267 #, c-format msgid ".COMMon length (%lu) out of range ignored" msgstr "" -#: config/tc-sparc.c:4288 +#: config/tc-sparc.c:4293 msgid "Expected comma after common length" msgstr "" -#: config/tc-sparc.c:4433 +#: config/tc-sparc.c:4437 msgid "Unknown segment type" msgstr "" -#: config/tc-sparc.c:4502 config/tc-sparc.c:4511 +#: config/tc-sparc.c:4506 config/tc-sparc.c:4515 #, c-format msgid "register syntax is .register %%g[2367],{#scratch|symbolname|#ignore}" msgstr "" -#: config/tc-sparc.c:4529 +#: config/tc-sparc.c:4533 msgid "redefinition of global register" msgstr "" -#: config/tc-sparc.c:4540 +#: config/tc-sparc.c:4544 #, c-format msgid "Register symbol %s already defined." msgstr "" -#: config/tc-sparc.c:4742 +#: config/tc-sparc.c:4745 #, c-format msgid "Illegal operands: %%r_plt in %d-byte data field" msgstr "" -#: config/tc-sparc.c:4752 +#: config/tc-sparc.c:4755 #, c-format msgid "Illegal operands: %%r_tls_dtpoff in %d-byte data field" msgstr "" -#: config/tc-sparc.c:4789 config/tc-vax.c:3271 +#: config/tc-sparc.c:4792 config/tc-vax.c:3269 #, c-format msgid "Illegal operands: Only %%r_%s%d allowed in %d-byte data fields" msgstr "" -#: config/tc-sparc.c:4797 config/tc-sparc.c:4828 config/tc-sparc.c:4837 -#: config/tc-vax.c:3279 config/tc-vax.c:3310 config/tc-vax.c:3319 +#: config/tc-sparc.c:4800 config/tc-sparc.c:4831 config/tc-sparc.c:4840 +#: config/tc-vax.c:3277 config/tc-vax.c:3308 config/tc-vax.c:3317 #, c-format msgid "Illegal operands: %%r_%s%d requires arguments in ()" msgstr "" -#: config/tc-sparc.c:4846 config/tc-vax.c:3328 +#: config/tc-sparc.c:4849 config/tc-vax.c:3326 #, c-format msgid "Illegal operands: garbage after %%r_%s%d()" msgstr "" @@ -18335,21 +18426,21 @@ msgstr "" msgid "Constant expression %d out of range, [%d, %d]." msgstr "" -#: config/tc-spu.c:779 +#: config/tc-spu.c:769 #, c-format msgid "invalid priority '%lu'" msgstr "" -#: config/tc-spu.c:785 +#: config/tc-spu.c:775 #, c-format msgid "invalid lrlive '%lu'" msgstr "" -#: config/tc-spu.c:859 +#: config/tc-spu.c:849 msgid "Relaxation should never occur" msgstr "" -#: config/tc-spu.c:1004 +#: config/tc-spu.c:994 #, c-format msgid "Relocation doesn't fit. (relocation value = 0x%lx)" msgstr "" @@ -18545,218 +18636,218 @@ msgstr "" msgid "Invalid floating point number" msgstr "" -#: config/tc-tic4x.c:722 +#: config/tc-tic4x.c:720 msgid "Comma expected\n" msgstr "" -#: config/tc-tic4x.c:756 config/tc-tic54x.c:498 +#: config/tc-tic4x.c:754 config/tc-tic54x.c:498 msgid ".bss size argument missing\n" msgstr "" -#: config/tc-tic4x.c:764 +#: config/tc-tic4x.c:762 #, c-format msgid ".bss size %ld < 0!" msgstr "" -#: config/tc-tic4x.c:897 +#: config/tc-tic4x.c:894 msgid "Non-constant symbols not allowed\n" msgstr "" -#: config/tc-tic4x.c:928 +#: config/tc-tic4x.c:925 msgid "Symbol missing\n" msgstr "" #. Skip null symbol terminator. -#: config/tc-tic4x.c:976 +#: config/tc-tic4x.c:973 msgid ".sect: subsection name ignored" msgstr "" -#: config/tc-tic4x.c:1004 config/tc-tic4x.c:1105 config/tc-tic54x.c:1482 +#: config/tc-tic4x.c:1001 config/tc-tic4x.c:1102 config/tc-tic54x.c:1476 #, c-format msgid "Error setting flags for \"%s\": %s" msgstr "" -#: config/tc-tic4x.c:1036 +#: config/tc-tic4x.c:1033 msgid ".set syntax invalid\n" msgstr "" -#: config/tc-tic4x.c:1094 +#: config/tc-tic4x.c:1091 msgid ".usect: non-zero alignment flag ignored" msgstr "" -#: config/tc-tic4x.c:1125 +#: config/tc-tic4x.c:1122 #, c-format msgid "This assembler does not support processor generation %ld" msgstr "" -#: config/tc-tic4x.c:1129 +#: config/tc-tic4x.c:1126 msgid "Changing processor generation on fly not supported..." msgstr "" -#: config/tc-tic4x.c:1416 +#: config/tc-tic4x.c:1413 msgid "Auxiliary register AR0--AR7 required for indirect" msgstr "" -#: config/tc-tic4x.c:1430 +#: config/tc-tic4x.c:1427 #, c-format msgid "Bad displacement %d (require 0--255)\n" msgstr "" -#: config/tc-tic4x.c:1448 +#: config/tc-tic4x.c:1445 msgid "Index register IR0,IR1 required for displacement" msgstr "" -#: config/tc-tic4x.c:1516 +#: config/tc-tic4x.c:1513 msgid "Expecting a register name" msgstr "" -#: config/tc-tic4x.c:1528 config/tc-tic4x.c:1551 config/tc-tic4x.c:1617 +#: config/tc-tic4x.c:1525 config/tc-tic4x.c:1548 config/tc-tic4x.c:1614 msgid "Number too large" msgstr "" -#: config/tc-tic4x.c:1541 config/tc-tic4x.c:1564 +#: config/tc-tic4x.c:1538 config/tc-tic4x.c:1561 msgid "Expecting a constant value" msgstr "" -#: config/tc-tic4x.c:1572 +#: config/tc-tic4x.c:1569 #, c-format msgid "Bad direct addressing construct %s" msgstr "" -#: config/tc-tic4x.c:1576 +#: config/tc-tic4x.c:1573 #, c-format msgid "Direct value of %ld is not suitable" msgstr "" -#: config/tc-tic4x.c:1600 +#: config/tc-tic4x.c:1597 msgid "Unknown indirect addressing mode" msgstr "" -#: config/tc-tic4x.c:1697 +#: config/tc-tic4x.c:1694 #, c-format msgid "Immediate value of %ld is too large for ldf" msgstr "" -#: config/tc-tic4x.c:1737 +#: config/tc-tic4x.c:1734 msgid "Destination register must be ARn" msgstr "" -#: config/tc-tic4x.c:1756 config/tc-tic4x.c:2129 config/tc-tic4x.c:2188 +#: config/tc-tic4x.c:1753 config/tc-tic4x.c:2126 config/tc-tic4x.c:2185 #, c-format msgid "Immediate value of %ld is too large" msgstr "" -#: config/tc-tic4x.c:1785 config/tc-tic4x.c:1990 +#: config/tc-tic4x.c:1782 config/tc-tic4x.c:1987 msgid "Invalid indirect addressing mode" msgstr "" -#: config/tc-tic4x.c:1809 config/tc-tic4x.c:1849 config/tc-tic4x.c:2040 -#: config/tc-tic4x.c:2062 +#: config/tc-tic4x.c:1806 config/tc-tic4x.c:1846 config/tc-tic4x.c:2037 +#: config/tc-tic4x.c:2059 msgid "Register must be Rn" msgstr "" -#: config/tc-tic4x.c:1863 config/tc-tic4x.c:1933 config/tc-tic4x.c:1947 +#: config/tc-tic4x.c:1860 config/tc-tic4x.c:1930 config/tc-tic4x.c:1944 msgid "Register must be R0--R7" msgstr "" -#: config/tc-tic4x.c:1887 config/tc-tic4x.c:1915 +#: config/tc-tic4x.c:1884 config/tc-tic4x.c:1912 #, c-format msgid "Invalid indirect addressing mode displacement %d" msgstr "" -#: config/tc-tic4x.c:1961 +#: config/tc-tic4x.c:1958 msgid "Destination register must be R2 or R3" msgstr "" -#: config/tc-tic4x.c:1975 +#: config/tc-tic4x.c:1972 msgid "Destination register must be R0 or R1" msgstr "" -#: config/tc-tic4x.c:2012 +#: config/tc-tic4x.c:2009 #, c-format msgid "Displacement value of %ld is too large" msgstr "" -#: config/tc-tic4x.c:2073 config/tc-tic4x.c:2204 +#: config/tc-tic4x.c:2070 config/tc-tic4x.c:2201 msgid "Floating point number not valid in expression" msgstr "" -#: config/tc-tic4x.c:2087 +#: config/tc-tic4x.c:2084 #, c-format msgid "Signed immediate value %ld too large" msgstr "" -#: config/tc-tic4x.c:2150 +#: config/tc-tic4x.c:2147 #, c-format msgid "Unsigned immediate value %ld too large" msgstr "" -#: config/tc-tic4x.c:2218 +#: config/tc-tic4x.c:2215 #, c-format msgid "Immediate value %ld too large" msgstr "" -#: config/tc-tic4x.c:2237 config/tc-tic4x.c:2265 +#: config/tc-tic4x.c:2234 config/tc-tic4x.c:2262 msgid "Register must be ivtp or tvtp" msgstr "" -#: config/tc-tic4x.c:2251 +#: config/tc-tic4x.c:2248 msgid "Register must be address register" msgstr "" -#: config/tc-tic4x.c:2324 +#: config/tc-tic4x.c:2321 msgid "Source and destination register should not be equal" msgstr "" -#: config/tc-tic4x.c:2339 +#: config/tc-tic4x.c:2336 msgid "Equal parallel destination registers, one result will be discarded" msgstr "" -#: config/tc-tic4x.c:2380 +#: config/tc-tic4x.c:2377 msgid "Too many operands scanned" msgstr "" -#: config/tc-tic4x.c:2411 +#: config/tc-tic4x.c:2408 msgid "Parallel opcode cannot contain more than two instructions" msgstr "" -#: config/tc-tic4x.c:2485 +#: config/tc-tic4x.c:2481 #, c-format msgid "Invalid operands for %s" msgstr "" -#: config/tc-tic4x.c:2488 +#: config/tc-tic4x.c:2484 #, c-format msgid "Invalid instruction %s" msgstr "" -#: config/tc-tic4x.c:2640 +#: config/tc-tic4x.c:2634 #, c-format msgid "Bad relocation type: 0x%02x" msgstr "" -#: config/tc-tic4x.c:2698 +#: config/tc-tic4x.c:2692 #, c-format msgid "Unsupported processor generation %d" msgstr "" -#: config/tc-tic4x.c:2706 +#: config/tc-tic4x.c:2700 msgid "Option -b is depreciated, please use -mbig" msgstr "" -#: config/tc-tic4x.c:2713 +#: config/tc-tic4x.c:2707 msgid "Option -p is depreciated, please use -mmemparm" msgstr "" -#: config/tc-tic4x.c:2720 +#: config/tc-tic4x.c:2714 msgid "Option -r is depreciated, please use -mregparm" msgstr "" -#: config/tc-tic4x.c:2727 +#: config/tc-tic4x.c:2721 msgid "Option -s is depreciated, please use -msmall" msgstr "" -#: config/tc-tic4x.c:2756 +#: config/tc-tic4x.c:2750 #, c-format msgid "" "\n" @@ -18782,12 +18873,12 @@ msgid "" " -menhanced enable enhanced opcode support\n" msgstr "" -#: config/tc-tic4x.c:2801 +#: config/tc-tic4x.c:2795 #, c-format msgid "Label \"$%d\" redefined" msgstr "" -#: config/tc-tic4x.c:3010 +#: config/tc-tic4x.c:3004 #, c-format msgid "Reloc %d not supported by object file format" msgstr "" @@ -18903,322 +18994,322 @@ msgstr "" msgid "Use of .def/.ref is deprecated. Use .global instead" msgstr "" -#: config/tc-tic54x.c:1345 +#: config/tc-tic54x.c:1343 msgid ".space/.bes repeat count is negative, ignored" msgstr "" -#: config/tc-tic54x.c:1350 +#: config/tc-tic54x.c:1348 msgid ".space/.bes repeat count is zero, ignored" msgstr "" -#: config/tc-tic54x.c:1423 +#: config/tc-tic54x.c:1419 msgid "Missing size argument" msgstr "" -#: config/tc-tic54x.c:1557 +#: config/tc-tic54x.c:1551 msgid "CPU version has already been set" msgstr "" -#: config/tc-tic54x.c:1561 +#: config/tc-tic54x.c:1555 #, c-format msgid "Unrecognized version '%s'" msgstr "" -#: config/tc-tic54x.c:1567 +#: config/tc-tic54x.c:1561 msgid "Changing of CPU version on the fly not supported" msgstr "" -#: config/tc-tic54x.c:1698 +#: config/tc-tic54x.c:1692 msgid "p2align not supported on this target" msgstr "" -#: config/tc-tic54x.c:1710 +#: config/tc-tic54x.c:1704 msgid "Argument to .even ignored" msgstr "" -#: config/tc-tic54x.c:1756 +#: config/tc-tic54x.c:1750 msgid "Invalid field size, must be from 1 to 32" msgstr "" -#: config/tc-tic54x.c:1769 +#: config/tc-tic54x.c:1763 msgid "field size must be 16 when value is relocatable" msgstr "" -#: config/tc-tic54x.c:1784 +#: config/tc-tic54x.c:1778 msgid "field value truncated" msgstr "" -#: config/tc-tic54x.c:1890 config/tc-tic54x.c:2176 +#: config/tc-tic54x.c:1882 config/tc-tic54x.c:2168 #, c-format msgid "Unrecognized section '%s'" msgstr "" -#: config/tc-tic54x.c:1899 +#: config/tc-tic54x.c:1891 msgid "Current section is uninitialized, section name required for .clink" msgstr "" -#: config/tc-tic54x.c:2087 +#: config/tc-tic54x.c:2079 msgid "ENDLOOP without corresponding LOOP" msgstr "" -#: config/tc-tic54x.c:2128 +#: config/tc-tic54x.c:2120 msgid "Mixing of normal and extended addressing not supported" msgstr "" -#: config/tc-tic54x.c:2134 +#: config/tc-tic54x.c:2126 msgid "Extended addressing not supported on the specified CPU" msgstr "" -#: config/tc-tic54x.c:2182 +#: config/tc-tic54x.c:2174 msgid ".sblock may be used for initialized sections only" msgstr "" -#: config/tc-tic54x.c:2212 +#: config/tc-tic54x.c:2204 msgid "Symbol missing for .set/.equ" msgstr "" -#: config/tc-tic54x.c:2267 +#: config/tc-tic54x.c:2259 msgid ".var may only be used within a macro definition" msgstr "" -#: config/tc-tic54x.c:2275 +#: config/tc-tic54x.c:2267 msgid "Substitution symbols must begin with a letter" msgstr "" -#: config/tc-tic54x.c:2354 +#: config/tc-tic54x.c:2346 #, c-format msgid "can't open macro library file '%s' for reading: %s" msgstr "" -#: config/tc-tic54x.c:2361 +#: config/tc-tic54x.c:2353 #, c-format msgid "File '%s' not in macro archive format" msgstr "" -#: config/tc-tic54x.c:2491 +#: config/tc-tic54x.c:2483 #, c-format msgid "Bad COFF version '%s'" msgstr "" -#: config/tc-tic54x.c:2500 +#: config/tc-tic54x.c:2492 #, c-format msgid "Bad CPU version '%s'" msgstr "" -#: config/tc-tic54x.c:2513 config/tc-tic54x.c:2516 +#: config/tc-tic54x.c:2505 config/tc-tic54x.c:2508 #, c-format msgid "Can't redirect stderr to the file '%s'" msgstr "" -#: config/tc-tic54x.c:2535 +#: config/tc-tic54x.c:2527 msgid "Macro nesting is too deep" msgstr "" -#: config/tc-tic54x.c:2638 +#: config/tc-tic54x.c:2630 #, c-format msgid "Undefined substitution symbol '%s'" msgstr "" -#: config/tc-tic54x.c:3121 +#: config/tc-tic54x.c:3113 #, c-format msgid "Unbalanced parenthesis in operand %d" msgstr "" -#: config/tc-tic54x.c:3152 config/tc-tic54x.c:3160 +#: config/tc-tic54x.c:3144 config/tc-tic54x.c:3152 msgid "Expecting operand after ','" msgstr "" -#: config/tc-tic54x.c:3171 +#: config/tc-tic54x.c:3163 msgid "Extra junk on line" msgstr "" -#: config/tc-tic54x.c:3208 +#: config/tc-tic54x.c:3200 msgid "Badly formed address expression" msgstr "" -#: config/tc-tic54x.c:3461 +#: config/tc-tic54x.c:3453 #, c-format msgid "Invalid dmad syntax '%s'" msgstr "" -#: config/tc-tic54x.c:3525 +#: config/tc-tic54x.c:3517 #, c-format msgid "" "Use the .mmregs directive to use memory-mapped register names such as '%s'" msgstr "" -#: config/tc-tic54x.c:3576 +#: config/tc-tic54x.c:3568 msgid "Address mode *+ARx is write-only. Results of reading are undefined." msgstr "" -#: config/tc-tic54x.c:3596 +#: config/tc-tic54x.c:3588 #, c-format msgid "Unrecognized indirect address format \"%s\"" msgstr "" -#: config/tc-tic54x.c:3634 +#: config/tc-tic54x.c:3626 #, c-format msgid "Operand '%s' out of range (%d <= x <= %d)" msgstr "" -#: config/tc-tic54x.c:3654 +#: config/tc-tic54x.c:3646 msgid "Error in relocation handling" msgstr "" -#: config/tc-tic54x.c:3673 config/tc-tic54x.c:3735 config/tc-tic54x.c:3763 +#: config/tc-tic54x.c:3665 config/tc-tic54x.c:3727 config/tc-tic54x.c:3755 #, c-format msgid "Unrecognized condition code \"%s\"" msgstr "" -#: config/tc-tic54x.c:3690 +#: config/tc-tic54x.c:3682 #, c-format msgid "Condition \"%s\" does not match preceding group" msgstr "" -#: config/tc-tic54x.c:3698 +#: config/tc-tic54x.c:3690 #, c-format msgid "" "Condition \"%s\" uses a different accumulator from a preceding condition" msgstr "" -#: config/tc-tic54x.c:3705 +#: config/tc-tic54x.c:3697 msgid "Only one comparison conditional allowed" msgstr "" -#: config/tc-tic54x.c:3710 +#: config/tc-tic54x.c:3702 msgid "Only one overflow conditional allowed" msgstr "" -#: config/tc-tic54x.c:3718 +#: config/tc-tic54x.c:3710 #, c-format msgid "Duplicate %s conditional" msgstr "" -#: config/tc-tic54x.c:3749 +#: config/tc-tic54x.c:3741 msgid "Invalid auxiliary register (use AR0-AR7)" msgstr "" -#: config/tc-tic54x.c:3780 +#: config/tc-tic54x.c:3772 msgid "lk addressing modes are invalid for memory-mapped register addressing" msgstr "" -#: config/tc-tic54x.c:3788 +#: config/tc-tic54x.c:3780 msgid "" "Address mode *+ARx is not allowed in memory-mapped register addressing. " "Resulting behavior is undefined." msgstr "" -#: config/tc-tic54x.c:3814 +#: config/tc-tic54x.c:3806 msgid "" "Destination accumulator for each part of this parallel instruction must be " "different" msgstr "" -#: config/tc-tic54x.c:3863 +#: config/tc-tic54x.c:3855 #, c-format msgid "Memory mapped register \"%s\" out of range" msgstr "" -#: config/tc-tic54x.c:3902 +#: config/tc-tic54x.c:3894 msgid "Invalid operand (use 1, 2, or 3)" msgstr "" -#: config/tc-tic54x.c:3928 +#: config/tc-tic54x.c:3919 msgid "A status register or status bit name is required" msgstr "" -#: config/tc-tic54x.c:3938 +#: config/tc-tic54x.c:3929 #, c-format msgid "Unrecognized status bit \"%s\"" msgstr "" -#: config/tc-tic54x.c:3961 +#: config/tc-tic54x.c:3950 #, c-format msgid "Invalid status register \"%s\"" msgstr "" -#: config/tc-tic54x.c:3973 +#: config/tc-tic54x.c:3962 #, c-format msgid "Operand \"%s\" out of range (use 1 or 2)" msgstr "" -#: config/tc-tic54x.c:4176 +#: config/tc-tic54x.c:4165 #, c-format msgid "Unrecognized instruction \"%s\"" msgstr "" -#: config/tc-tic54x.c:4205 +#: config/tc-tic54x.c:4193 #, c-format msgid "Unrecognized operand list '%s' for instruction '%s'" msgstr "" -#: config/tc-tic54x.c:4234 +#: config/tc-tic54x.c:4223 #, c-format msgid "Unrecognized parallel instruction \"%s\"" msgstr "" -#: config/tc-tic54x.c:4283 +#: config/tc-tic54x.c:4272 #, c-format msgid "Invalid operand (s) for parallel instruction \"%s\"" msgstr "" -#: config/tc-tic54x.c:4286 +#: config/tc-tic54x.c:4275 #, c-format msgid "Unrecognized parallel instruction combination \"%s || %s\"" msgstr "" -#: config/tc-tic54x.c:4514 +#: config/tc-tic54x.c:4503 #, c-format msgid "%s symbol recursion stopped at second appearance of '%s'" msgstr "" -#: config/tc-tic54x.c:4554 +#: config/tc-tic54x.c:4543 msgid "Unrecognized substitution symbol function" msgstr "" -#: config/tc-tic54x.c:4559 +#: config/tc-tic54x.c:4548 msgid "Missing '(' after substitution symbol function" msgstr "" -#: config/tc-tic54x.c:4572 +#: config/tc-tic54x.c:4561 msgid "Expecting second argument" msgstr "" -#: config/tc-tic54x.c:4590 config/tc-tic54x.c:4640 +#: config/tc-tic54x.c:4579 config/tc-tic54x.c:4629 msgid "Extra junk in function call, expecting ')'" msgstr "" -#: config/tc-tic54x.c:4616 +#: config/tc-tic54x.c:4605 msgid "Function expects two arguments" msgstr "" -#: config/tc-tic54x.c:4629 +#: config/tc-tic54x.c:4618 msgid "Expecting character constant argument" msgstr "" -#: config/tc-tic54x.c:4635 +#: config/tc-tic54x.c:4624 msgid "Both arguments must be substitution symbols" msgstr "" -#: config/tc-tic54x.c:4687 +#: config/tc-tic54x.c:4676 #, c-format msgid "Invalid subscript (use 1 to %d)" msgstr "" -#: config/tc-tic54x.c:4697 +#: config/tc-tic54x.c:4686 #, c-format msgid "Invalid length (use 0 to %d)" msgstr "" -#: config/tc-tic54x.c:4707 +#: config/tc-tic54x.c:4696 msgid "Missing ')' in subscripted substitution symbol expression" msgstr "" -#: config/tc-tic54x.c:4727 +#: config/tc-tic54x.c:4716 msgid "Missing forced substitution terminator ':'" msgstr "" -#: config/tc-tic54x.c:4881 +#: config/tc-tic54x.c:4870 #, c-format msgid "" "Instruction does not fit in available delay slots (%d-word insn, %d slot " @@ -19229,22 +19320,22 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: config/tc-tic54x.c:4925 +#: config/tc-tic54x.c:4914 #, c-format msgid "Unrecognized parallel instruction '%s'" msgstr "" -#: config/tc-tic54x.c:4937 +#: config/tc-tic54x.c:4926 #, c-format msgid "Instruction '%s' requires an LP cpu version" msgstr "" -#: config/tc-tic54x.c:4944 +#: config/tc-tic54x.c:4933 #, c-format msgid "Instruction '%s' requires far mode addressing" msgstr "" -#: config/tc-tic54x.c:4956 +#: config/tc-tic54x.c:4945 #, c-format msgid "" "Instruction does not fit in available delay slots (%d-word insn, %d slot " @@ -19255,38 +19346,38 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: config/tc-tic54x.c:4970 +#: config/tc-tic54x.c:4959 msgid "" "Instructions which cause PC discontinuity are not allowed in a delay slot. " "Resulting behavior is undefined." msgstr "" -#: config/tc-tic54x.c:4981 +#: config/tc-tic54x.c:4970 #, c-format msgid "'%s' is not repeatable. Resulting behavior is undefined." msgstr "" -#: config/tc-tic54x.c:4985 +#: config/tc-tic54x.c:4974 msgid "" "Instructions using long offset modifiers or absolute addresses are not " "repeatable. Resulting behavior is undefined." msgstr "" -#: config/tc-tic54x.c:5129 +#: config/tc-tic54x.c:5118 #, c-format msgid "Unsupported relocation size %d" msgstr "" -#: config/tc-tic54x.c:5260 +#: config/tc-tic54x.c:5249 msgid "non-absolute value used with .space/.bes" msgstr "" -#: config/tc-tic54x.c:5264 +#: config/tc-tic54x.c:5253 #, c-format msgid "negative value ignored in %s" msgstr "" -#: config/tc-tic54x.c:5352 +#: config/tc-tic54x.c:5341 #, c-format msgid "attempt to .space/.bes backwards? (%ld)" msgstr "" @@ -19378,33 +19469,33 @@ msgstr "" msgid "personality routine required before .handlerdata directive" msgstr "" -#: config/tc-tic6x.c:530 +#: config/tc-tic6x.c:531 msgid "expected symbol" msgstr "" -#: config/tc-tic6x.c:577 +#: config/tc-tic6x.c:578 msgid "expected comma after symbol name" msgstr "" -#: config/tc-tic6x.c:587 +#: config/tc-tic6x.c:588 #, c-format msgid "invalid length for .scomm directive" msgstr "" -#: config/tc-tic6x.c:601 +#: config/tc-tic6x.c:602 msgid "alignment is not a positive number" msgstr "" -#: config/tc-tic6x.c:613 +#: config/tc-tic6x.c:614 msgid "alignment is not a power of 2" msgstr "" -#: config/tc-tic6x.c:628 +#: config/tc-tic6x.c:629 #, c-format msgid "attempt to re-define symbol `%s'" msgstr "" -#: config/tc-tic6x.c:637 +#: config/tc-tic6x.c:638 #, c-format msgid "attempt to redefine `%s' with a different length" msgstr "" @@ -19554,7 +19645,7 @@ msgstr "" msgid "functional unit already masked for operand %u of '%.*s'" msgstr "" -#: config/tc-tic6x.c:2961 config/tc-tic6x.c:3719 +#: config/tc-tic6x.c:2961 config/tc-tic6x.c:3718 #, c-format msgid "'%.*s' instruction not in a software pipelined loop" msgstr "" @@ -19564,202 +19655,202 @@ msgstr "" msgid "instruction '%.*s' cannot be predicated" msgstr "" -#: config/tc-tic6x.c:3327 +#: config/tc-tic6x.c:3326 #, c-format msgid "'%.*s' instruction not supported on this architecture" msgstr "" -#: config/tc-tic6x.c:3335 +#: config/tc-tic6x.c:3334 #, c-format msgid "'%.*s' instruction not supported on this functional unit" msgstr "" -#: config/tc-tic6x.c:3343 +#: config/tc-tic6x.c:3342 #, c-format msgid "" "'%.*s' instruction not supported on this functional unit for this " "architecture" msgstr "" -#: config/tc-tic6x.c:3363 +#: config/tc-tic6x.c:3362 msgid "missing operand after comma" msgstr "" -#: config/tc-tic6x.c:3371 config/tc-tic6x.c:3389 +#: config/tc-tic6x.c:3370 config/tc-tic6x.c:3388 #, c-format msgid "too many operands to '%.*s'" msgstr "" -#: config/tc-tic6x.c:3402 +#: config/tc-tic6x.c:3401 #, c-format msgid "bad number of operands to '%.*s'" msgstr "" -#: config/tc-tic6x.c:3474 +#: config/tc-tic6x.c:3473 #, c-format msgid "operand %u of '%.*s' not constant" msgstr "" -#: config/tc-tic6x.c:3479 +#: config/tc-tic6x.c:3478 #, c-format msgid "operand %u of '%.*s' on wrong side" msgstr "" -#: config/tc-tic6x.c:3484 +#: config/tc-tic6x.c:3483 #, c-format msgid "operand %u of '%.*s' not a valid return address register" msgstr "" -#: config/tc-tic6x.c:3490 +#: config/tc-tic6x.c:3489 #, c-format msgid "operand %u of '%.*s' is write-only" msgstr "" -#: config/tc-tic6x.c:3495 +#: config/tc-tic6x.c:3494 #, c-format msgid "operand %u of '%.*s' is read-only" msgstr "" -#: config/tc-tic6x.c:3500 +#: config/tc-tic6x.c:3499 #, c-format msgid "operand %u of '%.*s' not a valid memory reference" msgstr "" -#: config/tc-tic6x.c:3506 +#: config/tc-tic6x.c:3505 #, c-format msgid "operand %u of '%.*s' not a valid base address register" msgstr "" -#: config/tc-tic6x.c:3592 +#: config/tc-tic6x.c:3591 #, c-format msgid "bad operand combination for '%.*s'" msgstr "" -#: config/tc-tic6x.c:3638 +#: config/tc-tic6x.c:3637 msgid "parallel instruction not following another instruction" msgstr "" -#: config/tc-tic6x.c:3644 +#: config/tc-tic6x.c:3643 msgid "too many instructions in execute packet" msgstr "" -#: config/tc-tic6x.c:3649 +#: config/tc-tic6x.c:3648 msgid "label not at start of execute packet" msgstr "" -#: config/tc-tic6x.c:3652 +#: config/tc-tic6x.c:3651 #, c-format msgid "'%.*s' instruction not at start of execute packet" msgstr "" -#: config/tc-tic6x.c:3700 +#: config/tc-tic6x.c:3699 msgid "functional unit already used in this execute packet" msgstr "" -#: config/tc-tic6x.c:3708 +#: config/tc-tic6x.c:3707 msgid "nested software pipelined loop" msgstr "" -#: config/tc-tic6x.c:3727 +#: config/tc-tic6x.c:3726 msgid "'||^' without previous SPMASK" msgstr "" -#: config/tc-tic6x.c:3729 +#: config/tc-tic6x.c:3728 msgid "cannot mask instruction using no functional unit" msgstr "" -#: config/tc-tic6x.c:3741 +#: config/tc-tic6x.c:3740 msgid "functional unit already masked" msgstr "" -#: config/tc-tic6x.c:3806 +#: config/tc-tic6x.c:3805 msgid "value too large for 2-byte field" msgstr "" -#: config/tc-tic6x.c:3816 +#: config/tc-tic6x.c:3815 msgid "value too large for 1-byte field" msgstr "" -#: config/tc-tic6x.c:3943 +#: config/tc-tic6x.c:3942 msgid "immediate offset not 2-byte-aligned" msgstr "" -#: config/tc-tic6x.c:3971 +#: config/tc-tic6x.c:3970 msgid "immediate offset not 4-byte-aligned" msgstr "" -#: config/tc-tic6x.c:3985 +#: config/tc-tic6x.c:3984 msgid "addend used with $DSBT_INDEX" msgstr "" -#: config/tc-tic6x.c:3999 config/tc-tic6x.c:4017 config/tc-tic6x.c:4035 -#: config/tc-tic6x.c:4053 +#: config/tc-tic6x.c:3998 config/tc-tic6x.c:4016 config/tc-tic6x.c:4034 +#: config/tc-tic6x.c:4052 msgid "PC-relative offset not 4-byte-aligned" msgstr "" -#: config/tc-tic6x.c:4002 config/tc-tic6x.c:4020 config/tc-tic6x.c:4038 -#: config/tc-tic6x.c:4056 +#: config/tc-tic6x.c:4001 config/tc-tic6x.c:4019 config/tc-tic6x.c:4037 +#: config/tc-tic6x.c:4055 msgid "PC-relative offset out of range" msgstr "" -#: config/tc-tic6x.c:4537 +#: config/tc-tic6x.c:4536 #, c-format msgid "undefined symbol %s in PCR relocation" msgstr "" -#: config/tc-tic6x.c:4654 +#: config/tc-tic6x.c:4653 #, c-format msgid "group section `%s' has no group signature" msgstr "" -#: config/tc-tic6x.c:4806 +#: config/tc-tic6x.c:4805 msgid "missing .endp before .cfi_startproc" msgstr "" -#: config/tc-tic6x.c:4911 +#: config/tc-tic6x.c:4910 msgid "stack pointer offset too large for personality routine" msgstr "" -#: config/tc-tic6x.c:4918 +#: config/tc-tic6x.c:4917 msgid "stack frame layout does not match personality routine" msgstr "" -#: config/tc-tic6x.c:5052 +#: config/tc-tic6x.c:5051 msgid "too many unwinding instructions" msgstr "" -#: config/tc-tic6x.c:5127 config/tc-tic6x.c:5140 config/tc-tic6x.c:5148 +#: config/tc-tic6x.c:5126 config/tc-tic6x.c:5139 config/tc-tic6x.c:5147 #, c-format msgid "unable to generate unwinding opcode for reg %d" msgstr "" -#: config/tc-tic6x.c:5157 +#: config/tc-tic6x.c:5156 msgid "unable to restore return address from previously restored reg" msgstr "" -#: config/tc-tic6x.c:5169 +#: config/tc-tic6x.c:5168 #, c-format msgid "unhandled CFA insn for unwinding (%d)" msgstr "" -#: config/tc-tic6x.c:5179 +#: config/tc-tic6x.c:5178 #, c-format msgid "unable to generate unwinding opcode for frame pointer reg %d" msgstr "" -#: config/tc-tic6x.c:5188 +#: config/tc-tic6x.c:5187 msgid "unable to generate unwinding opcode for frame pointer offset" msgstr "" -#: config/tc-tic6x.c:5197 +#: config/tc-tic6x.c:5196 msgid "unwound stack pointer not doubleword aligned" msgstr "" -#: config/tc-tic6x.c:5342 +#: config/tc-tic6x.c:5341 msgid "stack frame layout too complex for unwinder" msgstr "" -#: config/tc-tic6x.c:5359 +#: config/tc-tic6x.c:5358 msgid "unwound frame has negative size" msgstr "" @@ -19801,66 +19892,66 @@ msgstr "" msgid "Invalid combination of instructions for bundle." msgstr "" -#: config/tc-tilegx.c:976 config/tc-tilepro.c:863 +#: config/tc-tilegx.c:974 config/tc-tilepro.c:861 msgid "instruction address is not a multiple of 8" msgstr "" -#: config/tc-tilegx.c:1053 config/tc-tilepro.c:941 +#: config/tc-tilegx.c:1051 config/tc-tilepro.c:939 msgid "Invalid expression." msgstr "" -#: config/tc-tilegx.c:1099 config/tc-tilepro.c:983 +#: config/tc-tilegx.c:1092 config/tc-tilepro.c:980 #, c-format msgid "Expected register, got '%s'." msgstr "" -#: config/tc-tilegx.c:1106 config/tc-tilepro.c:990 +#: config/tc-tilegx.c:1098 config/tc-tilepro.c:986 #, c-format msgid "Found use of non-canonical register name %s; use %s instead." msgstr "" -#: config/tc-tilegx.c:1166 config/tc-tilepro.c:1049 +#: config/tc-tilegx.c:1158 config/tc-tilepro.c:1045 #, c-format msgid "Too few operands to '%s'." msgstr "" -#: config/tc-tilegx.c:1171 config/tc-tilepro.c:1054 +#: config/tc-tilegx.c:1163 config/tc-tilepro.c:1050 #, c-format msgid "Unexpected character '%c' after operand %d to %s." msgstr "" -#: config/tc-tilegx.c:1192 config/tc-tilepro.c:1075 +#: config/tc-tilegx.c:1184 config/tc-tilepro.c:1071 msgid "Expected immediate expression" msgstr "" -#: config/tc-tilegx.c:1205 config/tc-tilegx.c:1807 config/tc-tilepro.c:1088 -#: config/tc-tilepro.c:1584 +#: config/tc-tilegx.c:1197 config/tc-tilegx.c:1799 config/tc-tilepro.c:1084 +#: config/tc-tilepro.c:1580 msgid "Found '}' when not bundling." msgstr "" -#: config/tc-tilegx.c:1246 config/tc-tilepro.c:1128 +#: config/tc-tilegx.c:1238 config/tc-tilepro.c:1124 #, c-format msgid "Unknown opcode `%.*s'." msgstr "" -#: config/tc-tilegx.c:1257 config/tc-tilepro.c:1139 +#: config/tc-tilegx.c:1249 config/tc-tilepro.c:1135 msgid "Too many instructions for bundle." msgstr "" -#: config/tc-tilegx.c:1349 config/tc-tilepro.c:1221 +#: config/tc-tilegx.c:1341 config/tc-tilepro.c:1217 msgid "Bad call to md_atof ()" msgstr "" -#: config/tc-tilegx.c:1425 config/tc-tilepro.c:1284 +#: config/tc-tilegx.c:1417 config/tc-tilepro.c:1280 msgid "This operator only produces two byte values." msgstr "" -#: config/tc-tilegx.c:1752 config/tc-tilepro.c:1529 +#: config/tc-tilegx.c:1744 config/tc-tilepro.c:1525 #, c-format msgid "internal error? cannot generate `%s' relocation (%d, %d)" msgstr "" -#: config/tc-tilegx.c:1795 config/tc-tilepro.c:1572 +#: config/tc-tilegx.c:1787 config/tc-tilepro.c:1568 msgid "Found '{' when already bundling." msgstr "" @@ -19871,489 +19962,489 @@ msgid "" " -V print assembler version number\n" msgstr "" -#: config/tc-v850.c:291 +#: config/tc-v850.c:290 #, c-format msgid ".COMMon length (%d.) < 0! Ignored." msgstr "" -#: config/tc-v850.c:312 +#: config/tc-v850.c:311 #, c-format msgid "Length of .comm \"%s\" is already %ld. Not changed to %d." msgstr "" -#: config/tc-v850.c:338 +#: config/tc-v850.c:337 msgid "Common alignment negative; 0 assumed" msgstr "" -#: config/tc-v850.c:542 +#: config/tc-v850.c:540 msgid ".longcall pseudo-op seen when not relaxing" msgstr "" -#: config/tc-v850.c:544 +#: config/tc-v850.c:542 msgid ".longjump pseudo-op seen when not relaxing" msgstr "" -#: config/tc-v850.c:551 +#: config/tc-v850.c:549 msgid "bad .longcall format" msgstr "" -#: config/tc-v850.c:1389 +#: config/tc-v850.c:1386 #, c-format msgid "unknown operand shift: %x\n" msgstr "" -#: config/tc-v850.c:1390 +#: config/tc-v850.c:1387 msgid "internal failure in parse_register_list" msgstr "" -#: config/tc-v850.c:1406 +#: config/tc-v850.c:1403 msgid "constant expression or register list expected" msgstr "" -#: config/tc-v850.c:1411 +#: config/tc-v850.c:1408 msgid "high bits set in register list expression" msgstr "" -#: config/tc-v850.c:1449 config/tc-v850.c:1506 +#: config/tc-v850.c:1446 config/tc-v850.c:1503 msgid "illegal register included in list" msgstr "" -#: config/tc-v850.c:1455 +#: config/tc-v850.c:1452 msgid "system registers cannot be included in list" msgstr "" -#: config/tc-v850.c:1481 +#: config/tc-v850.c:1478 msgid "second register should follow dash in register list" msgstr "" -#: config/tc-v850.c:1486 +#: config/tc-v850.c:1483 msgid "second register should be greater than first register" msgstr "" -#: config/tc-v850.c:1536 +#: config/tc-v850.c:1533 #, c-format msgid " V850 options:\n" msgstr "" -#: config/tc-v850.c:1537 +#: config/tc-v850.c:1534 #, c-format msgid " -mwarn-signed-overflow Warn if signed immediate values overflow\n" msgstr "" -#: config/tc-v850.c:1538 +#: config/tc-v850.c:1535 #, c-format msgid "" " -mwarn-unsigned-overflow Warn if unsigned immediate values overflow\n" msgstr "" -#: config/tc-v850.c:1539 +#: config/tc-v850.c:1536 #, c-format msgid " -mv850 The code is targeted at the v850\n" msgstr "" -#: config/tc-v850.c:1540 +#: config/tc-v850.c:1537 #, c-format msgid " -mv850e The code is targeted at the v850e\n" msgstr "" -#: config/tc-v850.c:1541 +#: config/tc-v850.c:1538 #, c-format msgid " -mv850e1 The code is targeted at the v850e1\n" msgstr "" -#: config/tc-v850.c:1542 +#: config/tc-v850.c:1539 #, c-format msgid " -mv850e2 The code is targeted at the v850e2\n" msgstr "" -#: config/tc-v850.c:1543 +#: config/tc-v850.c:1540 #, c-format msgid " -mv850e2v3 The code is targeted at the v850e2v3\n" msgstr "" -#: config/tc-v850.c:1544 +#: config/tc-v850.c:1541 #, c-format msgid " -mv850e2v4 Alias for -mv850e3v5\n" msgstr "" -#: config/tc-v850.c:1545 +#: config/tc-v850.c:1542 #, c-format msgid " -mv850e3v5 The code is targeted at the v850e3v5\n" msgstr "" -#: config/tc-v850.c:1546 +#: config/tc-v850.c:1543 #, c-format msgid " -mrelax Enable relaxation\n" msgstr "" -#: config/tc-v850.c:1547 +#: config/tc-v850.c:1544 #, c-format msgid "" " --disp-size-default-22 branch displacement with unknown size is 22 bits " "(default)\n" msgstr "" -#: config/tc-v850.c:1548 +#: config/tc-v850.c:1545 #, c-format msgid "" " --disp-size-default-32 branch displacement with unknown size is 32 " "bits\n" msgstr "" -#: config/tc-v850.c:1549 +#: config/tc-v850.c:1546 #, c-format msgid " -mextension enable extension opcode support\n" msgstr "" -#: config/tc-v850.c:1550 +#: config/tc-v850.c:1547 #, c-format msgid " -mno-bcond17\t\t disable b<cond> disp17 instruction\n" msgstr "" -#: config/tc-v850.c:1551 +#: config/tc-v850.c:1548 #, c-format msgid " -mno-stld23\t\t disable st/ld offset23 instruction\n" msgstr "" -#: config/tc-v850.c:1552 +#: config/tc-v850.c:1549 #, c-format msgid " -mgcc-abi Mark the binary as using the old GCC ABI\n" msgstr "" -#: config/tc-v850.c:1553 +#: config/tc-v850.c:1550 #, c-format msgid "" " -mrh850-abi Mark the binary as using the RH850 ABI " "(default)\n" msgstr "" -#: config/tc-v850.c:1554 +#: config/tc-v850.c:1551 #, c-format msgid " -m8byte-align Mark the binary as using 64-bit alignment\n" msgstr "" -#: config/tc-v850.c:1555 +#: config/tc-v850.c:1552 #, c-format msgid "" " -m4byte-align Mark the binary as using 32-bit alignment " "(default)\n" msgstr "" -#: config/tc-v850.c:1556 +#: config/tc-v850.c:1553 #, c-format msgid "" " -msoft-float Mark the binary as not using FP insns (default " "for pre e2v3)\n" msgstr "" -#: config/tc-v850.c:1557 +#: config/tc-v850.c:1554 #, c-format msgid "" " -mhard-float Mark the binary as using FP insns (default for " "e2v3 and up)\n" msgstr "" -#: config/tc-v850.c:1945 +#: config/tc-v850.c:1922 #, c-format msgid "Unable to determine default target processor from string: %s" msgstr "" -#: config/tc-v850.c:1988 +#: config/tc-v850.c:1965 msgid "hi0() relocation used on an instruction which does not support it" msgstr "" -#: config/tc-v850.c:2008 +#: config/tc-v850.c:1985 msgid "hi() relocation used on an instruction which does not support it" msgstr "" -#: config/tc-v850.c:2027 +#: config/tc-v850.c:2004 msgid "lo() relocation used on an instruction which does not support it" msgstr "" -#: config/tc-v850.c:2038 +#: config/tc-v850.c:2015 msgid "ctoff() is not supported by the rh850 ABI. Use -mgcc-abi instead" msgstr "" -#: config/tc-v850.c:2054 +#: config/tc-v850.c:2031 msgid "ctoff() relocation used on an instruction which does not support it" msgstr "" -#: config/tc-v850.c:2073 +#: config/tc-v850.c:2050 msgid "sdaoff() relocation used on an instruction which does not support it" msgstr "" -#: config/tc-v850.c:2092 +#: config/tc-v850.c:2069 msgid "zdaoff() relocation used on an instruction which does not support it" msgstr "" -#: config/tc-v850.c:2124 +#: config/tc-v850.c:2101 msgid "tdaoff() relocation used on an instruction which does not support it" msgstr "" -#: config/tc-v850.c:2265 +#: config/tc-v850.c:2242 #, c-format msgid "operand out of range (%d is not between %d and %d)" msgstr "" -#: config/tc-v850.c:2348 +#: config/tc-v850.c:2325 msgid "st/ld offset 23 instruction was disabled ." msgstr "" -#: config/tc-v850.c:2357 +#: config/tc-v850.c:2334 msgid "Target processor does not support this instruction." msgstr "" -#: config/tc-v850.c:2469 config/tc-v850.c:2479 config/tc-v850.c:2500 -#: config/tc-v850.c:2514 config/tc-v850.c:2520 config/tc-v850.c:2544 -#: config/tc-v850.c:2550 config/tc-v850.c:2557 config/tc-v850.c:2571 -#: config/tc-v850.c:2585 config/tc-v850.c:2591 config/tc-v850.c:2929 +#: config/tc-v850.c:2446 config/tc-v850.c:2456 config/tc-v850.c:2477 +#: config/tc-v850.c:2491 config/tc-v850.c:2497 config/tc-v850.c:2521 +#: config/tc-v850.c:2527 config/tc-v850.c:2534 config/tc-v850.c:2548 +#: config/tc-v850.c:2562 config/tc-v850.c:2568 config/tc-v850.c:2906 msgid "immediate operand is too large" msgstr "" -#: config/tc-v850.c:2486 +#: config/tc-v850.c:2463 #, c-format msgid "AAARG -> unhandled constant reloc: %d" msgstr "" -#: config/tc-v850.c:2621 config/tc-v850.c:2632 +#: config/tc-v850.c:2598 config/tc-v850.c:2609 msgid "constant too big to fit into instruction" msgstr "" -#: config/tc-v850.c:2707 +#: config/tc-v850.c:2684 msgid "odd number cannot be used here" msgstr "" -#: config/tc-v850.c:2752 +#: config/tc-v850.c:2729 msgid "invalid register name" msgstr "" -#: config/tc-v850.c:2758 +#: config/tc-v850.c:2735 msgid "register r0 cannot be used here" msgstr "" -#: config/tc-v850.c:2764 +#: config/tc-v850.c:2741 msgid "odd register cannot be used here" msgstr "" -#: config/tc-v850.c:2773 +#: config/tc-v850.c:2750 msgid "invalid system register name" msgstr "" -#: config/tc-v850.c:2787 +#: config/tc-v850.c:2764 msgid "expected EP register" msgstr "" -#: config/tc-v850.c:2804 config/tc-v850.c:2817 +#: config/tc-v850.c:2781 config/tc-v850.c:2794 msgid "invalid condition code name" msgstr "" -#: config/tc-v850.c:2810 +#: config/tc-v850.c:2787 msgid "condition sa cannot be used here" msgstr "" -#: config/tc-v850.c:2823 +#: config/tc-v850.c:2800 msgid "invalid cache operation name" msgstr "" -#: config/tc-v850.c:2828 +#: config/tc-v850.c:2805 msgid "invalid pref operation name" msgstr "" -#: config/tc-v850.c:2833 +#: config/tc-v850.c:2810 msgid "invalid vector register name" msgstr "" -#: config/tc-v850.c:2871 +#: config/tc-v850.c:2848 msgid "syntax error: value is missing before the register name" msgstr "" -#: config/tc-v850.c:2873 +#: config/tc-v850.c:2850 msgid "syntax error: register not expected" msgstr "" -#: config/tc-v850.c:2887 +#: config/tc-v850.c:2864 msgid "syntax error: system register not expected" msgstr "" -#: config/tc-v850.c:2892 config/tc-v850.c:2897 +#: config/tc-v850.c:2869 config/tc-v850.c:2874 msgid "syntax error: condition code not expected" msgstr "" -#: config/tc-v850.c:2902 +#: config/tc-v850.c:2879 msgid "syntax error: vector register not expected" msgstr "" -#: config/tc-v850.c:2913 +#: config/tc-v850.c:2890 msgid "immediate 0 cannot be used here" msgstr "" -#: config/tc-v850.c:2937 +#: config/tc-v850.c:2914 msgid "immediate operand is not match" msgstr "" -#: config/tc-v850.c:2950 +#: config/tc-v850.c:2927 msgid "displacement is too large" msgstr "" -#: config/tc-v850.c:2968 config/tc-xtensa.c:13093 +#: config/tc-v850.c:2945 config/tc-xtensa.c:13099 msgid "invalid operand" msgstr "" -#: config/tc-v850.c:3080 +#: config/tc-v850.c:3057 msgid "loop: 32-bit displacement not supported" msgstr "" -#: config/tc-vax.c:1339 +#: config/tc-vax.c:1337 msgid "no '[' to match ']'" msgstr "" -#: config/tc-vax.c:1355 +#: config/tc-vax.c:1353 msgid "bad register in []" msgstr "" -#: config/tc-vax.c:1357 +#: config/tc-vax.c:1355 msgid "[PC] index banned" msgstr "" -#: config/tc-vax.c:1393 +#: config/tc-vax.c:1391 msgid "no '(' to match ')'" msgstr "" -#: config/tc-vax.c:1509 +#: config/tc-vax.c:1507 msgid "invalid branch operand" msgstr "" -#: config/tc-vax.c:1536 +#: config/tc-vax.c:1534 msgid "address prohibits @" msgstr "" -#: config/tc-vax.c:1538 +#: config/tc-vax.c:1536 msgid "address prohibits #" msgstr "" -#: config/tc-vax.c:1542 +#: config/tc-vax.c:1540 msgid "address prohibits -()" msgstr "" -#: config/tc-vax.c:1544 +#: config/tc-vax.c:1542 msgid "address prohibits ()+" msgstr "" -#: config/tc-vax.c:1547 +#: config/tc-vax.c:1545 msgid "address prohibits ()" msgstr "" -#: config/tc-vax.c:1549 +#: config/tc-vax.c:1547 msgid "address prohibits []" msgstr "" -#: config/tc-vax.c:1551 +#: config/tc-vax.c:1549 msgid "address prohibits register" msgstr "" -#: config/tc-vax.c:1553 +#: config/tc-vax.c:1551 msgid "address prohibits displacement length specifier" msgstr "" -#: config/tc-vax.c:1581 +#: config/tc-vax.c:1579 msgid "invalid operand of S^#" msgstr "" -#: config/tc-vax.c:1594 +#: config/tc-vax.c:1592 msgid "S^# needs expression" msgstr "" -#: config/tc-vax.c:1601 +#: config/tc-vax.c:1599 msgid "S^# may only read-access" msgstr "" -#: config/tc-vax.c:1624 +#: config/tc-vax.c:1622 msgid "invalid operand of -()" msgstr "" -#: config/tc-vax.c:1630 +#: config/tc-vax.c:1628 msgid "-(PC) unpredictable" msgstr "" -#: config/tc-vax.c:1632 +#: config/tc-vax.c:1630 msgid "[]index same as -()register: unpredictable" msgstr "" -#: config/tc-vax.c:1664 +#: config/tc-vax.c:1662 msgid "invalid operand of ()+" msgstr "" -#: config/tc-vax.c:1670 +#: config/tc-vax.c:1668 msgid "(PC)+ unpredictable" msgstr "" -#: config/tc-vax.c:1672 +#: config/tc-vax.c:1670 msgid "[]index same as ()+register: unpredictable" msgstr "" -#: config/tc-vax.c:1695 +#: config/tc-vax.c:1693 msgid "# conflicts length" msgstr "" -#: config/tc-vax.c:1697 +#: config/tc-vax.c:1695 msgid "# bars register" msgstr "" -#: config/tc-vax.c:1717 +#: config/tc-vax.c:1715 msgid "writing or modifying # is unpredictable" msgstr "" -#: config/tc-vax.c:1743 +#: config/tc-vax.c:1741 msgid "length not needed" msgstr "" -#: config/tc-vax.c:1750 +#: config/tc-vax.c:1748 msgid "can't []index a register, because it has no address" msgstr "" -#: config/tc-vax.c:1752 +#: config/tc-vax.c:1750 msgid "a register has no address" msgstr "" -#: config/tc-vax.c:1761 +#: config/tc-vax.c:1759 msgid "PC part of operand unpredictable" msgstr "" -#: config/tc-vax.c:1919 +#: config/tc-vax.c:1917 msgid "odd number of bytes in operand description" msgstr "" -#: config/tc-vax.c:1933 +#: config/tc-vax.c:1931 msgid "Bad operand" msgstr "" -#: config/tc-vax.c:1938 +#: config/tc-vax.c:1936 msgid "Not enough operands" msgstr "" -#: config/tc-vax.c:2212 +#: config/tc-vax.c:2210 msgid "SYMBOL TABLE not implemented" msgstr "" -#: config/tc-vax.c:2216 +#: config/tc-vax.c:2214 msgid "TOKEN TRACE not implemented" msgstr "" -#: config/tc-vax.c:2220 +#: config/tc-vax.c:2218 #, c-format msgid "Displacement length %s ignored!" msgstr "" -#: config/tc-vax.c:2224 +#: config/tc-vax.c:2222 #, c-format msgid "I don't need or use temp. file \"%s\"." msgstr "" -#: config/tc-vax.c:2228 +#: config/tc-vax.c:2226 msgid "I don't use an interpass file! -V ignored" msgstr "" -#: config/tc-vax.c:2252 +#: config/tc-vax.c:2250 #, c-format msgid "" "VAX options:\n" @@ -20365,7 +20456,7 @@ msgid "" "-V\t\t\tignored\n" msgstr "" -#: config/tc-vax.c:2261 +#: config/tc-vax.c:2259 #, c-format msgid "" "ELF options:\n" @@ -20373,61 +20464,61 @@ msgid "" "-Q[y|n]\t\t\tignored\n" msgstr "" -#: config/tc-vax.c:2422 +#: config/tc-vax.c:2420 #, c-format msgid "Ignoring statement due to \"%s\"" msgstr "" -#: config/tc-vax.c:2439 +#: config/tc-vax.c:2437 #, c-format msgid "Aborting because statement has \"%s\"" msgstr "" -#: config/tc-vax.c:2484 +#: config/tc-vax.c:2482 msgid "Can't relocate expression" msgstr "" -#: config/tc-vax.c:2587 +#: config/tc-vax.c:2585 msgid "Bignum not permitted in short literal. Immediate mode assumed." msgstr "" -#: config/tc-vax.c:2596 +#: config/tc-vax.c:2594 msgid "Can't do flonum short literal: immediate mode used." msgstr "" -#: config/tc-vax.c:2643 +#: config/tc-vax.c:2641 #, c-format msgid "A bignum/flonum may not be a displacement: 0x%<PRIx64> used" msgstr "" -#: config/tc-vax.c:2956 +#: config/tc-vax.c:2954 #, c-format msgid "Short literal overflow(%ld.), immediate mode assumed." msgstr "" -#: config/tc-vax.c:2965 +#: config/tc-vax.c:2963 #, c-format msgid "Forced short literal to immediate mode. now_seg=%s to_seg=%s" msgstr "" -#: config/tc-vax.c:3030 +#: config/tc-vax.c:3028 msgid "Length specification ignored. Address mode 9F used" msgstr "" -#: config/tc-vax.c:3088 +#: config/tc-vax.c:3086 msgid "Invalid operand: immediate value used as base address." msgstr "" -#: config/tc-vax.c:3090 +#: config/tc-vax.c:3088 msgid "Invalid operand: immediate value used as address." msgstr "" -#: config/tc-vax.c:3115 +#: config/tc-vax.c:3113 #, c-format msgid "Symbol %s used as immediate operand in PIC mode." msgstr "" -#: config/tc-visium.c:836 +#: config/tc-visium.c:821 msgid "Bad call to MD_ATOF()" msgstr "" @@ -20505,7 +20596,7 @@ msgstr "" msgid "missing table index" msgstr "" -#: config/tc-wasm32.c:726 config/tc-z80.c:3697 read.c:4019 +#: config/tc-wasm32.c:726 config/tc-z80.c:3697 read.c:4072 #, c-format msgid "junk at end of line, first unrecognized character is `%c'" msgstr "" @@ -20532,71 +20623,71 @@ msgstr "" msgid "opcode missing or not found on input line" msgstr "" -#: config/tc-xgate.c:497 +#: config/tc-xgate.c:496 #, c-format msgid "opcode %s not found in opcode hash table" msgstr "" -#: config/tc-xgate.c:509 +#: config/tc-xgate.c:508 msgid "matching operands to opcode" msgstr "" -#: config/tc-xgate.c:549 +#: config/tc-xgate.c:546 msgid ": processing macro, real opcode handle not found in hash" msgstr "" -#: config/tc-xgate.c:680 +#: config/tc-xgate.c:677 #, c-format msgid "Value %ld not aligned by 2 for 9-bit PC-relative branch." msgstr "" -#: config/tc-xgate.c:697 +#: config/tc-xgate.c:694 #, c-format msgid "Value %ld not aligned by 2 for 10-bit PC-relative branch." msgstr "" -#: config/tc-xgate.c:724 +#: config/tc-xgate.c:721 msgid "Value out of 3-bit range." msgstr "" -#: config/tc-xgate.c:731 +#: config/tc-xgate.c:728 msgid "Value out of 4-bit range." msgstr "" -#: config/tc-xgate.c:738 +#: config/tc-xgate.c:735 msgid "Value out of 5-bit range." msgstr "" -#: config/tc-xgate.c:875 +#: config/tc-xgate.c:872 msgid ":operand has too many bits" msgstr "" -#: config/tc-xgate.c:994 +#: config/tc-xgate.c:993 msgid "unknown operand count" msgstr "" -#: config/tc-xgate.c:1238 config/tc-xgate.c:1250 +#: config/tc-xgate.c:1237 config/tc-xgate.c:1249 msgid ": expected register name r0-r7 " msgstr "" -#: config/tc-xgate.c:1286 +#: config/tc-xgate.c:1285 #, c-format msgid ":operand value(%d) too big for constraint" msgstr "" -#: config/tc-xgate.c:1304 +#: config/tc-xgate.c:1303 msgid "you must use a hi/lo directive or 16-bit macro to load a 16-bit value." msgstr "" -#: config/tc-xgate.c:1317 +#: config/tc-xgate.c:1316 msgid ":unknown relocation constraint size" msgstr "" -#: config/tc-xgate.c:1324 +#: config/tc-xgate.c:1323 msgid ": expected register name ccr " msgstr "" -#: config/tc-xgate.c:1330 +#: config/tc-xgate.c:1329 msgid ": expected register name pc " msgstr "" @@ -20701,7 +20792,7 @@ msgid "unknown directive" msgstr "" #: config/tc-xtensa.c:1344 config/tc-xtensa.c:1440 config/tc-xtensa.c:1670 -#: config/tc-xtensa.c:5931 +#: config/tc-xtensa.c:5932 msgid "directives are not valid inside bundles" msgstr "" @@ -20760,414 +20851,414 @@ msgstr "" msgid "invalid use of %s relocation" msgstr "" -#: config/tc-xtensa.c:1901 config/tc-xtensa.c:1918 +#: config/tc-xtensa.c:1902 config/tc-xtensa.c:1919 #, c-format msgid "bad register name: %s" msgstr "" -#: config/tc-xtensa.c:1907 +#: config/tc-xtensa.c:1908 #, c-format msgid "bad register number: %s" msgstr "" -#: config/tc-xtensa.c:1971 +#: config/tc-xtensa.c:1972 msgid "pcrel relocation not allowed in an instruction" msgstr "" -#: config/tc-xtensa.c:2074 +#: config/tc-xtensa.c:2075 msgid "extra colon" msgstr "" -#: config/tc-xtensa.c:2135 +#: config/tc-xtensa.c:2136 msgid "incorrect register number, ignoring" msgstr "" -#: config/tc-xtensa.c:2216 +#: config/tc-xtensa.c:2217 #, c-format msgid "cannot encode opcode \"%s\"" msgstr "" -#: config/tc-xtensa.c:2308 +#: config/tc-xtensa.c:2309 #, c-format msgid "not enough operands (%d) for '%s'; expected %d" msgstr "" -#: config/tc-xtensa.c:2315 +#: config/tc-xtensa.c:2316 #, c-format msgid "too many operands (%d) for '%s'; expected %d" msgstr "" -#: config/tc-xtensa.c:2366 +#: config/tc-xtensa.c:2367 #, c-format msgid "invalid register '%s' for '%s' instruction" msgstr "" -#: config/tc-xtensa.c:2373 +#: config/tc-xtensa.c:2374 #, c-format msgid "invalid register number (%ld) for '%s' instruction" msgstr "" -#: config/tc-xtensa.c:2440 +#: config/tc-xtensa.c:2441 #, c-format msgid "invalid register number (%ld) for '%s'" msgstr "" -#: config/tc-xtensa.c:2839 +#: config/tc-xtensa.c:2840 #, c-format msgid "operand %d of '%s' has out of range value '%u'" msgstr "" -#: config/tc-xtensa.c:2845 +#: config/tc-xtensa.c:2846 #, c-format msgid "operand %d of '%s' has invalid value '%u'" msgstr "" -#: config/tc-xtensa.c:2892 +#: config/tc-xtensa.c:2893 #, c-format msgid "internal error: unknown option name '%s'" msgstr "" -#: config/tc-xtensa.c:4001 +#: config/tc-xtensa.c:4002 msgid "can't handle generation of literal/labels yet" msgstr "" -#: config/tc-xtensa.c:4005 +#: config/tc-xtensa.c:4006 msgid "can't handle undefined OP TYPE" msgstr "" -#: config/tc-xtensa.c:4066 config/tc-xtensa.c:4075 +#: config/tc-xtensa.c:4067 config/tc-xtensa.c:4076 #, c-format msgid "found %d operand for '%s': Expected %d" msgid_plural "found %d operands for '%s': Expected %d" msgstr[0] "" msgstr[1] "" -#: config/tc-xtensa.c:4098 +#: config/tc-xtensa.c:4099 msgid "immediate operands sum to greater than 32" msgstr "" -#: config/tc-xtensa.c:4350 +#: config/tc-xtensa.c:4351 #, c-format msgid "invalid relocation for operand %i of '%s'" msgstr "" -#: config/tc-xtensa.c:4360 +#: config/tc-xtensa.c:4361 #, c-format msgid "invalid expression for operand %i of '%s'" msgstr "" -#: config/tc-xtensa.c:4370 +#: config/tc-xtensa.c:4371 #, c-format msgid "invalid relocation in instruction slot %i" msgstr "" -#: config/tc-xtensa.c:4377 +#: config/tc-xtensa.c:4378 #, c-format msgid "undefined symbol for opcode \"%s\"" msgstr "" -#: config/tc-xtensa.c:4852 +#: config/tc-xtensa.c:4853 msgid "opcode 'NOP.N' unavailable in this configuration" msgstr "" -#: config/tc-xtensa.c:4912 +#: config/tc-xtensa.c:4913 msgid "get_expanded_loop_offset: invalid opcode" msgstr "" -#: config/tc-xtensa.c:5073 +#: config/tc-xtensa.c:5074 #, c-format msgid "assembly state not set for first frag in section %s" msgstr "" -#: config/tc-xtensa.c:5126 +#: config/tc-xtensa.c:5127 #, c-format msgid "unaligned branch target: %d bytes at 0x%lx" msgstr "" -#: config/tc-xtensa.c:5170 +#: config/tc-xtensa.c:5171 #, c-format msgid "unaligned loop: %d bytes at 0x%lx" msgstr "" -#: config/tc-xtensa.c:5195 +#: config/tc-xtensa.c:5196 msgid "unexpected fix" msgstr "" -#: config/tc-xtensa.c:5206 config/tc-xtensa.c:5210 +#: config/tc-xtensa.c:5207 config/tc-xtensa.c:5211 msgid "undecodable fix" msgstr "" -#: config/tc-xtensa.c:5371 +#: config/tc-xtensa.c:5372 msgid "labels are not valid inside bundles" msgstr "" -#: config/tc-xtensa.c:5391 +#: config/tc-xtensa.c:5392 msgid "invalid last instruction for a zero-overhead loop" msgstr "" -#: config/tc-xtensa.c:5458 +#: config/tc-xtensa.c:5459 msgid "extra opening brace" msgstr "" -#: config/tc-xtensa.c:5468 +#: config/tc-xtensa.c:5469 msgid "extra closing brace" msgstr "" -#: config/tc-xtensa.c:5495 +#: config/tc-xtensa.c:5496 msgid "missing closing brace" msgstr "" -#: config/tc-xtensa.c:5593 config/tc-xtensa.c:5622 +#: config/tc-xtensa.c:5594 config/tc-xtensa.c:5623 #, c-format msgid "wrong number of operands for '%s'" msgstr "" -#: config/tc-xtensa.c:5609 +#: config/tc-xtensa.c:5610 #, c-format msgid "bad relocation expression for '%s'" msgstr "" -#: config/tc-xtensa.c:5644 +#: config/tc-xtensa.c:5645 #, c-format msgid "unknown opcode or format name '%s'" msgstr "" -#: config/tc-xtensa.c:5650 +#: config/tc-xtensa.c:5651 msgid "format names only valid inside bundles" msgstr "" -#: config/tc-xtensa.c:5655 +#: config/tc-xtensa.c:5656 #, c-format msgid "multiple formats specified for one bundle; using '%s'" msgstr "" -#: config/tc-xtensa.c:5705 +#: config/tc-xtensa.c:5706 msgid "entry instruction with stack decrement < 16" msgstr "" -#: config/tc-xtensa.c:5759 +#: config/tc-xtensa.c:5760 msgid "unaligned entry instruction" msgstr "" -#: config/tc-xtensa.c:5824 +#: config/tc-xtensa.c:5825 msgid "bad instruction format" msgstr "" -#: config/tc-xtensa.c:5827 +#: config/tc-xtensa.c:5828 msgid "invalid relocation" msgstr "" -#: config/tc-xtensa.c:5838 +#: config/tc-xtensa.c:5839 #, c-format msgid "invalid relocation for '%s' instruction" msgstr "" -#: config/tc-xtensa.c:5850 +#: config/tc-xtensa.c:5851 #, c-format msgid "invalid relocation for operand %d of '%s'" msgstr "" -#: config/tc-xtensa.c:6133 +#: config/tc-xtensa.c:6134 #, c-format msgid "unhandled local relocation fix %s" msgstr "" -#: config/tc-xtensa.c:6182 +#: config/tc-xtensa.c:6183 #, c-format msgid "internal error; cannot generate `%s' relocation" msgstr "" -#: config/tc-xtensa.c:6399 +#: config/tc-xtensa.c:6400 msgid "The option \"--no-allow-flix\" prohibits multi-slot flix." msgstr "" -#: config/tc-xtensa.c:6406 +#: config/tc-xtensa.c:6407 msgid "couldn't find a valid instruction format" msgstr "" -#: config/tc-xtensa.c:6407 +#: config/tc-xtensa.c:6408 #, c-format msgid " ops were: " msgstr "" -#: config/tc-xtensa.c:6409 +#: config/tc-xtensa.c:6410 #, c-format msgid " %s;" msgstr "" -#: config/tc-xtensa.c:6419 +#: config/tc-xtensa.c:6420 #, c-format msgid "mismatch for format '%s': #slots = %d, #opcodes = %d" msgstr "" -#: config/tc-xtensa.c:6428 config/tc-xtensa.c:6525 +#: config/tc-xtensa.c:6429 config/tc-xtensa.c:6526 msgid "illegal resource usage in bundle" msgstr "" -#: config/tc-xtensa.c:6614 +#: config/tc-xtensa.c:6615 #, c-format msgid "opcodes '%s' (slot %d) and '%s' (slot %d) write the same register" msgstr "" -#: config/tc-xtensa.c:6619 +#: config/tc-xtensa.c:6620 #, c-format msgid "opcodes '%s' (slot %d) and '%s' (slot %d) write the same state" msgstr "" -#: config/tc-xtensa.c:6624 +#: config/tc-xtensa.c:6625 #, c-format msgid "opcodes '%s' (slot %d) and '%s' (slot %d) write the same port" msgstr "" -#: config/tc-xtensa.c:6629 +#: config/tc-xtensa.c:6630 #, c-format msgid "" "opcodes '%s' (slot %d) and '%s' (slot %d) both have volatile port accesses" msgstr "" -#: config/tc-xtensa.c:6645 +#: config/tc-xtensa.c:6646 msgid "multiple branches or jumps in the same bundle" msgstr "" -#: config/tc-xtensa.c:7097 +#: config/tc-xtensa.c:7098 msgid "cannot assemble into a literal fragment" msgstr "" -#: config/tc-xtensa.c:7099 +#: config/tc-xtensa.c:7100 msgid "..." msgstr "" -#: config/tc-xtensa.c:8318 +#: config/tc-xtensa.c:8325 msgid "" "instruction sequence (write a0, branch, retw) may trigger hardware errata" msgstr "" -#: config/tc-xtensa.c:8430 +#: config/tc-xtensa.c:8437 msgid "branching or jumping to a loop end may trigger hardware errata" msgstr "" -#: config/tc-xtensa.c:8512 +#: config/tc-xtensa.c:8519 msgid "loop end too close to another loop end may trigger hardware errata" msgstr "" -#: config/tc-xtensa.c:8521 +#: config/tc-xtensa.c:8528 #, c-format msgid "fr_var %lu < length %d" msgstr "" -#: config/tc-xtensa.c:8679 +#: config/tc-xtensa.c:8686 msgid "" "loop containing less than three instructions may trigger hardware errata" msgstr "" -#: config/tc-xtensa.c:8751 +#: config/tc-xtensa.c:8758 msgid "undecodable instruction in instruction frag" msgstr "" -#: config/tc-xtensa.c:8861 +#: config/tc-xtensa.c:8868 msgid "invalid empty loop" msgstr "" -#: config/tc-xtensa.c:8866 +#: config/tc-xtensa.c:8873 msgid "loop target does not follow loop instruction in section" msgstr "" -#: config/tc-xtensa.c:9433 +#: config/tc-xtensa.c:9440 msgid "cannot find suitable trampoline" msgstr "" -#: config/tc-xtensa.c:9688 +#: config/tc-xtensa.c:9695 msgid "bad relaxation state" msgstr "" -#: config/tc-xtensa.c:9746 +#: config/tc-xtensa.c:9753 #, c-format msgid "fr_var (%ld) < length (%d)" msgstr "" -#: config/tc-xtensa.c:10446 +#: config/tc-xtensa.c:10452 msgid "jump target out of range; no usable trampoline found" msgstr "" -#: config/tc-xtensa.c:10570 +#: config/tc-xtensa.c:10576 msgid "invalid relaxation fragment result" msgstr "" -#: config/tc-xtensa.c:10652 +#: config/tc-xtensa.c:10658 msgid "unable to widen instruction" msgstr "" -#: config/tc-xtensa.c:10790 +#: config/tc-xtensa.c:10796 msgid "multiple literals in expansion" msgstr "" -#: config/tc-xtensa.c:10794 +#: config/tc-xtensa.c:10800 msgid "no registered fragment for literal" msgstr "" -#: config/tc-xtensa.c:10796 +#: config/tc-xtensa.c:10802 msgid "number of literal tokens != 1" msgstr "" -#: config/tc-xtensa.c:10925 config/tc-xtensa.c:10931 +#: config/tc-xtensa.c:10931 config/tc-xtensa.c:10937 #, c-format msgid "unresolved loop target symbol: %s" msgstr "" -#: config/tc-xtensa.c:11419 +#: config/tc-xtensa.c:11425 #, c-format msgid "fixes not all moved from %s" msgstr "" -#: config/tc-xtensa.c:11547 +#: config/tc-xtensa.c:11553 msgid "" "literal pool location required for text-section-literals; specify with ." "literal_position" msgstr "" -#: config/tc-xtensa.c:12407 +#: config/tc-xtensa.c:12413 msgid "too many operands in instruction" msgstr "" -#: config/tc-xtensa.c:12617 +#: config/tc-xtensa.c:12623 msgid "invalid symbolic operand" msgstr "" -#: config/tc-xtensa.c:12678 +#: config/tc-xtensa.c:12684 msgid "operand number mismatch" msgstr "" -#: config/tc-xtensa.c:12682 +#: config/tc-xtensa.c:12688 #, c-format msgid "cannot encode opcode \"%s\" in the given format \"%s\"" msgstr "" -#: config/tc-xtensa.c:12707 +#: config/tc-xtensa.c:12713 #, c-format msgid "xtensa-isa failure: %s" msgstr "" -#: config/tc-xtensa.c:12784 +#: config/tc-xtensa.c:12790 msgid "invalid opcode" msgstr "" -#: config/tc-xtensa.c:12790 +#: config/tc-xtensa.c:12796 msgid "too few operands" msgstr "" -#: config/tc-xtensa.c:12796 +#: config/tc-xtensa.c:12802 msgid "too many operands" msgstr "" -#: config/tc-xtensa.c:12840 +#: config/tc-xtensa.c:12846 msgid "multiple writes to the same register" msgstr "" -#: config/tc-xtensa.c:12954 config/tc-xtensa.c:12960 +#: config/tc-xtensa.c:12960 config/tc-xtensa.c:12966 msgid "out of memory" msgstr "" -#: config/tc-xtensa.c:13049 +#: config/tc-xtensa.c:13055 msgid "TLS relocation not allowed in FLIX bundle" msgstr "" @@ -21175,33 +21266,33 @@ msgstr "" #. relaxed in the front-end. If "record_fixup" is set, then this #. function is being called during back-end relaxation, so flag #. the unexpected behavior as an error. -#: config/tc-xtensa.c:13055 +#: config/tc-xtensa.c:13061 msgid "unexpected TLS relocation" msgstr "" -#: config/tc-xtensa.c:13099 +#: config/tc-xtensa.c:13105 msgid "symbolic operand not allowed" msgstr "" -#: config/tc-xtensa.c:13136 +#: config/tc-xtensa.c:13142 msgid "cannot decode instruction format" msgstr "" -#: config/tc-xtensa.c:13280 +#: config/tc-xtensa.c:13286 msgid "ignoring extra '-rename-section' delimiter ':'" msgstr "" -#: config/tc-xtensa.c:13285 +#: config/tc-xtensa.c:13291 #, c-format msgid "ignoring invalid '-rename-section' specification: '%s'" msgstr "" -#: config/tc-xtensa.c:13296 +#: config/tc-xtensa.c:13302 #, c-format msgid "section %s renamed multiple times" msgstr "" -#: config/tc-xtensa.c:13298 +#: config/tc-xtensa.c:13304 #, c-format msgid "multiple sections remapped to output section %s" msgstr "" @@ -21605,159 +21696,158 @@ msgstr "" msgid "can't close `%s'" msgstr "" -#: dw2gencfi.c:313 read.c:2532 +#: dw2gencfi.c:308 read.c:2581 #, c-format msgid "bfd_set_section_flags: %s" msgstr "" -#: dw2gencfi.c:580 dw2gencfi.c:596 +#: dw2gencfi.c:583 dw2gencfi.c:599 #, c-format msgid "register save offset not a multiple of %u" msgstr "" -#: dw2gencfi.c:678 +#: dw2gencfi.c:681 msgid "CFI state restore without previous remember" msgstr "" -#: dw2gencfi.c:737 +#: dw2gencfi.c:740 msgid "missing separator" msgstr "" -#: dw2gencfi.c:786 +#: dw2gencfi.c:789 msgid "bad register expression" msgstr "" -#: dw2gencfi.c:807 dw2gencfi.c:941 dw2gencfi.c:979 dw2gencfi.c:1050 -#: dw2gencfi.c:1123 dw2gencfi.c:1188 dw2gencfi.c:1387 scfidw2gen.c:176 +#: dw2gencfi.c:810 dw2gencfi.c:959 dw2gencfi.c:1040 dw2gencfi.c:1111 +#: dw2gencfi.c:1184 dw2gencfi.c:1249 dw2gencfi.c:1448 scfidw2gen.c:176 msgid "CFI instruction used without previous .cfi_startproc" msgstr "" -#: dw2gencfi.c:1004 +#: dw2gencfi.c:1065 msgid "invalid or unsupported encoding in .cfi_personality" msgstr "" -#: dw2gencfi.c:1011 +#: dw2gencfi.c:1072 msgid ".cfi_personality requires encoding and symbol arguments" msgstr "" -#: dw2gencfi.c:1034 +#: dw2gencfi.c:1095 msgid "wrong second argument to .cfi_personality" msgstr "" -#: dw2gencfi.c:1075 dw2gencfi.c:1151 +#: dw2gencfi.c:1136 dw2gencfi.c:1212 msgid "invalid or unsupported encoding in .cfi_lsda" msgstr "" -#: dw2gencfi.c:1082 +#: dw2gencfi.c:1143 msgid ".cfi_lsda requires encoding and symbol arguments" msgstr "" -#: dw2gencfi.c:1107 +#: dw2gencfi.c:1168 msgid "wrong second argument to .cfi_lsda" msgstr "" -#: dw2gencfi.c:1173 +#: dw2gencfi.c:1234 msgid "wrong third argument to .cfi_val_encoded_addr" msgstr "" -#: dw2gencfi.c:1272 +#: dw2gencfi.c:1333 msgid "inconsistent uses of .cfi_sections" msgstr "" -#: dw2gencfi.c:1283 +#: dw2gencfi.c:1344 msgid "previous CFI entry not closed (missing .cfi_endproc)" msgstr "" -#: dw2gencfi.c:1323 scfidw2gen.c:157 +#: dw2gencfi.c:1384 scfidw2gen.c:157 msgid ".cfi_endproc without corresponding .cfi_startproc" msgstr "" -#: dw2gencfi.c:1398 +#: dw2gencfi.c:1459 msgid "wrong argument to .cfi_personality_id" msgstr "" -#: dw2gencfi.c:1408 +#: dw2gencfi.c:1469 msgid ".cfi_fde_data without corresponding .cfi_startproc" msgstr "" -#: dw2gencfi.c:1516 +#: dw2gencfi.c:1492 +msgid "only constants may be used with .cfi_fde_data" +msgstr "" + +#: dw2gencfi.c:1580 msgid "unexpected .cfi_inline_lsda" msgstr "" -#: dw2gencfi.c:1523 +#: dw2gencfi.c:1587 msgid ".cfi_inline_lsda not valid for this frame" msgstr "" -#: dw2gencfi.c:1531 +#: dw2gencfi.c:1595 msgid ".cfi_inline_lsda seen for frame without .cfi_lsda" msgstr "" -#: dw2gencfi.c:1544 +#: dw2gencfi.c:1608 #, c-format msgid "Alignment too large: %d. assumed." msgstr "" -#: dw2gencfi.c:1548 +#: dw2gencfi.c:1612 msgid "Alignment negative: 0 assumed." msgstr "" -#: dw2gencfi.c:1574 +#: dw2gencfi.c:1638 msgid ".cfi_inline_lsda is not supported for this target" msgstr "" -#: dw2gencfi.c:1581 +#: dw2gencfi.c:1645 msgid ".cfi_fde_data is not supported for this target" msgstr "" -#: dw2gencfi.c:1588 +#: dw2gencfi.c:1652 msgid ".cfi_personality_id is not supported for this target" msgstr "" -#: dw2gencfi.c:1906 +#: dw2gencfi.c:1975 #, c-format msgid "return column number %d overflows in CIE version 1" msgstr "" -#: dw2gencfi.c:2388 dw2gencfi.c:2563 +#: dw2gencfi.c:2475 dw2gencfi.c:2663 msgid "open CFI at the end of file; missing .cfi_endproc directive" msgstr "" -#: dw2gencfi.c:2519 +#: dw2gencfi.c:2619 msgid ".sframe not supported for target" msgstr "" -#: dw2gencfi.c:2608 +#: dw2gencfi.c:2713 msgid "CFI is not supported for this target" msgstr "" -#: dwarf2dbg.c:377 dwarf2dbg.c:3311 +#: dwarf2dbg.c:385 dwarf2dbg.c:3314 msgid "view number mismatch" msgstr "" -#: dwarf2dbg.c:692 +#: dwarf2dbg.c:699 #, c-format -msgid "file number %u is too big" +msgid "file number %<PRIu64> is too big" msgstr "" -#: dwarf2dbg.c:924 +#: dwarf2dbg.c:931 #, c-format msgid "" "file table slot %u is already occupied by a different file (%s%s%s vs %s%s%s)" msgstr "" -#: dwarf2dbg.c:1180 dwarf2dbg.c:1274 +#: dwarf2dbg.c:1188 dwarf2dbg.c:1274 msgid "file number less than one" msgstr "" -#: dwarf2dbg.c:1217 +#: dwarf2dbg.c:1225 msgid "md5 value too small or not a constant" msgstr "" -#: dwarf2dbg.c:1234 -#, c-format -msgid "file number %lu is too big" -msgstr "" - #: dwarf2dbg.c:1281 dwarf2dbg.c:2304 #, c-format msgid "unassigned file number %ld" @@ -21788,188 +21878,188 @@ msgstr "" msgid "internal error: unknown dwarf2 format" msgstr "" -#: ecoff.c:1559 +#: ecoff.c:1560 #, c-format msgid "string too big (%lu bytes)" msgstr "" -#: ecoff.c:1612 ecoff.c:1805 ecoff.c:1828 ecoff.c:1858 ecoff.c:2010 -#: ecoff.c:2126 +#: ecoff.c:1613 ecoff.c:1806 ecoff.c:1829 ecoff.c:1859 ecoff.c:2011 +#: ecoff.c:2115 msgid "no current file pointer" msgstr "" -#: ecoff.c:1699 +#: ecoff.c:1700 msgid "too many st_End's" msgstr "" -#: ecoff.c:2195 +#: ecoff.c:2182 msgid "fake .file after real one" msgstr "" -#: ecoff.c:2283 +#: ecoff.c:2267 msgid "filename goes over one page boundary" msgstr "" -#: ecoff.c:2416 +#: ecoff.c:2398 msgid ".begin directive without a preceding .file directive" msgstr "" -#: ecoff.c:2423 +#: ecoff.c:2405 msgid ".begin directive without a preceding .ent directive" msgstr "" -#: ecoff.c:2453 +#: ecoff.c:2434 msgid ".bend directive without a preceding .file directive" msgstr "" -#: ecoff.c:2460 +#: ecoff.c:2441 msgid ".bend directive without a preceding .ent directive" msgstr "" -#: ecoff.c:2472 +#: ecoff.c:2453 msgid ".bend directive names unknown symbol" msgstr "" -#: ecoff.c:2514 +#: ecoff.c:2494 msgid ".def pseudo-op used inside of .def/.endef; ignored" msgstr "" -#: ecoff.c:2516 +#: ecoff.c:2496 msgid "empty symbol name in .def; ignored" msgstr "" -#: ecoff.c:2551 +#: ecoff.c:2531 msgid ".dim pseudo-op used outside of .def/.endef; ignored" msgstr "" -#: ecoff.c:2566 +#: ecoff.c:2546 msgid "badly formed .dim directive" msgstr "" -#: ecoff.c:2579 +#: ecoff.c:2559 msgid "too many .dim entries" msgstr "" -#: ecoff.c:2599 +#: ecoff.c:2579 msgid ".scl pseudo-op used outside of .def/.endef; ignored" msgstr "" -#: ecoff.c:2624 +#: ecoff.c:2604 msgid ".size pseudo-op used outside of .def/.endef; ignored" msgstr "" -#: ecoff.c:2639 +#: ecoff.c:2619 msgid "badly formed .size directive" msgstr "" -#: ecoff.c:2652 +#: ecoff.c:2632 msgid "too many .size entries" msgstr "" -#: ecoff.c:2674 +#: ecoff.c:2654 msgid ".type pseudo-op used outside of .def/.endef; ignored" msgstr "" #. FIXME: We could handle this by setting the continued bit. #. There would still be a limit: the .type argument can not #. be infinite. -#: ecoff.c:2692 +#: ecoff.c:2672 #, c-format msgid "the type of %s is too complex; it will be simplified" msgstr "" -#: ecoff.c:2703 +#: ecoff.c:2683 msgid "Unrecognized .type argument" msgstr "" -#: ecoff.c:2741 +#: ecoff.c:2721 msgid ".tag pseudo-op used outside of .def/.endef; ignored" msgstr "" -#: ecoff.c:2765 +#: ecoff.c:2745 msgid ".val pseudo-op used outside of .def/.endef; ignored" msgstr "" -#: ecoff.c:2773 +#: ecoff.c:2753 msgid ".val expression is too complex" msgstr "" -#: ecoff.c:2803 +#: ecoff.c:2783 msgid ".endef pseudo-op used before .def; ignored" msgstr "" -#: ecoff.c:2829 ecoff.c:2910 +#: ecoff.c:2809 ecoff.c:2889 msgid "bad COFF debugging information" msgstr "" -#: ecoff.c:2878 +#: ecoff.c:2858 #, c-format msgid "no tag specified for %s" msgstr "" -#: ecoff.c:2980 +#: ecoff.c:2952 msgid ".end directive without a preceding .file directive" msgstr "" -#: ecoff.c:3008 +#: ecoff.c:2980 msgid ".end directive names unknown symbol" msgstr "" -#: ecoff.c:3038 +#: ecoff.c:3010 msgid "second .ent directive found before .end directive" msgstr "" -#: ecoff.c:3047 +#: ecoff.c:3019 #, c-format msgid "%s directive has no name" msgstr "" -#: ecoff.c:3108 +#: ecoff.c:3080 msgid "no way to handle .file within .ent/.end section" msgstr "" -#: ecoff.c:3225 +#: ecoff.c:3197 msgid ".loc before .file" msgstr "" -#: ecoff.c:3425 +#: ecoff.c:3395 #, c-format msgid ".stab%c is not supported" msgstr "" -#: ecoff.c:3435 +#: ecoff.c:3405 #, c-format msgid ".stab%c: ignoring non-zero other field" msgstr "" -#: ecoff.c:3469 +#: ecoff.c:3439 #, c-format msgid "" "line number (%d) for .stab%c directive cannot fit in index field (20 bits)" msgstr "" -#: ecoff.c:3503 +#: ecoff.c:3473 #, c-format msgid "illegal .stab%c directive, bad character" msgstr "" -#: ecoff.c:3952 ecoff.c:4140 ecoff.c:4165 +#: ecoff.c:3914 ecoff.c:4102 ecoff.c:4127 msgid ".begin/.bend in different segments" msgstr "" -#: ecoff.c:4660 +#: ecoff.c:4621 msgid "missing .end or .bend at end of file" msgstr "" -#: ecoff.c:5137 +#: ecoff.c:5093 msgid "GP prologue size exceeds field size, using 0 instead" msgstr "" -#: expr.c:74 read.c:4081 +#: expr.c:74 read.c:4134 msgid "bignum invalid" msgstr "" -#: expr.c:76 read.c:4083 read.c:4588 read.c:5358 +#: expr.c:76 read.c:4136 read.c:4651 read.c:5420 msgid "floating point number invalid" msgstr "" @@ -21999,75 +22089,75 @@ msgstr "" msgid "backward ref to unknown label \"%d:\"" msgstr "" -#: expr.c:690 +#: expr.c:691 msgid "character constant too large" msgstr "" -#: expr.c:1021 +#: expr.c:1033 #, c-format msgid "found '%c', expected: '%c'" msgstr "" -#: expr.c:1024 +#: expr.c:1036 #, c-format msgid "missing '%c'" msgstr "" -#: expr.c:1036 read.c:4868 +#: expr.c:1048 read.c:4930 msgid "EBCDIC constants are not supported" msgstr "" -#: expr.c:1188 +#: expr.c:1202 #, c-format msgid "Unary operator %c ignored because bad operand follows" msgstr "" -#: expr.c:1252 expr.c:1274 +#: expr.c:1266 expr.c:1288 msgid "syntax error in .startof. or .sizeof." msgstr "" -#: expr.c:1354 expr.c:1690 +#: expr.c:1368 expr.c:1713 #, c-format msgid "invalid use of operator \"%s\"" msgstr "" -#: expr.c:1872 +#: expr.c:1895 msgid "missing operand; zero assumed" msgstr "" -#: expr.c:1911 +#: expr.c:1934 msgid "left operand is a bignum; integer 0 assumed" msgstr "" -#: expr.c:1913 +#: expr.c:1936 msgid "left operand is a float; integer 0 assumed" msgstr "" -#: expr.c:1922 +#: expr.c:1945 msgid "right operand is a bignum; integer 0 assumed" msgstr "" -#: expr.c:1924 +#: expr.c:1947 msgid "right operand is a float; integer 0 assumed" msgstr "" -#: expr.c:2003 symbols.c:1705 +#: expr.c:2026 symbols.c:1674 msgid "division by zero" msgstr "" -#: expr.c:2053 symbols.c:1716 +#: expr.c:2076 symbols.c:1685 msgid "shift count" msgstr "" -#: expr.c:2179 +#: expr.c:2202 msgid "operation combines symbols in different segments" msgstr "" -#: expr.c:2552 +#: expr.c:2577 msgid "missing closing '\"'" msgstr "" -#: expr.c:2580 +#: expr.c:2605 #, c-format msgid "'\\%c' in quoted symbol name; behavior may change in the future" msgstr "" @@ -22089,92 +22179,113 @@ msgstr[1] "" #. Offset of size 8 bytes is not supported in SFrame format #. version 1. -#: gen-sframe.c:410 +#: gen-sframe.c:417 msgid "SFrame unsupported offset value\n" msgstr "" -#: gen-sframe.c:1009 +#: gen-sframe.c:1025 #, c-format -msgid "skipping SFrame FDE; non-SP/FP register %u in .cfi_def_cfa" +msgid "no SFrame FDE emitted; non-SP/FP register %u in .cfi_def_cfa" msgstr "" -#: gen-sframe.c:1038 +#: gen-sframe.c:1055 #, c-format -msgid "skipping SFrame FDE; non-SP/FP register %u in .cfi_def_cfa_register" +msgid "no SFrame FDE emitted; non-SP/FP register %u in .cfi_def_cfa_register" msgstr "" #. No CFA base register in effect. Non-SP/FP CFA base register should #. not occur, as sframe_xlate_do_def_cfa[_register] would detect this. -#: gen-sframe.c:1076 +#: gen-sframe.c:1095 msgid "" -"skipping SFrame FDE; .cfi_def_cfa_offset without CFA base register in effect" +"no SFrame FDE emitted; .cfi_def_cfa_offset without CFA base register in " +"effect" msgstr "" -#: gen-sframe.c:1137 +#: gen-sframe.c:1160 #, c-format -msgid "skipping SFrame FDE; %s register %u in .cfi_val_offset" +msgid "no SFrame FDE emitted; %s with %s reg %u" msgstr "" -#: gen-sframe.c:1164 +#: gen-sframe.c:1220 #, c-format -msgid "skipping SFrame FDE; %s register %u in .cfi_register" +msgid "no SFrame FDE emitted; %s register %u in .cfi_register" msgstr "" -#: gen-sframe.c:1186 -msgid "skipping SFrame FDE; .cfi_remember_state without prior SFrame FRE state" +#: gen-sframe.c:1242 +msgid "" +"no SFrame FDE emitted; .cfi_remember_state without prior SFrame FRE state" msgstr "" -#: gen-sframe.c:1282 -msgid "skipping SFrame FDE; .cfi_negate_ra_state_with_pc" +#: gen-sframe.c:1336 +msgid "no SFrame FDE emitted; .cfi_negate_ra_state_with_pc" msgstr "" -#: gen-sframe.c:1309 -msgid "skipping SFrame FDE; .cfi_window_save" +#: gen-sframe.c:1363 +msgid "no SFrame FDE emitted; .cfi_window_save" msgstr "" -#: gen-sframe.c:1422 +#: gen-sframe.c:1421 +#, c-format +msgid "no SFrame FDE emitted; .cfi_escape DW_CFA_expression with %s reg %u" +msgstr "" + +#. In all other cases (e.g., DW_CFA_def_cfa_expression or other +#. OS-specific CFI opcodes), skip inspecting the DWARF expression. +#. This may impact the asynchronicity due to loss of coverage. +#. Continue to warn the user and bail out. +#: gen-sframe.c:1582 +#, c-format +msgid "no SFrame FDE emitted; .cfi_escape with op (%#lx)" +msgstr "" + +#: gen-sframe.c:1607 +#, c-format +msgid "no SFrame FDE emitted; %s reg %u in .cfi_undefined" +msgstr "" + +#: gen-sframe.c:1784 msgid "(unknown)" msgstr "" -#: gen-sframe.c:1423 +#: gen-sframe.c:1785 #, c-format -msgid "skipping SFrame FDE; CFI insn %s (%#x)" +msgid "no SFrame FDE emitted; CFI insn %s (%#x)" msgstr "" -#: gen-sframe.c:1447 +#: gen-sframe.c:1809 #, c-format -msgid "skipping SFrame FDE; non-default RA register %u" +msgid "no SFrame FDE emitted; non-default RA register %u" msgstr "" -#: gen-sframe.c:1491 -msgid "skipping SFrame FDE; FP without RA on stack" +#: gen-sframe.c:1854 +msgid "no SFrame FDE emitted; FP without RA on stack" msgstr "" -#: ginsn.c:878 +#: ginsn.c:877 #, c-format msgid "missing label '%s' in func '%s' may result in imprecise cfg" msgstr "" -#: ginsn.c:987 +#: ginsn.c:986 #, c-format msgid "GINSN: found unreachable code in func '%s'" msgstr "" -#: ginsn.c:1209 +#: ginsn.c:1208 msgid "GINSN process for prev func not done" msgstr "" -#: ginsn.c:1243 +#: ginsn.c:1242 #, c-format msgid "untraceable control flow for func '%s'" msgstr "" -#: ginsn.c:1253 +#: ginsn.c:1252 #, c-format msgid "Bad cfg of ginsn of func '%s'" msgstr "" -#: ginsn.c:1315 ginsn.c:1322 +#: ginsn.c:1314 ginsn.c:1321 msgid "ginsn unsupported for target" msgstr "" @@ -22190,7 +22301,7 @@ msgstr "" #. line here (assuming of course that we actually have a line of #. input to read), so that it can be displayed in the listing #. that is produced at the end of the assembly. -#: input-file.c:136 input-scrub.c:259 listing.c:356 +#: input-file.c:136 input-scrub.c:271 listing.c:345 msgid "{standard input}" msgstr "" @@ -22204,16 +22315,16 @@ msgstr "" msgid "can't read from %s: %s" msgstr "" -#: input-file.c:267 listing.c:1456 +#: input-file.c:267 listing.c:1467 #, c-format msgid "can't close %s: %s" msgstr "" -#: input-scrub.c:289 +#: input-scrub.c:301 msgid "macros nested too deeply" msgstr "" -#: input-scrub.c:537 input-scrub.c:540 +#: input-scrub.c:548 input-scrub.c:551 msgid "macro invoked from here" msgstr "" @@ -22222,20 +22333,20 @@ msgstr "" msgid "Unable to allocate memory for new instructions\n" msgstr "" -#: listing.c:255 messages.c:192 messages.c:194 messages.c:197 +#: listing.c:244 messages.c:192 messages.c:194 messages.c:197 msgid "Warning: " msgstr "" -#: listing.c:261 messages.c:266 messages.c:268 messages.c:271 +#: listing.c:250 messages.c:266 messages.c:268 messages.c:271 msgid "Error: " msgstr "" -#: listing.c:623 +#: listing.c:656 #, c-format msgid "unable to rebuffer file: %s\n" msgstr "" -#: listing.c:1342 +#: listing.c:1353 #, c-format msgid "" "\n" @@ -22243,177 +22354,177 @@ msgid "" "\n" msgstr "" -#: listing.c:1352 +#: listing.c:1363 #, c-format msgid "%s " msgstr "" -#: listing.c:1357 +#: listing.c:1368 #, c-format msgid "" "\n" "\t%s " msgstr "" -#: listing.c:1367 +#: listing.c:1378 msgid "" "\n" " options passed\t: " msgstr "" -#: listing.c:1406 +#: listing.c:1417 #, c-format msgid "" " GNU assembler version %s (%s)\n" "\t using BFD version %s." msgstr "" -#: listing.c:1409 +#: listing.c:1420 #, c-format msgid "" "\n" " input file \t: %s" msgstr "" -#: listing.c:1410 +#: listing.c:1421 #, c-format msgid "" "\n" " output file \t: %s" msgstr "" -#: listing.c:1411 +#: listing.c:1422 #, c-format msgid "" "\n" " target \t: %s" msgstr "" -#: listing.c:1435 +#: listing.c:1446 #, c-format msgid "can't open %s: %s" msgstr "" -#: listing.c:1520 +#: listing.c:1531 msgid "strange paper height, set to no form" msgstr "" -#: listing.c:1544 +#: listing.c:1555 msgid "new paper width is too small" msgstr "" -#: listing.c:1547 +#: listing.c:1558 msgid "bad or irreducible expression for paper width" msgstr "" -#: listing.c:1549 +#: listing.c:1560 msgid "missing expression for paper width" msgstr "" -#: listing.c:1600 +#: listing.c:1611 msgid "new line in title" msgstr "" -#: macro.c:399 +#: macro.c:394 #, c-format msgid "%% operator needs absolute expression" msgstr "" -#: macro.c:551 +#: macro.c:544 #, c-format msgid "Missing parameter qualifier for `%s' in macro `%s'" msgstr "" -#: macro.c:561 +#: macro.c:554 #, c-format msgid "`%s' is not a valid parameter qualifier for `%s' in macro `%s'" msgstr "" -#: macro.c:578 +#: macro.c:571 #, c-format msgid "Pointless default value for required parameter `%s' in macro `%s'" msgstr "" -#: macro.c:588 +#: macro.c:581 #, c-format msgid "A parameter named `%s' already exists for macro `%s'" msgstr "" -#: macro.c:626 +#: macro.c:619 #, c-format msgid "Reserved word `%s' used as parameter in macro `%s'" msgstr "" -#: macro.c:680 +#: macro.c:673 #, c-format msgid "unexpected end of file in macro `%s' definition" msgstr "" -#: macro.c:692 +#: macro.c:685 #, c-format msgid "missing `)' after formals in macro definition `%s'" msgstr "" -#: macro.c:707 +#: macro.c:700 msgid "Missing macro name" msgstr "" -#: macro.c:716 +#: macro.c:709 #, c-format msgid "Bad parameter list for macro `%s'" msgstr "" -#: macro.c:724 +#: macro.c:717 #, c-format msgid "Macro `%s' was already defined" msgstr "" -#: macro.c:850 macro.c:852 +#: macro.c:843 macro.c:845 msgid "missing `)'" msgstr "" -#: macro.c:941 +#: macro.c:934 #, c-format msgid "`%s' was already used as parameter (or another local) name" msgstr "" -#: macro.c:1113 +#: macro.c:1104 msgid "confusion in formal parameters" msgstr "" -#: macro.c:1121 +#: macro.c:1112 #, c-format msgid "Parameter named `%s' does not exist for macro `%s'" msgstr "" -#: macro.c:1132 +#: macro.c:1123 #, c-format msgid "Value for parameter `%s' of macro `%s' was already specified" msgstr "" -#: macro.c:1146 +#: macro.c:1137 msgid "can't mix positional and keyword arguments" msgstr "" -#: macro.c:1157 +#: macro.c:1148 msgid "too many positional arguments" msgstr "" -#: macro.c:1205 +#: macro.c:1196 #, c-format msgid "Missing value for required parameter `%s' of macro `%s'" msgstr "" -#: macro.c:1323 +#: macro.c:1314 #, c-format msgid "Attempt to purge non-existing macro `%s'" msgstr "" -#: macro.c:1344 +#: macro.c:1335 msgid "unexpected end of file in irp or irpc" msgstr "" -#: macro.c:1355 +#: macro.c:1346 msgid "missing model parameter" msgstr "" @@ -22480,78 +22591,84 @@ msgstr "" msgid "can't create %s: %s" msgstr "" -#: read.c:584 +#: read.c:565 #, c-format msgid "error constructing %s pseudo-op table" msgstr "" -#: read.c:768 +#: read.c:752 msgid "cannot change section or subsection inside .bundle_lock" msgstr "" -#: read.c:784 +#: read.c:768 #, c-format msgid "" -".bundle_lock sequence at %u bytes, but .bundle_align_mode limit is %u bytes" +".bundle_lock sequence at %<PRIu64> bytes, but .bundle_align_mode limit is %u " +"bytes" msgstr "" -#: read.c:793 +#: read.c:777 #, c-format msgid "" -"single instruction is %u bytes long, but .bundle_align_mode limit is %u bytes" +"single instruction is %<PRIu64> bytes long, but .bundle_align_mode limit is %" +"u bytes" msgstr "" -#: read.c:834 read.c:2898 read.c:3526 +#: read.c:818 read.c:2947 read.c:3575 msgid "ignoring fill value in absolute section" msgstr "" -#: read.c:836 read.c:2913 read.c:3565 +#: read.c:820 read.c:2962 read.c:3612 #, c-format msgid "ignoring fill value in section `%s'" msgstr "" -#: read.c:1276 +#: read.c:1260 #, c-format msgid "unknown pseudo-op: `%s'" msgstr "" -#: read.c:1329 +#: read.c:1313 msgid "unable to continue with assembly." msgstr "" -#: read.c:1363 +#: read.c:1347 #, c-format msgid "local label too large near %s" msgstr "" -#: read.c:1386 +#: read.c:1370 #, c-format msgid "label \"%ld$\" redefined" msgstr "" -#: read.c:1435 +#: read.c:1419 msgid ".bundle_lock with no matching .bundle_unlock" msgstr "" -#: read.c:1535 +#: read.c:1523 msgid ".abort detected. Abandoning ship." msgstr "" -#: read.c:1597 +#: read.c:1586 #, c-format msgid "alignment too large: %u assumed" msgstr "" -#: read.c:1629 +#: read.c:1616 +msgid "ignoring out of range alignment maximum" +msgstr "" + +#: read.c:1625 msgid "expected fill pattern missing" msgstr "" -#: read.c:1654 +#: read.c:1650 #, c-format msgid "fill pattern too long, truncating to %u" msgstr "" -#: read.c:1755 +#: read.c:1751 msgid "symbol name not recognised in the current locale" msgstr "" @@ -22564,425 +22681,438 @@ msgstr "" #. We do not want to barf on this, especially since such files are used #. in the GCC and GDB testsuites. So we check for negative line numbers #. rather than non-positive line numbers. -#: read.c:2104 +#: read.c:2100 #, c-format msgid "line numbers must be positive; line number %d rejected" msgstr "" -#: read.c:2142 +#: read.c:2138 #, c-format msgid "incompatible flag %i in line directive" msgstr "" -#: read.c:2154 +#: read.c:2150 #, c-format msgid "unsupported flag %i in line directive" msgstr "" -#: read.c:2197 +#: read.c:2193 msgid "start address not supported" msgstr "" -#: read.c:2206 +#: read.c:2202 msgid ".err encountered" msgstr "" -#: read.c:2222 +#: read.c:2218 msgid ".error directive invoked in source file" msgstr "" -#: read.c:2223 +#: read.c:2219 msgid ".warning directive invoked in source file" msgstr "" -#: read.c:2229 +#: read.c:2225 #, c-format msgid "%s argument must be a string" msgstr "" -#: read.c:2261 read.c:2263 +#: read.c:2287 +msgid "expression does not evaluate to a constant" +msgstr "" + +#: read.c:2292 +msgid ".errif expression evaluates to true" +msgstr "" + +#: read.c:2295 +msgid ".warnif expression evaluates to true" +msgstr "" + +#: read.c:2313 read.c:2315 #, c-format msgid ".fail %ld encountered" msgstr "" -#: read.c:2303 +#: read.c:2355 #, c-format msgid ".fill size clamped to %d" msgstr "" -#: read.c:2308 +#: read.c:2360 msgid "size negative; .fill ignored" msgstr "" -#: read.c:2314 +#: read.c:2366 msgid "repeat < 0; .fill ignored" msgstr "" -#: read.c:2321 +#: read.c:2373 msgid "non-constant fill count for absolute section" msgstr "" -#: read.c:2326 +#: read.c:2378 msgid "attempt to fill absolute section with non-zero value" msgstr "" -#: read.c:2333 +#: read.c:2385 #, c-format msgid "attempt to fill section `%s' with non-zero value" msgstr "" -#: read.c:2498 +#: read.c:2547 #, c-format msgid "unrecognized .linkonce type `%s'" msgstr "" -#: read.c:2510 +#: read.c:2559 msgid ".linkonce is not supported for this object file format" msgstr "" -#: read.c:2605 +#: read.c:2654 msgid "expected alignment after size" msgstr "" -#: read.c:2818 +#: read.c:2867 #, c-format msgid "attempt to redefine pseudo-op `%s' ignored" msgstr "" -#: read.c:2839 +#: read.c:2888 msgid "ignoring macro exit outside a macro definition." msgstr "" -#: read.c:2893 +#: read.c:2942 #, c-format msgid "invalid segment \"%s\"" msgstr "" -#: read.c:2901 +#: read.c:2950 msgid "only constant offsets supported in absolute section" msgstr "" -#: read.c:2944 +#: read.c:2993 msgid "MRI style ORG pseudo-op not supported" msgstr "" -#: read.c:3115 +#: read.c:3164 #, c-format msgid ".end%c encountered without preceding %s" msgstr "" -#: read.c:3149 +#: read.c:3198 #, c-format msgid "excessive count %zu for %s - ignored" msgstr "" -#: read.c:3156 +#: read.c:3205 #, c-format msgid "%s without %s" msgstr "" -#: read.c:3190 +#: read.c:3239 msgid "`\\' at end of line/statement; ignored" msgstr "" -#: read.c:3469 +#: read.c:3518 msgid "unsupported variable size or fill value" msgstr "" -#: read.c:3477 +#: read.c:3526 #, c-format msgid "size value for space directive too large: %lx" msgstr "" -#: read.c:3503 +#: read.c:3552 msgid ".space repeat count is negative, ignored" msgstr "" -#: read.c:3509 +#: read.c:3558 msgid ".space repeat count is zero, ignored" msgstr "" -#: read.c:3517 +#: read.c:3566 msgid ".space repeat count overflow, ignored" msgstr "" -#: read.c:3549 +#: read.c:3597 msgid "space allocation too complex in absolute section" msgstr "" -#: read.c:3555 +#: read.c:3603 msgid "space allocation too complex in common section" msgstr "" -#: read.c:3664 +#: read.c:3718 msgid "unsupported variable nop control in .nops directive" msgstr "" -#: read.c:3670 +#: read.c:3724 msgid "negative nop control byte, ignored" msgstr "" -#: read.c:3739 +#: read.c:3792 #, c-format msgid "unknown floating type '%c'" msgstr "" -#: read.c:3965 +#: read.c:4018 #, c-format msgid "%s: would close weakref loop: %s" msgstr "" -#: read.c:4022 +#: read.c:4075 #, c-format msgid "junk at end of line, first unrecognized character valued 0x%x" msgstr "" -#: read.c:4150 write.c:2426 +#: read.c:4205 write.c:2403 #, c-format msgid "`%s' can't be equated to common symbol `%s'" msgstr "" -#: read.c:4278 +#: read.c:4341 msgid "unexpected `\"' in expression" msgstr "" -#: read.c:4291 +#: read.c:4354 msgid "rva without symbol" msgstr "" -#: read.c:4366 +#: read.c:4429 msgid "missing or bad offset expression" msgstr "" -#: read.c:4390 +#: read.c:4453 msgid "missing reloc type" msgstr "" -#: read.c:4414 +#: read.c:4477 msgid "unrecognized reloc type" msgstr "" -#: read.c:4430 +#: read.c:4493 msgid "bad reloc expression" msgstr "" -#: read.c:4582 read.c:5352 read.c:5478 +#: read.c:4645 read.c:5414 read.c:5542 msgid "zero assumed for missing expression" msgstr "" -#: read.c:4602 read.c:5381 read.c:5497 +#: read.c:4665 read.c:5445 read.c:5561 msgid "attempt to store value in absolute section" msgstr "" -#: read.c:4609 read.c:5387 read.c:5503 +#: read.c:4672 read.c:5451 read.c:5567 #, c-format msgid "attempt to store non-zero value in section `%s'" msgstr "" #. Leading bits contain both 0s & 1s. -#: read.c:4686 +#: read.c:4748 #, c-format msgid "value 0x%<PRIx64> truncated to 0x%<PRIx64>" msgstr "" -#: read.c:4730 +#: read.c:4792 #, c-format msgid "bignum truncated to %d byte" msgid_plural "bignum truncated to %d bytes" msgstr[0] "" msgstr[1] "" -#: read.c:4939 read.c:5090 +#: read.c:5001 read.c:5152 msgid "unresolvable or nonpositive repeat count; using 1" msgstr "" -#: read.c:4982 +#: read.c:5044 msgid "floating point constant too large" msgstr "" -#: read.c:5047 +#: read.c:5109 msgid "attempt to store float in absolute section" msgstr "" -#: read.c:5054 +#: read.c:5116 #, c-format msgid "attempt to store float in section `%s'" msgstr "" -#: read.c:5484 +#: read.c:5548 msgid "number invalid" msgstr "" -#: read.c:5740 +#: read.c:5804 msgid "base64 strings must be placed into a section" msgstr "" -#: read.c:5747 +#: read.c:5811 msgid "a string must follow the .base64 pseudo-op" msgstr "" -#: read.c:5767 +#: read.c:5831 msgid "expected double quote enclosed string as argument to .base64 pseudo-op" msgstr "" -#: read.c:5784 +#: read.c:5848 msgid "end of line encountered inside .base64 string" msgstr "" -#: read.c:5795 +#: read.c:5859 msgid ".base64 string terminated early" msgstr "" -#: read.c:5800 +#: read.c:5864 msgid ".base64 string terminated unexpectedly" msgstr "" -#: read.c:5807 +#: read.c:5871 msgid "equals character only allowed at end of .base64 string" msgstr "" -#: read.c:5816 +#: read.c:5880 msgid "the equals character cannot start a block of four base64 encoded bytes" msgstr "" -#: read.c:5822 +#: read.c:5886 msgid "" "the equals character cannot be the second character in a block of four " "base64 encoded bytes" msgstr "" -#: read.c:5832 +#: read.c:5896 #, c-format msgid "invalid character '%c' found inside .base64 string" msgstr "" -#: read.c:5834 +#: read.c:5898 #, c-format msgid "invalid character %#x found inside .base64 string" msgstr "" -#: read.c:5860 +#: read.c:5924 msgid "no base64 characters expected after '=' padding characters" msgstr "" -#: read.c:5870 +#: read.c:5934 msgid ".base64 string must have a terminating double quote character" msgstr "" -#: read.c:5903 +#: read.c:5967 #, c-format msgid "attempt to store non-empty string in section `%s'" msgstr "" -#: read.c:5965 +#: read.c:6029 msgid "strings must be placed into a section" msgstr "" -#: read.c:6032 +#: read.c:6096 msgid "expected <nn>" msgstr "" #. To be compatible with BSD 4.2 as: give the luser a linefeed!! -#: read.c:6073 read.c:6160 +#: read.c:6137 read.c:6224 msgid "unterminated string; newline inserted" msgstr "" -#: read.c:6174 +#: read.c:6238 msgid "bad escaped character in string" msgstr "" -#: read.c:6198 +#: read.c:6262 msgid "expected address expression" msgstr "" -#: read.c:6217 +#: read.c:6281 #, c-format msgid "symbol \"%s\" undefined; zero assumed" msgstr "" -#: read.c:6220 +#: read.c:6284 msgid "some symbol undefined; zero assumed" msgstr "" -#: read.c:6254 +#: read.c:6318 msgid "this string may not contain '\\0'" msgstr "" -#: read.c:6291 +#: read.c:6355 msgid "missing string" msgstr "" -#: read.c:6406 +#: read.c:6470 #, c-format msgid ".incbin count zero, ignoring `%s'" msgstr "" -#: read.c:6418 +#: read.c:6482 #, c-format msgid "file not found: %s" msgstr "" -#: read.c:6428 +#: read.c:6492 #, c-format msgid "unable to include `%s'" msgstr "" -#: read.c:6437 +#: read.c:6501 #, c-format msgid "seek to end of .incbin file failed `%s'" msgstr "" -#: read.c:6448 +#: read.c:6512 #, c-format msgid "skip (%ld) or count (%ld) invalid for file size (%ld)" msgstr "" -#: read.c:6455 +#: read.c:6519 #, c-format msgid "could not skip to %ld in file `%s'" msgstr "" -#: read.c:6464 +#: read.c:6528 #, c-format msgid "truncated file `%s', %ld of %ld bytes read" msgstr "" -#: read.c:6601 +#: read.c:6664 msgid "missing .func" msgstr "" -#: read.c:6620 +#: read.c:6683 msgid ".endfunc missing for previous .func" msgstr "" -#: read.c:6673 +#: read.c:6736 #, c-format msgid ".bundle_align_mode alignment too large (maximum %u)" msgstr "" -#: read.c:6678 +#: read.c:6741 msgid "cannot change .bundle_align_mode inside .bundle_lock" msgstr "" -#: read.c:6692 +#: read.c:6755 msgid ".bundle_lock is meaningless without .bundle_align_mode" msgstr "" -#: read.c:6713 +#: read.c:6776 msgid ".bundle_unlock without preceding .bundle_lock" msgstr "" -#: read.c:6726 +#: read.c:6789 #, c-format -msgid ".bundle_lock sequence is %u bytes, but bundle size is only %u bytes" +msgid "" +".bundle_lock sequence is %<PRIu64> bytes, but bundle size is only %u bytes" msgstr "" -#: read.c:6825 +#: read.c:6888 #, c-format msgid "missing closing `%c'" msgstr "" -#: read.c:6827 +#: read.c:6890 msgid "stray `\\'" msgstr "" @@ -23061,7 +23191,7 @@ msgstr "" msgid "comma missing in .xstabs" msgstr "" -#: symbols.c:386 symbols.c:2550 +#: symbols.c:386 symbols.c:2519 #, c-format msgid "symbol '%s' contains multibyte characters" msgstr "" @@ -23071,85 +23201,85 @@ msgstr "" msgid "cannot define symbol `%s' in absolute section" msgstr "" -#: symbols.c:659 +#: symbols.c:651 #, c-format msgid "symbol `%s' is already defined as \"%s\"/%s%ld" msgstr "" -#: symbols.c:1257 +#: symbols.c:1226 #, c-format msgid "invalid operands (%s and %s sections) for `%s'" msgstr "" -#: symbols.c:1261 +#: symbols.c:1230 #, c-format msgid "invalid operand (%s section) for `%s'" msgstr "" -#: symbols.c:1269 +#: symbols.c:1238 #, c-format msgid "invalid operands (%s and %s sections) for `%s' when setting `%s'" msgstr "" -#: symbols.c:1272 +#: symbols.c:1241 #, c-format msgid "invalid operand (%s section) for `%s' when setting `%s'" msgstr "" -#: symbols.c:1341 +#: symbols.c:1310 #, c-format msgid "symbol definition loop encountered at `%s'" msgstr "" -#: symbols.c:1368 +#: symbols.c:1337 #, c-format msgid "cannot convert expression symbol %s to complex relocation" msgstr "" -#: symbols.c:1707 +#: symbols.c:1676 #, c-format msgid "division by zero when setting `%s'" msgstr "" #. See PR 20895 for a reproducer. -#: symbols.c:1777 +#: symbols.c:1746 msgid "Invalid operation on symbol" msgstr "" -#: symbols.c:1827 write.c:2475 +#: symbols.c:1796 write.c:2452 #, c-format msgid "can't resolve value for symbol `%s'" msgstr "" -#: symbols.c:2235 +#: symbols.c:2204 #, c-format msgid "\"%u\" (instance number %u of a %s label)" msgstr "" -#: symbols.c:2266 +#: symbols.c:2235 msgid "expression is too complex to be resolved or converted into relocations" msgstr "" -#: symbols.c:2268 symbols.c:2271 +#: symbols.c:2237 symbols.c:2240 #, c-format msgid "attempt to get value of unresolved symbol `%s'" msgstr "" #. Do not reassign section symbols. -#: symbols.c:2571 +#: symbols.c:2540 msgid "can't make section symbol global" msgstr "" -#: symbols.c:2577 +#: symbols.c:2546 msgid "can't make register symbol global" msgstr "" -#: symbols.c:2683 +#: symbols.c:2652 #, c-format msgid "Accessing function `%s' as thread-local object" msgstr "" -#: symbols.c:2687 +#: symbols.c:2656 #, c-format msgid "Accessing `%s' as thread-local object" msgstr "" @@ -23228,72 +23358,72 @@ msgstr "" msgid "unimplemented .nops directive" msgstr "" -#: write.c:1662 +#: write.c:1674 #, c-format msgid "can't write %ld byte to section %s of %s: '%s'" msgid_plural "can't write %ld bytes to section %s of %s: '%s'" msgstr[0] "" msgstr[1] "" -#: write.c:1688 write.c:1722 write.c:1759 +#: write.c:1699 write.c:1735 #, c-format msgid "can't fill %ld byte in section %s of %s: '%s'" msgid_plural "can't fill %ld bytes in section %s of %s: '%s'" msgstr[0] "" msgstr[1] "" -#: write.c:1976 +#: write.c:1951 msgid "unable to create reloc for build note" msgstr "" -#: write.c:1980 +#: write.c:1955 msgid "<gnu build note>" msgstr "" -#: write.c:2391 +#: write.c:2368 #, c-format msgid "%s: global symbols not supported in common sections" msgstr "" -#: write.c:2405 +#: write.c:2382 #, c-format msgid "local label `%s' is not defined" msgstr "" -#: write.c:2433 +#: write.c:2410 #, c-format msgid "can't make global register symbol `%s'" msgstr "" -#: write.c:2744 +#: write.c:2721 #, c-format msgid "alignment padding (%lu byte) not a multiple of %ld" msgid_plural "alignment padding (%lu bytes) not a multiple of %ld" msgstr[0] "" msgstr[1] "" -#: write.c:2921 +#: write.c:2897 #, c-format msgid ".word %s-%s+%s didn't fit" msgstr "" -#: write.c:3013 +#: write.c:2989 msgid "padding added" msgstr "" -#: write.c:3064 +#: write.c:3040 msgid "attempt to move .org backwards" msgstr "" -#: write.c:3089 +#: write.c:3065 msgid ".space, .nops or .fill specifies non-absolute value" msgstr "" -#: write.c:3104 +#: write.c:3080 msgid ".space, .nops or .fill with negative value, ignored" msgstr "" -#: write.c:3194 +#: write.c:3170 #, c-format msgid "" "Infinite loop encountered whilst attempting to compute the addresses of " diff --git a/gas/testsuite/gas/aarch64/armv8-ras-1.d b/gas/testsuite/gas/aarch64/armv8-ras-1.d index b10495f..21596c0 100644 --- a/gas/testsuite/gas/aarch64/armv8-ras-1.d +++ b/gas/testsuite/gas/aarch64/armv8-ras-1.d @@ -1,4 +1,4 @@ -#as: -march=armv8-a+ras +#as: -menable-sysreg-checking -march=armv8-a+ras #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/armv8_4-a-registers-illegal.d b/gas/testsuite/gas/aarch64/armv8_4-a-registers-illegal.d index 2c00b65..a429d2d 100644 --- a/gas/testsuite/gas/aarch64/armv8_4-a-registers-illegal.d +++ b/gas/testsuite/gas/aarch64/armv8_4-a-registers-illegal.d @@ -1,3 +1,3 @@ -#as: -march=armv8.4-a+crypto+sm4+sha3 +#as: -menable-sysreg-checking -march=armv8.4-a+crypto+sm4+sha3 #source: armv8_4-a-registers-illegal.s #error_output: armv8_4-a-registers-illegal.l diff --git a/gas/testsuite/gas/aarch64/armv8_4-a-registers.d b/gas/testsuite/gas/aarch64/armv8_4-a-registers.d index f643c89..f8768c3 100644 --- a/gas/testsuite/gas/aarch64/armv8_4-a-registers.d +++ b/gas/testsuite/gas/aarch64/armv8_4-a-registers.d @@ -1,4 +1,4 @@ -#as: -march=armv8.4-a +#as: -menable-sysreg-checking -march=armv8.4-a #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/cmpbr.d b/gas/testsuite/gas/aarch64/cmpbr.d index 457fdd7..9096350 100644 --- a/gas/testsuite/gas/aarch64/cmpbr.d +++ b/gas/testsuite/gas/aarch64/cmpbr.d @@ -1,5 +1,6 @@ #name: Test for FEAT_CMPBR #as: -march=armv8-a+cmpbr +#as: -march=armv9.6-a #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/fprcvt.d b/gas/testsuite/gas/aarch64/fprcvt.d index 9129858..f44690b 100644 --- a/gas/testsuite/gas/aarch64/fprcvt.d +++ b/gas/testsuite/gas/aarch64/fprcvt.d @@ -1,5 +1,6 @@ #name: FPRCVT instructions #as: -march=armv8-a+fprcvt +#as: -march=armv9.6-a #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/gpc3.d b/gas/testsuite/gas/aarch64/gpc3.d index 2535aef..749a0ae 100644 --- a/gas/testsuite/gas/aarch64/gpc3.d +++ b/gas/testsuite/gas/aarch64/gpc3.d @@ -1,5 +1,5 @@ #name: RME_GPC3 System register -#as: -march=armv9.5-a +#as: -menable-sysreg-checking -march=armv9.5-a #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/illegal-ite1-1.d b/gas/testsuite/gas/aarch64/illegal-ite1-1.d index 99ef4d4..d655d2d 100644 --- a/gas/testsuite/gas/aarch64/illegal-ite1-1.d +++ b/gas/testsuite/gas/aarch64/illegal-ite1-1.d @@ -1,3 +1,3 @@ -#as: -march=armv8-a +#as: -menable-sysreg-checking -march=armv8-a #source: ite1.s -#error_output: illegal-ite1-1.l
\ No newline at end of file +#error_output: illegal-ite1-1.l diff --git a/gas/testsuite/gas/aarch64/illegal-predres2-1.d b/gas/testsuite/gas/aarch64/illegal-predres2-1.d index f858afd..ff73ac8 100644 --- a/gas/testsuite/gas/aarch64/illegal-predres2-1.d +++ b/gas/testsuite/gas/aarch64/illegal-predres2-1.d @@ -1,3 +1,3 @@ -#as: -march=armv8-a +#as: -menable-sysreg-checking -march=armv8-a #source: predres2.s -#error_output: illegal-predres2-1.l
\ No newline at end of file +#error_output: illegal-predres2-1.l diff --git a/gas/testsuite/gas/aarch64/illegal-sve2.l b/gas/testsuite/gas/aarch64/illegal-sve2.l index 62f063a..4b97425 100644 --- a/gas/testsuite/gas/aarch64/illegal-sve2.l +++ b/gas/testsuite/gas/aarch64/illegal-sve2.l @@ -50,27 +50,27 @@ [^ :]+:[0-9]+: Error: expected a register at operand 1 -- `addp z32\.s,p0/m,z32\.s,z0\.s' [^ :]+:[0-9]+: Error: expected an SVE vector register at operand 4 -- `addp z0\.s,p0/m,z0\.s,z32\.s' [^ :]+:[0-9]+: Error: p0-p7 expected at operand 2 -- `addp z0\.s,p8/m,z0\.s,z0\.s' -[^ :]+:[0-9]+: Warning: SVE instruction expected after `movprfx' -- `aesd z0\.b,z0\.b,z0\.b' +[^ :]+:[0-9]+: Warning: SVE `movprfx' compatible instruction expected -- `aesd z0\.b,z0\.b,z0\.b' [^ :]+:[0-9]+: Error: operand 2 must be the same register as operand 1 -- `aesd z0\.b,z1\.b,z0\.b' [^ :]+:[0-9]+: Error: operand mismatch -- `aesd z0\.b,z0\.s,z0\.b' [^ :]+:[0-9]+: Info: did you mean this\? [^ :]+:[0-9]+: Info: aesd z0\.b, z0\.b, z0\.b [^ :]+:[0-9]+: Error: expected a register or register list at operand 1 -- `aesd z32\.b,z0\.b,z0\.b' [^ :]+:[0-9]+: Error: expected an SVE vector register at operand 3 -- `aesd z0\.b,z0\.b,z32\.b' -[^ :]+:[0-9]+: Warning: SVE instruction expected after `movprfx' -- `aese z0\.b,z0\.b,z0\.b' +[^ :]+:[0-9]+: Warning: SVE `movprfx' compatible instruction expected -- `aese z0\.b,z0\.b,z0\.b' [^ :]+:[0-9]+: Error: operand 2 must be the same register as operand 1 -- `aese z0\.b,z1\.b,z0\.b' [^ :]+:[0-9]+: Error: operand mismatch -- `aese z0\.b,z0\.s,z0\.b' [^ :]+:[0-9]+: Info: did you mean this\? [^ :]+:[0-9]+: Info: aese z0\.b, z0\.b, z0\.b [^ :]+:[0-9]+: Error: expected a register or register list at operand 1 -- `aese z32\.b,z0\.b,z0\.b' [^ :]+:[0-9]+: Error: expected an SVE vector register at operand 3 -- `aese z0\.b,z0\.b,z32\.b' -[^ :]+:[0-9]+: Warning: SVE instruction expected after `movprfx' -- `aesimc z0\.b,z0\.b' +[^ :]+:[0-9]+: Warning: SVE `movprfx' compatible instruction expected -- `aesimc z0\.b,z0\.b' [^ :]+:[0-9]+: Error: operand 2 must be the same register as operand 1 -- `aesimc z0\.b,z1\.b' [^ :]+:[0-9]+: Error: operand mismatch -- `aesimc z0\.b,z0\.s' [^ :]+:[0-9]+: Info: did you mean this\? [^ :]+:[0-9]+: Info: aesimc z0\.b, z0\.b [^ :]+:[0-9]+: Error: expected a vector register at operand 1 -- `aesimc z32\.b,z0\.b' -[^ :]+:[0-9]+: Warning: SVE instruction expected after `movprfx' -- `aesmc z0\.b,z0\.b' +[^ :]+:[0-9]+: Warning: SVE `movprfx' compatible instruction expected -- `aesmc z0\.b,z0\.b' [^ :]+:[0-9]+: Error: operand 2 must be the same register as operand 1 -- `aesmc z0\.b,z1\.b' [^ :]+:[0-9]+: Error: operand mismatch -- `aesmc z0\.b,z0\.s' [^ :]+:[0-9]+: Info: did you mean this\? diff --git a/gas/testsuite/gas/aarch64/illegal.d b/gas/testsuite/gas/aarch64/illegal.d index 33bbb0c..7367f9b 100644 --- a/gas/testsuite/gas/aarch64/illegal.d +++ b/gas/testsuite/gas/aarch64/illegal.d @@ -1,4 +1,4 @@ #name: Illegal Instructions -#as: -mno-verbose-error +#as: -menable-sysreg-checking -mno-verbose-error #source: illegal.s #error_output: illegal.l diff --git a/gas/testsuite/gas/aarch64/ite1.d b/gas/testsuite/gas/aarch64/ite1.d index 10ccbda..a0d2b62 100644 --- a/gas/testsuite/gas/aarch64/ite1.d +++ b/gas/testsuite/gas/aarch64/ite1.d @@ -1,4 +1,4 @@ -#as: -march=armv9.4-a+ite +#as: -menable-sysreg-checking -march=armv9.4-a+ite #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/lsui.d b/gas/testsuite/gas/aarch64/lsui.d index 0a052c3..7a1d922 100644 --- a/gas/testsuite/gas/aarch64/lsui.d +++ b/gas/testsuite/gas/aarch64/lsui.d @@ -1,6 +1,7 @@ #name: FEAT_LSUI Test #objdump: -dr #as:-march=armv9-a+lsui+fp +#as:-march=armv9.6-a .*: file format .* diff --git a/gas/testsuite/gas/aarch64/mec-arch-bad.d b/gas/testsuite/gas/aarch64/mec-arch-bad.d index d2e6416..8538b7d 100644 --- a/gas/testsuite/gas/aarch64/mec-arch-bad.d +++ b/gas/testsuite/gas/aarch64/mec-arch-bad.d @@ -1,4 +1,4 @@ #name: MEC unavailable for architecture below armv9.2-a -#as: -march=armv9.1-a +#as: -menable-sysreg-checking -march=armv9.1-a #source: mec.s #error_output: mec-arch-bad.l diff --git a/gas/testsuite/gas/aarch64/mec.d b/gas/testsuite/gas/aarch64/mec.d index 070f831..7a16791 100644 --- a/gas/testsuite/gas/aarch64/mec.d +++ b/gas/testsuite/gas/aarch64/mec.d @@ -1,5 +1,5 @@ #name: MEC System registers -#as: -march=armv9.2-a +#as: -menable-sysreg-checking -march=armv9.2-a #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/msr.d b/gas/testsuite/gas/aarch64/msr.d index fedf2ee..815c778 100644 --- a/gas/testsuite/gas/aarch64/msr.d +++ b/gas/testsuite/gas/aarch64/msr.d @@ -1,4 +1,4 @@ -#as: -march=armv8.2-a+profile +#as: -menable-sysreg-checking -march=armv8.2-a+profile #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/mte_tagged_stack.d b/gas/testsuite/gas/aarch64/mte_tagged_stack.d new file mode 100644 index 0000000..5e8afb8 --- /dev/null +++ b/gas/testsuite/gas/aarch64/mte_tagged_stack.d @@ -0,0 +1,47 @@ +#objdump: --dwarf=frames +# This test is only valid on ELF based ports. +#notarget: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd +# Test assembling a file with functions using MTE tagged stack or not +# It must interpret .cfi_mte_tagged_frame properly and emit a +# 'G' character into the correct CIE's augmentation string. + +.+: file .+ + +Contents of the .eh_frame section: + +0+ 0+14 0+ CIE + Version: 1 + Augmentation: "zRG" + Code alignment factor: 4 + Data alignment factor: -8 + Return address column: 30 + Augmentation data: 1b + DW_CFA_def_cfa: r31 \(sp\) ofs 0 + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +0+18 0+14 0+1c FDE cie=0+ pc=0+\.\.0+4 + DW_CFA_advance_loc: 4 to 0+4 + DW_CFA_def_cfa_offset: 16 + DW_CFA_offset: r29 \(x29\) at cfa-16 + DW_CFA_offset: r30 \(x30\) at cfa-8 + +0+30 0+10 0+0 CIE + Version: 1 + Augmentation: "zR" + Code alignment factor: 4 + Data alignment factor: -8 + Return address column: 30 + Augmentation data: 1b + DW_CFA_def_cfa: r31 \(sp\) ofs 0 + +0+44 0+1(4|8) 0+18 FDE cie=0+30 pc=0+4\.\.0+8 + DW_CFA_advance_loc: 4 to 0+8 + DW_CFA_def_cfa_offset: 16 + DW_CFA_offset: r29 \(x29\) at cfa-16 + DW_CFA_offset: r30 \(x30\) at cfa-8 +#? DW_CFA_nop +#? DW_CFA_nop +#? DW_CFA_nop +#? DW_CFA_nop diff --git a/gas/testsuite/gas/aarch64/mte_tagged_stack.s b/gas/testsuite/gas/aarch64/mte_tagged_stack.s new file mode 100644 index 0000000..64a92b4 --- /dev/null +++ b/gas/testsuite/gas/aarch64/mte_tagged_stack.s @@ -0,0 +1,24 @@ + .arch armv8-a+memtag + .text + .align 2 + .global foo + .type foo, %function +foo: + .cfi_startproc + .cfi_mte_tagged_frame + stp x29, x30, [sp, -16]! + .cfi_def_cfa_offset 16 + .cfi_offset 29, -16 + .cfi_offset 30, -8 + .cfi_endproc + .size foo, .-foo + .align 2 + .global bar + .type bar, %function +bar: + .cfi_startproc + stp x29, x30, [sp, -16]! + .cfi_def_cfa_offset 16 + .cfi_offset 29, -16 + .cfi_offset 30, -8 + .cfi_endproc diff --git a/gas/testsuite/gas/aarch64/occmo-memtag.d b/gas/testsuite/gas/aarch64/occmo-memtag.d index 0dbbab0..5a20fd4 100644 --- a/gas/testsuite/gas/aarch64/occmo-memtag.d +++ b/gas/testsuite/gas/aarch64/occmo-memtag.d @@ -1,5 +1,6 @@ #name: FEAT_OCCMO + MEMTAG Test #as: -march=armv8-a+occmo+memtag +#as: -march=armv9.6-a+memtag #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/occmo.d b/gas/testsuite/gas/aarch64/occmo.d index 0ec68e8..4267413 100644 --- a/gas/testsuite/gas/aarch64/occmo.d +++ b/gas/testsuite/gas/aarch64/occmo.d @@ -1,5 +1,6 @@ #name: FEAT_OCCMO Test #as: -march=armv8-a+occmo +#as: -march=armv9.6-a #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/pan-directive.d b/gas/testsuite/gas/aarch64/pan-directive.d index b7e4378..51fac24 100644 --- a/gas/testsuite/gas/aarch64/pan-directive.d +++ b/gas/testsuite/gas/aarch64/pan-directive.d @@ -1,5 +1,5 @@ #objdump: -dr -#as: --defsym DIRECTIVE=1 +#as: -menable-sysreg-checking --defsym DIRECTIVE=1 #source: pan.s .*: file format .* diff --git a/gas/testsuite/gas/aarch64/pan.d b/gas/testsuite/gas/aarch64/pan.d index 46c3631..e79602b 100644 --- a/gas/testsuite/gas/aarch64/pan.d +++ b/gas/testsuite/gas/aarch64/pan.d @@ -1,5 +1,5 @@ #objdump: -dr -#as: -march=armv8-a+pan +#as: -menable-sysreg-checking -march=armv8-a+pan .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sme-8.d b/gas/testsuite/gas/aarch64/sme-8.d index c956baa..e550d0a 100644 --- a/gas/testsuite/gas/aarch64/sme-8.d +++ b/gas/testsuite/gas/aarch64/sme-8.d @@ -1,5 +1,5 @@ #name: SME mode selection and state access instructions -#as: -march=armv8-a+sme +#as: -menable-sysreg-checking -march=armv8-a+sme #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/ssbs-illegal2.d b/gas/testsuite/gas/aarch64/ssbs-illegal2.d index d35757c..aeef026 100644 --- a/gas/testsuite/gas/aarch64/ssbs-illegal2.d +++ b/gas/testsuite/gas/aarch64/ssbs-illegal2.d @@ -1,3 +1,3 @@ -#as: -march=armv8-a --defsym ERROR2=1 +#as: -menable-sysreg-checking -march=armv8-a --defsym ERROR2=1 #source: ssbs.s #error_output: ssbs-illegal2.l diff --git a/gas/testsuite/gas/aarch64/ssbs1.d b/gas/testsuite/gas/aarch64/ssbs1.d index daeda76..6dfa178 100644 --- a/gas/testsuite/gas/aarch64/ssbs1.d +++ b/gas/testsuite/gas/aarch64/ssbs1.d @@ -1,6 +1,6 @@ #source: ssbs.s #objdump: -dr -#as: -march=armv8-a+ssbs --defsym SUCCESS=1 +#as: -menable-sysreg-checking -march=armv8-a+ssbs --defsym SUCCESS=1 .*: file format .* diff --git a/gas/testsuite/gas/aarch64/ssbs2.d b/gas/testsuite/gas/aarch64/ssbs2.d index 0027026..68eef6b 100644 --- a/gas/testsuite/gas/aarch64/ssbs2.d +++ b/gas/testsuite/gas/aarch64/ssbs2.d @@ -1,6 +1,6 @@ #source: ssbs.s #objdump: -dr -#as: -march=armv8.5-a --defsym SUCCESS=1 +#as: -menable-sysreg-checking -march=armv8.5-a --defsym SUCCESS=1 .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sve-missing-qualifiers.d b/gas/testsuite/gas/aarch64/sve-missing-qualifiers.d new file mode 100644 index 0000000..5f00db8 --- /dev/null +++ b/gas/testsuite/gas/aarch64/sve-missing-qualifiers.d @@ -0,0 +1,2 @@ +#as: -march=armv8-a+sve2+sme2p1+sve-f16f32mm+f8f32mm+f8f16mm+sve-bfscale+i8mm+f64mm+f32mm+lut+sme-lutv2 +#error_output: sve-missing-qualifiers.l diff --git a/gas/testsuite/gas/aarch64/sve-missing-qualifiers.l b/gas/testsuite/gas/aarch64/sve-missing-qualifiers.l new file mode 100644 index 0000000..a258ef5 --- /dev/null +++ b/gas/testsuite/gas/aarch64/sve-missing-qualifiers.l @@ -0,0 +1,36 @@ +[^ :]+: Assembler messages: +[^ :]+:[0-9]+: Error: operand mismatch -- `fmmla z0\.s,z0\.h,z0' +[^ :]+:[0-9]+: Info: did you mean this\? +[^ :]+:[0-9]+: Info: fmmla z0\.s, z0\.h, z0\.h +[^ :]+:[0-9]+: Error: operand mismatch -- `fmmla z0\.s,z0\.b,z0' +[^ :]+:[0-9]+: Info: did you mean this\? +[^ :]+:[0-9]+: Info: fmmla z0\.s, z0\.b, z0\.b +[^ :]+:[0-9]+: Error: operand mismatch -- `fmmla z0\.h,z0\.b,z0' +[^ :]+:[0-9]+: Info: did you mean this\? +[^ :]+:[0-9]+: Info: fmmla z0\.h, z0\.b, z0\.b +[^ :]+:[0-9]+: Error: operand mismatch -- `fmmla z0,z0,z0' +[^ :]+:[0-9]+: Info: did you mean this\? +[^ :]+:[0-9]+: Info: fmmla z0\.d, z0\.d, z0\.d +[^ :]+:[0-9]+: Error: operand mismatch -- `bfscale z0\.h,p0/m,z0,z0\.h' +[^ :]+:[0-9]+: Info: did you mean this\? +[^ :]+:[0-9]+: Info: bfscale z0\.h, p0/m, z0\.h, z0\.h +[^ :]+:[0-9]+: Error: operand mismatch -- `bfmul {z0\.h-z3\.h},{z0\.h-z3\.h},z0' +[^ :]+:[0-9]+: Info: did you mean this\? +[^ :]+:[0-9]+: Info: bfmul {z0\.h-z3\.h}, {z0\.h-z3\.h}, z0\.h +[^ :]+:[0-9]+: Error: operand mismatch -- `smmla z0\.s,z0\.b,z0' +[^ :]+:[0-9]+: Info: did you mean this\? +[^ :]+:[0-9]+: Info: smmla z0\.s, z0\.b, z0\.b +[^ :]+:[0-9]+: Error: operand mismatch -- `ld1rob {z0\.b},p0,\[x0\]' +[^ :]+:[0-9]+: Info: did you mean this\? +[^ :]+:[0-9]+: Info: ld1rob {z0\.b}, p0/z, \[x0\] +[^ :]+:[0-9]+: Error: operand mismatch -- `fmmla z0\.d,z0\.d,z0' +[^ :]+:[0-9]+: Info: did you mean this\? +[^ :]+:[0-9]+: Info: fmmla z0\.d, z0\.d, z0\.d +[^ :]+:[0-9]+: Error: operand mismatch -- `fmmla z0\.s,z0,z0\.s' +[^ :]+:[0-9]+: Info: did you mean this\? +[^ :]+:[0-9]+: Info: fmmla z0\.s, z0\.s, z0\.s +[^ :]+:[0-9]+: Error: operand mismatch -- `luti2 z0,{z0\.b},z0\[0\]' +[^ :]+:[0-9]+: Info: did you mean this\? +[^ :]+:[0-9]+: Info: luti2 z0\.b, {z0\.b}, z0\[0\] +[^ :]+:[0-9]+: Error: missing type suffix at operand 1 -- `luti4 {z0-z3},zt0,{z0-z1}' +[^ :]+:[0-9]+: Error: missing type suffix at operand 1 -- `luti4 {z0,z4,z8,z12},zt0,{z0-z1}' diff --git a/gas/testsuite/gas/aarch64/sve-missing-qualifiers.s b/gas/testsuite/gas/aarch64/sve-missing-qualifiers.s new file mode 100644 index 0000000..64ee8db --- /dev/null +++ b/gas/testsuite/gas/aarch64/sve-missing-qualifiers.s @@ -0,0 +1,13 @@ + fmmla z0.s, z0.h, z0 + fmmla z0.s, z0.b, z0 + fmmla z0.h, z0.b, z0 + fmmla z0, z0, z0 + bfscale z0.h, p0/m, z0, z0.h + bfmul {z0.h-z3.h}, {z0.h-z3.h}, z0 + smmla z0.s, z0.b, z0 + ld1rob {z0.b}, p0, [x0] + fmmla z0.d, z0.d, z0 + fmmla z0.s, z0, z0.s + luti2 z0, {z0.b}, z0[0] + luti4 {z0-z3}, zt0, {z0-z1} + luti4 {z0, z4, z8, z12}, zt0, {z0-z1} diff --git a/gas/testsuite/gas/aarch64/sve2p2.d b/gas/testsuite/gas/aarch64/sve2p2.d index f401cb4..128e350 100644 --- a/gas/testsuite/gas/aarch64/sve2p2.d +++ b/gas/testsuite/gas/aarch64/sve2p2.d @@ -1,5 +1,6 @@ #as: -march=armv8-a+sve2p2 #as: -march=armv8-a+sme2p2 +#as: -march=armv9.6-a #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/armv8_8-a-sysregs.d b/gas/testsuite/gas/aarch64/sysreg/armv8_8-a-sysregs.d index 294fed2..8b66bcf 100644 --- a/gas/testsuite/gas/aarch64/sysreg/armv8_8-a-sysregs.d +++ b/gas/testsuite/gas/aarch64/sysreg/armv8_8-a-sysregs.d @@ -1,4 +1,4 @@ -#as: -march=armv8.8-a +#as: -menable-sysreg-checking -march=armv8.8-a #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/armv8_9-a-sysregs-bad.d b/gas/testsuite/gas/aarch64/sysreg/armv8_9-a-sysregs-bad.d index a2cb5fe..862d474 100644 --- a/gas/testsuite/gas/aarch64/sysreg/armv8_9-a-sysregs-bad.d +++ b/gas/testsuite/gas/aarch64/sysreg/armv8_9-a-sysregs-bad.d @@ -1,3 +1,3 @@ #source: armv8_9-a-sysregs.s -#as: -march=armv8.8-a -I$srcdir/$subdir --no-info +#as: -menable-sysreg-checking -march=armv8.8-a -I$srcdir/$subdir --no-info #error_output: armv8_9-a-sysregs-bad.l diff --git a/gas/testsuite/gas/aarch64/sysreg/armv8_9-a-sysregs.d b/gas/testsuite/gas/aarch64/sysreg/armv8_9-a-sysregs.d index ca675c4..91e77bc 100644 --- a/gas/testsuite/gas/aarch64/sysreg/armv8_9-a-sysregs.d +++ b/gas/testsuite/gas/aarch64/sysreg/armv8_9-a-sysregs.d @@ -1,5 +1,5 @@ #source: armv8_9-a-sysregs.s -#as: -march=armv8.9-a -I$srcdir/$subdir +#as: -menable-sysreg-checking -march=armv8.9-a -I$srcdir/$subdir #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/armv9_5-a-sysregs-archv9_4-unsupported.d b/gas/testsuite/gas/aarch64/sysreg/armv9_5-a-sysregs-archv9_4-unsupported.d index 8ad01bc..61054ae 100644 --- a/gas/testsuite/gas/aarch64/sysreg/armv9_5-a-sysregs-archv9_4-unsupported.d +++ b/gas/testsuite/gas/aarch64/sysreg/armv9_5-a-sysregs-archv9_4-unsupported.d @@ -1,3 +1,3 @@ #source: armv9_5-a-sysregs.s -#as: -march=armv9.4-a -I$srcdir/$subdir +#as: -menable-sysreg-checking -march=armv9.4-a -I$srcdir/$subdir #error_output: armv9_5-a-sysregs-archv9_4-unsupported.l diff --git a/gas/testsuite/gas/aarch64/sysreg/armv9_5-a-sysregs.d b/gas/testsuite/gas/aarch64/sysreg/armv9_5-a-sysregs.d index c52142d..55a534e 100644 --- a/gas/testsuite/gas/aarch64/sysreg/armv9_5-a-sysregs.d +++ b/gas/testsuite/gas/aarch64/sysreg/armv9_5-a-sysregs.d @@ -1,5 +1,5 @@ #source: armv9_5-a-sysregs.s -#as: -march=armv9.5-a -I$srcdir/$subdir +#as: -menable-sysreg-checking -march=armv9.5-a -I$srcdir/$subdir #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/fp8-feature-enables-fpmr.d b/gas/testsuite/gas/aarch64/sysreg/fp8-feature-enables-fpmr.d index edef376..b6a4706 100644 --- a/gas/testsuite/gas/aarch64/sysreg/fp8-feature-enables-fpmr.d +++ b/gas/testsuite/gas/aarch64/sysreg/fp8-feature-enables-fpmr.d @@ -1,6 +1,6 @@ #name: Test that fpmr register is gated and available via the fp8 feature #source: fpmr.s -#as: -march=armv9.2-a+fp8 +#as: -menable-sysreg-checking -march=armv9.2-a+fp8 #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/fpmr-unsupported-by-default.d b/gas/testsuite/gas/aarch64/sysreg/fpmr-unsupported-by-default.d index c0b30c2..5f116e6 100644 --- a/gas/testsuite/gas/aarch64/sysreg/fpmr-unsupported-by-default.d +++ b/gas/testsuite/gas/aarch64/sysreg/fpmr-unsupported-by-default.d @@ -1,4 +1,4 @@ #name: Test that fpmr register is not supported by default #source: fpmr.s -#as: -march=armv9.2-a +#as: -menable-sysreg-checking -march=armv9.2-a #error_output: fpmr-unsupported-by-default.l diff --git a/gas/testsuite/gas/aarch64/sysreg/gcs-sysregs-bad.d b/gas/testsuite/gas/aarch64/sysreg/gcs-sysregs-bad.d index 439c1bd..3201a84 100644 --- a/gas/testsuite/gas/aarch64/sysreg/gcs-sysregs-bad.d +++ b/gas/testsuite/gas/aarch64/sysreg/gcs-sysregs-bad.d @@ -1,3 +1,3 @@ -#as: -march=armv8-a +#as: -menable-sysreg-checking -march=armv8-a #source: gcs-sysregs.s #error_output: gcs-sysregs-bad.l diff --git a/gas/testsuite/gas/aarch64/sysreg/gcs-sysregs.d b/gas/testsuite/gas/aarch64/sysreg/gcs-sysregs.d index f75c270..9d8082d 100644 --- a/gas/testsuite/gas/aarch64/sysreg/gcs-sysregs.d +++ b/gas/testsuite/gas/aarch64/sysreg/gcs-sysregs.d @@ -1,5 +1,5 @@ #name: Test of Guarded Control Stack system registers -#as: -march=armv8.8-a+gcs +#as: -menable-sysreg-checking -march=armv8.8-a+gcs #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-3.d b/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-3.d index 1c5c9d9..b07919d 100644 --- a/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-3.d +++ b/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-3.d @@ -1,3 +1,3 @@ #source: sysreg-3.s -#as: -march=armv8-a -I$srcdir/$subdir --no-info +#as: -menable-sysreg-checking -march=armv8-a -I$srcdir/$subdir --no-info #error_output: illegal-sysreg-3.l diff --git a/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-4.d b/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-4.d index 34dd4e4..5a11d2e 100644 --- a/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-4.d +++ b/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-4.d @@ -1,3 +1,3 @@ #source: sysreg-4.s -#as: -march=armv8-a +#as: -menable-sysreg-checking -march=armv8-a #error_output: illegal-sysreg-4.l diff --git a/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-4b.d b/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-4b.d index 1504f5f..d32c1a2 100644 --- a/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-4b.d +++ b/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-4b.d @@ -1,2 +1,2 @@ -#as: -march=armv8-a +#as: -menable-sysreg-checking -march=armv8-a #error_output: illegal-sysreg-4b.l diff --git a/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-5.d b/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-5.d index d108d0f..4815663 100644 --- a/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-5.d +++ b/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-5.d @@ -1,3 +1,3 @@ -#as: -march=armv8.3-a +#as: -menable-sysreg-checking -march=armv8.3-a #source: sysreg-5.s #error_output: illegal-sysreg-5.l diff --git a/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-7.d b/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-7.d index 98bc9a0..72311a7 100644 --- a/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-7.d +++ b/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-7.d @@ -1,2 +1,3 @@ +#as: -menable-sysreg-checking #source: illegal-sysreg-7.s #error_output: illegal-sysreg-7.l diff --git a/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-8.d b/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-8.d index 1e91d49..5b88d3e 100644 --- a/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-8.d +++ b/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-8.d @@ -1,2 +1,2 @@ -#as: --no-info +#as: -menable-sysreg-checking --no-info #error_output: illegal-sysreg-8.l diff --git a/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-8b.d b/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-8b.d index aed5b17..9d3f32b 100644 --- a/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-8b.d +++ b/gas/testsuite/gas/aarch64/sysreg/illegal-sysreg-8b.d @@ -1,2 +1,2 @@ -#as: --no-info +#as: -menable-sysreg-checking --no-info #warning_output: illegal-sysreg-8b.l diff --git a/gas/testsuite/gas/aarch64/sysreg/mpam-bad.d b/gas/testsuite/gas/aarch64/sysreg/mpam-bad.d index c3ec372..7d9938e 100644 --- a/gas/testsuite/gas/aarch64/sysreg/mpam-bad.d +++ b/gas/testsuite/gas/aarch64/sysreg/mpam-bad.d @@ -1,3 +1,3 @@ -#as: -march=armv9.3-a +#as: -march=armv9.3-a -menable-sysreg-checking #source: mpam-bad.s #error_output: mpam-bad.l diff --git a/gas/testsuite/gas/aarch64/sysreg/pops-sysregs-bad.d b/gas/testsuite/gas/aarch64/sysreg/pops-sysregs-bad.d index 61a6b21..58d05bf 100644 --- a/gas/testsuite/gas/aarch64/sysreg/pops-sysregs-bad.d +++ b/gas/testsuite/gas/aarch64/sysreg/pops-sysregs-bad.d @@ -1,3 +1,3 @@ #source: pops-sysregs-bad.s -#as: -I$srcdir/$subdir +#as: -menable-sysreg-checking -I$srcdir/$subdir #error_output: pops-sysregs-bad.l diff --git a/gas/testsuite/gas/aarch64/sysreg/pops-sysregs.d b/gas/testsuite/gas/aarch64/sysreg/pops-sysregs.d index db04ab8..83729b4 100644 --- a/gas/testsuite/gas/aarch64/sysreg/pops-sysregs.d +++ b/gas/testsuite/gas/aarch64/sysreg/pops-sysregs.d @@ -1,5 +1,5 @@ #source: pops-sysregs.s -#as: -I$srcdir/$subdir +#as: -menable-sysreg-checking -I$srcdir/$subdir #objdump: -dr [^:]+: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/sme-sysreg-illegal.d b/gas/testsuite/gas/aarch64/sysreg/sme-sysreg-illegal.d index ff0e855..6eae656 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sme-sysreg-illegal.d +++ b/gas/testsuite/gas/aarch64/sysreg/sme-sysreg-illegal.d @@ -1,3 +1,3 @@ -#as: -march=armv8-a+sme +#as: -menable-sysreg-checking -march=armv8-a+sme #source: sme-sysreg-illegal.s #warning_output: sme-sysreg-illegal.l diff --git a/gas/testsuite/gas/aarch64/sysreg/sme-sysreg.d b/gas/testsuite/gas/aarch64/sysreg/sme-sysreg.d index 8eaf73c..f51c56e 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sme-sysreg.d +++ b/gas/testsuite/gas/aarch64/sysreg/sme-sysreg.d @@ -1,5 +1,5 @@ #name: SME extension (system registers) -#as: -march=armv8-a+sme +#as: -menable-sysreg-checking -march=armv8-a+sme #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/sve-sysreg-invalid.d b/gas/testsuite/gas/aarch64/sysreg/sve-sysreg-invalid.d index bfe2d27..03a72b7 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sve-sysreg-invalid.d +++ b/gas/testsuite/gas/aarch64/sysreg/sve-sysreg-invalid.d @@ -1,3 +1,3 @@ -#as: -march=armv8-a+nosve +#as: -menable-sysreg-checking -march=armv8-a+nosve #source: sve-sysreg.s #error_output: sve-sysreg-invalid.l diff --git a/gas/testsuite/gas/aarch64/sysreg/sve-sysreg.d b/gas/testsuite/gas/aarch64/sysreg/sve-sysreg.d index 22d9e5ac..2b3a24b 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sve-sysreg.d +++ b/gas/testsuite/gas/aarch64/sysreg/sve-sysreg.d @@ -1,4 +1,4 @@ -#as: -march=armv8-a+sve +#as: -menable-sysreg-checking -march=armv8-a+sve #objdump: -dr diff --git a/gas/testsuite/gas/aarch64/sysreg/sysreg-1.d b/gas/testsuite/gas/aarch64/sysreg/sysreg-1.d index cecb1ad..d770133 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sysreg-1.d +++ b/gas/testsuite/gas/aarch64/sysreg/sysreg-1.d @@ -1,5 +1,5 @@ #source: sysreg-1.s -#as: -I$srcdir/$subdir +#as: -menable-sysreg-checking -I$srcdir/$subdir #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/sysreg-10-bad.d b/gas/testsuite/gas/aarch64/sysreg/sysreg-10-bad.d index 628de52..b47e92c 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sysreg-10-bad.d +++ b/gas/testsuite/gas/aarch64/sysreg/sysreg-10-bad.d @@ -1,3 +1,3 @@ #source: sysreg-10.s -#as: -march=armv8.7-a -I$srcdir/$subdir +#as: -menable-sysreg-checking -march=armv8.7-a -I$srcdir/$subdir #error_output: sysreg-10-bad.l diff --git a/gas/testsuite/gas/aarch64/sysreg/sysreg-10.d b/gas/testsuite/gas/aarch64/sysreg/sysreg-10.d index f07df91..55ab50e 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sysreg-10.d +++ b/gas/testsuite/gas/aarch64/sysreg/sysreg-10.d @@ -1,5 +1,5 @@ #source: sysreg-10.s -#as: -march=armv8.8-a -I$srcdir/$subdir +#as: -menable-sysreg-checking -march=armv8.8-a -I$srcdir/$subdir #objdump: -dr [^:]+: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/sysreg-2.d b/gas/testsuite/gas/aarch64/sysreg/sysreg-2.d index 1845902..140d462 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sysreg-2.d +++ b/gas/testsuite/gas/aarch64/sysreg/sysreg-2.d @@ -1,5 +1,5 @@ #source: sysreg-2.s -#as: -march=armv8.2-a+profile -I$srcdir/$subdir +#as: -menable-sysreg-checking -march=armv8.2-a+profile -I$srcdir/$subdir #objdump: -dr .*: file .* diff --git a/gas/testsuite/gas/aarch64/sysreg/sysreg-3.d b/gas/testsuite/gas/aarch64/sysreg/sysreg-3.d index 0135762..7f2ece1 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sysreg-3.d +++ b/gas/testsuite/gas/aarch64/sysreg/sysreg-3.d @@ -1,5 +1,5 @@ #source: sysreg-3.s -#as: -march=armv8.3-a -I$srcdir/$subdir +#as: -menable-sysreg-checking -march=armv8.3-a -I$srcdir/$subdir #objdump: -dr .*: file .* diff --git a/gas/testsuite/gas/aarch64/sysreg/sysreg-4.d b/gas/testsuite/gas/aarch64/sysreg/sysreg-4.d index f0fffbe..dd832c2 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sysreg-4.d +++ b/gas/testsuite/gas/aarch64/sysreg/sysreg-4.d @@ -1,5 +1,5 @@ #source: sysreg-4.s -#as: -march=armv8.5-a+rng+memtag +#as: -menable-sysreg-checking -march=armv8.5-a+rng+memtag #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/sysreg-6.d b/gas/testsuite/gas/aarch64/sysreg/sysreg-6.d index cb9c46e..ef8560f 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sysreg-6.d +++ b/gas/testsuite/gas/aarch64/sysreg/sysreg-6.d @@ -1,5 +1,5 @@ #source: sysreg-6.s -#as: -I$srcdir/$subdir +#as: -menable-sysreg-checking -I$srcdir/$subdir #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/sysreg-7.d b/gas/testsuite/gas/aarch64/sysreg/sysreg-7.d index 846ab8b..df65924 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sysreg-7.d +++ b/gas/testsuite/gas/aarch64/sysreg/sysreg-7.d @@ -1,5 +1,5 @@ #source: sysreg-7.s -#as: -I$srcdir/$subdir +#as: -menable-sysreg-checking -I$srcdir/$subdir #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/sysreg-8.d b/gas/testsuite/gas/aarch64/sysreg/sysreg-8.d index 4ee851f..8a1b07f 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sysreg-8.d +++ b/gas/testsuite/gas/aarch64/sysreg/sysreg-8.d @@ -1,5 +1,5 @@ #source: sysreg-8.s -#as: -I$srcdir/$subdir +#as: -menable-sysreg-checking -I$srcdir/$subdir #objdump: -dr .* diff --git a/gas/testsuite/gas/aarch64/sysreg/sysreg-9-bad.d b/gas/testsuite/gas/aarch64/sysreg/sysreg-9-bad.d index a1ebac6..72d188e 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sysreg-9-bad.d +++ b/gas/testsuite/gas/aarch64/sysreg/sysreg-9-bad.d @@ -1,3 +1,3 @@ #source: sysreg-9-bad.s -#as: -I$srcdir/$subdir +#as: -menable-sysreg-checking -I$srcdir/$subdir #error_output: sysreg-9-bad.l diff --git a/gas/testsuite/gas/aarch64/sysreg/sysreg-9.d b/gas/testsuite/gas/aarch64/sysreg/sysreg-9.d index 61b63ce..a7fa07e 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sysreg-9.d +++ b/gas/testsuite/gas/aarch64/sysreg/sysreg-9.d @@ -1,5 +1,5 @@ #source: sysreg-9.s -#as: -I$srcdir/$subdir +#as: -menable-sysreg-checking -I$srcdir/$subdir #objdump: -dr diff --git a/gas/testsuite/gas/aarch64/sysreg/sysreg-diagnostic.d b/gas/testsuite/gas/aarch64/sysreg/sysreg-diagnostic.d index 55cdf09..35267f5 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sysreg-diagnostic.d +++ b/gas/testsuite/gas/aarch64/sysreg/sysreg-diagnostic.d @@ -1,5 +1,5 @@ #objdump: -dr -M notes -#as: -march=armv8-a +#as: -menable-sysreg-checking -march=armv8-a #warning_output: sysreg-diagnostic.l .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/sysreg.d b/gas/testsuite/gas/aarch64/sysreg/sysreg.d index 9aba548..d17c77f 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sysreg.d +++ b/gas/testsuite/gas/aarch64/sysreg/sysreg.d @@ -1,5 +1,5 @@ #source: sysreg.s -#as: -I$srcdir/$subdir +#as: -menable-sysreg-checking -I$srcdir/$subdir #objdump: -dr .*: file format .* diff --git a/gas/testsuite/gas/aarch64/sysreg/sysreg128.d b/gas/testsuite/gas/aarch64/sysreg/sysreg128.d index 22df5e2..ffd7517 100644 --- a/gas/testsuite/gas/aarch64/sysreg/sysreg128.d +++ b/gas/testsuite/gas/aarch64/sysreg/sysreg128.d @@ -1,5 +1,5 @@ #source: sysreg128.s -#as: -I$srcdir/$subdir +#as: -menable-sysreg-checking -I$srcdir/$subdir #objdump: -dr .* diff --git a/gas/testsuite/gas/aarch64/sysreg/sysregs_with_no_restrictions-bad.d b/gas/testsuite/gas/aarch64/sysreg/sysregs_with_no_restrictions-bad.d new file mode 100644 index 0000000..95ddd32 --- /dev/null +++ b/gas/testsuite/gas/aarch64/sysreg/sysregs_with_no_restrictions-bad.d @@ -0,0 +1,3 @@ +#source: sysregs_with_no_restrictions.s +#as: -menable-sysreg-checking -I$srcdir/$subdir +#error_output: sysregs_with_no_restrictions-bad.l diff --git a/gas/testsuite/gas/aarch64/sysreg/sysregs_with_no_restrictions-bad.l b/gas/testsuite/gas/aarch64/sysreg/sysregs_with_no_restrictions-bad.l new file mode 100644 index 0000000..f70dba9 --- /dev/null +++ b/gas/testsuite/gas/aarch64/sysreg/sysregs_with_no_restrictions-bad.l @@ -0,0 +1,173 @@ +.*: Assembler messages: +.*: Error: selected processor does not support system register name 'mpuir_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'afsr0_el12' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'afsr0_el12' +.*: Info: macro invoked from here +.*: Error: selected processor does not support PSTATE field name 'uao' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'uao' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'uao' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'apdakeyhi_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'apdakeyhi_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'amcfgr_el0' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'vsttbr_el2' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'vsttbr_el2' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'scxtnum_el0' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'scxtnum_el0' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'id_pfr2_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'amcg1idr_el0' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'hcrx_el2' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'hcrx_el2' +.*: Info: macro invoked from here +.*: Error: selected processor does not support PSTATE field name 'allint' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'allint' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'allint' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pfar_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pfar_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pir_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pir_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pmecr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pmecr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'hdfgrtr2_el2' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'hdfgrtr2_el2' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'mdselr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'mdselr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pmicfiltr_el0' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pmicfiltr_el0' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pmsdsfr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pmsdsfr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pmuacr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pmuacr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'por_el0' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'por_el0' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 's2pir_el2' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 's2pir_el2' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 's2por_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 's2por_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'sctlr2_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'sctlr2_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'spmaccessr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'spmaccessr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'tcr2_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'tcr2_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'amair2_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'amair2_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pmccntsvr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'vdisr_el3' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'vdisr_el3' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'spmzr_el0' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'spmzr_el0' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'mdstepop_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'mdstepop_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'gpcbw_el3' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'gpcbw_el3' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pmbmar_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pmbmar_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'erxgsr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'fpmr' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'fpmr' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'id_aa64zfr0_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'lorc_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'lorc_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pmbidr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'gcspr_el0' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'gcspr_el0' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'id_aa64smfr0_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'trcitecr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'trcitecr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'gcr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'gcr_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'rndr' +.*: Info: macro invoked from here +.*: Error: selected processor does not support PSTATE field name 'pan' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pan' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'pan' +.*: Info: macro invoked from here +.*: Error: selected processor does not support PSTATE field name 'ssbs' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'ssbs' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'ssbs' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'rcwmask_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'rcwmask_el1' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'ttbr1_el2' +.*: Info: macro invoked from here +.*: Error: selected processor does not support system register name 'ttbr1_el2' +.*: Info: macro invoked from here diff --git a/gas/testsuite/gas/aarch64/sysreg/sysregs_with_no_restrictions.d b/gas/testsuite/gas/aarch64/sysreg/sysregs_with_no_restrictions.d new file mode 100644 index 0000000..f311c23 --- /dev/null +++ b/gas/testsuite/gas/aarch64/sysreg/sysregs_with_no_restrictions.d @@ -0,0 +1,95 @@ +#as: -I$srcdir/$subdir +#objdump: -dr + +[^:]+: file format .* + + +[^:]+: + +[^:]+: +.*: d5380080 mrs x0, mpuir_el1 +.*: d51d5100 msr afsr0_el12, x0 +.*: d53d5100 mrs x0, afsr0_el12 +.*: d5184280 msr uao, x0 +.*: d5384280 mrs x0, uao +.*: d5182220 msr apdakeyhi_el1, x0 +.*: d5382220 mrs x0, apdakeyhi_el1 +.*: d53bd220 mrs x0, amcfgr_el0 +.*: d51c2600 msr vsttbr_el2, x0 +.*: d53c2600 mrs x0, vsttbr_el2 +.*: d51bd0e0 msr scxtnum_el0, x0 +.*: d53bd0e0 mrs x0, scxtnum_el0 +.*: d5380380 mrs x0, id_pfr2_el1 +.*: d53bd2c0 mrs x0, amcg1idr_el0 +.*: d51c1240 msr hcrx_el2, x0 +.*: d53c1240 mrs x0, hcrx_el2 +.*: d5184300 msr allint, x0 +.*: d5384300 mrs x0, allint +.*: d51860a0 msr pfar_el1, x0 +.*: d53860a0 mrs x0, pfar_el1 +.*: d518a260 msr pir_el1, x0 +.*: d538a260 mrs x0, pir_el1 +.*: d5189ea0 msr pmecr_el1, x0 +.*: d5389ea0 mrs x0, pmecr_el1 +.*: d51c3100 msr hdfgrtr2_el2, x0 +.*: d53c3100 mrs x0, hdfgrtr2_el2 +.*: d5100440 msr mdselr_el1, x0 +.*: d5300440 mrs x0, mdselr_el1 +.*: d51b9600 msr pmicfiltr_el0, x0 +.*: d53b9600 mrs x0, pmicfiltr_el0 +.*: d5189a80 msr pmsdsfr_el1, x0 +.*: d5389a80 mrs x0, pmsdsfr_el1 +.*: d5189e80 msr pmuacr_el1, x0 +.*: d5389e80 mrs x0, pmuacr_el1 +.*: d51ba280 msr por_el0, x0 +.*: d53ba280 mrs x0, por_el0 +.*: d51ca2a0 msr s2pir_el2, x0 +.*: d53ca2a0 mrs x0, s2pir_el2 +.*: d518a2a0 msr s2por_el1, x0 +.*: d538a2a0 mrs x0, s2por_el1 +.*: d5181060 msr sctlr2_el1, x0 +.*: d5381060 mrs x0, sctlr2_el1 +.*: d5109d60 msr spmaccessr_el1, x0 +.*: d5309d60 mrs x0, spmaccessr_el1 +.*: d5182060 msr tcr2_el1, x0 +.*: d5382060 mrs x0, tcr2_el1 +.*: d518a320 msr amair2_el1, x0 +.*: d538a320 mrs x0, amair2_el1 +.*: d530ebe0 mrs x0, pmccntsvr_el1 +.*: d51ec120 msr vdisr_el3, x0 +.*: d53ec120 mrs x0, vdisr_el3 +.*: d5139c80 msr spmzr_el0, x0 +.*: d5339c80 mrs x0, spmzr_el0 +.*: d5100540 msr mdstepop_el1, x0 +.*: d5300540 mrs x0, mdstepop_el1 +.*: d51e21a0 msr gpcbw_el3, x0 +.*: d53e21a0 mrs x0, gpcbw_el3 +.*: d5189aa0 msr pmbmar_el1, x0 +.*: d5389aa0 mrs x0, pmbmar_el1 +.*: d5385340 mrs x0, erxgsr_el1 +.*: d51b4440 msr fpmr, x0 +.*: d53b4440 mrs x0, fpmr +.*: d5380480 mrs x0, id_aa64zfr0_el1 +.*: d518a460 msr lorc_el1, x0 +.*: d538a460 mrs x0, lorc_el1 +.*: d5389ae0 mrs x0, pmbidr_el1 +.*: d51b2520 msr gcspr_el0, x0 +.*: d53b2520 mrs x0, gcspr_el0 +.*: d53804a0 mrs x0, id_aa64smfr0_el1 +.*: d5181260 msr trcitecr_el1, x0 +.*: d5381260 mrs x0, trcitecr_el1 +.*: d51810c0 msr gcr_el1, x0 +.*: d53810c0 mrs x0, gcr_el1 +.*: d53b2400 mrs x0, rndr +.*: d518c120 msr disr_el1, x0 +.*: d538c120 mrs x0, disr_el1 +.*: d5184260 msr pan, x0 +.*: d5384260 mrs x0, pan +.*: d51b42c0 msr ssbs, x0 +.*: d53b42c0 mrs x0, ssbs +.*: d558d0c2 msrr rcwmask_el1, x2, x3 +.*: d578d0c2 mrrs x2, x3, rcwmask_el1 +.*: d55c2002 msrr ttbr0_el2, x2, x3 +.*: d57c2002 mrrs x2, x3, ttbr0_el2 +.*: d55c2022 msrr ttbr1_el2, x2, x3 +.*: d57c2022 mrrs x2, x3, ttbr1_el2 diff --git a/gas/testsuite/gas/aarch64/sysreg/sysregs_with_no_restrictions.s b/gas/testsuite/gas/aarch64/sysreg/sysregs_with_no_restrictions.s new file mode 100644 index 0000000..f5c1138 --- /dev/null +++ b/gas/testsuite/gas/aarch64/sysreg/sysregs_with_no_restrictions.s @@ -0,0 +1,56 @@ + .include "sysreg-test-utils.inc" +.text + rw_sys_reg mpuir_el1 w=0 // V8R + rw_sys_reg afsr0_el12 // V8_1A + rw_sys_reg uao // V8_2A + rw_sys_reg apdakeyhi_el1 // V8_3A + rw_sys_reg amcfgr_el0 w=0 // V8_4A + rw_sys_reg vsttbr_el2 // V8A && V8_4A + rw_sys_reg scxtnum_el0 // SCXTNUM + rw_sys_reg id_pfr2_el1 w=0 // ID_PFR2 + rw_sys_reg amcg1idr_el0 w=0 // V8_6A + rw_sys_reg hcrx_el2 // V8_7A + rw_sys_reg allint // V8_8A + + rw_sys_reg pfar_el1 // PFAR + rw_sys_reg pir_el1 // S1PIE + rw_sys_reg pmecr_el1 // SEBEP + rw_sys_reg hdfgrtr2_el2 // FGT2 + rw_sys_reg mdselr_el1 // DEBUGv8p9 + rw_sys_reg pmicfiltr_el0 // PMUv3_ICNTR + rw_sys_reg pmsdsfr_el1 // SPE_FDS + rw_sys_reg pmuacr_el1 // PMUv3p9 + rw_sys_reg por_el0 // S1POE + rw_sys_reg s2pir_el2 // S2PIE + rw_sys_reg s2por_el1 // S2POE + rw_sys_reg sctlr2_el1 // SCTLR2 + rw_sys_reg spmaccessr_el1 // SPMU + rw_sys_reg tcr2_el1 // TCR2 + rw_sys_reg amair2_el1 // AIE + rw_sys_reg pmccntsvr_el1 w=0 // PMUv3_SS + + rw_sys_reg vdisr_el3 // E3DES + rw_sys_reg spmzr_el0 // SPMU2 + rw_sys_reg mdstepop_el1 // STEP2 + rw_sys_reg gpcbw_el3 // V9_5A + + rw_sys_reg pmbmar_el1 // PROFILE && V9_5A + + rw_sys_reg erxgsr_el1 w=0 // RASv2 + rw_sys_reg fpmr // FP8 + rw_sys_reg id_aa64zfr0_el1 w=0 // SVE + rw_sys_reg lorc_el1 // LOR + rw_sys_reg pmbidr_el1 w=0 // PROFILE + rw_sys_reg gcspr_el0 // GCS + rw_sys_reg id_aa64smfr0_el1 w=0 // SME + rw_sys_reg trcitecr_el1 // ITE + rw_sys_reg gcr_el1 // MEMTAG + rw_sys_reg rndr w=0 // RNG + rw_sys_reg disr_el1 // RAS + rw_sys_reg pan // PAN + rw_sys_reg ssbs // SSBS + + .arch_extension d128 // For the msrr and mrrs instructions. + rw_sys_reg_128 rcwmask_el1 xreg1=x2 xreg2=x3 // THE + rw_sys_reg_128 ttbr0_el2 xreg1=x2 xreg2=x3 // V8A + rw_sys_reg_128 ttbr1_el2 xreg1=x2 xreg2=x3 // V8A && V8_1A diff --git a/gas/testsuite/gas/aarch64/sysreg/sysregs_with_restrictions.d b/gas/testsuite/gas/aarch64/sysreg/sysregs_with_restrictions.d new file mode 100644 index 0000000..bca119d --- /dev/null +++ b/gas/testsuite/gas/aarch64/sysreg/sysregs_with_restrictions.d @@ -0,0 +1,95 @@ +#as: -menable-sysreg-checking -I$srcdir/$subdir +#objdump: -dr + +[^:]+: file format .* + + +[^:]+: + +[^:]+: +.*: d5380080 mrs x0, mpuir_el1 +.*: d51d5100 msr afsr0_el12, x0 +.*: d53d5100 mrs x0, afsr0_el12 +.*: d5184280 msr uao, x0 +.*: d5384280 mrs x0, uao +.*: d5182220 msr apdakeyhi_el1, x0 +.*: d5382220 mrs x0, apdakeyhi_el1 +.*: d53bd220 mrs x0, amcfgr_el0 +.*: d51c2600 msr vsttbr_el2, x0 +.*: d53c2600 mrs x0, vsttbr_el2 +.*: d51bd0e0 msr scxtnum_el0, x0 +.*: d53bd0e0 mrs x0, scxtnum_el0 +.*: d5380380 mrs x0, id_pfr2_el1 +.*: d53bd2c0 mrs x0, amcg1idr_el0 +.*: d51c1240 msr hcrx_el2, x0 +.*: d53c1240 mrs x0, hcrx_el2 +.*: d5184300 msr allint, x0 +.*: d5384300 mrs x0, allint +.*: d51860a0 msr pfar_el1, x0 +.*: d53860a0 mrs x0, pfar_el1 +.*: d518a260 msr pir_el1, x0 +.*: d538a260 mrs x0, pir_el1 +.*: d5189ea0 msr pmecr_el1, x0 +.*: d5389ea0 mrs x0, pmecr_el1 +.*: d51c3100 msr hdfgrtr2_el2, x0 +.*: d53c3100 mrs x0, hdfgrtr2_el2 +.*: d5100440 msr mdselr_el1, x0 +.*: d5300440 mrs x0, mdselr_el1 +.*: d51b9600 msr pmicfiltr_el0, x0 +.*: d53b9600 mrs x0, pmicfiltr_el0 +.*: d5189a80 msr pmsdsfr_el1, x0 +.*: d5389a80 mrs x0, pmsdsfr_el1 +.*: d5189e80 msr pmuacr_el1, x0 +.*: d5389e80 mrs x0, pmuacr_el1 +.*: d51ba280 msr por_el0, x0 +.*: d53ba280 mrs x0, por_el0 +.*: d51ca2a0 msr s2pir_el2, x0 +.*: d53ca2a0 mrs x0, s2pir_el2 +.*: d518a2a0 msr s2por_el1, x0 +.*: d538a2a0 mrs x0, s2por_el1 +.*: d5181060 msr sctlr2_el1, x0 +.*: d5381060 mrs x0, sctlr2_el1 +.*: d5109d60 msr spmaccessr_el1, x0 +.*: d5309d60 mrs x0, spmaccessr_el1 +.*: d5182060 msr tcr2_el1, x0 +.*: d5382060 mrs x0, tcr2_el1 +.*: d518a320 msr amair2_el1, x0 +.*: d538a320 mrs x0, amair2_el1 +.*: d530ebe0 mrs x0, pmccntsvr_el1 +.*: d51ec120 msr vdisr_el3, x0 +.*: d53ec120 mrs x0, vdisr_el3 +.*: d5139c80 msr spmzr_el0, x0 +.*: d5339c80 mrs x0, spmzr_el0 +.*: d5100540 msr mdstepop_el1, x0 +.*: d5300540 mrs x0, mdstepop_el1 +.*: d51e21a0 msr gpcbw_el3, x0 +.*: d53e21a0 mrs x0, gpcbw_el3 +.*: d5189aa0 msr pmbmar_el1, x0 +.*: d5389aa0 mrs x0, pmbmar_el1 +.*: d5385340 mrs x0, erxgsr_el1 +.*: d51b4440 msr fpmr, x0 +.*: d53b4440 mrs x0, fpmr +.*: d5380480 mrs x0, id_aa64zfr0_el1 +.*: d518a460 msr lorc_el1, x0 +.*: d538a460 mrs x0, lorc_el1 +.*: d5389ae0 mrs x0, pmbidr_el1 +.*: d51b2520 msr gcspr_el0, x0 +.*: d53b2520 mrs x0, gcspr_el0 +.*: d53804a0 mrs x0, id_aa64smfr0_el1 +.*: d5181260 msr trcitecr_el1, x0 +.*: d5381260 mrs x0, trcitecr_el1 +.*: d51810c0 msr gcr_el1, x0 +.*: d53810c0 mrs x0, gcr_el1 +.*: d53b2400 mrs x0, rndr +.*: d518c120 msr disr_el1, x0 +.*: d538c120 mrs x0, disr_el1 +.*: d5184260 msr pan, x0 +.*: d5384260 mrs x0, pan +.*: d51b42c0 msr ssbs, x0 +.*: d53b42c0 mrs x0, ssbs +.*: d558d0c2 msrr rcwmask_el1, x2, x3 +.*: d578d0c2 mrrs x2, x3, rcwmask_el1 +.*: d55c2002 msrr ttbr0_el2, x2, x3 +.*: d57c2002 mrrs x2, x3, ttbr0_el2 +.*: d55c2022 msrr ttbr1_el2, x2, x3 +.*: d57c2022 mrrs x2, x3, ttbr1_el2 diff --git a/gas/testsuite/gas/aarch64/sysreg/sysregs_with_restrictions.s b/gas/testsuite/gas/aarch64/sysreg/sysregs_with_restrictions.s new file mode 100644 index 0000000..0cdb822 --- /dev/null +++ b/gas/testsuite/gas/aarch64/sysreg/sysregs_with_restrictions.s @@ -0,0 +1,93 @@ + .include "sysreg-test-utils.inc" +.text + .arch armv8-r + rw_sys_reg mpuir_el1 w=0 // V8R + + .arch armv8.1-a + rw_sys_reg afsr0_el12 // V8_1A + + .arch armv8.2-a + rw_sys_reg uao // V8_2A + + .arch armv8.3-a + rw_sys_reg apdakeyhi_el1 // V8_3A + + .arch armv8.4-a + rw_sys_reg amcfgr_el0 w=0 // V8_4A + rw_sys_reg vsttbr_el2 // V8A && V8_4A + + .arch armv8.5-a + rw_sys_reg scxtnum_el0 // SCXTNUM + rw_sys_reg id_pfr2_el1 w=0 // ID_PFR2 + + .arch armv8.6-a + rw_sys_reg amcg1idr_el0 w=0 // V8_6A + + .arch armv8.7-a + rw_sys_reg hcrx_el2 // V8_7A + + .arch armv8.8-a + rw_sys_reg allint // V8_8A + + .arch armv8.9-a + rw_sys_reg pfar_el1 // PFAR + rw_sys_reg pir_el1 // S1PIE + rw_sys_reg pmecr_el1 // SEBEP + rw_sys_reg hdfgrtr2_el2 // FGT2 + rw_sys_reg mdselr_el1 // DEBUGv8p9 + rw_sys_reg pmicfiltr_el0 // PMUv3_ICNTR + rw_sys_reg pmsdsfr_el1 // SPE_FDS + rw_sys_reg pmuacr_el1 // PMUv3p9 + rw_sys_reg por_el0 // S1POE + rw_sys_reg s2pir_el2 // S2PIE + rw_sys_reg s2por_el1 // S2POE + rw_sys_reg sctlr2_el1 // SCTLR2 + rw_sys_reg spmaccessr_el1 // SPMU + rw_sys_reg tcr2_el1 // TCR2 + rw_sys_reg amair2_el1 // AIE + rw_sys_reg pmccntsvr_el1 w=0 // PMUv3_SS + + .arch armv9.5-a + rw_sys_reg vdisr_el3 // E3DES + rw_sys_reg spmzr_el0 // SPMU2 + rw_sys_reg mdstepop_el1 // STEP2 + rw_sys_reg gpcbw_el3 // V9_5A + + .arch armv9.5-a+profile + rw_sys_reg pmbmar_el1 // PROFILE && V9_5A + + .arch_extension rasv2 + rw_sys_reg erxgsr_el1 w=0 // RASv2 + .arch_extension fp8 + rw_sys_reg fpmr // FP8 + .arch_extension sve + rw_sys_reg id_aa64zfr0_el1 w=0 // SVE + .arch_extension lor + rw_sys_reg lorc_el1 // LOR + .arch_extension profile + rw_sys_reg pmbidr_el1 w=0 // PROFILE + .arch_extension gcs + rw_sys_reg gcspr_el0 // GCS + .arch_extension sme + rw_sys_reg id_aa64smfr0_el1 w=0 // SME + .arch_extension ite + rw_sys_reg trcitecr_el1 // ITE + .arch_extension memtag + rw_sys_reg gcr_el1 // MEMTAG + .arch_extension rng + rw_sys_reg rndr w=0 // RNG + .arch_extension ras + rw_sys_reg disr_el1 // RAS + .arch_extension pan + rw_sys_reg pan // PAN + .arch_extension ssbs + rw_sys_reg ssbs // SSBS + + .arch_extension d128 // For the msrr and mrrs instructions. + .arch_extension the + rw_sys_reg_128 rcwmask_el1 xreg1=x2 xreg2=x3 // THE + + .arch armv8-a+d128 + rw_sys_reg_128 ttbr0_el2 xreg1=x2 xreg2=x3 // V8A + .arch armv8.1-a+d128 + rw_sys_reg_128 ttbr1_el2 xreg1=x2 xreg2=x3 // V8A && V8_1A diff --git a/gas/testsuite/gas/aarch64/sysreg/v8-r-bad-sysregs.d b/gas/testsuite/gas/aarch64/sysreg/v8-r-bad-sysregs.d index 6677f3b..a228b59 100644 --- a/gas/testsuite/gas/aarch64/sysreg/v8-r-bad-sysregs.d +++ b/gas/testsuite/gas/aarch64/sysreg/v8-r-bad-sysregs.d @@ -1,3 +1,4 @@ #name: invalid system registers for Armv8-R AArch64 +#as: -menable-sysreg-checking #source: v8-r-bad-sysregs.s #error_output: v8-r-bad-sysregs.l diff --git a/gas/testsuite/gas/aarch64/sysreg/v8-r-sysregs-need-arch.d b/gas/testsuite/gas/aarch64/sysreg/v8-r-sysregs-need-arch.d index af83196..98756de 100644 --- a/gas/testsuite/gas/aarch64/sysreg/v8-r-sysregs-need-arch.d +++ b/gas/testsuite/gas/aarch64/sysreg/v8-r-sysregs-need-arch.d @@ -1,3 +1,4 @@ #name: check that Armv8-R system registers are rejected without -march=armv8-r +#as: -menable-sysreg-checking #source: v8-r-sysregs.s #error_output: v8-r-sysregs-need-arch.l diff --git a/gas/testsuite/gas/aarch64/sysreg/v8-r-sysregs.d b/gas/testsuite/gas/aarch64/sysreg/v8-r-sysregs.d index aa8321e..03e7fab 100644 --- a/gas/testsuite/gas/aarch64/sysreg/v8-r-sysregs.d +++ b/gas/testsuite/gas/aarch64/sysreg/v8-r-sysregs.d @@ -1,5 +1,5 @@ #name: Exhaustive test of Armv8-R system registers -#as: -march=armv8-r +#as: -menable-sysreg-checking -march=armv8-r #objdump: -dr -m aarch64:armv8-r .*: file format .* diff --git a/gas/testsuite/gas/aarch64/uao-directive.d b/gas/testsuite/gas/aarch64/uao-directive.d index 1dbe847..617d73f 100644 --- a/gas/testsuite/gas/aarch64/uao-directive.d +++ b/gas/testsuite/gas/aarch64/uao-directive.d @@ -1,5 +1,5 @@ #objdump: -dr -#as: --defsym DIRECTIVE=1 +#as: -menable-sysreg-checking --defsym DIRECTIVE=1 #source: uao.s .*: file format .* diff --git a/gas/testsuite/gas/aarch64/uao.d b/gas/testsuite/gas/aarch64/uao.d index 2fb67b1..387654c 100644 --- a/gas/testsuite/gas/aarch64/uao.d +++ b/gas/testsuite/gas/aarch64/uao.d @@ -1,5 +1,5 @@ #objdump: -dr -#as: -march=armv8.2-a +#as: -menable-sysreg-checking -march=armv8.2-a .*: file format .* diff --git a/gas/testsuite/gas/aarch64/virthostext-directive.d b/gas/testsuite/gas/aarch64/virthostext-directive.d index 22e8d54..5e23cad 100644 --- a/gas/testsuite/gas/aarch64/virthostext-directive.d +++ b/gas/testsuite/gas/aarch64/virthostext-directive.d @@ -1,5 +1,5 @@ #objdump: -dr -#as: --defsym DIRECTIVE=1 +#as: -menable-sysreg-checking --defsym DIRECTIVE=1 #source: virthostext.s diff --git a/gas/testsuite/gas/aarch64/virthostext.d b/gas/testsuite/gas/aarch64/virthostext.d index 8e63efa..2181906 100644 --- a/gas/testsuite/gas/aarch64/virthostext.d +++ b/gas/testsuite/gas/aarch64/virthostext.d @@ -1,5 +1,5 @@ #objdump: -dr -#as: -march=armv8.1-a +#as: -menable-sysreg-checking -march=armv8.1-a #source: virthostext.s diff --git a/gas/testsuite/gas/cfi-sframe/cfi-sframe-common-1b.d b/gas/testsuite/gas/cfi-sframe/cfi-sframe-common-1b.d new file mode 100644 index 0000000..c6ddfba --- /dev/null +++ b/gas/testsuite/gas/cfi-sframe/cfi-sframe-common-1b.d @@ -0,0 +1,6 @@ +#as: --gsframe +#readelf: -S +#name: SFrame section header in readelf output +#... +[ ]*\[.*\][ ]+\.sframe[ ]+GNU_SFRAME.* +#... diff --git a/gas/testsuite/gas/cfi-sframe/cfi-sframe-common-1b.s b/gas/testsuite/gas/cfi-sframe/cfi-sframe-common-1b.s new file mode 100644 index 0000000..ac9c6ca --- /dev/null +++ b/gas/testsuite/gas/cfi-sframe/cfi-sframe-common-1b.s @@ -0,0 +1,3 @@ + .cfi_sections .sframe + .cfi_startproc + .cfi_endproc diff --git a/gas/testsuite/gas/cfi-sframe/cfi-sframe.exp b/gas/testsuite/gas/cfi-sframe/cfi-sframe.exp index 9c5a16f..8a42419 100644 --- a/gas/testsuite/gas/cfi-sframe/cfi-sframe.exp +++ b/gas/testsuite/gas/cfi-sframe/cfi-sframe.exp @@ -72,6 +72,7 @@ if { ([istarget "x86_64-*-*"] || [istarget "aarch64*-*-*"] set old_ASFLAGS "$ASFLAGS" run_dump_test "cfi-sframe-common-1" + run_dump_test "cfi-sframe-common-1b" run_dump_test "cfi-sframe-common-2" run_dump_test "cfi-sframe-common-3" run_dump_test "cfi-sframe-common-4" diff --git a/gas/testsuite/gas/mips/mips.exp b/gas/testsuite/gas/mips/mips.exp index 1a766ff..85820c2 100644 --- a/gas/testsuite/gas/mips/mips.exp +++ b/gas/testsuite/gas/mips/mips.exp @@ -1606,6 +1606,9 @@ if { [istarget mips*-*-vxworks*] } { if $has_newabi { run_dump_test "cfi-n64-1" } run_dump_test "pr12915" + + run_dump_test_arches "pr19977" [mips_arch_list_all] + run_dump_test "reginfo-1a" run_dump_test "reginfo-1b" run_dump_test "reginfo-2" @@ -1724,6 +1727,13 @@ if { [istarget mips*-*-vxworks*] } { run_dump_test "pcrel-4-n32" run_dump_test "pcrel-4-64" } + run_dump_test "pcrel-hilo-match" + run_dump_test "pcrel-hilo-addend" + run_dump_test "pcrel-hilo" + if $has_newabi { + run_dump_test "pcrel-hilo-n32" + run_dump_test "pcrel-hilo-64" + } run_dump_test "pcrel-reloc-1" run_dump_test "pcrel-reloc-1-r6" diff --git a/gas/testsuite/gas/mips/pcrel-hilo-64.d b/gas/testsuite/gas/mips/pcrel-hilo-64.d new file mode 100644 index 0000000..92c697f --- /dev/null +++ b/gas/testsuite/gas/mips/pcrel-hilo-64.d @@ -0,0 +1,79 @@ +#readelf: -r +#name: MIPSr6 PCHI16/PCLO16 relocations (n64) +#as: -mabi=64 -march=mips64r6 -mno-pdr +#source: pcrel-hilo.s + +Relocation section '\.rela\.text' at offset .+ contains 24 entries: + Offset Info Type Sym\. Value Sym\. Name \+ Addend +000000000000 000800000040 R_MIPS_PCHI16 0000000000000000 bar \+ 7fec + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000000004 000900000005 R_MIPS_HI16 0000000000000000 baz \+ 0 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000000008 000800000040 R_MIPS_PCHI16 0000000000000000 bar \+ 7ff8 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +00000000000c 000800000040 R_MIPS_PCHI16 0000000000000000 bar \+ fff0 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000000010 000800000041 R_MIPS_PCLO16 0000000000000000 bar \+ 7ffc + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000000014 000900000006 R_MIPS_LO16 0000000000000000 baz \+ 0 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000000018 000800000041 R_MIPS_PCLO16 0000000000000000 bar \+ 8008 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +00000000001c 000800000041 R_MIPS_PCLO16 0000000000000000 bar \+ 10000 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000000020 000800000040 R_MIPS_PCHI16 0000000000000000 bar \+ 800c + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000000024 000900000005 R_MIPS_HI16 0000000000000000 baz \+ 0 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000000028 000800000040 R_MIPS_PCHI16 0000000000000000 bar \+ 8018 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +00000000002c 000800000040 R_MIPS_PCHI16 0000000000000000 bar \+ 10010 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000030030 000800000041 R_MIPS_PCLO16 0000000000000000 bar \+ 3801c + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000030034 000900000006 R_MIPS_LO16 0000000000000000 baz \+ 0 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000030038 000800000041 R_MIPS_PCLO16 0000000000000000 bar \+ 38028 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +00000003003c 000800000041 R_MIPS_PCLO16 0000000000000000 bar \+ 40020 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000030040 000800000041 R_MIPS_PCLO16 0000000000000000 bar \+ 3802c + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000030044 000900000006 R_MIPS_LO16 0000000000000000 baz \+ 0 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000030048 000800000041 R_MIPS_PCLO16 0000000000000000 bar \+ 38038 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +00000003004c 000800000041 R_MIPS_PCLO16 0000000000000000 bar \+ 40030 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000030050 000800000040 R_MIPS_PCHI16 0000000000000000 bar \+ 3803c + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000030054 000900000005 R_MIPS_HI16 0000000000000000 baz \+ 0 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +000000030058 000800000040 R_MIPS_PCHI16 0000000000000000 bar \+ 38048 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE +00000003005c 000800000040 R_MIPS_PCHI16 0000000000000000 bar \+ 40040 + Type2: R_MIPS_NONE + Type3: R_MIPS_NONE diff --git a/gas/testsuite/gas/mips/pcrel-hilo-addend.d b/gas/testsuite/gas/mips/pcrel-hilo-addend.d new file mode 100644 index 0000000..296101c --- /dev/null +++ b/gas/testsuite/gas/mips/pcrel-hilo-addend.d @@ -0,0 +1,63 @@ +#objdump: -dr --prefix-addresses --show-raw-insn +#name: MIPSr6 PCHI16/PCLO16 in-place addends (o32) +#as: -mabi=32 -mno-pdr +#source: pcrel-hilo.s + +.*: +file format .*mips.* + +Disassembly of section \.text: +00000000 <[^>]*> ec9e0000 auipc a0,0x0 + 0: R_MIPS_PCHI16 bar +00000004 <[^>]*> 3c050000 lui a1,0x0 + 4: R_MIPS_HI16 baz +00000008 <[^>]*> ecde0000 auipc a2,0x0 + 8: R_MIPS_PCHI16 bar +0000000c <[^>]*> ecfe0001 auipc a3,0x1 + c: R_MIPS_PCHI16 bar +00000010 <[^>]*> 24847ffc addiu a0,a0,32764 + 10: R_MIPS_PCLO16 bar +00000014 <[^>]*> 24a50000 addiu a1,a1,0 + 14: R_MIPS_LO16 baz +00000018 <[^>]*> 24c68008 addiu a2,a2,-32760 + 18: R_MIPS_PCLO16 bar +0000001c <[^>]*> 24e70000 addiu a3,a3,0 + 1c: R_MIPS_PCLO16 bar +00000020 <[^>]*> ec9e0001 auipc a0,0x1 + 20: R_MIPS_PCHI16 bar +00000024 <[^>]*> 3c050000 lui a1,0x0 + 24: R_MIPS_HI16 baz +00000028 <[^>]*> ecde0001 auipc a2,0x1 + 28: R_MIPS_PCHI16 bar +0000002c <[^>]*> ecfe0001 auipc a3,0x1 + 2c: R_MIPS_PCHI16 bar + \.\.\. +00030030 <[^>]*> 2484801c addiu a0,a0,-32740 + 30030: R_MIPS_PCLO16 bar +00030034 <[^>]*> 24a50000 addiu a1,a1,0 + 30034: R_MIPS_LO16 baz +00030038 <[^>]*> 24c68028 addiu a2,a2,-32728 + 30038: R_MIPS_PCLO16 bar +0003003c <[^>]*> 24e70020 addiu a3,a3,32 + 3003c: R_MIPS_PCLO16 bar +00030040 <[^>]*> 2410802c li s0,-32724 + 30040: R_MIPS_PCLO16 bar +00030044 <[^>]*> 24110000 li s1,0 + 30044: R_MIPS_LO16 baz +00030048 <[^>]*> 24128038 li s2,-32712 + 30048: R_MIPS_PCLO16 bar +0003004c <[^>]*> 24130030 li s3,48 + 3004c: R_MIPS_PCLO16 bar +00030050 <[^>]*> ec9e0004 auipc a0,0x4 + 30050: R_MIPS_PCHI16 bar +00030054 <[^>]*> 3c050000 lui a1,0x0 + 30054: R_MIPS_HI16 baz +00030058 <[^>]*> ecde0004 auipc a2,0x4 + 30058: R_MIPS_PCHI16 bar +0003005c <[^>]*> ecfe0004 auipc a3,0x4 + 3005c: R_MIPS_PCHI16 bar +00030060 <[^>]*> 00902021 addu a0,a0,s0 +00030064 <[^>]*> 00b12821 addu a1,a1,s1 +00030068 <[^>]*> 00d23021 addu a2,a2,s2 +0003006c <[^>]*> 00f33821 addu a3,a3,s3 +00030070 <[^>]*> d81f0000 jrc ra + \.\.\. diff --git a/gas/testsuite/gas/mips/pcrel-hilo-match.d b/gas/testsuite/gas/mips/pcrel-hilo-match.d new file mode 100644 index 0000000..5ff66c2 --- /dev/null +++ b/gas/testsuite/gas/mips/pcrel-hilo-match.d @@ -0,0 +1,28 @@ +#objdump: -r +#as: -mabi=32 -mno-pdr +#name: MIPS pcrel-hilo-match + +.*: +file format .*mips.* + +RELOCATION RECORDS FOR \[\.text\]: +OFFSET +TYPE +VALUE +00000010 R_MIPS_PCHI16 var4 +00000018 R_MIPS_PCLO16 var4 +00000008 R_MIPS_PCHI16 __var1 +00000020 R_MIPS_PCLO16 __var1 +0000001c R_MIPS_PCHI16 .sbss +0000002c R_MIPS_PCLO16 .sbss +00000028 R_MIPS_PCHI16 __var3 +00000034 R_MIPS_PCLO16 __var3 +00000030 R_MIPS_PCHI16 func4 +00000038 R_MIPS_PCLO16 func4 +00000024 R_MIPS_PCHI16 hilo_match +0000003c R_MIPS_PCLO16 hilo_match +00000040 R_MIPS_PCHI16 .bss +00000048 R_MIPS_PCLO16 .bss +00000044 R_MIPS_PCHI16 .bss +0000004c R_MIPS_PCLO16 .bss +00000050 R_MIPS_PCHI16 hilo_match +00000058 R_MIPS_PCLO16 hilo_match +00000054 R_MIPS_PCHI16 func3 +0000005c R_MIPS_PCLO16 func3 diff --git a/gas/testsuite/gas/mips/pcrel-hilo-match.s b/gas/testsuite/gas/mips/pcrel-hilo-match.s new file mode 100644 index 0000000..dfc8a80 --- /dev/null +++ b/gas/testsuite/gas/mips/pcrel-hilo-match.s @@ -0,0 +1,81 @@ + .module mips64r6 + + .align 2 + .globl _pinit + .ent _pinit +_pinit: + lw $3,8($23) + li $5,1 +10: auipc $2,%pcrel_hi(__var1) + ori $3,$3,0x1 +11: auipc $4,%pcrel_hi(var4) + sw $3,8($23) +12: addiu $4,$4,%pcrel_lo(var4 + (12b - 11b)) +13: auipc $3,%pcrel_hi(var5) +14: sw $5,%pcrel_lo(__var1 + (14b - 10b))($2) +15: auipc $19,%pcrel_hi(hilo_match) +16: auipc $2,%pcrel_hi(__var3) +17: sw $5,%pcrel_lo(var5 + (17b - 13b))($3) +18: auipc $25,%pcrel_hi(func4) +19: sw $5,%pcrel_lo(__var3 + (19b - 16b))($2) +20: jialc $25,%pcrel_lo(func4 + (20b - 18b)) +21: lw $17,%pcrel_lo(hilo_match + (21b - 15b))($19) +22: auipc $2,%pcrel_hi(var6) +23: auipc $3,%pcrel_hi(var6+704) +24: addiu $16,$2,%pcrel_lo(var6 + (24b - 22b)) +25: addiu $18,$3,%pcrel_lo(var6+704 + (25b - 23b)) +26: auipc $19,%pcrel_hi(hilo_match) +28: auipc $25,%pcrel_hi(func3) +27: sw $2,%pcrel_lo(hilo_match + (27b - 26b))($19) +29: jialc $25,%pcrel_lo(func3 + (29b - 28b)) + .end _pinit + .size _pinit, .-_pinit + + .align 2 + .weak __var3 + .section .sbss,"aw",@nobits + .align 2 + .type __var3, @object + .size __var3, 4 +__var3: + .space 4 + .weak __var1 + .align 2 + .type __var1, @object + .size __var1, 4 +__var1: + .space 4 + .data + .align 2 + .weak __hilo_match + .align 2 + .type __hilo_match, @object + .size __hilo_match, 4 +__hilo_match: + .space 4 + .data + .align 2 + .align 2 + .type var2, @object + .size var2, 32 +var2: + .word 0 + .word -1 + .word 0 + .byte 0 + .byte 0 + .byte 0 + .byte 0 + .word 0 + .word 0 + .half 0 + .space 6 + .align 2 + .rdata + .align 2 + .space 8 + .local var5 + .comm var5,4,4 + .align 2 + .local var6 + .comm var6,704,4 diff --git a/gas/testsuite/gas/mips/pcrel-hilo-n32.d b/gas/testsuite/gas/mips/pcrel-hilo-n32.d new file mode 100644 index 0000000..aed204a --- /dev/null +++ b/gas/testsuite/gas/mips/pcrel-hilo-n32.d @@ -0,0 +1,31 @@ +#readelf: -r +#name: MIPSr6 PCHI16/PCLO16 relocations (n32) +#as: -mabi=n32 -march=mips64r6 -mno-pdr +#source: pcrel-hilo.s + +Relocation section '\.rela\.text' at offset .+ contains 24 entries: + Offset Info Type Sym\.Value Sym\. Name \+ Addend +00000000 00000840 R_MIPS_PCHI16 00000000 bar \+ 7fec +00000004 00000905 R_MIPS_HI16 00000000 baz \+ 0 +00000008 00000840 R_MIPS_PCHI16 00000000 bar \+ 7ff8 +0000000c 00000840 R_MIPS_PCHI16 00000000 bar \+ fff0 +00000010 00000841 R_MIPS_PCLO16 00000000 bar \+ 7ffc +00000014 00000906 R_MIPS_LO16 00000000 baz \+ 0 +00000018 00000841 R_MIPS_PCLO16 00000000 bar \+ 8008 +0000001c 00000841 R_MIPS_PCLO16 00000000 bar \+ 10000 +00000020 00000840 R_MIPS_PCHI16 00000000 bar \+ 800c +00000024 00000905 R_MIPS_HI16 00000000 baz \+ 0 +00000028 00000840 R_MIPS_PCHI16 00000000 bar \+ 8018 +0000002c 00000840 R_MIPS_PCHI16 00000000 bar \+ 10010 +00030030 00000841 R_MIPS_PCLO16 00000000 bar \+ 3801c +00030034 00000906 R_MIPS_LO16 00000000 baz \+ 0 +00030038 00000841 R_MIPS_PCLO16 00000000 bar \+ 38028 +0003003c 00000841 R_MIPS_PCLO16 00000000 bar \+ 40020 +00030040 00000841 R_MIPS_PCLO16 00000000 bar \+ 3802c +00030044 00000906 R_MIPS_LO16 00000000 baz \+ 0 +00030048 00000841 R_MIPS_PCLO16 00000000 bar \+ 38038 +0003004c 00000841 R_MIPS_PCLO16 00000000 bar \+ 40030 +00030050 00000840 R_MIPS_PCHI16 00000000 bar \+ 3803c +00030054 00000905 R_MIPS_HI16 00000000 baz \+ 0 +00030058 00000840 R_MIPS_PCHI16 00000000 bar \+ 38048 +0003005c 00000840 R_MIPS_PCHI16 00000000 bar \+ 40040 diff --git a/gas/testsuite/gas/mips/pcrel-hilo.d b/gas/testsuite/gas/mips/pcrel-hilo.d new file mode 100644 index 0000000..a96e4f2 --- /dev/null +++ b/gas/testsuite/gas/mips/pcrel-hilo.d @@ -0,0 +1,30 @@ +#readelf: -r +#name: MIPSr6 PCHI16/PCLO16 relocations (o32) +#as: -mabi=32 -mno-pdr + +Relocation section '\.rel\.text' at offset .+ contains 24 entries: + Offset Info Type Sym\.Value Sym\. Name +00030050 00000840 R_MIPS_PCHI16 00000000 bar +00000000 00000840 R_MIPS_PCHI16 00000000 bar +00000010 00000841 R_MIPS_PCLO16 00000000 bar +00000004 00000905 R_MIPS_HI16 00000000 baz +00000014 00000906 R_MIPS_LO16 00000000 baz +00030058 00000840 R_MIPS_PCHI16 00000000 bar +00000028 00000840 R_MIPS_PCHI16 00000000 bar +00000008 00000840 R_MIPS_PCHI16 00000000 bar +00000018 00000841 R_MIPS_PCLO16 00000000 bar +0003005c 00000840 R_MIPS_PCHI16 00000000 bar +0000002c 00000840 R_MIPS_PCHI16 00000000 bar +0000000c 00000840 R_MIPS_PCHI16 00000000 bar +0000001c 00000841 R_MIPS_PCLO16 00000000 bar +00000020 00000840 R_MIPS_PCHI16 00000000 bar +00030030 00000841 R_MIPS_PCLO16 00000000 bar +00000024 00000905 R_MIPS_HI16 00000000 baz +00030034 00000906 R_MIPS_LO16 00000000 baz +00030038 00000841 R_MIPS_PCLO16 00000000 bar +0003003c 00000841 R_MIPS_PCLO16 00000000 bar +00030040 00000841 R_MIPS_PCLO16 00000000 bar +00030054 00000905 R_MIPS_HI16 00000000 baz +00030044 00000906 R_MIPS_LO16 00000000 baz +00030048 00000841 R_MIPS_PCLO16 00000000 bar +0003004c 00000841 R_MIPS_PCLO16 00000000 bar diff --git a/gas/testsuite/gas/mips/pcrel-hilo.s b/gas/testsuite/gas/mips/pcrel-hilo.s new file mode 100644 index 0000000..4a8278f --- /dev/null +++ b/gas/testsuite/gas/mips/pcrel-hilo.s @@ -0,0 +1,48 @@ + .module mips64r6 + + .text + .align 16 + .globl foo + .ent foo +foo: +0: auipc $4, %pcrel_hi(bar + 0x7fec) +1: lui $5, %hi(baz) +2: auipc $6, %pcrel_hi(bar + 0x7ff8) +3: auipc $7, %pcrel_hi(bar + 0xfff0) +4: addiu $4, %pcrel_lo(bar + 0x7fec + (4b - 0b)) +5: addiu $5, %lo(baz) +6: addiu $6, %pcrel_lo(bar + 0x7ff8 + (6b - 2b)) +7: addiu $7, %pcrel_lo(bar + 0xfff0 + (7b - 3b)) +10: auipc $4, %pcrel_hi(bar + 0x800c) +11: lui $5, %hi(baz) +12: auipc $6, %pcrel_hi(bar + 0x8018) +13: auipc $7, %pcrel_hi(bar + 0x10010) + .rept 49152 + nop + .endr +14: addiu $4, %pcrel_lo(bar + 0x800c + (14b - 10b)) +15: addiu $5, %lo(baz) +16: addiu $6, %pcrel_lo(bar + 0x8018 + (16b - 12b)) +17: addiu $7, %pcrel_lo(bar + 0x10010 + (17b - 13b)) +24: addiu $16, $0, %pcrel_lo(bar + 0x3803c + (24b - 20f)) +25: addiu $17, $0, %lo(baz) +26: addiu $18, $0, %pcrel_lo(bar + 0x38048 + (26b - 22f)) +27: addiu $19, $0, %pcrel_lo(bar + 0x40040 + (27b - 23f)) +20: auipc $4, %pcrel_hi(bar + 0x3803c) +21: lui $5, %hi(baz) +22: auipc $6, %pcrel_hi(bar + 0x38048) +23: auipc $7, %pcrel_hi(bar + 0x40040) + addu $4, $4, $16 + addu $5, $5, $17 + addu $6, $6, $18 + addu $7, $7, $19 + jrc $31 + .end foo + + .data + .align 16 + .globl bar + .type bar, @object +bar: + .space 0x18000 + .size bar, . - bar diff --git a/gas/testsuite/gas/mips/pr19977.d b/gas/testsuite/gas/mips/pr19977.d new file mode 100644 index 0000000..5b8d60c --- /dev/null +++ b/gas/testsuite/gas/mips/pr19977.d @@ -0,0 +1,30 @@ +#name: pr19977 +#as: -32 +#objdump: -dr + +.* + +Disassembly of section \.text: + +0+ <foo>: + 0: .* li v1,4387 + 0: R_(|MICRO)MIPS(|16)_TLS_TPREL_HI16 \$loc0 + 4: .* sll .* + 8: .* addiu v1(|,v1),-26232 + 8: R_(|MICRO)MIPS(|16)_TLS_TPREL_LO16 \$loc0 + c: .* li v1,4387 + c: R_(|MICRO)MIPS(|16)_TLS_DTPREL_HI16 \$loc0 + 10: .* sll .* + 14: .* addiu v1(|,v1),-26232 + 14: R_(|MICRO)MIPS(|16)_TLS_DTPREL_LO16 \$loc0 + 18: .* li v1,4386 + 18: R_(|MICRO)MIPS(|16)_TLS_TPREL_HI16 \.tdata + 1c: .* sll .* + 20: .* addiu v1(|,v1),6536 + 20: R_(|MICRO)MIPS(|16)_TLS_TPREL_LO16 \.tdata + 24: .* li v1,4386 + 24: R_(|MICRO)MIPS(|16)_TLS_DTPREL_HI16 \.tdata + 28: .* sll .* + 2c: .* addiu v1(|,v1),6536 + 2c: R_(|MICRO)MIPS(|16)_TLS_DTPREL_LO16 \.tdata +#pass diff --git a/gas/testsuite/gas/mips/pr19977.s b/gas/testsuite/gas/mips/pr19977.s new file mode 100644 index 0000000..1d1ab36 --- /dev/null +++ b/gas/testsuite/gas/mips/pr19977.s @@ -0,0 +1,21 @@ + .text +foo: + li $3,%tprel_hi($loc0+0x11229988) + sll $3,16 + addiu $3,%tprel_lo($loc0+0x11229988) + + li $3,%dtprel_hi($loc0+0x11229988) + sll $3,16 + addiu $3,%dtprel_lo($loc0+0x11229988) + + li $3,%tprel_hi(.tdata+0x11221988) + sll $3,16 + addiu $3,%tprel_lo(.tdata+0x11221988) + + li $3,%dtprel_hi(.tdata+0x11221988) + sll $3,16 + addiu $3,%dtprel_lo(.tdata+0x11221988) + + .section .tdata,"awT",%progbits +$loc0: + .word 0 diff --git a/gdb/MAINTAINERS b/gdb/MAINTAINERS index 79b2233..9284c46 100644 --- a/gdb/MAINTAINERS +++ b/gdb/MAINTAINERS @@ -608,6 +608,7 @@ Raoul Gough RaoulGough@yahoo.co.uk Anthony Green green@redhat.com Matthew Green mrg@eterna.com.au Matthew Gretton-Dann matthew.gretton-dann@arm.com +Aaron Griffith aargri@gmail.com Maxim Grigoriev maxim2405@gmail.com Jerome Guitton guitton@act-europe.fr Alexandra Hájková ahajkova@redhat.com diff --git a/gdbsupport/common-defs.h b/gdbsupport/common-defs.h index 07caf3b..cfdefe1 100644 --- a/gdbsupport/common-defs.h +++ b/gdbsupport/common-defs.h @@ -27,6 +27,14 @@ #pragma GCC optimize("-fno-hoist-adjacent-loads") #endif +#if defined (__GNUC__) && !defined (__clang__) \ + && ((__GNUC__ >= 12 && __GNUC__ <= 15) \ + || (__GNUC__ == 16 && __GNUC_MINOR__ < 1)) +/* Work around PR gcc/120987 starting gcc 12, and assume it will be fixed in + the gcc 16.1 release. */ +#pragma GCC optimize("-fno-ipa-modref") +#endif + #include <gdbsupport/config.h> #undef PACKAGE_NAME diff --git a/gold/ChangeLog b/gold/ChangeLog index 246434d..f1b9400 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,7 @@ +2025-07-13 Nick Clifton <nickc@redhat.com> + + * 2.45 Branch point. + 2025-01-19 Nick Clifton <nickc@redhat.com> * 2.44 Branch point. diff --git a/gold/po/gold.pot b/gold/po/gold.pot index e979a2c..0c74fff 100644 --- a/gold/po/gold.pot +++ b/gold/po/gold.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n" -"POT-Creation-Date: 2025-01-19 12:24+0000\n" +"POT-Creation-Date: 2025-07-13 08:52+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/gprof/ChangeLog b/gprof/ChangeLog index 7eb4e8a..64e736c 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,3 +1,7 @@ +2025-07-13 Nick Clifton <nickc@redhat.com> + + * 2.45 Branch point. + 2025-01-19 Nick Clifton <nickc@redhat.com> * 2.44 Branch point. diff --git a/gprof/configure b/gprof/configure index fcc4293..22d4cc5 100755 --- a/gprof/configure +++ b/gprof/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for gprof 2.44.50. +# Generated by GNU Autoconf 2.69 for gprof 2.45.50. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -587,8 +587,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='gprof' PACKAGE_TARNAME='gprof' -PACKAGE_VERSION='2.44.50' -PACKAGE_STRING='gprof 2.44.50' +PACKAGE_VERSION='2.45.50' +PACKAGE_STRING='gprof 2.45.50' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1351,7 +1351,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures gprof 2.44.50 to adapt to many kinds of systems. +\`configure' configures gprof 2.45.50 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1422,7 +1422,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of gprof 2.44.50:";; + short | recursive ) echo "Configuration of gprof 2.45.50:";; esac cat <<\_ACEOF @@ -1541,7 +1541,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -gprof configure 2.44.50 +gprof configure 2.45.50 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1906,7 +1906,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by gprof $as_me 2.44.50, which was +It was created by gprof $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2886,7 +2886,7 @@ fi # Define the identity of the package. PACKAGE='gprof' - VERSION='2.44.50' + VERSION='2.45.50' cat >>confdefs.h <<_ACEOF @@ -14255,7 +14255,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by gprof $as_me 2.44.50, which was +This file was extended by gprof $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -14321,7 +14321,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -gprof config.status 2.44.50 +gprof config.status 2.45.50 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/gprof/po/gprof.pot b/gprof/po/gprof.pot index e498cef..04b866a 100644 --- a/gprof/po/gprof.pot +++ b/gprof/po/gprof.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n" -"POT-Creation-Date: 2025-01-19 12:26+0000\n" +"POT-Creation-Date: 2025-07-13 08:54+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -16,46 +16,46 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: alpha.c:102 mips.c:54 +#: alpha.c:103 mips.c:55 msgid "<indirect child>" msgstr "" -#: alpha.c:107 mips.c:59 +#: alpha.c:108 mips.c:60 #, c-format msgid "[find_call] %s: 0x%lx to 0x%lx\n" msgstr "" -#: alpha.c:131 +#: alpha.c:132 #, c-format msgid "[find_call] 0x%lx: jsr%s <indirect_child>\n" msgstr "" -#: alpha.c:141 +#: alpha.c:142 #, c-format msgid "[find_call] 0x%lx: bsr" msgstr "" -#: basic_blocks.c:128 call_graph.c:89 hist.c:106 +#: basic_blocks.c:129 call_graph.c:90 hist.c:106 #, c-format msgid "%s: %s: unexpected end of file\n" msgstr "" -#: basic_blocks.c:196 +#: basic_blocks.c:199 #, c-format msgid "%s: warning: ignoring basic-block exec counts (use -l or --line)\n" msgstr "" #. FIXME: This only works if bfd_vma is unsigned long. -#: basic_blocks.c:289 basic_blocks.c:299 +#: basic_blocks.c:294 basic_blocks.c:304 #, c-format msgid "%s:%d: (%s:0x%lx) %lu executions\n" msgstr "" -#: basic_blocks.c:290 basic_blocks.c:300 +#: basic_blocks.c:295 basic_blocks.c:305 msgid "<unknown>" msgstr "" -#: basic_blocks.c:539 +#: basic_blocks.c:545 #, c-format msgid "" "\n" @@ -66,7 +66,7 @@ msgid "" "\n" msgstr "" -#: basic_blocks.c:563 +#: basic_blocks.c:569 #, c-format msgid "" "\n" @@ -74,34 +74,34 @@ msgid "" "\n" msgstr "" -#: basic_blocks.c:564 +#: basic_blocks.c:570 #, c-format msgid "%9ld Executable lines in this file\n" msgstr "" -#: basic_blocks.c:566 +#: basic_blocks.c:572 #, c-format msgid "%9ld Lines executed\n" msgstr "" -#: basic_blocks.c:567 +#: basic_blocks.c:573 #, c-format msgid "%9.2f Percent of the file executed\n" msgstr "" -#: basic_blocks.c:571 +#: basic_blocks.c:577 #, c-format msgid "" "\n" "%9lu Total number of line executions\n" msgstr "" -#: basic_blocks.c:573 +#: basic_blocks.c:579 #, c-format msgid "%9.2f Average executions per line\n" msgstr "" -#: call_graph.c:68 +#: call_graph.c:69 #, c-format msgid "[cg_tally] arc from %s to %s traversed %lu times\n" msgstr "" @@ -120,7 +120,7 @@ msgid "" "\n" msgstr "" -#: cg_print.c:79 hist.c:470 +#: cg_print.c:79 hist.c:472 #, c-format msgid "" "\n" @@ -170,7 +170,7 @@ msgstr "" msgid "descendants" msgstr "" -#: cg_print.c:102 hist.c:496 +#: cg_print.c:102 hist.c:498 msgid "name" msgstr "" @@ -198,154 +198,149 @@ msgstr "" msgid "%6.6s %5.5s %7.7s %7.7s %7.7s %7.7s <spontaneous>\n" msgstr "" -#: cg_print.c:593 +#: cg_print.c:595 #, c-format msgid "" "Index by function name\n" "\n" msgstr "" -#: cg_print.c:650 cg_print.c:659 +#: cg_print.c:652 cg_print.c:661 #, c-format msgid "<cycle %d>" msgstr "" -#: corefile.c:61 +#: corefile.c:63 #, c-format msgid "%s: unable to parse mapping file %s.\n" msgstr "" -#: corefile.c:89 corefile.c:524 +#: corefile.c:91 corefile.c:532 #, c-format msgid "%s: could not open %s.\n" msgstr "" -#: corefile.c:193 +#: corefile.c:195 #, c-format msgid "%s: %s: not in executable format\n" msgstr "" -#: corefile.c:204 +#: corefile.c:206 #, c-format msgid "%s: can't find .text section in %s\n" msgstr "" -#: corefile.c:278 +#: corefile.c:287 #, c-format msgid "%s: ran out room for %lu bytes of text space\n" msgstr "" -#: corefile.c:292 +#: corefile.c:301 #, c-format msgid "%s: can't do -c\n" msgstr "" -#: corefile.c:331 +#: corefile.c:340 #, c-format msgid "%s: -c not supported on architecture %s\n" msgstr "" -#: corefile.c:533 corefile.c:640 +#: corefile.c:543 corefile.c:647 #, c-format msgid "%s: file `%s' has no symbols\n" msgstr "" -#: corefile.c:538 +#: corefile.c:548 #, c-format msgid "%s: file `%s' has too many symbols\n" msgstr "" -#: corefile.c:907 -#, c-format -msgid "%s: somebody miscounted: ltab.len=%d instead of %ld\n" -msgstr "" - -#: gmon_io.c:81 +#: gmon_io.c:85 #, c-format msgid "%s: address size has unexpected value of %u\n" msgstr "" -#: gmon_io.c:298 gmon_io.c:394 +#: gmon_io.c:302 gmon_io.c:402 #, c-format msgid "%s: file too short to be a gmon file\n" msgstr "" -#: gmon_io.c:308 gmon_io.c:437 +#: gmon_io.c:312 gmon_io.c:445 #, c-format msgid "%s: file `%s' has bad magic cookie\n" msgstr "" -#: gmon_io.c:319 +#: gmon_io.c:323 #, c-format msgid "%s: file `%s' has unsupported version %d\n" msgstr "" -#: gmon_io.c:349 +#: gmon_io.c:357 #, c-format msgid "%s: %s: found bad tag %d (file corrupted?)\n" msgstr "" -#: gmon_io.c:416 +#: gmon_io.c:424 #, c-format msgid "%s: profiling rate incompatible with first gmon file\n" msgstr "" -#: gmon_io.c:467 +#: gmon_io.c:475 #, c-format msgid "%s: incompatible with first gmon file\n" msgstr "" -#: gmon_io.c:497 +#: gmon_io.c:505 #, c-format msgid "%s: file '%s' does not appear to be in gmon.out format\n" msgstr "" -#: gmon_io.c:510 +#: gmon_io.c:518 #, c-format msgid "%s: unexpected EOF after reading %d/%d bins\n" msgstr "" -#: gmon_io.c:542 +#: gmon_io.c:550 #, c-format msgid "time is in ticks, not seconds\n" msgstr "" -#: gmon_io.c:548 gmon_io.c:728 +#: gmon_io.c:556 gmon_io.c:739 #, c-format msgid "%s: don't know how to deal with file format %d\n" msgstr "" -#: gmon_io.c:558 +#: gmon_io.c:566 #, c-format msgid "File `%s' (version %d) contains:\n" msgstr "" -#: gmon_io.c:561 +#: gmon_io.c:569 #, c-format msgid "\t%d histogram record\n" msgstr "" -#: gmon_io.c:562 +#: gmon_io.c:570 #, c-format msgid "\t%d histogram records\n" msgstr "" -#: gmon_io.c:564 +#: gmon_io.c:572 #, c-format msgid "\t%d call-graph record\n" msgstr "" -#: gmon_io.c:565 +#: gmon_io.c:573 #, c-format msgid "\t%d call-graph records\n" msgstr "" -#: gmon_io.c:567 +#: gmon_io.c:575 #, c-format msgid "\t%d basic-block count record\n" msgstr "" -#: gmon_io.c:568 +#: gmon_io.c:576 #, c-format msgid "\t%d basic-block count records\n" msgstr "" @@ -413,17 +408,17 @@ msgid "" "%s: Only one of --function-ordering and --file-ordering may be specified.\n" msgstr "" -#: gprof.c:544 +#: gprof.c:533 #, c-format msgid "%s: sorry, file format `prof' is not yet supported\n" msgstr "" -#: gprof.c:598 +#: gprof.c:587 #, c-format msgid "%s: gmon.out file is missing histogram\n" msgstr "" -#: gprof.c:605 +#: gprof.c:594 #, c-format msgid "%s: gmon.out file is missing call-graph data\n" msgstr "" @@ -446,7 +441,7 @@ msgstr "" #: hist.c:158 #, c-format -msgid "%s: different scales in histogram records" +msgid "%s: different scales in histogram records: %f != %f\n" msgstr "" #: hist.c:195 @@ -459,53 +454,53 @@ msgstr "" msgid "%s: %s: unexpected EOF after reading %u of %u samples\n" msgstr "" -#: hist.c:466 +#: hist.c:468 #, c-format msgid "%c%c/call" msgstr "" -#: hist.c:474 +#: hist.c:476 #, c-format msgid "" " for %.2f%% of %.2f %s\n" "\n" msgstr "" -#: hist.c:480 +#: hist.c:482 #, c-format msgid "" "\n" "Each sample counts as %g %s.\n" msgstr "" -#: hist.c:485 +#: hist.c:487 #, c-format msgid "" " no time accumulated\n" "\n" msgstr "" -#: hist.c:492 +#: hist.c:494 msgid "cumulative" msgstr "" -#: hist.c:492 +#: hist.c:494 msgid "self " msgstr "" -#: hist.c:492 +#: hist.c:494 msgid "total " msgstr "" -#: hist.c:495 +#: hist.c:497 msgid "time" msgstr "" -#: hist.c:495 +#: hist.c:497 msgid "calls" msgstr "" -#: hist.c:584 +#: hist.c:587 #, c-format msgid "" "\n" @@ -514,22 +509,22 @@ msgid "" "flat profile:\n" msgstr "" -#: hist.c:590 +#: hist.c:593 #, c-format msgid "Flat profile:\n" msgstr "" -#: hist.c:711 +#: hist.c:714 #, c-format msgid "%s: found a symbol that covers several histogram records" msgstr "" -#: mips.c:73 +#: mips.c:74 #, c-format msgid "[find_call] 0x%lx: jal" msgstr "" -#: mips.c:101 +#: mips.c:102 #, c-format msgid "[find_call] 0x%lx: jalr\n" msgstr "" diff --git a/gprofng/configure b/gprofng/configure index 2f4e18c..9ad1def 100755 --- a/gprofng/configure +++ b/gprofng/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for gprofng 2.44.50. +# Generated by GNU Autoconf 2.69 for gprofng 2.45.50. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -587,8 +587,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='gprofng' PACKAGE_TARNAME='gprofng' -PACKAGE_VERSION='2.44.50' -PACKAGE_STRING='gprofng 2.44.50' +PACKAGE_VERSION='2.45.50' +PACKAGE_STRING='gprofng 2.45.50' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1362,7 +1362,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures gprofng 2.44.50 to adapt to many kinds of systems. +\`configure' configures gprofng 2.45.50 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1433,7 +1433,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of gprofng 2.44.50:";; + short | recursive ) echo "Configuration of gprofng 2.45.50:";; esac cat <<\_ACEOF @@ -1547,7 +1547,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -gprofng configure 2.44.50 +gprofng configure 2.45.50 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2079,7 +2079,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by gprofng $as_me 2.44.50, which was +It was created by gprofng $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3052,7 +3052,7 @@ fi # Define the identity of the package. PACKAGE='gprofng' - VERSION='2.44.50' + VERSION='2.45.50' cat >>confdefs.h <<_ACEOF @@ -17802,7 +17802,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by gprofng $as_me 2.44.50, which was +This file was extended by gprofng $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -17868,7 +17868,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -gprofng config.status 2.44.50 +gprofng config.status 2.45.50 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/gprofng/doc/version.texi b/gprofng/doc/version.texi index 720791e..477472d 100644 --- a/gprofng/doc/version.texi +++ b/gprofng/doc/version.texi @@ -1,4 +1,4 @@ -@set UPDATED 6 January 2025 -@set UPDATED-MONTH January 2025 -@set EDITION 2.44.50 -@set VERSION 2.44.50 +@set UPDATED 22 April 2025 +@set UPDATED-MONTH April 2025 +@set EDITION 2.45.50 +@set VERSION 2.45.50 diff --git a/gprofng/libcollector/configure b/gprofng/libcollector/configure index 0baad7c..ecd1542 100755 --- a/gprofng/libcollector/configure +++ b/gprofng/libcollector/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for gprofng 2.44.50. +# Generated by GNU Autoconf 2.69 for gprofng 2.45.50. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -587,8 +587,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='gprofng' PACKAGE_TARNAME='gprofng' -PACKAGE_VERSION='2.44.50' -PACKAGE_STRING='gprofng 2.44.50' +PACKAGE_VERSION='2.45.50' +PACKAGE_STRING='gprofng 2.45.50' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1324,7 +1324,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures gprofng 2.44.50 to adapt to many kinds of systems. +\`configure' configures gprofng 2.45.50 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1395,7 +1395,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of gprofng 2.44.50:";; + short | recursive ) echo "Configuration of gprofng 2.45.50:";; esac cat <<\_ACEOF @@ -1504,7 +1504,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -gprofng configure 2.44.50 +gprofng configure 2.45.50 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1990,7 +1990,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by gprofng $as_me 2.44.50, which was +It was created by gprofng $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2967,7 +2967,7 @@ fi # Define the identity of the package. PACKAGE='gprofng' - VERSION='2.44.50' + VERSION='2.45.50' cat >>confdefs.h <<_ACEOF @@ -16136,7 +16136,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by gprofng $as_me 2.44.50, which was +This file was extended by gprofng $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -16202,7 +16202,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -gprofng config.status 2.44.50 +gprofng config.status 2.45.50 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/include/ChangeLog b/include/ChangeLog index a01ea92..6ef4b59 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2025-07-13 Nick Clifton <nickc@redhat.com> + + * 2.45 Branch point. + 2025-01-19 Nick Clifton <nickc@redhat.com> * 2.44 Branch point. diff --git a/include/elf/aarch64.h b/include/elf/aarch64.h index e218e07..74bd7b4 100644 --- a/include/elf/aarch64.h +++ b/include/elf/aarch64.h @@ -52,6 +52,8 @@ #define DT_AARCH64_BTI_PLT (DT_LOPROC + 1) #define DT_AARCH64_PAC_PLT (DT_LOPROC + 3) #define DT_AARCH64_VARIANT_PCS (DT_LOPROC + 5) +#define DT_AARCH64_MEMTAG_MODE (DT_LOPROC + 9) +#define DT_AARCH64_MEMTAG_STACK (DT_LOPROC + 12) /* AArch64-specific values for st_other. */ #define STO_AARCH64_VARIANT_PCS 0x80 /* Symbol may follow different call diff --git a/include/elf/common.h b/include/elf/common.h index f395278..0d9a7b7 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -568,6 +568,7 @@ #define SHT_ANDROID_RELR 0x6fffff00 +#define SHT_GNU_SFRAME 0x6ffffff4 /* SFrame stack trace information. */ #define SHT_GNU_ATTRIBUTES 0x6ffffff5 /* Object attributes */ #define SHT_GNU_HASH 0x6ffffff6 /* GNU style symbol hash table */ #define SHT_GNU_LIBLIST 0x6ffffff7 /* List of prelink dependencies */ diff --git a/include/opcode/aarch64.h b/include/opcode/aarch64.h index 826bd7d..4425dd4 100644 --- a/include/opcode/aarch64.h +++ b/include/opcode/aarch64.h @@ -304,6 +304,8 @@ enum aarch64_feature_bit { AARCH64_FEATURE_V9_4A, /* Armv9.5-A processors. */ AARCH64_FEATURE_V9_5A, + /* Armv9.6-A processors. */ + AARCH64_FEATURE_V9_6A, /* FPRCVT instructions. */ AARCH64_FEATURE_FPRCVT, /* Point of Physical Storage. */ @@ -473,6 +475,12 @@ static_assert ((AA64_REPLICATE (REP_PLUS, AA64_REPVAL, | AARCH64_FEATBIT (X, SPMU2) \ | AARCH64_FEATBIT (X, STEP2) \ ) +#define AARCH64_ARCH_V9_6A_FEATURES(X) (AARCH64_FEATBIT (X, V9_6A) \ + | AARCH64_FEATBIT (X, CMPBR) \ + | AARCH64_FEATBIT (X, FPRCVT) \ + | AARCH64_FEATBIT (X, LSUI) \ + | AARCH64_FEATBIT (X, OCCMO) \ + | AARCH64_FEATBIT (X, SVE2p2)) /* Architectures are the sum of the base and extensions. */ #define AARCH64_ARCH_V8A(X) (AARCH64_FEATBIT (X, V8) \ @@ -512,6 +520,8 @@ static_assert ((AA64_REPLICATE (REP_PLUS, AA64_REPVAL, | AARCH64_ARCH_V9_4A_FEATURES (X)) #define AARCH64_ARCH_V9_5A(X) (AARCH64_ARCH_V9_4A (X) \ | AARCH64_ARCH_V9_5A_FEATURES (X)) +#define AARCH64_ARCH_V9_6A(X) (AARCH64_ARCH_V9_5A (X) \ + | AARCH64_ARCH_V9_6A_FEATURES (X)) #define AARCH64_ARCH_NONE(X) 0 @@ -1541,7 +1551,24 @@ extern const aarch64_opcode aarch64_opcode_table[]; /* For LSFE instructions with size[30:31] field. */ #define F_LSFE_SZ (1ULL << 41) -/* Next bit is 42. */ + +/* When parsing immediate values, register names should not be misinterpreted + as symbols. However, for backwards compatibility we need to permit some + newer register names within older instructions. These flags specify which + register names are invalid immediate value, and are required for all + instructions with immediate operands (and are otherwise ignored). */ +#define F_INVALID_IMM_SYMS (3ULL << 42) + +/* Any GP or SIMD register except WSP/SP. */ +#define F_INVALID_IMM_SYMS_1 (1ULL << 42) + +/* As above, plus WSP/SP, and Z and P registers. */ +#define F_INVALID_IMM_SYMS_2 (2ULL << 42) + +/* As above, plus PN registers. */ +#define F_INVALID_IMM_SYMS_3 (3ULL << 42) + +/* Next bit is 44. */ /* Instruction constraints. */ /* This instruction has a predication constraint on the instruction at PC+4. */ diff --git a/include/sframe-api.h b/include/sframe-api.h index ac4f19a..8c26257 100644 --- a/include/sframe-api.h +++ b/include/sframe-api.h @@ -153,14 +153,6 @@ sframe_decoder_get_fixed_fp_offset (sframe_decoder_ctx *dctx); extern int8_t sframe_decoder_get_fixed_ra_offset (sframe_decoder_ctx *dctx); -/* Find the function descriptor entry which contains the specified address. - - Note: This function is deprecated and will be removed from future release - X+2 of the library. */ -extern void * -sframe_get_funcdesc_with_addr (sframe_decoder_ctx *dctx, int32_t addr, - int *errp); - /* Find the SFrame Frame Row Entry which contains the PC. Returns SFRAME_ERR if failure. */ diff --git a/ld/ChangeLog b/ld/ChangeLog index 69dad59..52bbeda 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2025-07-13 Nick Clifton <nickc@redhat.com> + + * 2.45 Branch point. + 2025-02-08 Alexandre Oliva <oliva@adacore.com> * testsuite/ld-sparc/got-def.s: New test. @@ -1,5 +1,7 @@ -*- text -*- +Changes in 2.45: + * On s390 64-bit (s390x), generate SFrame stack trace information (.sframe) for the linker generated .plt section. Enabled by default. Can be disabled using linker option --no-ld-generated-unwind-info. @@ -9,6 +11,8 @@ sfde_func_start_address field in the SFrame section. Relocatable SFrame links are now fixed. + ELF SFrame sections now have section type set to SHT_GNU_SFRAME. + * On RISC-V, add new PLT formats, and GNU property merge rules for zicfiss and zicfilp extensions. @@ -35,6 +39,12 @@ * On s390, add support for linker option --[no-]ld-generated-unwind-info. +* On LoongArch, linker relaxation time complexity is no longer quadratic with + respect to relocation counts. Linking time of large software should be + improved. + +* On LoongArch, R_LARCH_32_PCREL records are now checked for overflow. + Changes in 2.44: * Support for Nios II target has been removed, as this architecture has been diff --git a/ld/configure b/ld/configure index fe5167a..592bf9d 100755 --- a/ld/configure +++ b/ld/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for ld 2.44.50. +# Generated by GNU Autoconf 2.69 for ld 2.45.50. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -587,8 +587,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='ld' PACKAGE_TARNAME='ld' -PACKAGE_VERSION='2.44.50' -PACKAGE_STRING='ld 2.44.50' +PACKAGE_VERSION='2.45.50' +PACKAGE_STRING='ld 2.45.50' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1436,7 +1436,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures ld 2.44.50 to adapt to many kinds of systems. +\`configure' configures ld 2.45.50 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1507,7 +1507,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of ld 2.44.50:";; + short | recursive ) echo "Configuration of ld 2.45.50:";; esac cat <<\_ACEOF @@ -1690,7 +1690,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -ld configure 2.44.50 +ld configure 2.45.50 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2222,7 +2222,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by ld $as_me 2.44.50, which was +It was created by ld $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3206,7 +3206,7 @@ fi # Define the identity of the package. PACKAGE='ld' - VERSION='2.44.50' + VERSION='2.45.50' cat >>confdefs.h <<_ACEOF @@ -19648,7 +19648,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by ld $as_me 2.44.50, which was +This file was extended by ld $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -19714,7 +19714,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -ld config.status 2.44.50 +ld config.status 2.45.50 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/ld/emultempl/aarch64elf.em b/ld/emultempl/aarch64elf.em index afa91af..91d58d8 100644 --- a/ld/emultempl/aarch64elf.em +++ b/ld/emultempl/aarch64elf.em @@ -42,6 +42,11 @@ static aarch64_protection_opts sw_protections = { .gcs_report_dynamic = MARKING_UNSET, }; +static aarch64_memtag_opts memtag_opts = { + .memtag_mode = AARCH64_MEMTAG_MODE_NONE, + .memtag_stack = 0, +}; + #define COMPILE_TIME_STRLEN(s) \ (sizeof(s) - 1) @@ -335,7 +340,8 @@ aarch64_elf_create_output_section_statements (void) pic_veneer, fix_erratum_835769, fix_erratum_843419, no_apply_dynamic_relocs, - &sw_protections); + &sw_protections, + &memtag_opts); stub_file = lang_add_input_file ("linker stubs", lang_input_file_is_fake_enum, @@ -440,6 +446,31 @@ aarch64_parse_gcs_option (const char *_optarg) #undef GCS #undef GCS_LEN } + +static bool +aarch64_parse_memtag_mode_option (const char *_optarg) +{ + #define MEMTAG_MODE "memtag-mode" + #define MEMTAG_MODE_LEN COMPILE_TIME_STRLEN (MEMTAG_MODE) + + if (strncmp (_optarg, MEMTAG_MODE, MEMTAG_MODE_LEN) != 0) + return false; + + if (strcmp (_optarg + MEMTAG_MODE_LEN, "=none") == 0) + memtag_opts.memtag_mode = AARCH64_MEMTAG_MODE_NONE; + else if (strcmp (_optarg + MEMTAG_MODE_LEN, "=sync") == 0) + memtag_opts.memtag_mode = AARCH64_MEMTAG_MODE_SYNC; + else if (strcmp (_optarg + MEMTAG_MODE_LEN, "=async") == 0) + memtag_opts.memtag_mode = AARCH64_MEMTAG_MODE_ASYNC; + else + einfo (_("%X%P: error: unrecognized value '-z %s'\n"), _optarg); + + return true; + + #undef MEMTAG_MODE + #undef MEMTAG_MODE_LEN +} + EOF # Define some shell vars to insert bits of code into the standard elf @@ -518,6 +549,17 @@ PARSE_AND_LIST_OPTIONS=' and output have GCS marking.\n\ error: Emit error when the input objects are missing GCS markings\n\ and output have GCS marking.\n")); + fprintf (file, _("\ + -z memtag-mode[=none|sync|async] Select Memory Tagging Extension mode of operation to use.\n\ + Emits a DT_AARCH64_MEMTAG_MODE dynamic tag for the binary.\n\ + This entry is only valid on the main executable. It is\n\ + ignored in the dynamically loaded objects by the loader.\n\ + none (default): Disable MTE checking of memory reads and writes.\n\ + sync: Enable precise exceptions when mismatched address and\n\ + allocation tags detected on load/store operations.\n\ + async: Enable imprecise exceptions.\n")); + fprintf (file, _("\ + -z memtag-stack Mark program stack with MTE protection.\n")); ' PARSE_AND_LIST_ARGS_CASE_Z_AARCH64=' @@ -533,6 +575,10 @@ PARSE_AND_LIST_ARGS_CASE_Z_AARCH64=' {} else if (aarch64_parse_gcs_option (optarg)) {} + else if (aarch64_parse_memtag_mode_option (optarg)) + {} + else if (strcmp (optarg, "memtag-stack") == 0) + memtag_opts.memtag_stack = 1; ' PARSE_AND_LIST_ARGS_CASE_Z="$PARSE_AND_LIST_ARGS_CASE_Z $PARSE_AND_LIST_ARGS_CASE_Z_AARCH64" @@ -8374,6 +8374,21 @@ GCS markings. If issues are found, a maximum of 20 messages will be emitted, and then a summary with the total number of issues will be displayed at the end. +@kindex -z memtag-mode=@var{mode} +@cindex MTE modes of operation +The @samp{-z memtag-mode=mode} specifies the MTE mode of operation. +The value of @samp{mode} can be one of @samp{none}, @samp{sync} or +@samp{async}. The specified modes determine the value of the +@samp{DT_AARCH64_MEMTAG_MODE} dynamic tag. The @samp{sync} mode +implies precise exceptions, with the runtime providing the exact +instruction where the fault occurred, and the exact faulting address. +The @samp{async} mode implies imprecise exceptions. + +@kindex -z memtag-stack +@cindex Mark program stack for MTE protection +The @samp{-z memtag-stack} specifies that output object uses MTE +instructions for stack memory usage. + @ifclear GENERIC @lowersections @end ifclear diff --git a/ld/po/ld.pot b/ld/po/ld.pot index 63447a1..47c96be 100644 --- a/ld/po/ld.pot +++ b/ld/po/ld.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n" -"POT-Creation-Date: 2025-01-19 12:39+0000\n" +"POT-Creation-Date: 2025-07-13 08:51+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -55,16 +55,16 @@ msgstr "" msgid "%P: symbol `%pT' missing from main hash table\n" msgstr "" -#: ldcref.c:517 ldcref.c:628 ldmain.c:1357 ldmisc.c:327 pe-dll.c:780 -#: pe-dll.c:1350 pe-dll.c:1471 pe-dll.c:1573 eaarch64pe.c:1580 earm64pe.c:1580 +#: ldcref.c:517 ldcref.c:628 ldmain.c:1733 ldmisc.c:320 pe-dll.c:783 +#: pe-dll.c:1353 pe-dll.c:1474 pe-dll.c:1576 eaarch64pe.c:1580 earm64pe.c:1580 #: earm_wince_pe.c:1583 earm_wince_pe.c:1770 earmpe.c:1583 earmpe.c:1770 #: ei386pe.c:1583 ei386pe.c:1770 ei386pe_posix.c:1583 ei386pe_posix.c:1770 #: ei386pep.c:1580 emcorepe.c:1583 emcorepe.c:1770 eshpe.c:1583 eshpe.c:1770 -msgid "%F%P: %pB: could not read symbols: %E\n" +msgid "%P: %pB: could not read symbols: %E\n" msgstr "" -#: ldcref.c:690 ldcref.c:697 ldmain.c:1419 ldmain.c:1426 -msgid "%F%P: %pB: could not read relocs: %E\n" +#: ldcref.c:690 ldcref.c:697 ldmain.c:1795 ldmain.c:1802 +msgid "%P: %pB: could not read relocs: %E\n" msgstr "" #. We found a reloc for the symbol. The symbol is defined @@ -103,14 +103,14 @@ msgid "" msgstr "" #: ldelf.c:98 -msgid "%F%P: common page size (0x%v) > maximum page size (0x%v)\n" +msgid "%P: common page size (0x%v) > maximum page size (0x%v)\n" msgstr "" #: ldelf.c:124 -msgid "%F%P: %pB: --just-symbols may not be used on DSO\n" +msgid "%P: %pB: --just-symbols may not be used on DSO\n" msgstr "" -#: ldelf.c:226 +#: ldelf.c:226 ldelf.c:372 msgid "%P: %pB: bfd_stat failed: %E\n" msgstr "" @@ -124,11 +124,7 @@ msgid "attempt to open %s failed\n" msgstr "" #: ldelf.c:324 -msgid "%F%P: %pB: bfd_elf_get_bfd_needed_list failed: %E\n" -msgstr "" - -#: ldelf.c:372 -msgid "%F%P: %pB: bfd_stat failed: %E\n" +msgid "%P: %pB: bfd_elf_get_bfd_needed_list failed: %E\n" msgstr "" #: ldelf.c:378 @@ -136,8 +132,8 @@ msgstr "" msgid "found %s at %s\n" msgstr "" -#: ldelf.c:411 ldlang.c:3177 ldlang.c:3191 ldlang.c:10994 -msgid "%F%P: %pB: error adding symbols: %E\n" +#: ldelf.c:411 ldlang.c:3228 ldlang.c:3242 ldlang.c:11057 +msgid "%P: %pB: error adding symbols: %E\n" msgstr "" #. We only issue an "unrecognised" message in verbose mode @@ -159,145 +155,143 @@ msgid "" msgstr "" #: ldelf.c:1209 -msgid "%F%P: failed to add DT_NEEDED dynamic tag\n" +msgid "%P: failed to add DT_NEEDED dynamic tag\n" msgstr "" -#: ldelf.c:1261 -msgid "%F%P: %s: can't open for writing: %E\n" +#: ldelf.c:1260 +msgid "%P: %s: can't open for writing: %E\n" msgstr "" -#: ldelf.c:1317 -msgid "%F%P: cannot use executable file '%pB' as input to a link\n" +#: ldelf.c:1315 +msgid "%P: cannot use executable file '%pB' as input to a link\n" msgstr "" -#: ldelf.c:1371 +#: ldelf.c:1369 msgid "" -"%F%P: compact frame descriptions incompatible with DWARF2 .eh_frame from %" -"pB\n" +"%P: compact frame descriptions incompatible with DWARF2 .eh_frame from %pB\n" msgstr "" -#: ldelf.c:1407 +#: ldelf.c:1405 msgid "" "%P: warning: cannot create .eh_frame_hdr section, --eh-frame-hdr ignored\n" msgstr "" -#: ldelf.c:1413 -msgid "%F%P: failed to parse EH frame entries\n" +#: ldelf.c:1411 +msgid "%P: failed to parse EH frame entries\n" msgstr "" -#: ldelf.c:1455 +#: ldelf.c:1453 msgid "%P: warning: .note.gnu.build-id section discarded, --build-id ignored\n" msgstr "" -#: ldelf.c:1505 eaarch64pe.c:1354 earm64pe.c:1354 earm_wince_pe.c:1339 +#: ldelf.c:1503 eaarch64pe.c:1354 earm64pe.c:1354 earm_wince_pe.c:1339 #: earmpe.c:1339 ei386pe.c:1339 ei386pe_posix.c:1339 ei386pep.c:1354 #: emcorepe.c:1339 eshpe.c:1339 msgid "%P: warning: unrecognized --build-id style ignored\n" msgstr "" -#: ldelf.c:1524 +#: ldelf.c:1522 msgid "" "%P: warning: cannot create .note.gnu.build-id section, --build-id ignored\n" msgstr "" -#: ldelf.c:1545 +#: ldelf.c:1543 msgid "" "%P: warning: .note.package section discarded, --package-metadata ignored\n" msgstr "" -#: ldelf.c:1601 +#: ldelf.c:1599 msgid "%P: warning: --package-metadata is empty, ignoring\n" msgstr "" -#: ldelf.c:1611 +#: ldelf.c:1609 msgid "" "%P: warning: --package-metadata=%s does not contain valid JSON, ignoring: %" "s\n" msgstr "" -#: ldelf.c:1640 +#: ldelf.c:1638 msgid "" "%P: warning: cannot create .note.package section, --package-metadata " "ignored\n" msgstr "" -#: ldelf.c:1672 eaix5ppc.c:1546 eaix5rs6.c:1546 eaixppc.c:1546 eaixrs6.c:1546 -#: eppcmacos.c:1546 -msgid "%F%P: failed to record assignment to %s: %E\n" +#: ldelf.c:1670 eaix5ppc.c:1545 eaix5rs6.c:1545 eaixppc.c:1545 eaixrs6.c:1545 +#: eppcmacos.c:1545 +msgid "%P: failed to record assignment to %s: %E\n" msgstr "" -#: ldelf.c:1850 ldelf.c:1915 eaix5ppc.c:816 eaix5rs6.c:816 eaixppc.c:816 +#: ldelf.c:1845 ldelf.c:1911 eaix5ppc.c:816 eaix5rs6.c:816 eaixppc.c:816 #: eaixrs6.c:816 eelf64_ia64_vms.c:209 eppcmacos.c:816 -msgid "%F%P: failed to set dynamic section sizes: %E\n" +msgid "%P: failed to set dynamic section sizes: %E\n" msgstr "" -#: ldelf.c:1887 -msgid "%F%P: %pB: can't read contents of section .gnu.warning: %E\n" +#: ldelf.c:1883 +msgid "%P: %pB: can't read contents of section %pA: %E\n" msgstr "" #: ldelfgen.c:285 -msgid "%F%P: %pA has both ordered and unordered sections\n" +msgid "%P: %pA has both ordered and unordered sections\n" msgstr "" #: ldelfgen.c:310 eelf32loongarch.c:106 eelf64loongarch.c:106 -msgid "%F%P: map sections to segments failed: %E\n" +msgid "%P: map sections to segments failed: %E\n" msgstr "" #: ldelfgen.c:330 -msgid "%F%P: looping in map_segments\n" +msgid "%P: looping in map_segments\n" msgstr "" -#: ldelfgen.c:342 -msgid "%F%P: failed to strip zero-sized dynamic sections\n" +#: ldelfgen.c:341 +msgid "%P: failed to strip zero-sized dynamic sections\n" msgstr "" -#: ldelfgen.c:420 +#: ldelfgen.c:419 msgid "" -"%F%P: warning: CTF strtab association failed; strings will not be shared: %" -"s\n" +"%P: warning: CTF strtab association failed; strings will not be shared: %s\n" msgstr "" -#: ldelfgen.c:447 +#: ldelfgen.c:446 msgid "" -"%F%P: warning: CTF symbol addition failed; CTF will not be tied to symbols: %" +"%P: warning: CTF symbol addition failed; CTF will not be tied to symbols: %" "s\n" msgstr "" -#: ldelfgen.c:457 +#: ldelfgen.c:456 msgid "" -"%F%P: warning: CTF symbol shuffling failed; CTF will not be tied to symbols: " -"%s\n" +"%P: warning: CTF symbol shuffling failed; CTF will not be tied to symbols: %" +"s\n" msgstr "" -#: ldemul.c:323 +#: ldemul.c:331 #, c-format msgid "%pS SYSLIB ignored\n" msgstr "" -#: ldemul.c:329 +#: ldemul.c:337 #, c-format msgid "%pS HLL ignored\n" msgstr "" -#: ldemul.c:349 +#: ldemul.c:357 msgid "%P: unrecognised emulation mode: %s\n" msgstr "" -#: ldemul.c:350 +#: ldemul.c:358 msgid "Supported emulations: " msgstr "" -#: ldemul.c:392 +#: ldemul.c:400 #, c-format msgid " no emulation specific options.\n" msgstr "" #: ldexp.c:285 -msgid "%F%P: bfd_hash_allocate failed creating symbol %s\n" +msgid "%P: bfd_hash_allocate failed creating symbol %s\n" msgstr "" #: ldexp.c:316 -msgid "%F%P: bfd_hash_lookup failed creating symbol %s\n" +msgid "%P: bfd_hash_lookup failed creating symbol %s\n" msgstr "" #: ldexp.c:562 @@ -305,19 +299,19 @@ msgid "%P: warning: address of `%s' isn't multiple of maximum page size\n" msgstr "" #: ldexp.c:641 -msgid "%F%P:%pS %% by zero\n" +msgid "%P:%pS %% by zero\n" msgstr "" #: ldexp.c:650 -msgid "%F%P:%pS / by zero\n" +msgid "%P:%pS / by zero\n" msgstr "" -#: ldexp.c:764 ldlang.c:4035 ldmain.c:1324 eaarch64pe.c:1168 eaarch64pe.c:1784 +#: ldexp.c:764 ldlang.c:4112 ldmain.c:1700 eaarch64pe.c:1168 eaarch64pe.c:1784 #: earm64pe.c:1168 earm64pe.c:1784 earm_wince_pe.c:1154 earm_wince_pe.c:1881 #: earmpe.c:1154 earmpe.c:1881 ei386pe.c:1154 ei386pe.c:1881 #: ei386pe_posix.c:1154 ei386pe_posix.c:1881 ei386pep.c:1168 ei386pep.c:1784 #: emcorepe.c:1154 emcorepe.c:1881 eshpe.c:1154 eshpe.c:1881 -msgid "%F%P: bfd_link_hash_lookup failed: %E\n" +msgid "%P: bfd_link_hash_lookup failed: %E\n" msgstr "" #: ldexp.c:777 @@ -325,47 +319,47 @@ msgid "%X%P:%pS: unresolvable symbol `%s' referenced in expression\n" msgstr "" #: ldexp.c:792 -msgid "%F%P:%pS: undefined symbol `%s' referenced in expression\n" +msgid "%P:%pS: undefined symbol `%s' referenced in expression\n" msgstr "" #: ldexp.c:830 ldexp.c:848 ldexp.c:876 -msgid "%F%P:%pS: undefined section `%s' referenced in expression\n" +msgid "%P:%pS: undefined section `%s' referenced in expression\n" msgstr "" #: ldexp.c:915 ldexp.c:929 -msgid "%F%P:%pS: undefined MEMORY region `%s' referenced in expression\n" +msgid "%P:%pS: undefined MEMORY region `%s' referenced in expression\n" msgstr "" #: ldexp.c:941 -msgid "%F%P:%pS: unknown constant `%s' referenced in expression\n" +msgid "%P:%pS: unknown constant `%s' referenced in expression\n" msgstr "" #: ldexp.c:1089 -msgid "%F%P:%pS can not PROVIDE assignment to location counter\n" +msgid "%P:%pS can not PROVIDE assignment to location counter\n" msgstr "" #: ldexp.c:1122 -msgid "%F%P:%pS invalid assignment to location counter\n" +msgid "%P:%pS invalid assignment to location counter\n" msgstr "" #: ldexp.c:1126 -msgid "%F%P:%pS assignment to location counter invalid outside of SECTIONS\n" +msgid "%P:%pS assignment to location counter invalid outside of SECTIONS\n" msgstr "" #: ldexp.c:1145 -msgid "%F%P:%pS cannot move location counter backwards (from %V to %V)\n" +msgid "%P:%pS cannot move location counter backwards (from %V to %V)\n" msgstr "" #: ldexp.c:1205 -msgid "%F%P:%s: hash creation failed\n" +msgid "%P:%s: hash creation failed\n" msgstr "" #: ldexp.c:1581 ldexp.c:1624 ldexp.c:1684 -msgid "%F%P:%pS: nonconstant expression for %s\n" +msgid "%P:%pS: nonconstant expression for %s\n" msgstr "" -#: ldexp.c:1711 ldlang.c:1355 ldlang.c:3510 ldlang.c:8236 -msgid "%F%P: can not create hash table: %E\n" +#: ldexp.c:1711 ldlang.c:1399 ldlang.c:3561 ldlang.c:8309 +msgid "%P: can not create hash table: %E\n" msgstr "" #: ldfile.c:239 @@ -410,885 +404,888 @@ msgid "attempt to open %s succeeded\n" msgstr "" #: ldfile.c:364 -msgid "%F%P: invalid BFD target `%s'\n" +msgid "%P: invalid BFD target `%s'\n" msgstr "" -#: ldfile.c:494 ldfile.c:524 +#: ldfile.c:481 ldfile.c:511 msgid "%P: skipping incompatible %s when searching for %s\n" msgstr "" -#: ldfile.c:507 -msgid "%F%P: attempted static link of dynamic object `%s'\n" +#: ldfile.c:494 +msgid "%P: attempted static link of dynamic object `%s'\n" msgstr "" -#: ldfile.c:636 +#: ldfile.c:623 msgid "%P: cannot find %s (%s): %E\n" msgstr "" #. We ignore the return status of the script #. and always print the error message. -#: ldfile.c:639 ldfile.c:723 ldfile.c:727 +#: ldfile.c:626 ldfile.c:710 ldfile.c:714 msgid "%P: cannot find %s: %E\n" msgstr "" -#: ldfile.c:691 +#: ldfile.c:678 msgid "%P: cannot find %s inside %s\n" msgstr "" -#: ldfile.c:706 ldmain.c:1504 +#: ldfile.c:693 ldmain.c:1880 msgid "%P: About to run error handling script '%s' with arguments: '%s' '%s'\n" msgstr "" -#: ldfile.c:710 ldmain.c:1508 +#: ldfile.c:697 ldmain.c:1884 msgid "error handling script" msgstr "" -#: ldfile.c:716 ldmain.c:1514 +#: ldfile.c:703 ldmain.c:1890 msgid "%P: Failed to run error handling script '%s', reason: " msgstr "" -#: ldfile.c:732 +#: ldfile.c:719 msgid "%P: have you installed the static version of the %s library ?\n" msgstr "" -#: ldfile.c:743 +#: ldfile.c:730 msgid "%P: note to link with %s use -l:%s or rename it to lib%s\n" msgstr "" -#: ldfile.c:775 +#: ldfile.c:762 #, c-format msgid "cannot find script file %s\n" msgstr "" -#: ldfile.c:777 +#: ldfile.c:764 #, c-format msgid "opened script file %s\n" msgstr "" -#: ldfile.c:913 -msgid "%F%P: error: linker script file '%s' appears multiple times\n" +#: ldfile.c:900 +msgid "%P: error: linker script file '%s' appears multiple times\n" msgstr "" -#: ldfile.c:932 -msgid "%F%P: cannot open linker script file %s: %E\n" +#: ldfile.c:919 +msgid "%P: cannot open linker script file %s: %E\n" msgstr "" -#: ldfile.c:1026 -msgid "%F%P: cannot represent machine `%s'\n" +#: ldfile.c:1013 +msgid "%P: cannot represent machine `%s'\n" msgstr "" -#: ldlang.c:1446 +#: ldlang.c:1490 msgid "%P:%pS: warning: redeclaration of memory region `%s'\n" msgstr "" -#: ldlang.c:1452 +#: ldlang.c:1496 msgid "%P:%pS: warning: memory region `%s' not declared\n" msgstr "" -#: ldlang.c:1488 -msgid "%F%P:%pS: error: alias for default memory region\n" +#: ldlang.c:1532 +msgid "%P:%pS: error: alias for default memory region\n" msgstr "" -#: ldlang.c:1499 -msgid "%F%P:%pS: error: redefinition of memory region alias `%s'\n" +#: ldlang.c:1543 +msgid "%P:%pS: error: redefinition of memory region alias `%s'\n" msgstr "" -#: ldlang.c:1506 -msgid "%F%P:%pS: error: memory region `%s' for alias `%s' does not exist\n" +#: ldlang.c:1550 +msgid "%P:%pS: error: memory region `%s' for alias `%s' does not exist\n" msgstr "" -#: ldlang.c:1567 ldlang.c:1610 -msgid "%F%P: failed creating section `%s': %E\n" +#: ldlang.c:1611 ldlang.c:1654 +msgid "%P: failed creating section `%s': %E\n" msgstr "" -#: ldlang.c:2328 +#: ldlang.c:2372 msgid "" "\n" "As-needed library included to satisfy reference by file (symbol)\n" "\n" msgstr "" -#: ldlang.c:2393 +#: ldlang.c:2437 msgid "" "\n" "Discarded input sections\n" "\n" msgstr "" -#: ldlang.c:2401 +#: ldlang.c:2445 msgid "" "\n" "There are no discarded input sections\n" msgstr "" -#: ldlang.c:2403 +#: ldlang.c:2447 msgid "" "\n" "Memory Configuration\n" "\n" msgstr "" -#: ldlang.c:2405 +#: ldlang.c:2449 msgid "Name" msgstr "" -#: ldlang.c:2405 +#: ldlang.c:2449 msgid "Origin" msgstr "" -#: ldlang.c:2405 +#: ldlang.c:2449 msgid "Length" msgstr "" -#: ldlang.c:2405 +#: ldlang.c:2449 msgid "Attributes" msgstr "" -#: ldlang.c:2429 +#: ldlang.c:2473 msgid "" "\n" "Linker script and memory map\n" "\n" msgstr "" -#: ldlang.c:2482 -msgid "%F%P: illegal use of `%s' section\n" +#: ldlang.c:2533 +msgid "%P: illegal use of `%s' section\n" msgstr "" -#: ldlang.c:2491 -msgid "%F%P: output format %s cannot represent section called %s: %E\n" +#: ldlang.c:2542 +msgid "%P: output format %s cannot represent section called %s: %E\n" msgstr "" -#: ldlang.c:2672 +#: ldlang.c:2723 msgid "" "%P:%pS: warning: --enable-non-contiguous-regions makes section `%pA' from `%" "pB' match /DISCARD/ clause.\n" msgstr "" -#: ldlang.c:2696 +#: ldlang.c:2747 msgid "" "%P:%pS: warning: --enable-non-contiguous-regions may change behaviour for " "section `%pA' from `%pB' (assigned to %pA, but additional match: %pA)\n" msgstr "" -#: ldlang.c:3074 +#: ldlang.c:3125 msgid "%P: %pB: file not recognized: %E; matching formats:" msgstr "" -#: ldlang.c:3083 -msgid "%F%P: %pB: file not recognized: %E\n" +#: ldlang.c:3134 +msgid "%P: %pB: file not recognized: %E\n" msgstr "" -#: ldlang.c:3156 -msgid "%F%P: %pB: member %pB in archive is not an object\n" +#: ldlang.c:3207 +msgid "%P: %pB: member %pB in archive is not an object\n" msgstr "" -#: ldlang.c:3432 -msgid "%F%P: input file '%s' is the same as output file\n" +#: ldlang.c:3483 +msgid "%P: input file '%s' is the same as output file\n" msgstr "" -#: ldlang.c:3480 +#: ldlang.c:3531 msgid "" "%P: warning: could not find any targets that match endianness requirement\n" msgstr "" -#: ldlang.c:3494 -msgid "%F%P: target %s not found\n" +#: ldlang.c:3545 +msgid "%P: target %s not found\n" msgstr "" -#: ldlang.c:3496 -msgid "%F%P: cannot open output file %s: %E\n" +#: ldlang.c:3547 +msgid "%P: cannot open output file %s: %E\n" msgstr "" -#: ldlang.c:3502 -msgid "%F%P: %s: can not make object file: %E\n" +#: ldlang.c:3553 +msgid "%P: %s: can not make object file: %E\n" msgstr "" -#: ldlang.c:3506 -msgid "%F%P: %s: can not set architecture: %E\n" +#: ldlang.c:3557 +msgid "%P: %s: can not set architecture: %E\n" msgstr "" -#: ldlang.c:3693 +#: ldlang.c:3744 msgid "%P: warning: %s contains output sections; did you forget -T?\n" msgstr "" -#: ldlang.c:3740 +#: ldlang.c:3791 #, c-format msgid "%s: %s\n" msgstr "" -#: ldlang.c:3740 +#: ldlang.c:3791 msgid "CTF warning" msgstr "" -#: ldlang.c:3740 +#: ldlang.c:3791 msgid "CTF error" msgstr "" -#: ldlang.c:3746 +#: ldlang.c:3797 #, c-format msgid "CTF error: cannot get CTF errors: `%s'\n" msgstr "" -#: ldlang.c:3780 +#: ldlang.c:3833 msgid "" "%P: warning: CTF section in %pB not loaded; its types will be discarded: %s\n" msgstr "" -#: ldlang.c:3809 +#: ldlang.c:3866 msgid "%P: warning: CTF output not created: `%s'\n" msgstr "" -#: ldlang.c:3852 +#: ldlang.c:3915 msgid "%P: warning: CTF section in %pB cannot be linked: `%s'\n" msgstr "" -#: ldlang.c:3872 +#: ldlang.c:3935 msgid "%P: warning: CTF linking failed; output will have no CTF section: %s\n" msgstr "" -#: ldlang.c:3943 +#: ldlang.c:4018 msgid "" "%P: warning: CTF section emission failed; output will have no CTF section: %" "s\n" msgstr "" -#: ldlang.c:3982 +#: ldlang.c:4059 msgid "" "%P: warning: CTF section in %pB not linkable: %P was built without support " "for CTF\n" msgstr "" -#: ldlang.c:4120 +#: ldlang.c:4195 msgid "%X%P: required symbol `%s' not defined\n" msgstr "" -#: ldlang.c:4321 ldlang.c:4330 -msgid "%F%P: invalid type for output section `%s'\n" +#: ldlang.c:4396 ldlang.c:4405 +msgid "%P: invalid type for output section `%s'\n" msgstr "" -#: ldlang.c:4466 +#: ldlang.c:4541 msgid "" "warning: INSERT statement in linker script is incompatible with --enable-non-" "contiguous-regions.\n" msgstr "" -#: ldlang.c:4479 -msgid "%F%P: %s not found for insert\n" +#: ldlang.c:4554 +msgid "%P: %s not found for insert\n" msgstr "" -#: ldlang.c:4751 +#: ldlang.c:4826 msgid " load address 0x%V" msgstr "" -#: ldlang.c:5013 +#: ldlang.c:5086 msgid "%W (size before relaxing)\n" msgstr "" -#: ldlang.c:5142 +#: ldlang.c:5215 #, c-format msgid "Address of section %s set to " msgstr "" -#: ldlang.c:5344 +#: ldlang.c:5417 #, c-format msgid "Fail with %d\n" msgstr "" -#: ldlang.c:5561 +#: ldlang.c:5634 msgid "" -"%F%P: Output section `%pA' not large enough for the linker-created stubs " +"%P: Output section `%pA' not large enough for the linker-created stubs " "section `%pA'.\n" msgstr "" -#: ldlang.c:5566 +#: ldlang.c:5639 msgid "" -"%F%P: Relaxation not supported with --enable-non-contiguous-regions (section " -"`%pA' would overflow `%pA' after it changed size).\n" +"%P: Relaxation not supported with --enable-non-contiguous-regions (section `%" +"pA' would overflow `%pA' after it changed size).\n" msgstr "" -#: ldlang.c:5675 +#: ldlang.c:5748 msgid "%X%P: section %s VMA wraps around address space\n" msgstr "" -#: ldlang.c:5681 +#: ldlang.c:5754 msgid "%X%P: section %s LMA wraps around address space\n" msgstr "" -#: ldlang.c:5733 +#: ldlang.c:5806 msgid "%X%P: section %s LMA [%V,%V] overlaps section %s LMA [%V,%V]\n" msgstr "" -#: ldlang.c:5777 +#: ldlang.c:5850 msgid "%X%P: section %s VMA [%V,%V] overlaps section %s VMA [%V,%V]\n" msgstr "" -#: ldlang.c:5800 +#: ldlang.c:5873 msgid "%X%P: region `%s' overflowed by %lu byte\n" msgid_plural "%X%P: region `%s' overflowed by %lu bytes\n" msgstr[0] "" msgstr[1] "" -#: ldlang.c:5825 +#: ldlang.c:5898 msgid "%X%P: address 0x%v of %pB section `%s' is not within region `%s'\n" msgstr "" -#: ldlang.c:5836 +#: ldlang.c:5909 msgid "%X%P: %pB section `%s' will not fit in region `%s'\n" msgstr "" -#: ldlang.c:5922 +#: ldlang.c:5995 msgid "" -"%F%P:%pS: non constant or forward reference address expression for section %" -"s\n" +"%P:%pS: non constant or forward reference address expression for section %s\n" msgstr "" -#: ldlang.c:5947 +#: ldlang.c:6020 msgid "%X%P: internal error on COFF shared library section %s\n" msgstr "" -#: ldlang.c:6005 -msgid "%F%P: error: no memory region specified for loadable section `%s'\n" +#: ldlang.c:6078 +msgid "%P: error: no memory region specified for loadable section `%s'\n" msgstr "" -#: ldlang.c:6009 +#: ldlang.c:6082 msgid "%P: warning: no memory region specified for loadable section `%s'\n" msgstr "" -#: ldlang.c:6043 +#: ldlang.c:6116 msgid "%P: warning: start of section %s changed by %ld\n" msgstr "" -#: ldlang.c:6136 +#: ldlang.c:6209 msgid "%P: warning: dot moved backwards before `%s'\n" msgstr "" -#: ldlang.c:6312 -msgid "%F%P: can't relax section: %E\n" +#: ldlang.c:6385 +msgid "%P: can't relax section: %E\n" msgstr "" -#: ldlang.c:6721 -msgid "%F%P: invalid data statement\n" +#: ldlang.c:6794 +msgid "%P: invalid data statement\n" msgstr "" -#: ldlang.c:6754 -msgid "%F%P: invalid reloc statement\n" +#: ldlang.c:6827 +msgid "%P: invalid reloc statement\n" msgstr "" -#: ldlang.c:7172 +#: ldlang.c:7244 msgid "" -"%F%P: --gc-sections requires a defined symbol root specified by -e or -u\n" +"%P: --gc-sections requires a defined symbol root specified by -e or -u\n" msgstr "" -#: ldlang.c:7197 -msgid "%F%P: %s: can't set start address\n" +#: ldlang.c:7271 +msgid "%P: %s: can't set start address\n" msgstr "" -#: ldlang.c:7210 ldlang.c:7229 -msgid "%F%P: can't set start address\n" +#: ldlang.c:7284 ldlang.c:7303 +msgid "%P: can't set start address\n" msgstr "" -#: ldlang.c:7223 +#: ldlang.c:7297 msgid "%P: warning: cannot find entry symbol %s; defaulting to %V\n" msgstr "" -#: ldlang.c:7234 ldlang.c:7242 +#: ldlang.c:7308 ldlang.c:7316 msgid "%P: warning: cannot find entry symbol %s; not setting start address\n" msgstr "" -#: ldlang.c:7298 +#: ldlang.c:7372 msgid "" -"%F%P: relocatable linking with relocations from format %s (%pB) to format %s " -"(%pB) is not supported\n" +"%P: relocatable linking with relocations from format %s (%pB) to format %s (%" +"pB) is not supported\n" msgstr "" -#: ldlang.c:7308 +#: ldlang.c:7381 msgid "" "%X%P: %s architecture of input file `%pB' is incompatible with %s output\n" msgstr "" -#: ldlang.c:7332 +#: ldlang.c:7405 msgid "%X%P: failed to merge target specific data of file %pB\n" msgstr "" -#: ldlang.c:7403 -msgid "%F%P: could not define common symbol `%pT': %E\n" +#: ldlang.c:7476 +msgid "%P: could not define common symbol `%pT': %E\n" msgstr "" -#: ldlang.c:7415 +#: ldlang.c:7488 msgid "" "\n" "Allocating common symbols\n" msgstr "" -#: ldlang.c:7416 +#: ldlang.c:7489 msgid "" "Common symbol size file\n" "\n" msgstr "" -#: ldlang.c:7473 +#: ldlang.c:7546 msgid "%X%P: error: unplaced orphan section `%pA' from `%pB'\n" msgstr "" -#: ldlang.c:7491 +#: ldlang.c:7564 msgid "" "%P: warning: orphan section `%pA' from `%pB' being placed in section `%s'\n" msgstr "" -#: ldlang.c:7581 -msgid "%F%P: invalid character %c (%d) in flags\n" +#: ldlang.c:7654 +msgid "%P: invalid character %c (%d) in flags\n" msgstr "" #. && in_section_ordering -#: ldlang.c:7675 -msgid "%F%P:%pS: error: output section '%s' must already exist\n" +#: ldlang.c:7748 +msgid "%P:%pS: error: output section '%s' must already exist\n" msgstr "" -#: ldlang.c:7699 -msgid "%F%P:%pS: error: align with input and explicit align specified\n" +#: ldlang.c:7772 +msgid "%P:%pS: error: align with input and explicit align specified\n" msgstr "" -#: ldlang.c:8170 +#: ldlang.c:8243 msgid "" "%P: warning: --enable-non-contiguous-regions discards section `%pA' from `%" "pB'\n" msgstr "" -#: ldlang.c:8274 -msgid "%F%P: %s: plugin reported error after all symbols read\n" +#: ldlang.c:8347 +msgid "%P: %s: plugin reported error after all symbols read\n" msgstr "" -#: ldlang.c:8399 +#: ldlang.c:8472 msgid "" "Object-only input files:\n" " " msgstr "" -#: ldlang.c:8511 -msgid "%F%P: bfd_merge_sections failed: %E\n" +#: ldlang.c:8586 +msgid "%P: bfd_merge_sections failed: %E\n" msgstr "" -#: ldlang.c:8888 -msgid "%F%P: multiple STARTUP files\n" +#: ldlang.c:8965 +msgid "%P: multiple STARTUP files\n" msgstr "" -#: ldlang.c:8934 +#: ldlang.c:9010 msgid "%X%P:%pS: section has both a load address and a load region\n" msgstr "" -#: ldlang.c:9043 +#: ldlang.c:9119 msgid "" "%X%P:%pS: PHDRS and FILEHDR are not supported when prior PT_LOAD headers " "lack them\n" msgstr "" -#: ldlang.c:9116 -msgid "%F%P: no sections assigned to phdrs\n" +#: ldlang.c:9192 +msgid "%P: no sections assigned to phdrs\n" msgstr "" -#: ldlang.c:9154 -msgid "%F%P: bfd_record_phdr failed: %E\n" +#: ldlang.c:9230 +msgid "%P: bfd_record_phdr failed: %E\n" msgstr "" -#: ldlang.c:9174 +#: ldlang.c:9250 msgid "%X%P: section `%s' assigned to non-existent phdr `%s'\n" msgstr "" -#: ldlang.c:9590 +#: ldlang.c:9663 msgid "%X%P: unknown language `%s' in version information\n" msgstr "" -#: ldlang.c:9735 +#: ldlang.c:9801 msgid "" "%X%P: anonymous version tag cannot be combined with other version tags\n" msgstr "" -#: ldlang.c:9744 +#: ldlang.c:9809 msgid "%X%P: duplicate version tag `%s'\n" msgstr "" -#: ldlang.c:9765 ldlang.c:9774 ldlang.c:9792 ldlang.c:9802 +#: ldlang.c:9830 ldlang.c:9839 ldlang.c:9857 ldlang.c:9867 msgid "%X%P: duplicate expression `%s' in version information\n" msgstr "" -#: ldlang.c:9842 +#: ldlang.c:9907 msgid "%X%P: unable to find version dependency `%s'\n" msgstr "" -#: ldlang.c:9865 +#: ldlang.c:9930 msgid "%X%P: unable to read .exports section contents\n" msgstr "" -#: ldlang.c:9911 +#: ldlang.c:9974 msgid "%P: invalid origin for memory region %s\n" msgstr "" -#: ldlang.c:9923 +#: ldlang.c:9986 msgid "%P: invalid length for memory region %s\n" msgstr "" -#: ldlang.c:10035 +#: ldlang.c:10099 msgid "%X%P: unknown feature `%s'\n" msgstr "" -#: ldlang.c:10401 +#: ldlang.c:10465 msgid "failed to create output section" msgstr "" -#: ldlang.c:10435 +#: ldlang.c:10499 msgid "failed to copy private data" msgstr "" -#: ldlang.c:10444 -msgid "%P%F: setup_section: %s: %s\n" +#: ldlang.c:10508 +msgid "%P: setup_section: %s: %s\n" msgstr "" -#: ldlang.c:10507 +#: ldlang.c:10571 msgid "relocation count is negative" msgstr "" -#: ldlang.c:10539 -msgid "%P%F: copy_section: %s: %s\n" +#: ldlang.c:10603 +msgid "%P: copy_section: %s: %s\n" msgstr "" -#: ldlang.c:10694 +#: ldlang.c:10758 msgid "error setting up sections" msgstr "" -#: ldlang.c:10702 +#: ldlang.c:10766 msgid "error copying private header data" msgstr "" -#: ldlang.c:10715 +#: ldlang.c:10779 msgid "can't create object-only section" msgstr "" -#: ldlang.c:10721 +#: ldlang.c:10785 msgid "can't set object-only section size" msgstr "" -#: ldlang.c:10752 +#: ldlang.c:10816 msgid "error copying sections" msgstr "" -#: ldlang.c:10759 +#: ldlang.c:10823 msgid "error adding object-only section" msgstr "" -#: ldlang.c:10769 +#: ldlang.c:10833 msgid "error copying private BFD data" msgstr "" -#: ldlang.c:10776 -msgid "%P%F: failed to finish output with object-only section\n" +#: ldlang.c:10840 +msgid "%P: failed to finish output with object-only section\n" msgstr "" -#: ldlang.c:10786 -msgid "%P%F: failed to rename output with object-only section\n" +#: ldlang.c:10850 +msgid "%P: failed to rename output with object-only section\n" msgstr "" -#: ldlang.c:10802 -msgid "%P%F: failed to add object-only section: %s\n" +#: ldlang.c:10866 +msgid "%P: failed to add object-only section: %s\n" msgstr "" -#: ldlang.c:10835 -msgid "%P%F: Failed to create hash table\n" +#: ldlang.c:10899 +msgid "%P: Failed to create hash table\n" msgstr "" -#: ldlang.c:10899 -msgid "%P%F:%s: final close failed on object-only output: %E\n" +#: ldlang.c:10963 +msgid "%P:%s: final close failed on object-only output: %E\n" msgstr "" -#: ldlang.c:10909 -msgid "%P%F:%s: cannot open object-only output: %E\n" +#: ldlang.c:10973 +msgid "%P:%s: cannot open object-only output: %E\n" msgstr "" -#: ldlang.c:10917 -msgid "%P%F:%s: cannot stat object-only output: %E\n" +#: ldlang.c:10981 +msgid "%P:%s: cannot stat object-only output: %E\n" msgstr "" -#: ldlang.c:10932 -msgid "%P%F:%s: read failed on object-only output: %E\n" +#: ldlang.c:10996 +msgid "%P:%s: read failed on object-only output: %E\n" msgstr "" -#: ldlang.c:10959 -msgid "%P%F: cannot extract object-only section from %B: %E\n" +#: ldlang.c:11023 +msgid "%P: cannot extract object-only section from %B: %E\n" msgstr "" -#: ldmain.c:198 -msgid "%F%P: cannot open dependency file %s: %E\n" +#: ldmain.c:204 +msgid "%P: cannot open dependency file %s: %E\n" msgstr "" -#: ldmain.c:291 -msgid "%F%P: fatal error: libbfd ABI mismatch\n" +#: ldmain.c:553 +msgid "WARNING: Data is unreliable!\n" msgstr "" -#: ldmain.c:330 +#: ldmain.c:611 +msgid "%P: fatal error: libbfd ABI mismatch\n" +msgstr "" + +#: ldmain.c:650 msgid "%X%P: can't set BFD default target to `%s': %E\n" msgstr "" -#: ldmain.c:435 +#: ldmain.c:761 msgid "built in linker script" msgstr "" -#: ldmain.c:445 +#: ldmain.c:771 #, c-format msgid "using external linker script: %s" msgstr "" -#: ldmain.c:447 +#: ldmain.c:773 msgid "using internal linker script:" msgstr "" -#: ldmain.c:497 -msgid "%F%P: --no-define-common may not be used without -shared\n" +#: ldmain.c:823 +msgid "%P: --no-define-common may not be used without -shared\n" msgstr "" -#: ldmain.c:504 -msgid "%F%P: no input files\n" +#: ldmain.c:830 +msgid "%P: no input files\n" msgstr "" -#: ldmain.c:508 +#: ldmain.c:834 msgid "%P: mode %s\n" msgstr "" -#: ldmain.c:526 ends32belf.c:473 ends32belf16m.c:473 ends32belf_linux.c:606 +#: ldmain.c:852 ends32belf.c:473 ends32belf16m.c:473 ends32belf_linux.c:606 #: ends32elf.c:473 ends32elf16m.c:473 ends32elf_linux.c:606 -msgid "%F%P: cannot open map file %s: %E\n" +msgid "%P: cannot open map file %s: %E\n" msgstr "" -#: ldmain.c:590 +#: ldmain.c:944 msgid "%P: link errors found, deleting executable `%s'\n" msgstr "" -#: ldmain.c:601 -msgid "%F%P: %s: final close failed: %E\n" +#: ldmain.c:955 +msgid "%P: %s: final close failed: %E\n" msgstr "" -#: ldmain.c:630 -msgid "%F%P: unable to open for source of copy `%s'\n" +#: ldmain.c:984 +msgid "%P: unable to open for source of copy `%s'\n" msgstr "" -#: ldmain.c:633 -msgid "%F%P: unable to open for destination of copy `%s'\n" +#: ldmain.c:987 +msgid "%P: unable to open for destination of copy `%s'\n" msgstr "" -#: ldmain.c:640 +#: ldmain.c:994 msgid "%P: error writing file `%s'\n" msgstr "" -#: ldmain.c:645 pe-dll.c:2009 +#: ldmain.c:999 pe-dll.c:2013 #, c-format msgid "%P: error closing file `%s'\n" msgstr "" -#: ldmain.c:660 +#: ldmain.c:1030 #, c-format msgid "%s: total time in link: %ld.%06ld\n" msgstr "" -#: ldmain.c:747 -msgid "%F%P: missing argument to -m\n" +#: ldmain.c:1120 +msgid "%P: missing argument to -m\n" msgstr "" -#: ldmain.c:801 ldmain.c:818 ldmain.c:838 ldmain.c:870 pe-dll.c:1431 -msgid "%F%P: bfd_hash_table_init failed: %E\n" +#: ldmain.c:1174 ldmain.c:1191 ldmain.c:1211 ldmain.c:1243 pe-dll.c:1434 +msgid "%P: bfd_hash_table_init failed: %E\n" msgstr "" -#: ldmain.c:805 ldmain.c:822 ldmain.c:842 -msgid "%F%P: bfd_hash_lookup failed: %E\n" +#: ldmain.c:1178 ldmain.c:1195 ldmain.c:1215 +msgid "%P: bfd_hash_lookup failed: %E\n" msgstr "" -#: ldmain.c:856 +#: ldmain.c:1229 msgid "%X%P: error: duplicate retain-symbols-file\n" msgstr "" -#: ldmain.c:900 -msgid "%F%P: bfd_hash_lookup for insertion failed: %E\n" +#: ldmain.c:1273 +msgid "%P: bfd_hash_lookup for insertion failed: %E\n" msgstr "" -#: ldmain.c:905 +#: ldmain.c:1278 msgid "%P: `-retain-symbols-file' overrides `-s' and `-S'\n" msgstr "" -#: ldmain.c:1026 +#: ldmain.c:1402 msgid "" "Archive member included to satisfy reference by file (symbol)\n" "\n" msgstr "" -#: ldmain.c:1132 +#: ldmain.c:1508 msgid "%P: %C: warning: multiple definition of `%pT'" msgstr "" -#: ldmain.c:1135 +#: ldmain.c:1511 msgid "%X%P: %C: multiple definition of `%pT'" msgstr "" -#: ldmain.c:1138 +#: ldmain.c:1514 msgid "; %D: first defined here" msgstr "" -#: ldmain.c:1143 +#: ldmain.c:1519 msgid "%P: disabling relaxation; it will not work with multiple definitions\n" msgstr "" -#: ldmain.c:1196 +#: ldmain.c:1572 msgid "%P: %pB: warning: definition of `%pT' overriding common from %pB\n" msgstr "" -#: ldmain.c:1200 +#: ldmain.c:1576 msgid "%P: %pB: warning: definition of `%pT' overriding common\n" msgstr "" -#: ldmain.c:1209 +#: ldmain.c:1585 msgid "%P: %pB: warning: common of `%pT' overridden by definition from %pB\n" msgstr "" -#: ldmain.c:1213 +#: ldmain.c:1589 msgid "%P: %pB: warning: common of `%pT' overridden by definition\n" msgstr "" -#: ldmain.c:1222 +#: ldmain.c:1598 msgid "" "%P: %pB: warning: common of `%pT' overridden by larger common from %pB\n" msgstr "" -#: ldmain.c:1226 +#: ldmain.c:1602 msgid "%P: %pB: warning: common of `%pT' overridden by larger common\n" msgstr "" -#: ldmain.c:1233 +#: ldmain.c:1609 msgid "%P: %pB: warning: common of `%pT' overriding smaller common from %pB\n" msgstr "" -#: ldmain.c:1237 +#: ldmain.c:1613 msgid "%P: %pB: warning: common of `%pT' overriding smaller common\n" msgstr "" -#: ldmain.c:1244 +#: ldmain.c:1620 msgid "%P: %pB and %pB: warning: multiple common of `%pT'\n" msgstr "" -#: ldmain.c:1247 +#: ldmain.c:1623 msgid "%P: %pB: warning: multiple common of `%pT'\n" msgstr "" -#: ldmain.c:1266 ldmain.c:1302 +#: ldmain.c:1642 ldmain.c:1678 msgid "%P: warning: global constructor %s used\n" msgstr "" -#: ldmain.c:1312 -msgid "%F%P: BFD backend error: BFD_RELOC_CTOR unsupported\n" +#: ldmain.c:1688 +msgid "%P: BFD backend error: BFD_RELOC_CTOR unsupported\n" msgstr "" #. We found a reloc for the symbol we are looking for. -#: ldmain.c:1384 ldmain.c:1386 ldmain.c:1388 ldmain.c:1396 ldmain.c:1439 +#: ldmain.c:1760 ldmain.c:1762 ldmain.c:1764 ldmain.c:1772 ldmain.c:1815 msgid "warning: " msgstr "" -#: ldmain.c:1529 +#: ldmain.c:1905 msgid "%X%P: %H: undefined reference to `%pT'\n" msgstr "" -#: ldmain.c:1532 +#: ldmain.c:1908 msgid "%P: %H: warning: undefined reference to `%pT'\n" msgstr "" -#: ldmain.c:1538 +#: ldmain.c:1914 msgid "%X%P: %D: more undefined references to `%pT' follow\n" msgstr "" -#: ldmain.c:1541 +#: ldmain.c:1917 msgid "%P: %D: warning: more undefined references to `%pT' follow\n" msgstr "" -#: ldmain.c:1552 +#: ldmain.c:1928 msgid "%X%P: %pB: undefined reference to `%pT'\n" msgstr "" -#: ldmain.c:1555 +#: ldmain.c:1931 msgid "%P: %pB: warning: undefined reference to `%pT'\n" msgstr "" -#: ldmain.c:1561 +#: ldmain.c:1937 msgid "%X%P: %pB: more undefined references to `%pT' follow\n" msgstr "" -#: ldmain.c:1564 +#: ldmain.c:1940 msgid "%P: %pB: warning: more undefined references to `%pT' follow\n" msgstr "" -#: ldmain.c:1601 +#: ldmain.c:1977 msgid " additional relocation overflows omitted from the output\n" msgstr "" -#: ldmain.c:1614 +#: ldmain.c:1990 #, c-format msgid " relocation truncated to fit: %s against undefined symbol `%pT'" msgstr "" -#: ldmain.c:1620 +#: ldmain.c:1996 #, c-format msgid "" " relocation truncated to fit: %s against symbol `%pT' defined in %pA section " "in %pB" msgstr "" -#: ldmain.c:1633 +#: ldmain.c:2009 #, c-format msgid " relocation truncated to fit: %s against `%pT'" msgstr "" -#: ldmain.c:1649 +#: ldmain.c:2025 msgid "%X%H: dangerous relocation: %s\n" msgstr "" -#: ldmain.c:1663 +#: ldmain.c:2039 msgid "%X%H: reloc refers to symbol `%pT' which is not being output\n" msgstr "" -#: ldmain.c:1697 +#: ldmain.c:2073 msgid "%P: %pB: reference to %s\n" msgstr "" -#: ldmain.c:1699 +#: ldmain.c:2075 msgid "%P: %pB: definition of %s\n" msgstr "" -#: ldmisc.c:366 +#: ldmisc.c:359 #, c-format msgid "%pB: in function `%pT':\n" msgstr "" -#: ldmisc.c:506 +#: ldmisc.c:499 #, c-format msgid "no symbol" msgstr "" -#: ldmisc.c:688 +#: ldmisc.c:693 msgid "%P: error: unsupported option: %s\n" msgstr "" -#: ldmisc.c:690 +#: ldmisc.c:695 msgid "%P: warning: %s ignored\n" msgstr "" -#: ldmisc.c:701 -msgid "%F%P: internal error %s %d\n" +#: ldmisc.c:706 +msgid "%P: internal error %s %d\n" msgstr "" -#: ldmisc.c:765 +#: ldmisc.c:770 msgid "%P: internal error: aborting at %s:%d in %s\n" msgstr "" -#: ldmisc.c:768 +#: ldmisc.c:773 msgid "%P: internal error: aborting at %s:%d\n" msgstr "" -#: ldmisc.c:770 -msgid "%F%P: please report this bug\n" +#: ldmisc.c:775 +msgid "%P: please report this bug\n" msgstr "" #. Output for noisy == 2 is intended to follow the GNU standards. @@ -1318,28 +1315,28 @@ msgstr "" #: ldwrite.c:60 ldwrite.c:67 ldwrite.c:173 ldwrite.c:181 ldwrite.c:227 #: ldwrite.c:268 -msgid "%F%P: bfd_new_link_order failed: %E\n" +msgid "%P: bfd_new_link_order failed: %E\n" msgstr "" #: ldwrite.c:337 -msgid "%F%P: cannot create split section name for %s\n" +msgid "%P: cannot create split section name for %s\n" msgstr "" -#: ldwrite.c:349 -msgid "%F%P: clone section failed: %E\n" +#: ldwrite.c:348 +msgid "%P: clone section failed: %E\n" msgstr "" -#: ldwrite.c:387 +#: ldwrite.c:385 #, c-format msgid "%8x something else\n" msgstr "" -#: ldwrite.c:553 -msgid "%F%P: final link failed: %E\n" +#: ldwrite.c:551 +msgid "%P: final link failed: %E\n" msgstr "" -#: ldwrite.c:555 -msgid "%F%P: final link failed\n" +#: ldwrite.c:553 +msgid "%P: final link failed\n" msgstr "" #: lexsup.c:105 lexsup.c:303 @@ -1368,7 +1365,7 @@ msgstr "" #: lexsup.c:113 lexsup.c:119 lexsup.c:180 lexsup.c:184 lexsup.c:223 #: lexsup.c:227 lexsup.c:242 lexsup.c:244 lexsup.c:465 lexsup.c:491 -#: lexsup.c:539 lexsup.c:552 lexsup.c:556 +#: lexsup.c:541 lexsup.c:554 lexsup.c:558 msgid "FILE" msgstr "" @@ -1388,8 +1385,8 @@ msgstr "" msgid "Force group members out of groups" msgstr "" -#: lexsup.c:124 lexsup.c:514 lexsup.c:516 lexsup.c:518 lexsup.c:520 -#: lexsup.c:522 lexsup.c:524 lexsup.c:526 +#: lexsup.c:124 lexsup.c:516 lexsup.c:518 lexsup.c:520 lexsup.c:522 +#: lexsup.c:524 lexsup.c:526 lexsup.c:528 msgid "ADDRESS" msgstr "" @@ -1616,7 +1613,7 @@ msgid "Read default linker script" msgstr "" #: lexsup.c:248 lexsup.c:251 lexsup.c:269 lexsup.c:361 lexsup.c:385 -#: lexsup.c:507 lexsup.c:542 lexsup.c:554 lexsup.c:613 lexsup.c:616 +#: lexsup.c:509 lexsup.c:544 lexsup.c:556 lexsup.c:615 lexsup.c:618 msgid "SYMBOL" msgstr "" @@ -2003,58 +2000,62 @@ msgid "Split output sections every COUNT relocs" msgstr "" #: lexsup.c:503 -msgid "Print memory usage statistics" +msgid "Print resource usage statistics" msgstr "" #: lexsup.c:505 -msgid "Display target specific options" +msgid "Do not print resource usage statistics" msgstr "" #: lexsup.c:507 -msgid "Do task level linking" +msgid "Display target specific options" msgstr "" #: lexsup.c:509 -msgid "Use same format as native linker" +msgid "Do task level linking" msgstr "" #: lexsup.c:511 +msgid "Use same format as native linker" +msgstr "" + +#: lexsup.c:513 msgid "SECTION=ADDRESS" msgstr "" -#: lexsup.c:511 +#: lexsup.c:513 msgid "Set address of named section" msgstr "" -#: lexsup.c:514 +#: lexsup.c:516 msgid "Set image base address" msgstr "" -#: lexsup.c:516 +#: lexsup.c:518 msgid "Set address of .bss section" msgstr "" -#: lexsup.c:518 +#: lexsup.c:520 msgid "Set address of .data section" msgstr "" -#: lexsup.c:520 +#: lexsup.c:522 msgid "Set address of .text section" msgstr "" -#: lexsup.c:522 +#: lexsup.c:524 msgid "Set address of text segment" msgstr "" -#: lexsup.c:524 +#: lexsup.c:526 msgid "Set address of rodata segment" msgstr "" -#: lexsup.c:526 +#: lexsup.c:528 msgid "Set address of ldata segment" msgstr "" -#: lexsup.c:529 +#: lexsup.c:531 msgid "" "How to handle unresolved symbols. <method> is:\n" " ignore-all, report-all, ignore-in-object-" @@ -2062,207 +2063,208 @@ msgid "" " ignore-in-shared-libs" msgstr "" -#: lexsup.c:534 +#: lexsup.c:536 msgid "[=NUMBER]" msgstr "" -#: lexsup.c:535 +#: lexsup.c:537 msgid "Output lots of information during link" msgstr "" -#: lexsup.c:539 +#: lexsup.c:541 msgid "Read version information script" msgstr "" -#: lexsup.c:542 +#: lexsup.c:544 msgid "" "Take export symbols list from .exports, using\n" " SYMBOL as the version." msgstr "" -#: lexsup.c:546 +#: lexsup.c:548 msgid "Add data symbols to dynamic list" msgstr "" -#: lexsup.c:548 +#: lexsup.c:550 msgid "Use C++ operator new/delete dynamic list" msgstr "" -#: lexsup.c:550 +#: lexsup.c:552 msgid "Use C++ typeinfo dynamic list" msgstr "" -#: lexsup.c:552 +#: lexsup.c:554 msgid "Read dynamic list" msgstr "" -#: lexsup.c:554 +#: lexsup.c:556 msgid "Export the specified symbol" msgstr "" -#: lexsup.c:556 +#: lexsup.c:558 msgid "Read export dynamic symbol list" msgstr "" -#: lexsup.c:558 +#: lexsup.c:560 msgid "Warn about duplicate common symbols" msgstr "" -#: lexsup.c:560 +#: lexsup.c:562 msgid "Warn if global constructors/destructors are seen" msgstr "" -#: lexsup.c:584 +#: lexsup.c:586 msgid "Warn if the multiple GP values are used" msgstr "" -#: lexsup.c:586 +#: lexsup.c:588 msgid "Warn only once per undefined symbol" msgstr "" -#: lexsup.c:588 +#: lexsup.c:590 msgid "Warn if start of section changes due to alignment" msgstr "" -#: lexsup.c:593 +#: lexsup.c:595 msgid "Warn if output has DT_TEXTREL (default)" msgstr "" -#: lexsup.c:595 +#: lexsup.c:597 msgid "Warn if output has DT_TEXTREL" msgstr "" -#: lexsup.c:601 +#: lexsup.c:603 msgid "Warn if an object has alternate ELF machine code" msgstr "" -#: lexsup.c:605 +#: lexsup.c:607 msgid "Report unresolved symbols as warnings" msgstr "" -#: lexsup.c:608 +#: lexsup.c:610 msgid "Report unresolved symbols as errors" msgstr "" -#: lexsup.c:610 +#: lexsup.c:612 msgid "Include all objects from following archives" msgstr "" -#: lexsup.c:613 +#: lexsup.c:615 msgid "Use wrapper functions for SYMBOL" msgstr "" -#: lexsup.c:617 +#: lexsup.c:619 msgid "Unresolved SYMBOL will not cause an error or warning" msgstr "" -#: lexsup.c:619 +#: lexsup.c:621 msgid "Push state of flags governing input file handling" msgstr "" -#: lexsup.c:622 +#: lexsup.c:624 msgid "Pop state of flags governing input file handling" msgstr "" -#: lexsup.c:625 +#: lexsup.c:627 msgid "Report target memory usage" msgstr "" -#: lexsup.c:627 +#: lexsup.c:629 msgid "=MODE" msgstr "" -#: lexsup.c:627 +#: lexsup.c:629 msgid "Control how orphan sections are handled." msgstr "" -#: lexsup.c:630 +#: lexsup.c:632 msgid "Show discarded sections in map file output (default)" msgstr "" -#: lexsup.c:633 +#: lexsup.c:635 msgid "Do not show discarded sections in map file output" msgstr "" -#: lexsup.c:636 +#: lexsup.c:638 msgid "Show local symbols in map file output" msgstr "" -#: lexsup.c:639 +#: lexsup.c:641 msgid "Do not show local symbols in map file output (default)" msgstr "" -#: lexsup.c:642 +#: lexsup.c:644 msgid "Emit names and types of static variables in CTF" msgstr "" -#: lexsup.c:645 +#: lexsup.c:647 msgid "Do not emit names and types of static variables in CTF" msgstr "" -#: lexsup.c:649 +#: lexsup.c:651 msgid "" "How to share CTF types between translation units.\n" " <method> is: share-unconflicted (default),\n" " share-duplicated" msgstr "" -#: lexsup.c:813 -msgid "%F%P: Error: unable to disambiguate: %s (did you mean -%s ?)\n" +#: lexsup.c:815 +msgid "%P: Error: unable to disambiguate: %s (did you mean -%s ?)\n" msgstr "" -#: lexsup.c:816 +#: lexsup.c:819 msgid "%P: Warning: grouped short command line options are deprecated: %s\n" msgstr "" -#: lexsup.c:843 +#: lexsup.c:846 msgid "%P: %s: missing argument\n" msgstr "" -#: lexsup.c:848 +#: lexsup.c:851 msgid "%P: unrecognized option '%s'\n" msgstr "" -#: lexsup.c:853 -msgid "%F%P: use the --help option for usage information\n" +#: lexsup.c:856 +msgid "%P: use the --help option for usage information\n" msgstr "" -#: lexsup.c:872 -msgid "%F%P: unrecognized -a option `%s'\n" +#: lexsup.c:875 +msgid "%P: unrecognized -a option `%s'\n" msgstr "" -#: lexsup.c:885 -msgid "%F%P: unrecognized -assert option `%s'\n" +#: lexsup.c:888 +msgid "%P: unrecognized -assert option `%s'\n" msgstr "" -#: lexsup.c:929 -msgid "%F%P: unknown demangling style `%s'\n" +#: lexsup.c:932 +msgid "%P: unknown demangling style `%s'\n" msgstr "" -#: lexsup.c:1037 lexsup.c:1533 eaarch64cloudabi.c:986 eaarch64cloudabib.c:986 -#: eaarch64elf.c:986 eaarch64elf32.c:986 eaarch64elf32b.c:986 -#: eaarch64elfb.c:986 eaarch64fbsd.c:991 eaarch64fbsdb.c:991 -#: eaarch64haiku.c:986 eaarch64linux.c:991 eaarch64linux32.c:991 -#: eaarch64linux32b.c:991 eaarch64linuxb.c:991 eaarch64nto.c:1148 -#: earmelf.c:1135 earmelf_fbsd.c:1135 earmelf_fuchsia.c:1140 -#: earmelf_haiku.c:1140 earmelf_linux.c:1140 earmelf_linux_eabi.c:1140 -#: earmelf_linux_fdpiceabi.c:1140 earmelf_nacl.c:1140 earmelf_nbsd.c:1135 -#: earmelf_phoenix.c:1140 earmelf_vxworks.c:1167 earmelfb.c:1135 -#: earmelfb_fbsd.c:1135 earmelfb_fuchsia.c:1140 earmelfb_linux.c:1140 -#: earmelfb_linux_eabi.c:1140 earmelfb_linux_fdpiceabi.c:1140 -#: earmelfb_nacl.c:1140 earmelfb_nbsd.c:1135 earmnto.c:1095 ecskyelf.c:602 -#: ecskyelf_linux.c:789 eelf32metag.c:788 eelf64lppc.c:1236 -#: eelf64lppc_fbsd.c:1236 eelf64ppc.c:1236 eelf64ppc_fbsd.c:1236 -#: ehppaelf.c:613 ehppalinux.c:825 ehppanbsd.c:825 ehppaobsd.c:825 -msgid "%F%P: invalid number `%s'\n" +#: lexsup.c:1039 lexsup.c:1545 eaarch64cloudabi.c:1021 +#: eaarch64cloudabib.c:1021 eaarch64elf.c:1026 eaarch64elf32.c:1026 +#: eaarch64elf32b.c:1026 eaarch64elfb.c:1026 eaarch64fbsd.c:1026 +#: eaarch64fbsdb.c:1026 eaarch64haiku.c:1021 eaarch64linux.c:1026 +#: eaarch64linux32.c:1026 eaarch64linux32b.c:1026 eaarch64linuxb.c:1026 +#: eaarch64nto.c:1183 earmelf.c:1135 earmelf_fbsd.c:1135 +#: earmelf_fuchsia.c:1140 earmelf_haiku.c:1140 earmelf_linux.c:1140 +#: earmelf_linux_eabi.c:1140 earmelf_linux_fdpiceabi.c:1140 +#: earmelf_nacl.c:1140 earmelf_nbsd.c:1135 earmelf_phoenix.c:1140 +#: earmelf_vxworks.c:1167 earmelfb.c:1135 earmelfb_fbsd.c:1135 +#: earmelfb_fuchsia.c:1140 earmelfb_linux.c:1140 earmelfb_linux_eabi.c:1140 +#: earmelfb_linux_fdpiceabi.c:1140 earmelfb_nacl.c:1140 earmelfb_nbsd.c:1135 +#: earmnto.c:1095 ecskyelf.c:602 ecskyelf_linux.c:789 eelf32metag.c:788 +#: eelf64lppc.c:1237 eelf64lppc_fbsd.c:1237 eelf64ppc.c:1237 +#: eelf64ppc_fbsd.c:1237 ehppaelf.c:613 ehppalinux.c:825 ehppanbsd.c:825 +#: ehppaobsd.c:825 +msgid "%P: invalid number `%s'\n" msgstr "" -#: lexsup.c:1133 -msgid "%F%P: bad --unresolved-symbols option: %s\n" +#: lexsup.c:1135 +msgid "%P: bad --unresolved-symbols option: %s\n" msgstr "" -#: lexsup.c:1220 -msgid "%F%P: bad -plugin-opt option\n" +#: lexsup.c:1222 +msgid "%P: bad -plugin-opt option\n" msgstr "" #. This can happen if the user put "-rpath,a" on the command @@ -2273,175 +2275,175 @@ msgstr "" #. an error message here. We cannot just make this a warning, #. increment optind, and continue because getopt is too confused #. and will seg-fault the next time around. -#: lexsup.c:1240 -msgid "%F%P: unrecognised option: %s\n" +#: lexsup.c:1242 +msgid "%P: unrecognised option: %s\n" msgstr "" -#: lexsup.c:1243 lexsup.c:1353 lexsup.c:1374 lexsup.c:1502 -msgid "%F%P: -r and %s may not be used together\n" +#: lexsup.c:1245 lexsup.c:1355 lexsup.c:1376 lexsup.c:1514 +msgid "%P: -r and %s may not be used together\n" msgstr "" -#: lexsup.c:1365 -msgid "%F%P: -shared not supported\n" +#: lexsup.c:1367 +msgid "%P: -shared not supported\n" msgstr "" -#: lexsup.c:1379 -msgid "%F%P: -pie not supported\n" +#: lexsup.c:1381 +msgid "%P: -pie not supported\n" msgstr "" -#: lexsup.c:1385 +#: lexsup.c:1387 msgid "%P: SONAME must not be empty string; keeping previous one\n" msgstr "" -#: lexsup.c:1391 +#: lexsup.c:1393 msgid "descending" msgstr "" -#: lexsup.c:1393 +#: lexsup.c:1395 msgid "ascending" msgstr "" -#: lexsup.c:1396 -msgid "%F%P: invalid common section sorting option: %s\n" +#: lexsup.c:1398 +msgid "%P: invalid common section sorting option: %s\n" msgstr "" -#: lexsup.c:1400 +#: lexsup.c:1402 msgid "name" msgstr "" -#: lexsup.c:1402 +#: lexsup.c:1404 msgid "alignment" msgstr "" -#: lexsup.c:1405 -msgid "%F%P: invalid section sorting option: %s\n" +#: lexsup.c:1407 +msgid "%P: invalid section sorting option: %s\n" msgstr "" -#: lexsup.c:1411 +#: lexsup.c:1412 msgid "" "%P: warning: section ordering file changed. Ignoring earlier definition\n" msgstr "" -#: lexsup.c:1448 -msgid "%F%P: invalid argument to option \"--section-start\"\n" +#: lexsup.c:1460 +msgid "%P: invalid argument to option \"--section-start\"\n" msgstr "" -#: lexsup.c:1455 -msgid "%F%P: missing argument(s) to option \"--section-start\"\n" +#: lexsup.c:1467 +msgid "%P: missing argument(s) to option \"--section-start\"\n" msgstr "" -#: lexsup.c:1728 -msgid "%F%P: group ended before it began (--help for usage)\n" +#: lexsup.c:1740 +msgid "%P: group ended before it began (--help for usage)\n" msgstr "" -#: lexsup.c:1744 -msgid "%F%P: failed to add remap file %s\n" +#: lexsup.c:1756 +msgid "%P: failed to add remap file %s\n" msgstr "" #. FIXME: Should we allow --remap-inputs=@myfile as a synonym #. for --remap-inputs-file=myfile ? -#: lexsup.c:1753 -msgid "%F%P: invalid argument to option --remap-inputs\n" +#: lexsup.c:1765 +msgid "%P: invalid argument to option --remap-inputs\n" msgstr "" -#: lexsup.c:1774 -msgid "%F%P: invalid cache memory size: %s\n" +#: lexsup.c:1786 +msgid "%P: invalid cache memory size: %s\n" msgstr "" -#: lexsup.c:1788 +#: lexsup.c:1799 msgid "%X%P: --hash-size needs a numeric argument\n" msgstr "" -#: lexsup.c:1800 -msgid "%F%P: no state pushed before popping\n" +#: lexsup.c:1811 +msgid "%P: no state pushed before popping\n" msgstr "" -#: lexsup.c:1823 -msgid "%F%P: invalid argument to option \"--orphan-handling\"\n" +#: lexsup.c:1834 +msgid "%P: invalid argument to option \"--orphan-handling\"\n" msgstr "" -#: lexsup.c:1861 -msgid "%F%P: bad --ctf-share-types option: %s\n" +#: lexsup.c:1872 +msgid "%P: bad --ctf-share-types option: %s\n" msgstr "" -#: lexsup.c:1878 +#: lexsup.c:1889 msgid "%P: no file/directory name provided for map output; ignored\n" msgstr "" -#: lexsup.c:1906 +#: lexsup.c:1917 msgid "%P: cannot stat linker map file: %E\n" msgstr "" -#: lexsup.c:1917 +#: lexsup.c:1928 msgid "%P: linker map file is not a regular file\n" msgstr "" -#: lexsup.c:1932 +#: lexsup.c:1943 msgid "%P: SONAME must not be empty string; ignored\n" msgstr "" -#: lexsup.c:1938 +#: lexsup.c:1949 msgid "%P: missing --end-group; added as last command line option\n" msgstr "" -#: lexsup.c:2047 -msgid "%F%P: -r and -z nosectionheader may not be used together\n" +#: lexsup.c:2038 +msgid "%P: -r and -z nosectionheader may not be used together\n" msgstr "" -#: lexsup.c:2055 -msgid "%F%P: -F may not be used without -shared\n" +#: lexsup.c:2046 +msgid "%P: -F may not be used without -shared\n" msgstr "" -#: lexsup.c:2057 -msgid "%F%P: -f may not be used without -shared\n" +#: lexsup.c:2048 +msgid "%P: -f may not be used without -shared\n" msgstr "" -#: lexsup.c:2098 lexsup.c:2111 -msgid "%F%P: invalid hex number `%s'\n" +#: lexsup.c:2089 lexsup.c:2102 +msgid "%P: invalid hex number `%s'\n" msgstr "" -#: lexsup.c:2141 +#: lexsup.c:2132 #, c-format msgid " --audit=AUDITLIB Specify a library to use for auditing\n" msgstr "" -#: lexsup.c:2143 +#: lexsup.c:2134 #, c-format msgid " -Bgroup Selects group name lookup rules for DSO\n" msgstr "" -#: lexsup.c:2145 +#: lexsup.c:2136 #, c-format msgid " --disable-new-dtags Disable new dynamic tags\n" msgstr "" -#: lexsup.c:2147 +#: lexsup.c:2138 #, c-format msgid " --enable-new-dtags Enable new dynamic tags\n" msgstr "" -#: lexsup.c:2149 +#: lexsup.c:2140 #, c-format msgid " --eh-frame-hdr Create .eh_frame_hdr section\n" msgstr "" -#: lexsup.c:2151 +#: lexsup.c:2142 #, c-format msgid " --no-eh-frame-hdr Do not create .eh_frame_hdr section\n" msgstr "" -#: lexsup.c:2153 +#: lexsup.c:2144 #, c-format msgid " --exclude-libs=LIBS Make all symbols in LIBS hidden\n" msgstr "" -#: lexsup.c:2155 +#: lexsup.c:2146 #, c-format msgid "" " --hash-style=STYLE Set hash style to sysv/gnu/both. Default: " msgstr "" -#: lexsup.c:2174 +#: lexsup.c:2165 #, c-format msgid "" " -P AUDITLIB, --depaudit=AUDITLIB\n" @@ -2449,20 +2451,20 @@ msgid "" "dependencies\n" msgstr "" -#: lexsup.c:2177 +#: lexsup.c:2168 #, c-format msgid "" " -z combreloc Merge dynamic relocs into one section and " "sort\n" msgstr "" -#: lexsup.c:2179 +#: lexsup.c:2170 #, c-format msgid "" " -z nocombreloc Don't merge dynamic relocs into one section\n" msgstr "" -#: lexsup.c:2181 +#: lexsup.c:2172 #, c-format msgid "" " -z global Make symbols in DSO available for " @@ -2470,424 +2472,424 @@ msgid "" " loaded objects\n" msgstr "" -#: lexsup.c:2184 +#: lexsup.c:2175 #, c-format msgid "" " -z initfirst Mark DSO to be initialized first at runtime\n" msgstr "" -#: lexsup.c:2186 +#: lexsup.c:2177 #, c-format msgid "" " -z interpose Mark object to interpose all DSOs but " "executable\n" msgstr "" -#: lexsup.c:2188 +#: lexsup.c:2179 #, c-format msgid "" " -z unique Mark DSO to be loaded at most once by default, " "and only in the main namespace\n" msgstr "" -#: lexsup.c:2190 +#: lexsup.c:2181 #, c-format msgid "" " -z nounique Don't mark DSO as a loadable at most once\n" msgstr "" -#: lexsup.c:2192 +#: lexsup.c:2183 #, c-format msgid "" " -z lazy Mark object lazy runtime binding (default)\n" msgstr "" -#: lexsup.c:2194 +#: lexsup.c:2185 #, c-format msgid " -z loadfltr Mark object requiring immediate process\n" msgstr "" -#: lexsup.c:2196 +#: lexsup.c:2187 #, c-format msgid " -z nocopyreloc Don't create copy relocs\n" msgstr "" -#: lexsup.c:2198 +#: lexsup.c:2189 #, c-format msgid "" " -z nodefaultlib Mark object not to use default search paths\n" msgstr "" -#: lexsup.c:2200 +#: lexsup.c:2191 #, c-format msgid " -z nodelete Mark DSO non-deletable at runtime\n" msgstr "" -#: lexsup.c:2202 +#: lexsup.c:2193 #, c-format msgid " -z nodlopen Mark DSO not available to dlopen\n" msgstr "" -#: lexsup.c:2204 +#: lexsup.c:2195 #, c-format msgid " -z nodump Mark DSO not available to dldump\n" msgstr "" -#: lexsup.c:2206 +#: lexsup.c:2197 #, c-format msgid " -z now Mark object non-lazy runtime binding\n" msgstr "" -#: lexsup.c:2208 +#: lexsup.c:2199 #, c-format msgid "" " -z origin Mark object requiring immediate $ORIGIN\n" " processing at runtime\n" msgstr "" -#: lexsup.c:2212 +#: lexsup.c:2203 #, c-format msgid " -z relro Create RELRO program header (default)\n" msgstr "" -#: lexsup.c:2214 +#: lexsup.c:2205 #, c-format msgid " -z norelro Don't create RELRO program header\n" msgstr "" -#: lexsup.c:2217 +#: lexsup.c:2208 #, c-format msgid " -z relro Create RELRO program header\n" msgstr "" -#: lexsup.c:2219 +#: lexsup.c:2210 #, c-format msgid "" " -z norelro Don't create RELRO program header (default)\n" msgstr "" -#: lexsup.c:2223 +#: lexsup.c:2214 #, c-format msgid "" " -z separate-code Create separate code program header (default)\n" msgstr "" -#: lexsup.c:2225 +#: lexsup.c:2216 #, c-format msgid "" " -z noseparate-code Don't create separate code program header\n" msgstr "" -#: lexsup.c:2228 +#: lexsup.c:2219 #, c-format msgid " -z separate-code Create separate code program header\n" msgstr "" -#: lexsup.c:2230 +#: lexsup.c:2221 #, c-format msgid "" " -z noseparate-code Don't create separate code program header " "(default)\n" msgstr "" -#: lexsup.c:2234 +#: lexsup.c:2225 #, c-format msgid "" " --rosegment With -z separate-code, create a single read-" "only segment (default)\n" msgstr "" -#: lexsup.c:2236 +#: lexsup.c:2227 #, c-format msgid "" " --no-rosegment With -z separate-code, creste two read-only " "segments\n" msgstr "" -#: lexsup.c:2239 +#: lexsup.c:2230 #, c-format msgid "" " --rosegment With -z separate-code, create a single read-" "only segment\n" msgstr "" -#: lexsup.c:2241 +#: lexsup.c:2232 #, c-format msgid "" " --no-rosegment With -z separate-code, creste two read-only " "segments (default)\n" msgstr "" -#: lexsup.c:2244 +#: lexsup.c:2235 #, c-format msgid "" " -z common Generate common symbols with STT_COMMON type\n" msgstr "" -#: lexsup.c:2246 +#: lexsup.c:2237 #, c-format msgid "" " -z nocommon Generate common symbols with STT_OBJECT type\n" msgstr "" -#: lexsup.c:2249 +#: lexsup.c:2240 #, c-format msgid "" " -z text Treat DT_TEXTREL in output as error (default)\n" msgstr "" -#: lexsup.c:2252 +#: lexsup.c:2243 #, c-format msgid " -z text Treat DT_TEXTREL in output as error\n" msgstr "" -#: lexsup.c:2256 +#: lexsup.c:2247 #, c-format msgid "" " -z notext Don't treat DT_TEXTREL in output as error " "(default)\n" msgstr "" -#: lexsup.c:2258 +#: lexsup.c:2249 #, c-format msgid "" " -z textoff Don't treat DT_TEXTREL in output as error " "(default)\n" msgstr "" -#: lexsup.c:2263 +#: lexsup.c:2254 #, c-format msgid "" " -z notext Don't treat DT_TEXTREL in output as error\n" msgstr "" -#: lexsup.c:2265 +#: lexsup.c:2256 #, c-format msgid "" " -z textoff Don't treat DT_TEXTREL in output as error\n" msgstr "" -#: lexsup.c:2269 +#: lexsup.c:2260 #, c-format msgid " -z memory-seal Mark object be memory sealed (default)\n" msgstr "" -#: lexsup.c:2271 +#: lexsup.c:2262 #, c-format msgid " -z nomemory-seal Don't mark oject to be memory sealed\n" msgstr "" -#: lexsup.c:2274 +#: lexsup.c:2265 #, c-format msgid " -z memory-seal Mark object be memory sealed\n" msgstr "" -#: lexsup.c:2276 +#: lexsup.c:2267 #, c-format msgid "" " -z nomemory-seal Don't mark oject to be memory sealed " "(default)\n" msgstr "" -#: lexsup.c:2284 +#: lexsup.c:2275 #, c-format msgid " --build-id[=STYLE] Generate build ID note\n" msgstr "" -#: lexsup.c:2288 +#: lexsup.c:2279 #, c-format msgid " Styles: none,md5,sha1,xx,uuid,0xHEX\n" msgstr "" -#: lexsup.c:2292 +#: lexsup.c:2283 #, c-format msgid " Styles: none,md5,sha1,uuid,0xHEX\n" msgstr "" -#: lexsup.c:2295 +#: lexsup.c:2286 #, c-format msgid " --package-metadata[=JSON] Generate package metadata note\n" msgstr "" -#: lexsup.c:2297 +#: lexsup.c:2288 #, c-format msgid "" " --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi|zstd]\n" "\t\t\t Compress DWARF debug sections\n" msgstr "" -#: lexsup.c:2300 +#: lexsup.c:2291 #, c-format msgid " Default: %s\n" msgstr "" -#: lexsup.c:2303 +#: lexsup.c:2294 #, c-format msgid " -z common-page-size=SIZE Set common page size to SIZE\n" msgstr "" -#: lexsup.c:2305 +#: lexsup.c:2296 #, c-format msgid " -z max-page-size=SIZE Set maximum page size to SIZE\n" msgstr "" -#: lexsup.c:2307 +#: lexsup.c:2298 #, c-format msgid "" " -z defs Report unresolved symbols in object files\n" msgstr "" -#: lexsup.c:2309 +#: lexsup.c:2300 #, c-format msgid "" " -z undefs Ignore unresolved symbols in object files\n" msgstr "" -#: lexsup.c:2311 +#: lexsup.c:2302 #, c-format msgid " -z muldefs Allow multiple definitions\n" msgstr "" -#: lexsup.c:2313 +#: lexsup.c:2304 #, c-format msgid " -z stack-size=SIZE Set size of stack segment\n" msgstr "" -#: lexsup.c:2316 +#: lexsup.c:2307 #, c-format msgid "" " -z execstack Mark executable as requiring executable stack\n" msgstr "" -#: lexsup.c:2318 +#: lexsup.c:2309 #, c-format msgid "" " -z noexecstack Mark executable as not requiring executable " "stack\n" msgstr "" -#: lexsup.c:2320 +#: lexsup.c:2311 #, c-format msgid "" " --warn-execstack-objects Generate a warning if an object file requests " "an executable stack\n" msgstr "" -#: lexsup.c:2323 +#: lexsup.c:2314 #, c-format msgid "" " --warn-execstack Generate a warning if creating an executable " "stack\n" msgstr "" -#: lexsup.c:2326 +#: lexsup.c:2317 #, c-format msgid "" " --warn-execstack Generate a warning if creating an executable " "stack (default)\n" msgstr "" -#: lexsup.c:2330 +#: lexsup.c:2321 #, c-format msgid "" " --no-warn-execstack Do not generate a warning if creating an " "executable stack (default)\n" msgstr "" -#: lexsup.c:2333 +#: lexsup.c:2324 #, c-format msgid "" " --no-warn-execstack Do not generate a warning if creating an " "executable stack\n" msgstr "" -#: lexsup.c:2336 +#: lexsup.c:2327 #, c-format msgid "" " --error-execstack Turn warnings about executable stacks into " "errors\n" msgstr "" -#: lexsup.c:2338 +#: lexsup.c:2329 #, c-format msgid "" " --no-error-execstack Do not turn warnings about executable stacks " "into errors\n" msgstr "" -#: lexsup.c:2342 +#: lexsup.c:2333 #, c-format msgid "" " --warn-rwx-segments Generate a warning if a LOAD segment has RWX " "permissions (default)\n" msgstr "" -#: lexsup.c:2344 +#: lexsup.c:2335 #, c-format msgid "" " --no-warn-rwx-segments Do not generate a warning if a LOAD segments " "has RWX permissions\n" msgstr "" -#: lexsup.c:2347 +#: lexsup.c:2338 #, c-format msgid "" " --warn-rwx-segments Generate a warning if a LOAD segment has RWX " "permissions\n" msgstr "" -#: lexsup.c:2349 +#: lexsup.c:2340 #, c-format msgid "" " --no-warn-rwx-segments Do not generate a warning if a LOAD segments " "has RWX permissions (default)\n" msgstr "" -#: lexsup.c:2352 +#: lexsup.c:2343 #, c-format msgid "" " --error-rwx-segments Turn warnings about loadable RWX segments into " "errors\n" msgstr "" -#: lexsup.c:2354 +#: lexsup.c:2345 #, c-format msgid "" " --no-error-rwx-segments Do not turn warnings about loadable RWX " "segments into errors\n" msgstr "" -#: lexsup.c:2357 +#: lexsup.c:2348 #, c-format msgid " -z unique-symbol Avoid duplicated local symbol names\n" msgstr "" -#: lexsup.c:2359 +#: lexsup.c:2350 #, c-format msgid "" " -z nounique-symbol Keep duplicated local symbol names (default)\n" msgstr "" -#: lexsup.c:2361 +#: lexsup.c:2352 #, c-format msgid "" " -z globalaudit Mark executable requiring global auditing\n" msgstr "" -#: lexsup.c:2363 +#: lexsup.c:2354 #, c-format msgid "" " -z start-stop-gc Enable garbage collection on __start/__stop\n" msgstr "" -#: lexsup.c:2365 +#: lexsup.c:2356 #, c-format msgid "" " -z nostart-stop-gc Don't garbage collect __start/__stop " "(default)\n" msgstr "" -#: lexsup.c:2367 +#: lexsup.c:2358 #, c-format msgid "" " -z start-stop-visibility=V Set visibility of built-in __start/__stop " @@ -2895,23 +2897,23 @@ msgid "" " to DEFAULT, PROTECTED, HIDDEN or INTERNAL\n" msgstr "" -#: lexsup.c:2370 +#: lexsup.c:2361 #, c-format msgid " -z sectionheader Generate section header (default)\n" msgstr "" -#: lexsup.c:2372 +#: lexsup.c:2363 #, c-format msgid " -z nosectionheader Do not generate section header\n" msgstr "" -#: lexsup.c:2379 +#: lexsup.c:2370 #, c-format msgid "" " --ld-generated-unwind-info Generate exception handling info for PLT\n" msgstr "" -#: lexsup.c:2381 +#: lexsup.c:2372 #, c-format msgid "" " --no-ld-generated-unwind-info\n" @@ -2919,55 +2921,55 @@ msgid "" "PLT\n" msgstr "" -#: lexsup.c:2391 +#: lexsup.c:2382 #, c-format msgid "ELF emulations:\n" msgstr "" -#: lexsup.c:2409 +#: lexsup.c:2400 #, c-format msgid "Usage: %s [options] file...\n" msgstr "" -#: lexsup.c:2411 +#: lexsup.c:2402 #, c-format msgid "Options:\n" msgstr "" -#: lexsup.c:2489 +#: lexsup.c:2480 #, c-format msgid " @FILE" msgstr "" -#: lexsup.c:2492 +#: lexsup.c:2483 #, c-format msgid "Read options from FILE\n" msgstr "" #. Note: Various tools (such as libtool) depend upon the #. format of the listings below - do not change them. -#: lexsup.c:2497 +#: lexsup.c:2488 #, c-format msgid "%s: supported targets:" msgstr "" -#: lexsup.c:2505 +#: lexsup.c:2496 #, c-format msgid "%s: supported emulations: " msgstr "" -#: lexsup.c:2510 +#: lexsup.c:2501 #, c-format msgid "%s: emulation specific options:\n" msgstr "" -#: lexsup.c:2517 +#: lexsup.c:2508 #, c-format msgid "Report bugs to %s\n" msgstr "" #: mri.c:291 -msgid "%F%P: unknown format type %s\n" +msgid "%P: unknown format type %s\n" msgstr "" #: pdb.c:845 pdb.c:1136 @@ -3410,46 +3412,46 @@ msgstr "" msgid "%P: warning: cannot populate info stream in PDB file: %E\n" msgstr "" -#: pe-dll.c:480 +#: pe-dll.c:483 msgid "%X%P: unsupported PEI architecture: %s\n" msgstr "" -#: pe-dll.c:869 +#: pe-dll.c:872 msgid "%X%P: cannot export %s: invalid export name\n" msgstr "" -#: pe-dll.c:921 +#: pe-dll.c:924 #, c-format msgid "%X%P: error, duplicate EXPORT with ordinals: %s (%d vs %d)\n" msgstr "" -#: pe-dll.c:928 +#: pe-dll.c:931 #, c-format msgid "%P: warning, duplicate EXPORT: %s\n" msgstr "" -#: pe-dll.c:1035 +#: pe-dll.c:1038 #, c-format msgid "%X%P: cannot export %s: symbol not defined\n" msgstr "" -#: pe-dll.c:1041 +#: pe-dll.c:1044 #, c-format msgid "%X%P: cannot export %s: symbol wrong type (%d vs %d)\n" msgstr "" -#: pe-dll.c:1048 +#: pe-dll.c:1051 #, c-format msgid "%X%P: cannot export %s: symbol not found\n" msgstr "" -#: pe-dll.c:1072 eaarch64cloudabi.c:370 eaarch64cloudabib.c:370 -#: eaarch64elf.c:369 eaarch64elf32.c:369 eaarch64elf32b.c:369 -#: eaarch64elfb.c:369 eaarch64fbsd.c:370 eaarch64fbsdb.c:370 -#: eaarch64haiku.c:370 eaarch64linux.c:370 eaarch64linux32.c:370 -#: eaarch64linux32b.c:370 eaarch64linuxb.c:370 eaarch64nto.c:370 -#: eaix5ppc.c:1632 eaix5ppc.c:1642 eaix5rs6.c:1632 eaix5rs6.c:1642 -#: eaixppc.c:1632 eaixppc.c:1642 eaixrs6.c:1632 eaixrs6.c:1642 earmelf.c:572 +#: pe-dll.c:1075 eaarch64cloudabi.c:376 eaarch64cloudabib.c:376 +#: eaarch64elf.c:376 eaarch64elf32.c:376 eaarch64elf32b.c:376 +#: eaarch64elfb.c:376 eaarch64fbsd.c:376 eaarch64fbsdb.c:376 +#: eaarch64haiku.c:376 eaarch64linux.c:376 eaarch64linux32.c:376 +#: eaarch64linux32b.c:376 eaarch64linuxb.c:376 eaarch64nto.c:376 +#: eaix5ppc.c:1631 eaix5ppc.c:1641 eaix5rs6.c:1631 eaix5rs6.c:1641 +#: eaixppc.c:1631 eaixppc.c:1641 eaixrs6.c:1631 eaixrs6.c:1641 earmelf.c:572 #: earmelf_fbsd.c:572 earmelf_fuchsia.c:573 earmelf_haiku.c:573 #: earmelf_linux.c:573 earmelf_linux_eabi.c:573 earmelf_linux_fdpiceabi.c:573 #: earmelf_nacl.c:573 earmelf_nbsd.c:572 earmelf_phoenix.c:573 @@ -3469,104 +3471,104 @@ msgstr "" #: eelf64ltsmip_fbsd.c:175 eelf64ppc.c:122 eelf64ppc_fbsd.c:122 #: eelf_mipsel_haiku.c:175 ehppaelf.c:113 ehppalinux.c:113 ehppanbsd.c:113 #: ehppaobsd.c:113 em68hc11elf.c:173 em68hc11elfb.c:173 em68hc12elf.c:173 -#: em68hc12elfb.c:173 eppcmacos.c:1632 eppcmacos.c:1642 -msgid "%F%P: can not create BFD: %E\n" +#: em68hc12elfb.c:173 eppcmacos.c:1631 eppcmacos.c:1641 +msgid "%P: can not create BFD: %E\n" msgstr "" -#: pe-dll.c:1086 +#: pe-dll.c:1089 msgid "%X%P: can not create .edata section: %E\n" msgstr "" -#: pe-dll.c:1100 +#: pe-dll.c:1103 msgid "%X%P: can not create .reloc section: %E\n" msgstr "" -#: pe-dll.c:1149 +#: pe-dll.c:1152 #, c-format msgid "%X%P: error: ordinal used twice: %d (%s vs %s)\n" msgstr "" -#: pe-dll.c:1185 +#: pe-dll.c:1188 #, c-format msgid "%X%P: error: export ordinal too large: %d\n" msgstr "" -#: pe-dll.c:1511 +#: pe-dll.c:1514 #, c-format msgid "Info: resolving %s by linking to %s (auto-import)\n" msgstr "" -#: pe-dll.c:1517 +#: pe-dll.c:1520 msgid "" "%P: warning: auto-importing has been activated without --enable-auto-import " "specified on the command line; this should work unless it involves constant " "data structures referencing symbols from auto-imported DLLs\n" msgstr "" -#: pe-dll.c:1680 +#: pe-dll.c:1684 msgid "%P: base relocation for section `%s' above .reloc section\n" msgstr "" -#: pe-dll.c:1730 +#: pe-dll.c:1734 #, c-format msgid "%X%P: error: %d-bit reloc in dll\n" msgstr "" -#: pe-dll.c:1856 +#: pe-dll.c:1860 #, c-format msgid "%P: can't open output def file %s\n" msgstr "" -#: pe-dll.c:2005 +#: pe-dll.c:2009 #, c-format msgid "; no contents available\n" msgstr "" -#: pe-dll.c:2364 +#: pe-dll.c:2368 msgid "%P: error: NULL decorated name for %s\n" msgstr "" -#: pe-dll.c:2899 +#: pe-dll.c:2903 msgid "" "%X%P: %H: variable '%pT' can't be auto-imported; please read the " "documentation for ld's --enable-auto-import for details\n" msgstr "" -#: pe-dll.c:2920 +#: pe-dll.c:2924 #, c-format msgid "%X%P: can't open .lib file: %s\n" msgstr "" -#: pe-dll.c:2926 +#: pe-dll.c:2930 #, c-format msgid "Creating library file: %s\n" msgstr "" -#: pe-dll.c:2956 +#: pe-dll.c:2960 msgid "%X%P: bfd_openr %s: %E\n" msgstr "" -#: pe-dll.c:2968 +#: pe-dll.c:2972 msgid "%X%P: %s(%s): can't find member in non-archive file" msgstr "" -#: pe-dll.c:2982 +#: pe-dll.c:2986 msgid "%X%P: %s(%s): can't find member in archive" msgstr "" -#: pe-dll.c:3239 +#: pe-dll.c:3243 msgid "%X%P: add symbols %s: %E\n" msgstr "" -#: pe-dll.c:3450 +#: pe-dll.c:3454 msgid "%X%P: open %s: %E\n" msgstr "" -#: pe-dll.c:3460 +#: pe-dll.c:3464 msgid "%X%P: %s: this doesn't appear to be a DLL\n" msgstr "" -#: pe-dll.c:3680 +#: pe-dll.c:3684 msgid "%X%P: error: can't use long section names on this arch\n" msgstr "" @@ -3574,8 +3576,8 @@ msgstr "" msgid "<no plugin>" msgstr "" -#: plugin.c:255 plugin.c:1137 -msgid "%F%P: %s: error loading plugin: %s\n" +#: plugin.c:255 plugin.c:1139 +msgid "%P: %s: error loading plugin: %s\n" msgstr "" #: plugin.c:262 @@ -3583,79 +3585,79 @@ msgid "%P: %s: duplicated plugin\n" msgstr "" #: plugin.c:346 -msgid "%F%P: could not create dummy IR bfd: %E\n" +msgid "%P: could not create dummy IR bfd: %E\n" msgstr "" -#: plugin.c:427 -msgid "%F%P: %s: non-ELF symbol in ELF BFD!\n" +#: plugin.c:428 +msgid "%P: %s: non-ELF symbol in ELF BFD!\n" msgstr "" -#: plugin.c:438 -msgid "%F%P: unknown ELF symbol visibility: %d!\n" +#: plugin.c:439 +msgid "%P: unknown ELF symbol visibility: %d!\n" msgstr "" -#: plugin.c:560 -msgid "%F%P: unsupported input file size: %s (%ld bytes)\n" +#: plugin.c:561 +msgid "%P: unsupported input file size: %s (%ld bytes)\n" msgstr "" -#: plugin.c:705 +#: plugin.c:706 #, c-format msgid "unknown LTO kind value %x" msgstr "" -#: plugin.c:731 +#: plugin.c:732 #, c-format msgid "unknown LTO resolution value %x" msgstr "" -#: plugin.c:751 +#: plugin.c:752 #, c-format msgid "unknown LTO visibility value %x" msgstr "" #. We should not have a new, indirect or warning symbol here. -#: plugin.c:836 -msgid "%F%P: %s: plugin symbol table corrupt (sym type %d)\n" +#: plugin.c:837 +msgid "%P: %s: plugin symbol table corrupt (sym type %d)\n" msgstr "" -#: plugin.c:901 +#: plugin.c:902 msgid "%P: %pB: symbol `%s' definition: %s, visibility: %s, resolution: %s\n" msgstr "" -#: plugin.c:978 +#: plugin.c:979 msgid "%P: warning: " msgstr "" #: plugin.c:989 -msgid "%P: error: " +msgid "%X%P: error: " msgstr "" -#: plugin.c:1144 -msgid "%F%P: %s: plugin error: %d\n" +#: plugin.c:1146 +msgid "%P: %s: plugin error: %d\n" msgstr "" -#: plugin.c:1208 -msgid "%F%P: plugin_strdup failed to allocate memory: %s\n" +#: plugin.c:1210 +msgid "%P: plugin_strdup failed to allocate memory: %s\n" msgstr "" -#: plugin.c:1250 -msgid "%F%P: plugin failed to allocate memory for input: %s\n" +#: plugin.c:1252 +msgid "%P: plugin failed to allocate memory for input: %s\n" msgstr "" -#: plugin.c:1279 -msgid "%F%P: %s: plugin reported error claiming file\n" +#: plugin.c:1281 +msgid "%P: %s: plugin reported error claiming file\n" msgstr "" -#: plugin.c:1401 +#: plugin.c:1403 msgid "%P: %s: error in plugin cleanup: %d (ignored)\n" msgstr "" -#: eaarch64cloudabi.c:237 eaarch64cloudabib.c:237 eaarch64elf.c:236 -#: eaarch64elf32.c:236 eaarch64elf32b.c:236 eaarch64elfb.c:236 -#: eaarch64fbsd.c:237 eaarch64fbsdb.c:237 eaarch64haiku.c:237 -#: eaarch64linux.c:237 eaarch64linux32.c:237 eaarch64linux32b.c:237 -#: eaarch64linuxb.c:237 eaarch64nto.c:237 eaix5ppc.c:1097 eaix5rs6.c:1097 -#: eaixppc.c:1097 eaixrs6.c:1097 earmelf.c:299 earmelf_fbsd.c:299 +#: eaarch64cloudabi.c:242 eaarch64cloudabib.c:242 eaarch64elf.c:242 +#: eaarch64elf32.c:242 eaarch64elf32b.c:242 eaarch64elfb.c:242 +#: eaarch64fbsd.c:242 eaarch64fbsdb.c:242 eaarch64haiku.c:242 +#: eaarch64linux.c:242 eaarch64linux32.c:242 eaarch64linux32b.c:242 +#: eaarch64linuxb.c:242 eaarch64nto.c:242 eaix5ppc.c:1096 eaix5rs6.c:1096 +#: eaixppc.c:1096 eaixrs6.c:1096 earmelf.c:299 earmelf_fbsd.c:299 #: earmelf_fuchsia.c:300 earmelf_haiku.c:300 earmelf_linux.c:300 #: earmelf_linux_eabi.c:300 earmelf_linux_fdpiceabi.c:300 earmelf_nacl.c:300 #: earmelf_nbsd.c:299 earmelf_phoenix.c:300 earmelf_vxworks.c:299 @@ -3670,24 +3672,25 @@ msgstr "" #: eelf32b4300.c:208 eelf32bmip.c:208 eelf32bmipn32.c:222 eelf32bsmip.c:222 #: eelf32btsmip.c:208 eelf32btsmip_fbsd.c:208 eelf32btsmipn32.c:208 #: eelf32btsmipn32_fbsd.c:208 eelf32ebmip.c:208 eelf32ebmipvxworks.c:208 -#: eelf32elmip.c:208 eelf32elmipvxworks.c:208 eelf32l4300.c:208 -#: eelf32lmip.c:208 eelf32lr5900.c:208 eelf32lr5900n32.c:208 eelf32lsmip.c:208 -#: eelf32ltsmip.c:208 eelf32ltsmip_fbsd.c:208 eelf32ltsmipn32.c:208 -#: eelf32ltsmipn32_fbsd.c:208 eelf32metag.c:209 eelf32mipswindiss.c:208 -#: eelf64bmip.c:222 eelf64btsmip.c:208 eelf64btsmip_fbsd.c:208 +#: eelf32elmip.c:208 eelf32elmipvxworks.c:208 eelf32kvx.c:198 +#: eelf32l4300.c:208 eelf32lmip.c:208 eelf32lr5900.c:208 eelf32lr5900n32.c:208 +#: eelf32lsmip.c:208 eelf32ltsmip.c:208 eelf32ltsmip_fbsd.c:208 +#: eelf32ltsmipn32.c:208 eelf32ltsmipn32_fbsd.c:208 eelf32metag.c:209 +#: eelf32mipswindiss.c:208 eelf64bmip.c:222 eelf64btsmip.c:208 +#: eelf64btsmip_fbsd.c:208 eelf64kvx.c:198 eelf64kvx_linux.c:196 #: eelf64lppc.c:485 eelf64lppc_fbsd.c:485 eelf64ltsmip.c:208 #: eelf64ltsmip_fbsd.c:208 eelf64ppc.c:485 eelf64ppc_fbsd.c:485 #: eelf_mipsel_haiku.c:208 ehppaelf.c:233 ehppalinux.c:233 ehppanbsd.c:233 #: ehppaobsd.c:233 em68hc11elf.c:298 em68hc11elfb.c:298 em68hc12elf.c:298 -#: em68hc12elfb.c:298 eppcmacos.c:1097 +#: em68hc12elfb.c:298 eppcmacos.c:1096 msgid "%X%P: can not make stub section: %E\n" msgstr "" -#: eaarch64cloudabi.c:280 eaarch64cloudabib.c:280 eaarch64elf.c:279 -#: eaarch64elf32.c:279 eaarch64elf32b.c:279 eaarch64elfb.c:279 -#: eaarch64fbsd.c:280 eaarch64fbsdb.c:280 eaarch64haiku.c:280 -#: eaarch64linux.c:280 eaarch64linux32.c:280 eaarch64linux32b.c:280 -#: eaarch64linuxb.c:280 eaarch64nto.c:280 earcelf.c:117 earclinux.c:118 +#: eaarch64cloudabi.c:285 eaarch64cloudabib.c:285 eaarch64elf.c:285 +#: eaarch64elf32.c:285 eaarch64elf32b.c:285 eaarch64elfb.c:285 +#: eaarch64fbsd.c:285 eaarch64fbsdb.c:285 eaarch64haiku.c:285 +#: eaarch64linux.c:285 eaarch64linux32.c:285 eaarch64linux32b.c:285 +#: eaarch64linuxb.c:285 eaarch64nto.c:285 earcelf.c:117 earclinux.c:118 #: earclinux_nps.c:118 earcv2elf.c:117 earcv2elfx.c:117 earmelf.c:411 #: earmelf_fbsd.c:411 earmelf_fuchsia.c:412 earmelf_haiku.c:412 #: earmelf_linux.c:412 earmelf_linux_eabi.c:412 earmelf_linux_fdpiceabi.c:412 @@ -3701,9 +3704,9 @@ msgstr "" #: eavrxmega3.c:321 eavrxmega4.c:321 eavrxmega4_flmap.c:321 eavrxmega5.c:321 #: eavrxmega6.c:321 eavrxmega7.c:321 ecriself.c:117 ecrislinux.c:118 #: ed10velf.c:117 eelf32_sparc.c:118 eelf32_sparc_sol2.c:250 -#: eelf32_sparc_vxworks.c:147 eelf32_spu.c:787 eelf32_tic6x_be.c:184 -#: eelf32_tic6x_elf_be.c:184 eelf32_tic6x_elf_le.c:184 eelf32_tic6x_le.c:184 -#: eelf32_tic6x_linux_be.c:184 eelf32_tic6x_linux_le.c:184 eelf32_x86_64.c:150 +#: eelf32_sparc_vxworks.c:147 eelf32_spu.c:787 eelf32_tic6x_be.c:182 +#: eelf32_tic6x_elf_be.c:182 eelf32_tic6x_elf_le.c:182 eelf32_tic6x_le.c:182 +#: eelf32_tic6x_linux_be.c:182 eelf32_tic6x_linux_le.c:182 eelf32_x86_64.c:182 #: eelf32am33lin.c:117 eelf32b4300.c:314 eelf32bfin.c:127 eelf32bfinfd.c:127 #: eelf32bmip.c:314 eelf32bmipn32.c:328 eelf32briscv.c:94 #: eelf32briscv_ilp32.c:94 eelf32briscv_ilp32f.c:94 eelf32bsmip.c:328 @@ -3711,16 +3714,17 @@ msgstr "" #: eelf32btsmipn32_fbsd.c:314 eelf32cr16.c:267 eelf32crx.c:154 #: eelf32ebmip.c:314 eelf32ebmipvxworks.c:343 eelf32elmip.c:314 #: eelf32elmipvxworks.c:343 eelf32epiphany.c:117 eelf32epiphany_4x4.c:119 -#: eelf32frvfd.c:117 eelf32ip2k.c:117 eelf32l4300.c:314 eelf32lm32.c:117 -#: eelf32lm32fd.c:117 eelf32lmip.c:314 eelf32loongarch.c:92 eelf32lppc.c:338 -#: eelf32lppclinux.c:338 eelf32lppcnto.c:338 eelf32lppcsim.c:338 -#: eelf32lr5900.c:314 eelf32lr5900n32.c:313 eelf32lriscv.c:94 -#: eelf32lriscv_ilp32.c:94 eelf32lriscv_ilp32f.c:94 eelf32lsmip.c:314 -#: eelf32ltsmip.c:314 eelf32ltsmip_fbsd.c:314 eelf32ltsmipn32.c:314 -#: eelf32ltsmipn32_fbsd.c:314 eelf32m32c.c:128 eelf32mb_linux.c:118 -#: eelf32mbel_linux.c:118 eelf32mcore.c:117 eelf32mep.c:117 eelf32metag.c:259 -#: eelf32microblaze.c:117 eelf32microblazeel.c:117 eelf32mipswindiss.c:313 -#: eelf32moxie.c:117 eelf32or1k.c:118 eelf32or1k_linux.c:118 eelf32ppc.c:338 +#: eelf32frvfd.c:117 eelf32ip2k.c:117 eelf32kvx.c:241 eelf32l4300.c:314 +#: eelf32lm32.c:117 eelf32lm32fd.c:117 eelf32lmip.c:314 eelf32loongarch.c:92 +#: eelf32lppc.c:338 eelf32lppclinux.c:338 eelf32lppcnto.c:338 +#: eelf32lppcsim.c:338 eelf32lr5900.c:314 eelf32lr5900n32.c:313 +#: eelf32lriscv.c:94 eelf32lriscv_ilp32.c:94 eelf32lriscv_ilp32f.c:94 +#: eelf32lsmip.c:314 eelf32ltsmip.c:314 eelf32ltsmip_fbsd.c:314 +#: eelf32ltsmipn32.c:314 eelf32ltsmipn32_fbsd.c:314 eelf32m32c.c:128 +#: eelf32mb_linux.c:118 eelf32mbel_linux.c:118 eelf32mcore.c:117 +#: eelf32mep.c:117 eelf32metag.c:259 eelf32microblaze.c:117 +#: eelf32microblazeel.c:117 eelf32mipswindiss.c:313 eelf32moxie.c:117 +#: eelf32or1k.c:118 eelf32or1k_linux.c:118 eelf32ppc.c:338 #: eelf32ppc_fbsd.c:338 eelf32ppchaiku.c:338 eelf32ppclinux.c:338 #: eelf32ppcnto.c:338 eelf32ppcsim.c:338 eelf32ppcvxworks.c:312 #: eelf32ppcwindiss.c:338 eelf32rl78.c:117 eelf32rx.c:133 eelf32rx_linux.c:130 @@ -3729,19 +3733,20 @@ msgstr "" #: eelf32xtensa.c:2014 eelf32z80.c:144 eelf64_aix.c:117 eelf64_ia64.c:143 #: eelf64_ia64_fbsd.c:143 eelf64_ia64_vms.c:220 eelf64_s390.c:133 #: eelf64_sparc.c:118 eelf64_sparc_fbsd.c:118 eelf64_sparc_sol2.c:250 -#: eelf64alpha.c:201 eelf64alpha_fbsd.c:201 eelf64alpha_nbsd.c:201 +#: eelf64alpha.c:178 eelf64alpha_fbsd.c:178 eelf64alpha_nbsd.c:178 #: eelf64bmip.c:328 eelf64bpf.c:117 eelf64briscv.c:94 eelf64briscv_lp64.c:94 #: eelf64briscv_lp64f.c:94 eelf64btsmip.c:314 eelf64btsmip_fbsd.c:314 -#: eelf64hppa.c:117 eelf64loongarch.c:92 eelf64lppc.c:595 -#: eelf64lppc_fbsd.c:595 eelf64lriscv.c:94 eelf64lriscv_lp64.c:94 -#: eelf64lriscv_lp64f.c:94 eelf64ltsmip.c:314 eelf64ltsmip_fbsd.c:314 -#: eelf64mmix.c:228 eelf64ppc.c:595 eelf64ppc_fbsd.c:595 eelf64rdos.c:133 -#: eelf64tilegx.c:118 eelf64tilegx_be.c:118 eelf_i386.c:142 eelf_i386_be.c:141 +#: eelf64hppa.c:117 eelf64kvx.c:241 eelf64kvx_linux.c:239 eelf64loongarch.c:92 +#: eelf64lppc.c:595 eelf64lppc_fbsd.c:595 eelf64lriscv.c:94 +#: eelf64lriscv_lp64.c:94 eelf64lriscv_lp64f.c:94 eelf64ltsmip.c:314 +#: eelf64ltsmip_fbsd.c:314 eelf64mmix.c:225 eelf64ppc.c:595 +#: eelf64ppc_fbsd.c:595 eelf64rdos.c:165 eelf64tilegx.c:118 +#: eelf64tilegx_be.c:118 eelf_i386.c:142 eelf_i386_be.c:141 #: eelf_i386_fbsd.c:142 eelf_i386_haiku.c:142 eelf_i386_ldso.c:142 #: eelf_i386_sol2.c:274 eelf_i386_vxworks.c:171 eelf_iamcu.c:142 -#: eelf_mipsel_haiku.c:314 eelf_s390.c:118 eelf_x86_64.c:150 -#: eelf_x86_64_cloudabi.c:150 eelf_x86_64_fbsd.c:150 eelf_x86_64_haiku.c:150 -#: eelf_x86_64_sol2.c:282 eh8300elf.c:117 eh8300elf_linux.c:117 +#: eelf_mipsel_haiku.c:314 eelf_s390.c:118 eelf_x86_64.c:182 +#: eelf_x86_64_cloudabi.c:182 eelf_x86_64_fbsd.c:182 eelf_x86_64_haiku.c:182 +#: eelf_x86_64_sol2.c:314 eh8300elf.c:117 eh8300elf_linux.c:117 #: eh8300helf.c:117 eh8300helf_linux.c:117 eh8300hnelf.c:117 eh8300self.c:117 #: eh8300self_linux.c:117 eh8300snelf.c:117 eh8300sxelf.c:117 #: eh8300sxelf_linux.c:117 eh8300sxnelf.c:117 ehppa64linux.c:117 @@ -3760,26 +3765,27 @@ msgstr "" msgid "%X%P: .eh_frame/.stab edit: %E\n" msgstr "" -#: eaarch64cloudabi.c:296 eaarch64cloudabib.c:296 eaarch64elf.c:295 -#: eaarch64elf32.c:295 eaarch64elf32b.c:295 eaarch64elfb.c:295 -#: eaarch64fbsd.c:296 eaarch64fbsdb.c:296 eaarch64haiku.c:296 -#: eaarch64linux.c:296 eaarch64linux32.c:296 eaarch64linux32b.c:296 -#: eaarch64linuxb.c:296 eaarch64nto.c:296 earmelf.c:426 earmelf_fbsd.c:426 +#: eaarch64cloudabi.c:301 eaarch64cloudabib.c:301 eaarch64elf.c:301 +#: eaarch64elf32.c:301 eaarch64elf32b.c:301 eaarch64elfb.c:301 +#: eaarch64fbsd.c:301 eaarch64fbsdb.c:301 eaarch64haiku.c:301 +#: eaarch64linux.c:301 eaarch64linux32.c:301 eaarch64linux32b.c:301 +#: eaarch64linuxb.c:301 eaarch64nto.c:301 earmelf.c:426 earmelf_fbsd.c:426 #: earmelf_fuchsia.c:427 earmelf_haiku.c:427 earmelf_linux.c:427 #: earmelf_linux_eabi.c:427 earmelf_linux_fdpiceabi.c:427 earmelf_nacl.c:427 #: earmelf_nbsd.c:426 earmelf_phoenix.c:427 earmelf_vxworks.c:426 #: earmelfb.c:426 earmelfb_fbsd.c:426 earmelfb_fuchsia.c:427 #: earmelfb_linux.c:427 earmelfb_linux_eabi.c:427 #: earmelfb_linux_fdpiceabi.c:427 earmelfb_nacl.c:427 earmelfb_nbsd.c:426 -#: earmnto.c:426 ecskyelf.c:263 ecskyelf_linux.c:263 +#: earmnto.c:426 ecskyelf.c:263 ecskyelf_linux.c:263 eelf32kvx.c:257 +#: eelf64kvx.c:257 eelf64kvx_linux.c:255 msgid "%X%P: could not compute sections lists for stub generation: %E\n" msgstr "" -#: eaarch64cloudabi.c:311 eaarch64cloudabib.c:311 eaarch64elf.c:310 -#: eaarch64elf32.c:310 eaarch64elf32b.c:310 eaarch64elfb.c:310 -#: eaarch64fbsd.c:311 eaarch64fbsdb.c:311 eaarch64haiku.c:311 -#: eaarch64linux.c:311 eaarch64linux32.c:311 eaarch64linux32b.c:311 -#: eaarch64linuxb.c:311 eaarch64nto.c:311 earmelf.c:441 earmelf_fbsd.c:441 +#: eaarch64cloudabi.c:316 eaarch64cloudabib.c:316 eaarch64elf.c:316 +#: eaarch64elf32.c:316 eaarch64elf32b.c:316 eaarch64elfb.c:316 +#: eaarch64fbsd.c:316 eaarch64fbsdb.c:316 eaarch64haiku.c:316 +#: eaarch64linux.c:316 eaarch64linux32.c:316 eaarch64linux32b.c:316 +#: eaarch64linuxb.c:316 eaarch64nto.c:316 earmelf.c:441 earmelf_fbsd.c:441 #: earmelf_fuchsia.c:442 earmelf_haiku.c:442 earmelf_linux.c:442 #: earmelf_linux_eabi.c:442 earmelf_linux_fdpiceabi.c:442 earmelf_nacl.c:442 #: earmelf_nbsd.c:441 earmelf_phoenix.c:442 earmelf_vxworks.c:441 @@ -3807,12 +3813,12 @@ msgstr "" msgid "%X%P: can not size stub section: %E\n" msgstr "" -#: eaarch64cloudabi.c:330 eaarch64cloudabib.c:330 eaarch64elf.c:329 -#: eaarch64elf32.c:329 eaarch64elf32b.c:329 eaarch64elfb.c:329 -#: eaarch64fbsd.c:330 eaarch64fbsdb.c:330 eaarch64haiku.c:330 -#: eaarch64linux.c:330 eaarch64linux32.c:330 eaarch64linux32b.c:330 -#: eaarch64linuxb.c:330 eaarch64nto.c:330 eaix5ppc.c:1137 eaix5rs6.c:1137 -#: eaixppc.c:1137 eaixrs6.c:1137 earmelf.c:475 earmelf_fbsd.c:475 +#: eaarch64cloudabi.c:335 eaarch64cloudabib.c:335 eaarch64elf.c:335 +#: eaarch64elf32.c:335 eaarch64elf32b.c:335 eaarch64elfb.c:335 +#: eaarch64fbsd.c:335 eaarch64fbsdb.c:335 eaarch64haiku.c:335 +#: eaarch64linux.c:335 eaarch64linux32.c:335 eaarch64linux32b.c:335 +#: eaarch64linuxb.c:335 eaarch64nto.c:335 eaix5ppc.c:1136 eaix5rs6.c:1136 +#: eaixppc.c:1136 eaixrs6.c:1136 earmelf.c:475 earmelf_fbsd.c:475 #: earmelf_fuchsia.c:476 earmelf_haiku.c:476 earmelf_linux.c:476 #: earmelf_linux_eabi.c:476 earmelf_linux_fdpiceabi.c:476 earmelf_nacl.c:476 #: earmelf_nbsd.c:475 earmelf_phoenix.c:476 earmelf_vxworks.c:475 @@ -3823,10 +3829,11 @@ msgstr "" #: eavr35.c:205 eavr4.c:205 eavr5.c:205 eavr51.c:205 eavr6.c:205 #: eavrtiny.c:205 eavrxmega1.c:205 eavrxmega2.c:205 eavrxmega2_flmap.c:205 #: eavrxmega3.c:205 eavrxmega4.c:205 eavrxmega4_flmap.c:205 eavrxmega5.c:205 -#: eavrxmega6.c:205 eavrxmega7.c:205 eelf32metag.c:303 eelf64lppc.c:634 +#: eavrxmega6.c:205 eavrxmega7.c:205 eelf32kvx.c:291 eelf32metag.c:303 +#: eelf64kvx.c:291 eelf64kvx_linux.c:289 eelf64lppc.c:634 #: eelf64lppc_fbsd.c:634 eelf64ppc.c:634 eelf64ppc_fbsd.c:634 ehppaelf.c:335 #: ehppalinux.c:335 ehppanbsd.c:335 ehppaobsd.c:335 em68hc11elf.c:324 -#: em68hc11elfb.c:324 em68hc12elf.c:324 em68hc12elfb.c:324 eppcmacos.c:1137 +#: em68hc11elfb.c:324 em68hc12elf.c:324 em68hc12elfb.c:324 eppcmacos.c:1136 msgid "%X%P: can not build stubs: %E\n" msgstr "" @@ -3859,11 +3866,11 @@ msgstr "" #. These will only be created if the output format is an arm format, #. hence we do not support linking and changing output formats at the #. same time. Use a link followed by objcopy to change output formats. -#: eaarch64cloudabi.c:348 eaarch64cloudabib.c:348 eaarch64elf.c:347 -#: eaarch64elf32.c:347 eaarch64elf32b.c:347 eaarch64elfb.c:347 -#: eaarch64fbsd.c:348 eaarch64fbsdb.c:348 eaarch64haiku.c:348 -#: eaarch64linux.c:348 eaarch64linux32.c:348 eaarch64linux32b.c:348 -#: eaarch64linuxb.c:348 eaarch64nto.c:348 earm_wince_pe.c:1523 earmelf.c:544 +#: eaarch64cloudabi.c:353 eaarch64cloudabib.c:353 eaarch64elf.c:353 +#: eaarch64elf32.c:353 eaarch64elf32b.c:353 eaarch64elfb.c:353 +#: eaarch64fbsd.c:353 eaarch64fbsdb.c:353 eaarch64haiku.c:353 +#: eaarch64linux.c:353 eaarch64linux32.c:353 eaarch64linux32b.c:353 +#: eaarch64linuxb.c:353 eaarch64nto.c:353 earm_wince_pe.c:1523 earmelf.c:544 #: earmelf_fbsd.c:544 earmelf_fuchsia.c:545 earmelf_haiku.c:545 #: earmelf_linux.c:545 earmelf_linux_eabi.c:545 earmelf_linux_fdpiceabi.c:545 #: earmelf_nacl.c:545 earmelf_nbsd.c:544 earmelf_phoenix.c:545 @@ -3883,27 +3890,30 @@ msgstr "" #: ends32belf16m.c:77 ends32belf_linux.c:77 ends32elf.c:77 ends32elf16m.c:77 #: ends32elf_linux.c:77 escore3_elf.c:82 escore7_elf.c:82 eshpe.c:1523 #: ev850.c:94 ev850_rh850.c:94 -msgid "%F%P: error: cannot change output format whilst linking %s binaries\n" -msgstr "" - -#: eaarch64cloudabi.c:397 eaarch64cloudabi.c:457 eaarch64cloudabib.c:397 -#: eaarch64cloudabib.c:457 eaarch64elf.c:396 eaarch64elf.c:456 -#: eaarch64elf32.c:396 eaarch64elf32.c:456 eaarch64elf32b.c:396 -#: eaarch64elf32b.c:456 eaarch64elfb.c:396 eaarch64elfb.c:456 -#: eaarch64fbsd.c:397 eaarch64fbsd.c:457 eaarch64fbsdb.c:397 -#: eaarch64fbsdb.c:457 eaarch64haiku.c:397 eaarch64haiku.c:457 -#: eaarch64linux.c:397 eaarch64linux.c:457 eaarch64linux32.c:397 -#: eaarch64linux32.c:457 eaarch64linux32b.c:397 eaarch64linux32b.c:457 -#: eaarch64linuxb.c:397 eaarch64linuxb.c:457 eaarch64nto.c:397 -#: eaarch64nto.c:457 +msgid "%P: error: cannot change output format whilst linking %s binaries\n" +msgstr "" + +#: eaarch64cloudabi.c:403 eaarch64cloudabi.c:463 eaarch64cloudabi.c:487 +#: eaarch64cloudabib.c:403 eaarch64cloudabib.c:463 eaarch64cloudabib.c:487 +#: eaarch64elf.c:403 eaarch64elf.c:463 eaarch64elf.c:487 eaarch64elf32.c:403 +#: eaarch64elf32.c:463 eaarch64elf32.c:487 eaarch64elf32b.c:403 +#: eaarch64elf32b.c:463 eaarch64elf32b.c:487 eaarch64elfb.c:403 +#: eaarch64elfb.c:463 eaarch64elfb.c:487 eaarch64fbsd.c:403 eaarch64fbsd.c:463 +#: eaarch64fbsd.c:487 eaarch64fbsdb.c:403 eaarch64fbsdb.c:463 +#: eaarch64fbsdb.c:487 eaarch64haiku.c:403 eaarch64haiku.c:463 +#: eaarch64haiku.c:487 eaarch64linux.c:403 eaarch64linux.c:463 +#: eaarch64linux.c:487 eaarch64linux32.c:403 eaarch64linux32.c:463 +#: eaarch64linux32.c:487 eaarch64linux32b.c:403 eaarch64linux32b.c:463 +#: eaarch64linux32b.c:487 eaarch64linuxb.c:403 eaarch64linuxb.c:463 +#: eaarch64linuxb.c:487 eaarch64nto.c:403 eaarch64nto.c:463 eaarch64nto.c:487 msgid "%X%P: error: unrecognized value '-z %s'\n" msgstr "" -#: eaarch64cloudabi.c:713 eaarch64cloudabib.c:713 eaarch64elf.c:712 -#: eaarch64elf32.c:712 eaarch64elf32b.c:712 eaarch64elfb.c:712 -#: eaarch64fbsd.c:713 eaarch64fbsdb.c:713 eaarch64haiku.c:713 -#: eaarch64linux.c:713 eaarch64linux32.c:713 eaarch64linux32b.c:713 -#: eaarch64linuxb.c:713 eaarch64nto.c:875 earcelf.c:233 earclinux.c:324 +#: eaarch64cloudabi.c:744 eaarch64cloudabib.c:744 eaarch64elf.c:744 +#: eaarch64elf32.c:744 eaarch64elf32b.c:744 eaarch64elfb.c:744 +#: eaarch64fbsd.c:744 eaarch64fbsdb.c:744 eaarch64haiku.c:744 +#: eaarch64linux.c:744 eaarch64linux32.c:744 eaarch64linux32b.c:744 +#: eaarch64linuxb.c:744 eaarch64nto.c:906 earcelf.c:233 earclinux.c:324 #: earclinux_nps.c:324 earcv2elf.c:212 earcv2elfx.c:212 earmelf.c:848 #: earmelf_fbsd.c:848 earmelf_fuchsia.c:849 earmelf_haiku.c:849 #: earmelf_linux.c:849 earmelf_linux_eabi.c:849 earmelf_linux_fdpiceabi.c:849 @@ -3918,16 +3928,16 @@ msgstr "" #: eavrxmega6.c:428 eavrxmega7.c:428 ecriself.c:237 ecrislinux.c:284 #: ecskyelf.c:476 ecskyelf_linux.c:563 ed10velf.c:212 eelf32_sparc.c:324 #: eelf32_sparc_sol2.c:456 eelf32_sparc_vxworks.c:356 eelf32_spu.c:932 -#: eelf32_tic6x_be.c:415 eelf32_tic6x_elf_be.c:415 eelf32_tic6x_elf_le.c:415 -#: eelf32_tic6x_le.c:415 eelf32_tic6x_linux_be.c:415 -#: eelf32_tic6x_linux_le.c:415 eelf32_x86_64.c:8364 eelf32am33lin.c:283 +#: eelf32_tic6x_be.c:413 eelf32_tic6x_elf_be.c:413 eelf32_tic6x_elf_le.c:413 +#: eelf32_tic6x_le.c:413 eelf32_tic6x_linux_be.c:413 +#: eelf32_tic6x_linux_le.c:413 eelf32_x86_64.c:8396 eelf32am33lin.c:283 #: eelf32b4300.c:528 eelf32bfin.c:297 eelf32bfinfd.c:337 eelf32bmip.c:528 #: eelf32bmipn32.c:542 eelf32briscv.c:402 eelf32briscv_ilp32.c:402 #: eelf32briscv_ilp32f.c:402 eelf32bsmip.c:542 eelf32btsmip.c:528 #: eelf32btsmip_fbsd.c:528 eelf32btsmipn32.c:528 eelf32btsmipn32_fbsd.c:528 #: eelf32cr16.c:362 eelf32crx.c:249 eelf32ebmip.c:528 eelf32ebmipvxworks.c:559 #: eelf32elmip.c:528 eelf32elmipvxworks.c:559 eelf32epiphany.c:237 -#: eelf32epiphany_4x4.c:214 eelf32frvfd.c:323 eelf32ip2k.c:237 eelf32kvx.c:549 +#: eelf32epiphany_4x4.c:214 eelf32frvfd.c:323 eelf32ip2k.c:237 eelf32kvx.c:548 #: eelf32l4300.c:528 eelf32lm32.c:237 eelf32lm32fd.c:323 eelf32lmip.c:528 #: eelf32loongarch.c:380 eelf32lppc.c:565 eelf32lppclinux.c:565 #: eelf32lppcnto.c:565 eelf32lppcsim.c:565 eelf32lr5900.c:482 @@ -3944,22 +3954,22 @@ msgstr "" #: eelf32tilegx.c:324 eelf32tilegx_be.c:324 eelf32tilepro.c:324 #: eelf32vax.c:283 eelf32visium.c:212 eelf32xstormy16.c:223 #: eelf32xtensa.c:2227 eelf32z80.c:239 eelf64_aix.c:283 eelf64_ia64.c:352 -#: eelf64_ia64_fbsd.c:352 eelf64_s390.c:421 eelf64_sparc.c:324 -#: eelf64_sparc_fbsd.c:324 eelf64_sparc_sol2.c:456 eelf64alpha.c:412 -#: eelf64alpha_fbsd.c:412 eelf64alpha_nbsd.c:412 eelf64bmip.c:542 +#: eelf64_ia64_fbsd.c:352 eelf64_s390.c:426 eelf64_sparc.c:324 +#: eelf64_sparc_fbsd.c:324 eelf64_sparc_sol2.c:456 eelf64alpha.c:388 +#: eelf64alpha_fbsd.c:388 eelf64alpha_nbsd.c:388 eelf64bmip.c:542 #: eelf64bpf.c:212 eelf64briscv.c:402 eelf64briscv_lp64.c:402 #: eelf64briscv_lp64f.c:402 eelf64btsmip.c:528 eelf64btsmip_fbsd.c:528 -#: eelf64hppa.c:233 eelf64kvx.c:549 eelf64kvx_linux.c:586 -#: eelf64loongarch.c:380 eelf64lppc.c:999 eelf64lppc_fbsd.c:999 +#: eelf64hppa.c:233 eelf64kvx.c:548 eelf64kvx_linux.c:586 +#: eelf64loongarch.c:380 eelf64lppc.c:1000 eelf64lppc_fbsd.c:1000 #: eelf64lriscv.c:402 eelf64lriscv_lp64.c:402 eelf64lriscv_lp64f.c:402 -#: eelf64ltsmip.c:528 eelf64ltsmip_fbsd.c:528 eelf64mmix.c:394 eelf64ppc.c:999 -#: eelf64ppc_fbsd.c:999 eelf64rdos.c:345 eelf64tilegx.c:324 +#: eelf64ltsmip.c:528 eelf64ltsmip_fbsd.c:528 eelf64mmix.c:391 +#: eelf64ppc.c:1000 eelf64ppc_fbsd.c:1000 eelf64rdos.c:377 eelf64tilegx.c:324 #: eelf64tilegx_be.c:324 eelf_i386.c:7822 eelf_i386_be.c:307 #: eelf_i386_fbsd.c:354 eelf_i386_haiku.c:354 eelf_i386_ldso.c:314 #: eelf_i386_sol2.c:486 eelf_i386_vxworks.c:380 eelf_iamcu.c:354 -#: eelf_mipsel_haiku.c:528 eelf_s390.c:324 eelf_x86_64.c:8364 -#: eelf_x86_64_cloudabi.c:362 eelf_x86_64_fbsd.c:362 eelf_x86_64_haiku.c:362 -#: eelf_x86_64_sol2.c:494 eh8300elf.c:237 eh8300elf_linux.c:237 +#: eelf_mipsel_haiku.c:528 eelf_s390.c:324 eelf_x86_64.c:8396 +#: eelf_x86_64_cloudabi.c:394 eelf_x86_64_fbsd.c:394 eelf_x86_64_haiku.c:394 +#: eelf_x86_64_sol2.c:526 eh8300elf.c:237 eh8300elf_linux.c:237 #: eh8300helf.c:237 eh8300helf_linux.c:237 eh8300hnelf.c:237 eh8300self.c:237 #: eh8300self_linux.c:237 eh8300snelf.c:237 eh8300sxelf.c:237 #: eh8300sxelf_linux.c:237 eh8300sxnelf.c:237 ehppa64linux.c:283 @@ -3975,15 +3985,14 @@ msgstr "" #: eshelf_vxworks.c:315 eshlelf.c:283 eshlelf_fd.c:324 eshlelf_linux.c:324 #: eshlelf_nbsd.c:283 eshlelf_nto.c:283 eshlelf_vxworks.c:315 ev850.c:259 #: ev850_rh850.c:259 -msgid "" -"%F%P: --compress-debug-sections=zstd: ld is not built with zstd support\n" +msgid "%P: --compress-debug-sections=zstd: ld is not built with zstd support\n" msgstr "" -#: eaarch64cloudabi.c:718 eaarch64cloudabib.c:718 eaarch64elf.c:717 -#: eaarch64elf32.c:717 eaarch64elf32b.c:717 eaarch64elfb.c:717 -#: eaarch64fbsd.c:718 eaarch64fbsdb.c:718 eaarch64haiku.c:718 -#: eaarch64linux.c:718 eaarch64linux32.c:718 eaarch64linux32b.c:718 -#: eaarch64linuxb.c:718 eaarch64nto.c:880 earcelf.c:238 earclinux.c:329 +#: eaarch64cloudabi.c:749 eaarch64cloudabib.c:749 eaarch64elf.c:749 +#: eaarch64elf32.c:749 eaarch64elf32b.c:749 eaarch64elfb.c:749 +#: eaarch64fbsd.c:749 eaarch64fbsdb.c:749 eaarch64haiku.c:749 +#: eaarch64linux.c:749 eaarch64linux32.c:749 eaarch64linux32b.c:749 +#: eaarch64linuxb.c:749 eaarch64nto.c:911 earcelf.c:238 earclinux.c:329 #: earclinux_nps.c:329 earcv2elf.c:217 earcv2elfx.c:217 earmelf.c:853 #: earmelf_fbsd.c:853 earmelf_fuchsia.c:854 earmelf_haiku.c:854 #: earmelf_linux.c:854 earmelf_linux_eabi.c:854 earmelf_linux_fdpiceabi.c:854 @@ -3998,16 +4007,16 @@ msgstr "" #: eavrxmega6.c:433 eavrxmega7.c:433 ecriself.c:242 ecrislinux.c:289 #: ecskyelf.c:481 ecskyelf_linux.c:568 ed10velf.c:217 eelf32_sparc.c:329 #: eelf32_sparc_sol2.c:461 eelf32_sparc_vxworks.c:361 eelf32_spu.c:937 -#: eelf32_tic6x_be.c:420 eelf32_tic6x_elf_be.c:420 eelf32_tic6x_elf_le.c:420 -#: eelf32_tic6x_le.c:420 eelf32_tic6x_linux_be.c:420 -#: eelf32_tic6x_linux_le.c:420 eelf32_x86_64.c:8369 eelf32am33lin.c:288 +#: eelf32_tic6x_be.c:418 eelf32_tic6x_elf_be.c:418 eelf32_tic6x_elf_le.c:418 +#: eelf32_tic6x_le.c:418 eelf32_tic6x_linux_be.c:418 +#: eelf32_tic6x_linux_le.c:418 eelf32_x86_64.c:8401 eelf32am33lin.c:288 #: eelf32b4300.c:533 eelf32bfin.c:302 eelf32bfinfd.c:342 eelf32bmip.c:533 #: eelf32bmipn32.c:547 eelf32briscv.c:407 eelf32briscv_ilp32.c:407 #: eelf32briscv_ilp32f.c:407 eelf32bsmip.c:547 eelf32btsmip.c:533 #: eelf32btsmip_fbsd.c:533 eelf32btsmipn32.c:533 eelf32btsmipn32_fbsd.c:533 #: eelf32cr16.c:367 eelf32crx.c:254 eelf32ebmip.c:533 eelf32ebmipvxworks.c:564 #: eelf32elmip.c:533 eelf32elmipvxworks.c:564 eelf32epiphany.c:242 -#: eelf32epiphany_4x4.c:219 eelf32frvfd.c:328 eelf32ip2k.c:242 eelf32kvx.c:554 +#: eelf32epiphany_4x4.c:219 eelf32frvfd.c:328 eelf32ip2k.c:242 eelf32kvx.c:553 #: eelf32l4300.c:533 eelf32lm32.c:242 eelf32lm32fd.c:328 eelf32lmip.c:533 #: eelf32loongarch.c:385 eelf32lppc.c:570 eelf32lppclinux.c:570 #: eelf32lppcnto.c:570 eelf32lppcsim.c:570 eelf32lr5900.c:487 @@ -4024,22 +4033,22 @@ msgstr "" #: eelf32tilegx.c:329 eelf32tilegx_be.c:329 eelf32tilepro.c:329 #: eelf32vax.c:288 eelf32visium.c:217 eelf32xstormy16.c:228 #: eelf32xtensa.c:2232 eelf32z80.c:244 eelf64_aix.c:288 eelf64_ia64.c:357 -#: eelf64_ia64_fbsd.c:357 eelf64_s390.c:426 eelf64_sparc.c:329 -#: eelf64_sparc_fbsd.c:329 eelf64_sparc_sol2.c:461 eelf64alpha.c:417 -#: eelf64alpha_fbsd.c:417 eelf64alpha_nbsd.c:417 eelf64bmip.c:547 +#: eelf64_ia64_fbsd.c:357 eelf64_s390.c:431 eelf64_sparc.c:329 +#: eelf64_sparc_fbsd.c:329 eelf64_sparc_sol2.c:461 eelf64alpha.c:393 +#: eelf64alpha_fbsd.c:393 eelf64alpha_nbsd.c:393 eelf64bmip.c:547 #: eelf64bpf.c:217 eelf64briscv.c:407 eelf64briscv_lp64.c:407 #: eelf64briscv_lp64f.c:407 eelf64btsmip.c:533 eelf64btsmip_fbsd.c:533 -#: eelf64hppa.c:238 eelf64kvx.c:554 eelf64kvx_linux.c:591 -#: eelf64loongarch.c:385 eelf64lppc.c:1004 eelf64lppc_fbsd.c:1004 +#: eelf64hppa.c:238 eelf64kvx.c:553 eelf64kvx_linux.c:591 +#: eelf64loongarch.c:385 eelf64lppc.c:1005 eelf64lppc_fbsd.c:1005 #: eelf64lriscv.c:407 eelf64lriscv_lp64.c:407 eelf64lriscv_lp64f.c:407 -#: eelf64ltsmip.c:533 eelf64ltsmip_fbsd.c:533 eelf64mmix.c:399 -#: eelf64ppc.c:1004 eelf64ppc_fbsd.c:1004 eelf64rdos.c:350 eelf64tilegx.c:329 +#: eelf64ltsmip.c:533 eelf64ltsmip_fbsd.c:533 eelf64mmix.c:396 +#: eelf64ppc.c:1005 eelf64ppc_fbsd.c:1005 eelf64rdos.c:382 eelf64tilegx.c:329 #: eelf64tilegx_be.c:329 eelf_i386.c:7827 eelf_i386_be.c:312 #: eelf_i386_fbsd.c:359 eelf_i386_haiku.c:359 eelf_i386_ldso.c:319 #: eelf_i386_sol2.c:491 eelf_i386_vxworks.c:385 eelf_iamcu.c:359 -#: eelf_mipsel_haiku.c:533 eelf_s390.c:329 eelf_x86_64.c:8369 -#: eelf_x86_64_cloudabi.c:367 eelf_x86_64_fbsd.c:367 eelf_x86_64_haiku.c:367 -#: eelf_x86_64_sol2.c:499 eh8300elf.c:242 eh8300elf_linux.c:242 +#: eelf_mipsel_haiku.c:533 eelf_s390.c:329 eelf_x86_64.c:8401 +#: eelf_x86_64_cloudabi.c:399 eelf_x86_64_fbsd.c:399 eelf_x86_64_haiku.c:399 +#: eelf_x86_64_sol2.c:531 eh8300elf.c:242 eh8300elf_linux.c:242 #: eh8300helf.c:242 eh8300helf_linux.c:242 eh8300hnelf.c:242 eh8300self.c:242 #: eh8300self_linux.c:242 eh8300snelf.c:242 eh8300sxelf.c:242 #: eh8300sxelf_linux.c:242 eh8300sxnelf.c:242 ehppa64linux.c:288 @@ -4055,14 +4064,14 @@ msgstr "" #: eshelf_vxworks.c:320 eshlelf.c:288 eshlelf_fd.c:329 eshlelf_linux.c:329 #: eshlelf_nbsd.c:288 eshlelf_nto.c:288 eshlelf_vxworks.c:320 ev850.c:264 #: ev850_rh850.c:264 -msgid "%F%P: invalid --compress-debug-sections option: `%s'\n" +msgid "%P: invalid --compress-debug-sections option: `%s'\n" msgstr "" -#: eaarch64cloudabi.c:776 eaarch64cloudabib.c:776 eaarch64elf.c:775 -#: eaarch64elf32.c:775 eaarch64elf32b.c:775 eaarch64elfb.c:775 -#: eaarch64fbsd.c:776 eaarch64fbsdb.c:776 eaarch64haiku.c:776 -#: eaarch64linux.c:776 eaarch64linux32.c:776 eaarch64linux32b.c:776 -#: eaarch64linuxb.c:776 eaarch64nto.c:938 earcelf.c:296 earclinux.c:387 +#: eaarch64cloudabi.c:807 eaarch64cloudabib.c:807 eaarch64elf.c:807 +#: eaarch64elf32.c:807 eaarch64elf32b.c:807 eaarch64elfb.c:807 +#: eaarch64fbsd.c:807 eaarch64fbsdb.c:807 eaarch64haiku.c:807 +#: eaarch64linux.c:807 eaarch64linux32.c:807 eaarch64linux32b.c:807 +#: eaarch64linuxb.c:807 eaarch64nto.c:969 earcelf.c:296 earclinux.c:387 #: earclinux_nps.c:387 earmelf.c:911 earmelf_fbsd.c:911 earmelf_fuchsia.c:912 #: earmelf_haiku.c:912 earmelf_linux.c:912 earmelf_linux_eabi.c:912 #: earmelf_linux_fdpiceabi.c:912 earmelf_nacl.c:912 earmelf_nbsd.c:911 @@ -4071,15 +4080,15 @@ msgstr "" #: earmelfb_linux_eabi.c:912 earmelfb_linux_fdpiceabi.c:912 #: earmelfb_nacl.c:912 earmelfb_nbsd.c:911 earmnto.c:871 ecrislinux.c:347 #: ecskyelf_linux.c:626 eelf32_sparc.c:387 eelf32_sparc_sol2.c:519 -#: eelf32_sparc_vxworks.c:419 eelf32_tic6x_be.c:478 eelf32_tic6x_elf_be.c:478 -#: eelf32_tic6x_elf_le.c:478 eelf32_tic6x_le.c:478 eelf32_tic6x_linux_be.c:478 -#: eelf32_tic6x_linux_le.c:478 eelf32_x86_64.c:8427 eelf32am33lin.c:346 +#: eelf32_sparc_vxworks.c:419 eelf32_tic6x_be.c:476 eelf32_tic6x_elf_be.c:476 +#: eelf32_tic6x_elf_le.c:476 eelf32_tic6x_le.c:476 eelf32_tic6x_linux_be.c:476 +#: eelf32_tic6x_linux_le.c:476 eelf32_x86_64.c:8459 eelf32am33lin.c:346 #: eelf32b4300.c:591 eelf32bfin.c:360 eelf32bfinfd.c:400 eelf32bmip.c:591 #: eelf32bmipn32.c:605 eelf32briscv.c:465 eelf32briscv_ilp32.c:465 #: eelf32briscv_ilp32f.c:465 eelf32bsmip.c:605 eelf32btsmip.c:591 #: eelf32btsmip_fbsd.c:591 eelf32btsmipn32.c:591 eelf32btsmipn32_fbsd.c:591 #: eelf32ebmip.c:591 eelf32ebmipvxworks.c:622 eelf32elmip.c:591 -#: eelf32elmipvxworks.c:622 eelf32frvfd.c:386 eelf32kvx.c:612 +#: eelf32elmipvxworks.c:622 eelf32frvfd.c:386 eelf32kvx.c:611 #: eelf32l4300.c:591 eelf32lm32fd.c:386 eelf32lmip.c:591 eelf32loongarch.c:443 #: eelf32lppc.c:628 eelf32lppclinux.c:628 eelf32lppcnto.c:628 #: eelf32lppcsim.c:628 eelf32lriscv.c:465 eelf32lriscv_ilp32.c:465 @@ -4091,21 +4100,21 @@ msgstr "" #: eelf32ppcsim.c:628 eelf32ppcvxworks.c:598 eelf32ppcwindiss.c:628 #: eelf32tilegx.c:387 eelf32tilegx_be.c:387 eelf32tilepro.c:387 #: eelf32vax.c:346 eelf32xtensa.c:2290 eelf64_aix.c:346 eelf64_ia64.c:415 -#: eelf64_ia64_fbsd.c:415 eelf64_s390.c:484 eelf64_sparc.c:387 -#: eelf64_sparc_fbsd.c:387 eelf64_sparc_sol2.c:519 eelf64alpha.c:475 -#: eelf64alpha_fbsd.c:475 eelf64alpha_nbsd.c:475 eelf64bmip.c:605 +#: eelf64_ia64_fbsd.c:415 eelf64_s390.c:489 eelf64_sparc.c:387 +#: eelf64_sparc_fbsd.c:387 eelf64_sparc_sol2.c:519 eelf64alpha.c:451 +#: eelf64alpha_fbsd.c:451 eelf64alpha_nbsd.c:451 eelf64bmip.c:605 #: eelf64briscv.c:465 eelf64briscv_lp64.c:465 eelf64briscv_lp64f.c:465 -#: eelf64btsmip.c:591 eelf64btsmip_fbsd.c:591 eelf64hppa.c:296 eelf64kvx.c:612 -#: eelf64kvx_linux.c:649 eelf64loongarch.c:443 eelf64lppc.c:1062 -#: eelf64lppc_fbsd.c:1062 eelf64lriscv.c:465 eelf64lriscv_lp64.c:465 +#: eelf64btsmip.c:591 eelf64btsmip_fbsd.c:591 eelf64hppa.c:296 eelf64kvx.c:611 +#: eelf64kvx_linux.c:649 eelf64loongarch.c:443 eelf64lppc.c:1063 +#: eelf64lppc_fbsd.c:1063 eelf64lriscv.c:465 eelf64lriscv_lp64.c:465 #: eelf64lriscv_lp64f.c:465 eelf64ltsmip.c:591 eelf64ltsmip_fbsd.c:591 -#: eelf64mmix.c:457 eelf64ppc.c:1062 eelf64ppc_fbsd.c:1062 eelf64rdos.c:408 +#: eelf64mmix.c:454 eelf64ppc.c:1063 eelf64ppc_fbsd.c:1063 eelf64rdos.c:440 #: eelf64tilegx.c:387 eelf64tilegx_be.c:387 eelf_i386.c:7885 #: eelf_i386_be.c:370 eelf_i386_fbsd.c:417 eelf_i386_haiku.c:417 #: eelf_i386_ldso.c:377 eelf_i386_sol2.c:549 eelf_i386_vxworks.c:443 -#: eelf_iamcu.c:417 eelf_mipsel_haiku.c:591 eelf_s390.c:387 eelf_x86_64.c:8427 -#: eelf_x86_64_cloudabi.c:425 eelf_x86_64_fbsd.c:425 eelf_x86_64_haiku.c:425 -#: eelf_x86_64_sol2.c:557 ehppa64linux.c:346 ehppalinux.c:666 ehppanbsd.c:666 +#: eelf_iamcu.c:417 eelf_mipsel_haiku.c:591 eelf_s390.c:387 eelf_x86_64.c:8459 +#: eelf_x86_64_cloudabi.c:457 eelf_x86_64_fbsd.c:457 eelf_x86_64_haiku.c:457 +#: eelf_x86_64_sol2.c:589 ehppa64linux.c:346 ehppalinux.c:666 ehppanbsd.c:666 #: ehppaobsd.c:666 ei386lynx.c:361 ei386moss.c:361 ei386nto.c:361 #: em32relf_linux.c:386 em32rlelf_linux.c:386 em68kelf.c:541 #: em68kelfnbsd.c:541 emn10300.c:346 ends32belf_linux.c:432 @@ -4114,14 +4123,14 @@ msgstr "" #: eshelf_uclinux.c:346 eshelf_vxworks.c:378 eshlelf.c:346 eshlelf_fd.c:387 #: eshlelf_linux.c:387 eshlelf_nbsd.c:346 eshlelf_nto.c:346 #: eshlelf_vxworks.c:378 -msgid "%F%P: invalid hash style `%s'\n" +msgid "%P: invalid hash style `%s'\n" msgstr "" -#: eaarch64cloudabi.c:793 eaarch64cloudabib.c:793 eaarch64elf.c:792 -#: eaarch64elf32.c:792 eaarch64elf32b.c:792 eaarch64elfb.c:792 -#: eaarch64fbsd.c:793 eaarch64fbsdb.c:793 eaarch64haiku.c:793 -#: eaarch64linux.c:793 eaarch64linux32.c:793 eaarch64linux32b.c:793 -#: eaarch64linuxb.c:793 eaarch64nto.c:955 earcelf.c:313 earclinux.c:404 +#: eaarch64cloudabi.c:824 eaarch64cloudabib.c:824 eaarch64elf.c:824 +#: eaarch64elf32.c:824 eaarch64elf32b.c:824 eaarch64elfb.c:824 +#: eaarch64fbsd.c:824 eaarch64fbsdb.c:824 eaarch64haiku.c:824 +#: eaarch64linux.c:824 eaarch64linux32.c:824 eaarch64linux32b.c:824 +#: eaarch64linuxb.c:824 eaarch64nto.c:986 earcelf.c:313 earclinux.c:404 #: earclinux_nps.c:404 earcv2elf.c:241 earcv2elfx.c:241 earmelf.c:928 #: earmelf_fbsd.c:928 earmelf_fuchsia.c:929 earmelf_haiku.c:929 #: earmelf_linux.c:929 earmelf_linux_eabi.c:929 earmelf_linux_fdpiceabi.c:929 @@ -4136,16 +4145,16 @@ msgstr "" #: eavrxmega6.c:457 eavrxmega7.c:457 ecriself.c:266 ecrislinux.c:364 #: ecskyelf.c:505 ecskyelf_linux.c:643 ed10velf.c:241 eelf32_sparc.c:404 #: eelf32_sparc_sol2.c:536 eelf32_sparc_vxworks.c:436 eelf32_spu.c:961 -#: eelf32_tic6x_be.c:495 eelf32_tic6x_elf_be.c:495 eelf32_tic6x_elf_le.c:495 -#: eelf32_tic6x_le.c:495 eelf32_tic6x_linux_be.c:495 -#: eelf32_tic6x_linux_le.c:495 eelf32_x86_64.c:8444 eelf32am33lin.c:363 +#: eelf32_tic6x_be.c:493 eelf32_tic6x_elf_be.c:493 eelf32_tic6x_elf_le.c:493 +#: eelf32_tic6x_le.c:493 eelf32_tic6x_linux_be.c:493 +#: eelf32_tic6x_linux_le.c:493 eelf32_x86_64.c:8476 eelf32am33lin.c:363 #: eelf32b4300.c:608 eelf32bfin.c:377 eelf32bfinfd.c:417 eelf32bmip.c:608 #: eelf32bmipn32.c:622 eelf32briscv.c:482 eelf32briscv_ilp32.c:482 #: eelf32briscv_ilp32f.c:482 eelf32bsmip.c:622 eelf32btsmip.c:608 #: eelf32btsmip_fbsd.c:608 eelf32btsmipn32.c:608 eelf32btsmipn32_fbsd.c:608 #: eelf32cr16.c:391 eelf32crx.c:278 eelf32ebmip.c:608 eelf32ebmipvxworks.c:639 #: eelf32elmip.c:608 eelf32elmipvxworks.c:639 eelf32epiphany.c:266 -#: eelf32epiphany_4x4.c:243 eelf32frvfd.c:403 eelf32ip2k.c:266 eelf32kvx.c:629 +#: eelf32epiphany_4x4.c:243 eelf32frvfd.c:403 eelf32ip2k.c:266 eelf32kvx.c:628 #: eelf32l4300.c:608 eelf32lm32.c:266 eelf32lm32fd.c:403 eelf32lmip.c:608 #: eelf32loongarch.c:460 eelf32lppc.c:645 eelf32lppclinux.c:645 #: eelf32lppcnto.c:645 eelf32lppcsim.c:645 eelf32lr5900.c:511 @@ -4162,22 +4171,22 @@ msgstr "" #: eelf32tilegx.c:404 eelf32tilegx_be.c:404 eelf32tilepro.c:404 #: eelf32vax.c:363 eelf32visium.c:241 eelf32xstormy16.c:252 #: eelf32xtensa.c:2307 eelf32z80.c:268 eelf64_aix.c:363 eelf64_ia64.c:432 -#: eelf64_ia64_fbsd.c:432 eelf64_s390.c:501 eelf64_sparc.c:404 -#: eelf64_sparc_fbsd.c:404 eelf64_sparc_sol2.c:536 eelf64alpha.c:492 -#: eelf64alpha_fbsd.c:492 eelf64alpha_nbsd.c:492 eelf64bmip.c:622 +#: eelf64_ia64_fbsd.c:432 eelf64_s390.c:506 eelf64_sparc.c:404 +#: eelf64_sparc_fbsd.c:404 eelf64_sparc_sol2.c:536 eelf64alpha.c:468 +#: eelf64alpha_fbsd.c:468 eelf64alpha_nbsd.c:468 eelf64bmip.c:622 #: eelf64bpf.c:241 eelf64briscv.c:482 eelf64briscv_lp64.c:482 #: eelf64briscv_lp64f.c:482 eelf64btsmip.c:608 eelf64btsmip_fbsd.c:608 -#: eelf64hppa.c:313 eelf64kvx.c:629 eelf64kvx_linux.c:666 -#: eelf64loongarch.c:460 eelf64lppc.c:1079 eelf64lppc_fbsd.c:1079 +#: eelf64hppa.c:313 eelf64kvx.c:628 eelf64kvx_linux.c:666 +#: eelf64loongarch.c:460 eelf64lppc.c:1080 eelf64lppc_fbsd.c:1080 #: eelf64lriscv.c:482 eelf64lriscv_lp64.c:482 eelf64lriscv_lp64f.c:482 -#: eelf64ltsmip.c:608 eelf64ltsmip_fbsd.c:608 eelf64mmix.c:474 -#: eelf64ppc.c:1079 eelf64ppc_fbsd.c:1079 eelf64rdos.c:425 eelf64tilegx.c:404 +#: eelf64ltsmip.c:608 eelf64ltsmip_fbsd.c:608 eelf64mmix.c:471 +#: eelf64ppc.c:1080 eelf64ppc_fbsd.c:1080 eelf64rdos.c:457 eelf64tilegx.c:404 #: eelf64tilegx_be.c:404 eelf_i386.c:7902 eelf_i386_be.c:387 #: eelf_i386_fbsd.c:434 eelf_i386_haiku.c:434 eelf_i386_ldso.c:394 #: eelf_i386_sol2.c:566 eelf_i386_vxworks.c:460 eelf_iamcu.c:434 -#: eelf_mipsel_haiku.c:608 eelf_s390.c:404 eelf_x86_64.c:8444 -#: eelf_x86_64_cloudabi.c:442 eelf_x86_64_fbsd.c:442 eelf_x86_64_haiku.c:442 -#: eelf_x86_64_sol2.c:574 eh8300elf.c:266 eh8300elf_linux.c:266 +#: eelf_mipsel_haiku.c:608 eelf_s390.c:404 eelf_x86_64.c:8476 +#: eelf_x86_64_cloudabi.c:474 eelf_x86_64_fbsd.c:474 eelf_x86_64_haiku.c:474 +#: eelf_x86_64_sol2.c:606 eh8300elf.c:266 eh8300elf_linux.c:266 #: eh8300helf.c:266 eh8300helf_linux.c:266 eh8300hnelf.c:266 eh8300self.c:266 #: eh8300self_linux.c:266 eh8300snelf.c:266 eh8300sxelf.c:266 #: eh8300sxelf_linux.c:266 eh8300sxnelf.c:266 ehppa64linux.c:363 @@ -4193,14 +4202,14 @@ msgstr "" #: eshelf_vxworks.c:395 eshlelf.c:363 eshlelf_fd.c:404 eshlelf_linux.c:404 #: eshlelf_nbsd.c:363 eshlelf_nto.c:363 eshlelf_vxworks.c:395 ev850.c:288 #: ev850_rh850.c:288 -msgid "%F%P: invalid maximum page size `%s'\n" +msgid "%P: invalid maximum page size `%s'\n" msgstr "" -#: eaarch64cloudabi.c:803 eaarch64cloudabib.c:803 eaarch64elf.c:802 -#: eaarch64elf32.c:802 eaarch64elf32b.c:802 eaarch64elfb.c:802 -#: eaarch64fbsd.c:803 eaarch64fbsdb.c:803 eaarch64haiku.c:803 -#: eaarch64linux.c:803 eaarch64linux32.c:803 eaarch64linux32b.c:803 -#: eaarch64linuxb.c:803 eaarch64nto.c:965 earcelf.c:323 earclinux.c:414 +#: eaarch64cloudabi.c:834 eaarch64cloudabib.c:834 eaarch64elf.c:834 +#: eaarch64elf32.c:834 eaarch64elf32b.c:834 eaarch64elfb.c:834 +#: eaarch64fbsd.c:834 eaarch64fbsdb.c:834 eaarch64haiku.c:834 +#: eaarch64linux.c:834 eaarch64linux32.c:834 eaarch64linux32b.c:834 +#: eaarch64linuxb.c:834 eaarch64nto.c:996 earcelf.c:323 earclinux.c:414 #: earclinux_nps.c:414 earcv2elf.c:251 earcv2elfx.c:251 earmelf.c:938 #: earmelf_fbsd.c:938 earmelf_fuchsia.c:939 earmelf_haiku.c:939 #: earmelf_linux.c:939 earmelf_linux_eabi.c:939 earmelf_linux_fdpiceabi.c:939 @@ -4215,16 +4224,16 @@ msgstr "" #: eavrxmega6.c:467 eavrxmega7.c:467 ecriself.c:276 ecrislinux.c:374 #: ecskyelf.c:515 ecskyelf_linux.c:653 ed10velf.c:251 eelf32_sparc.c:414 #: eelf32_sparc_sol2.c:546 eelf32_sparc_vxworks.c:446 eelf32_spu.c:971 -#: eelf32_tic6x_be.c:505 eelf32_tic6x_elf_be.c:505 eelf32_tic6x_elf_le.c:505 -#: eelf32_tic6x_le.c:505 eelf32_tic6x_linux_be.c:505 -#: eelf32_tic6x_linux_le.c:505 eelf32_x86_64.c:8454 eelf32am33lin.c:373 +#: eelf32_tic6x_be.c:503 eelf32_tic6x_elf_be.c:503 eelf32_tic6x_elf_le.c:503 +#: eelf32_tic6x_le.c:503 eelf32_tic6x_linux_be.c:503 +#: eelf32_tic6x_linux_le.c:503 eelf32_x86_64.c:8486 eelf32am33lin.c:373 #: eelf32b4300.c:618 eelf32bfin.c:387 eelf32bfinfd.c:427 eelf32bmip.c:618 #: eelf32bmipn32.c:632 eelf32briscv.c:492 eelf32briscv_ilp32.c:492 #: eelf32briscv_ilp32f.c:492 eelf32bsmip.c:632 eelf32btsmip.c:618 #: eelf32btsmip_fbsd.c:618 eelf32btsmipn32.c:618 eelf32btsmipn32_fbsd.c:618 #: eelf32cr16.c:401 eelf32crx.c:288 eelf32ebmip.c:618 eelf32ebmipvxworks.c:649 #: eelf32elmip.c:618 eelf32elmipvxworks.c:649 eelf32epiphany.c:276 -#: eelf32epiphany_4x4.c:253 eelf32frvfd.c:413 eelf32ip2k.c:276 eelf32kvx.c:639 +#: eelf32epiphany_4x4.c:253 eelf32frvfd.c:413 eelf32ip2k.c:276 eelf32kvx.c:638 #: eelf32l4300.c:618 eelf32lm32.c:276 eelf32lm32fd.c:413 eelf32lmip.c:618 #: eelf32loongarch.c:470 eelf32lppc.c:655 eelf32lppclinux.c:655 #: eelf32lppcnto.c:655 eelf32lppcsim.c:655 eelf32lr5900.c:521 @@ -4241,22 +4250,22 @@ msgstr "" #: eelf32tilegx.c:414 eelf32tilegx_be.c:414 eelf32tilepro.c:414 #: eelf32vax.c:373 eelf32visium.c:251 eelf32xstormy16.c:262 #: eelf32xtensa.c:2317 eelf32z80.c:278 eelf64_aix.c:373 eelf64_ia64.c:442 -#: eelf64_ia64_fbsd.c:442 eelf64_s390.c:511 eelf64_sparc.c:414 -#: eelf64_sparc_fbsd.c:414 eelf64_sparc_sol2.c:546 eelf64alpha.c:502 -#: eelf64alpha_fbsd.c:502 eelf64alpha_nbsd.c:502 eelf64bmip.c:632 +#: eelf64_ia64_fbsd.c:442 eelf64_s390.c:516 eelf64_sparc.c:414 +#: eelf64_sparc_fbsd.c:414 eelf64_sparc_sol2.c:546 eelf64alpha.c:478 +#: eelf64alpha_fbsd.c:478 eelf64alpha_nbsd.c:478 eelf64bmip.c:632 #: eelf64bpf.c:251 eelf64briscv.c:492 eelf64briscv_lp64.c:492 #: eelf64briscv_lp64f.c:492 eelf64btsmip.c:618 eelf64btsmip_fbsd.c:618 -#: eelf64hppa.c:323 eelf64kvx.c:639 eelf64kvx_linux.c:676 -#: eelf64loongarch.c:470 eelf64lppc.c:1089 eelf64lppc_fbsd.c:1089 +#: eelf64hppa.c:323 eelf64kvx.c:638 eelf64kvx_linux.c:676 +#: eelf64loongarch.c:470 eelf64lppc.c:1090 eelf64lppc_fbsd.c:1090 #: eelf64lriscv.c:492 eelf64lriscv_lp64.c:492 eelf64lriscv_lp64f.c:492 -#: eelf64ltsmip.c:618 eelf64ltsmip_fbsd.c:618 eelf64mmix.c:484 -#: eelf64ppc.c:1089 eelf64ppc_fbsd.c:1089 eelf64rdos.c:435 eelf64tilegx.c:414 +#: eelf64ltsmip.c:618 eelf64ltsmip_fbsd.c:618 eelf64mmix.c:481 +#: eelf64ppc.c:1090 eelf64ppc_fbsd.c:1090 eelf64rdos.c:467 eelf64tilegx.c:414 #: eelf64tilegx_be.c:414 eelf_i386.c:7912 eelf_i386_be.c:397 #: eelf_i386_fbsd.c:444 eelf_i386_haiku.c:444 eelf_i386_ldso.c:404 #: eelf_i386_sol2.c:576 eelf_i386_vxworks.c:470 eelf_iamcu.c:444 -#: eelf_mipsel_haiku.c:618 eelf_s390.c:414 eelf_x86_64.c:8454 -#: eelf_x86_64_cloudabi.c:452 eelf_x86_64_fbsd.c:452 eelf_x86_64_haiku.c:452 -#: eelf_x86_64_sol2.c:584 eh8300elf.c:276 eh8300elf_linux.c:276 +#: eelf_mipsel_haiku.c:618 eelf_s390.c:414 eelf_x86_64.c:8486 +#: eelf_x86_64_cloudabi.c:484 eelf_x86_64_fbsd.c:484 eelf_x86_64_haiku.c:484 +#: eelf_x86_64_sol2.c:616 eh8300elf.c:276 eh8300elf_linux.c:276 #: eh8300helf.c:276 eh8300helf_linux.c:276 eh8300hnelf.c:276 eh8300self.c:276 #: eh8300self_linux.c:276 eh8300snelf.c:276 eh8300sxelf.c:276 #: eh8300sxelf_linux.c:276 eh8300sxnelf.c:276 ehppa64linux.c:373 @@ -4272,14 +4281,14 @@ msgstr "" #: eshelf_vxworks.c:405 eshlelf.c:373 eshlelf_fd.c:414 eshlelf_linux.c:414 #: eshlelf_nbsd.c:373 eshlelf_nto.c:373 eshlelf_vxworks.c:405 ev850.c:298 #: ev850_rh850.c:298 -msgid "%F%P: invalid common page size `%s'\n" +msgid "%P: invalid common page size `%s'\n" msgstr "" -#: eaarch64cloudabi.c:812 eaarch64cloudabib.c:812 eaarch64elf.c:811 -#: eaarch64elf32.c:811 eaarch64elf32b.c:811 eaarch64elfb.c:811 -#: eaarch64fbsd.c:812 eaarch64fbsdb.c:812 eaarch64haiku.c:812 -#: eaarch64linux.c:812 eaarch64linux32.c:812 eaarch64linux32b.c:812 -#: eaarch64linuxb.c:812 eaarch64nto.c:974 eaarch64nto.c:1157 earcelf.c:332 +#: eaarch64cloudabi.c:843 eaarch64cloudabib.c:843 eaarch64elf.c:843 +#: eaarch64elf32.c:843 eaarch64elf32b.c:843 eaarch64elfb.c:843 +#: eaarch64fbsd.c:843 eaarch64fbsdb.c:843 eaarch64haiku.c:843 +#: eaarch64linux.c:843 eaarch64linux32.c:843 eaarch64linux32b.c:843 +#: eaarch64linuxb.c:843 eaarch64nto.c:1005 eaarch64nto.c:1192 earcelf.c:332 #: earclinux.c:423 earclinux_nps.c:423 earcv2elf.c:260 earcv2elfx.c:260 #: earmelf.c:947 earmelf_fbsd.c:947 earmelf_fuchsia.c:948 earmelf_haiku.c:948 #: earmelf_linux.c:948 earmelf_linux_eabi.c:948 earmelf_linux_fdpiceabi.c:948 @@ -4294,16 +4303,16 @@ msgstr "" #: eavrxmega6.c:476 eavrxmega7.c:476 ecriself.c:285 ecrislinux.c:383 #: ecskyelf.c:524 ecskyelf_linux.c:662 ed10velf.c:260 eelf32_sparc.c:423 #: eelf32_sparc_sol2.c:555 eelf32_sparc_vxworks.c:455 eelf32_spu.c:980 -#: eelf32_tic6x_be.c:514 eelf32_tic6x_elf_be.c:514 eelf32_tic6x_elf_le.c:514 -#: eelf32_tic6x_le.c:514 eelf32_tic6x_linux_be.c:514 -#: eelf32_tic6x_linux_le.c:514 eelf32_x86_64.c:8463 eelf32am33lin.c:382 +#: eelf32_tic6x_be.c:512 eelf32_tic6x_elf_be.c:512 eelf32_tic6x_elf_le.c:512 +#: eelf32_tic6x_le.c:512 eelf32_tic6x_linux_be.c:512 +#: eelf32_tic6x_linux_le.c:512 eelf32_x86_64.c:8495 eelf32am33lin.c:382 #: eelf32b4300.c:627 eelf32bfin.c:396 eelf32bfinfd.c:436 eelf32bmip.c:627 #: eelf32bmipn32.c:641 eelf32briscv.c:501 eelf32briscv_ilp32.c:501 #: eelf32briscv_ilp32f.c:501 eelf32bsmip.c:641 eelf32btsmip.c:627 #: eelf32btsmip_fbsd.c:627 eelf32btsmipn32.c:627 eelf32btsmipn32_fbsd.c:627 #: eelf32cr16.c:410 eelf32crx.c:297 eelf32ebmip.c:627 eelf32ebmipvxworks.c:658 #: eelf32elmip.c:627 eelf32elmipvxworks.c:658 eelf32epiphany.c:285 -#: eelf32epiphany_4x4.c:262 eelf32frvfd.c:422 eelf32ip2k.c:285 eelf32kvx.c:648 +#: eelf32epiphany_4x4.c:262 eelf32frvfd.c:422 eelf32ip2k.c:285 eelf32kvx.c:647 #: eelf32l4300.c:627 eelf32lm32.c:285 eelf32lm32fd.c:422 eelf32lmip.c:627 #: eelf32loongarch.c:479 eelf32lppc.c:664 eelf32lppclinux.c:664 #: eelf32lppcnto.c:664 eelf32lppcsim.c:664 eelf32lr5900.c:530 @@ -4320,22 +4329,22 @@ msgstr "" #: eelf32tilegx.c:423 eelf32tilegx_be.c:423 eelf32tilepro.c:423 #: eelf32vax.c:382 eelf32visium.c:260 eelf32xstormy16.c:271 #: eelf32xtensa.c:2326 eelf32z80.c:287 eelf64_aix.c:382 eelf64_ia64.c:451 -#: eelf64_ia64_fbsd.c:451 eelf64_s390.c:520 eelf64_sparc.c:423 -#: eelf64_sparc_fbsd.c:423 eelf64_sparc_sol2.c:555 eelf64alpha.c:511 -#: eelf64alpha_fbsd.c:511 eelf64alpha_nbsd.c:511 eelf64bmip.c:641 +#: eelf64_ia64_fbsd.c:451 eelf64_s390.c:525 eelf64_sparc.c:423 +#: eelf64_sparc_fbsd.c:423 eelf64_sparc_sol2.c:555 eelf64alpha.c:487 +#: eelf64alpha_fbsd.c:487 eelf64alpha_nbsd.c:487 eelf64bmip.c:641 #: eelf64bpf.c:260 eelf64briscv.c:501 eelf64briscv_lp64.c:501 #: eelf64briscv_lp64f.c:501 eelf64btsmip.c:627 eelf64btsmip_fbsd.c:627 -#: eelf64hppa.c:332 eelf64kvx.c:648 eelf64kvx_linux.c:685 -#: eelf64loongarch.c:479 eelf64lppc.c:1098 eelf64lppc_fbsd.c:1098 +#: eelf64hppa.c:332 eelf64kvx.c:647 eelf64kvx_linux.c:685 +#: eelf64loongarch.c:479 eelf64lppc.c:1099 eelf64lppc_fbsd.c:1099 #: eelf64lriscv.c:501 eelf64lriscv_lp64.c:501 eelf64lriscv_lp64f.c:501 -#: eelf64ltsmip.c:627 eelf64ltsmip_fbsd.c:627 eelf64mmix.c:493 -#: eelf64ppc.c:1098 eelf64ppc_fbsd.c:1098 eelf64rdos.c:444 eelf64tilegx.c:423 +#: eelf64ltsmip.c:627 eelf64ltsmip_fbsd.c:627 eelf64mmix.c:490 +#: eelf64ppc.c:1099 eelf64ppc_fbsd.c:1099 eelf64rdos.c:476 eelf64tilegx.c:423 #: eelf64tilegx_be.c:423 eelf_i386.c:7921 eelf_i386_be.c:406 #: eelf_i386_fbsd.c:453 eelf_i386_haiku.c:453 eelf_i386_ldso.c:413 #: eelf_i386_sol2.c:585 eelf_i386_vxworks.c:479 eelf_iamcu.c:453 -#: eelf_mipsel_haiku.c:627 eelf_s390.c:423 eelf_x86_64.c:8463 -#: eelf_x86_64_cloudabi.c:461 eelf_x86_64_fbsd.c:461 eelf_x86_64_haiku.c:461 -#: eelf_x86_64_sol2.c:593 eh8300elf.c:285 eh8300elf_linux.c:285 +#: eelf_mipsel_haiku.c:627 eelf_s390.c:423 eelf_x86_64.c:8495 +#: eelf_x86_64_cloudabi.c:493 eelf_x86_64_fbsd.c:493 eelf_x86_64_haiku.c:493 +#: eelf_x86_64_sol2.c:625 eh8300elf.c:285 eh8300elf_linux.c:285 #: eh8300helf.c:285 eh8300helf_linux.c:285 eh8300hnelf.c:285 eh8300self.c:285 #: eh8300self_linux.c:285 eh8300snelf.c:285 eh8300sxelf.c:285 #: eh8300sxelf_linux.c:285 eh8300sxnelf.c:285 ehppa64linux.c:382 @@ -4351,14 +4360,14 @@ msgstr "" #: eshelf_vxworks.c:414 eshlelf.c:382 eshlelf_fd.c:423 eshlelf_linux.c:423 #: eshlelf_nbsd.c:382 eshlelf_nto.c:382 eshlelf_vxworks.c:414 ev850.c:307 #: ev850_rh850.c:307 -msgid "%F%P: invalid stack size `%s'\n" +msgid "%P: invalid stack size `%s'\n" msgstr "" -#: eaarch64cloudabi.c:851 eaarch64cloudabib.c:851 eaarch64elf.c:850 -#: eaarch64elf32.c:850 eaarch64elf32b.c:850 eaarch64elfb.c:850 -#: eaarch64fbsd.c:851 eaarch64fbsdb.c:851 eaarch64haiku.c:851 -#: eaarch64linux.c:851 eaarch64linux32.c:851 eaarch64linux32b.c:851 -#: eaarch64linuxb.c:851 eaarch64nto.c:1013 earcelf.c:371 earclinux.c:462 +#: eaarch64cloudabi.c:882 eaarch64cloudabib.c:882 eaarch64elf.c:882 +#: eaarch64elf32.c:882 eaarch64elf32b.c:882 eaarch64elfb.c:882 +#: eaarch64fbsd.c:882 eaarch64fbsdb.c:882 eaarch64haiku.c:882 +#: eaarch64linux.c:882 eaarch64linux32.c:882 eaarch64linux32b.c:882 +#: eaarch64linuxb.c:882 eaarch64nto.c:1044 earcelf.c:371 earclinux.c:462 #: earclinux_nps.c:462 earcv2elf.c:299 earcv2elfx.c:299 earmelf.c:986 #: earmelf_fbsd.c:986 earmelf_fuchsia.c:987 earmelf_haiku.c:987 #: earmelf_linux.c:987 earmelf_linux_eabi.c:987 earmelf_linux_fdpiceabi.c:987 @@ -4373,16 +4382,16 @@ msgstr "" #: eavrxmega6.c:515 eavrxmega7.c:515 ecriself.c:324 ecrislinux.c:422 #: ecskyelf.c:563 ecskyelf_linux.c:701 ed10velf.c:299 eelf32_sparc.c:462 #: eelf32_sparc_sol2.c:594 eelf32_sparc_vxworks.c:494 eelf32_spu.c:1019 -#: eelf32_tic6x_be.c:553 eelf32_tic6x_elf_be.c:553 eelf32_tic6x_elf_le.c:553 -#: eelf32_tic6x_le.c:553 eelf32_tic6x_linux_be.c:553 -#: eelf32_tic6x_linux_le.c:553 eelf32_x86_64.c:8502 eelf32am33lin.c:421 +#: eelf32_tic6x_be.c:551 eelf32_tic6x_elf_be.c:551 eelf32_tic6x_elf_le.c:551 +#: eelf32_tic6x_le.c:551 eelf32_tic6x_linux_be.c:551 +#: eelf32_tic6x_linux_le.c:551 eelf32_x86_64.c:8534 eelf32am33lin.c:421 #: eelf32b4300.c:666 eelf32bfin.c:435 eelf32bfinfd.c:475 eelf32bmip.c:666 #: eelf32bmipn32.c:680 eelf32briscv.c:540 eelf32briscv_ilp32.c:540 #: eelf32briscv_ilp32f.c:540 eelf32bsmip.c:680 eelf32btsmip.c:666 #: eelf32btsmip_fbsd.c:666 eelf32btsmipn32.c:666 eelf32btsmipn32_fbsd.c:666 #: eelf32cr16.c:449 eelf32crx.c:336 eelf32ebmip.c:666 eelf32ebmipvxworks.c:697 #: eelf32elmip.c:666 eelf32elmipvxworks.c:697 eelf32epiphany.c:324 -#: eelf32epiphany_4x4.c:301 eelf32frvfd.c:461 eelf32ip2k.c:324 eelf32kvx.c:687 +#: eelf32epiphany_4x4.c:301 eelf32frvfd.c:461 eelf32ip2k.c:324 eelf32kvx.c:686 #: eelf32l4300.c:666 eelf32lm32.c:324 eelf32lm32fd.c:461 eelf32lmip.c:666 #: eelf32loongarch.c:518 eelf32lppc.c:703 eelf32lppclinux.c:703 #: eelf32lppcnto.c:703 eelf32lppcsim.c:703 eelf32lr5900.c:569 @@ -4399,22 +4408,22 @@ msgstr "" #: eelf32tilegx.c:462 eelf32tilegx_be.c:462 eelf32tilepro.c:462 #: eelf32vax.c:421 eelf32visium.c:299 eelf32xstormy16.c:310 #: eelf32xtensa.c:2365 eelf32z80.c:326 eelf64_aix.c:421 eelf64_ia64.c:490 -#: eelf64_ia64_fbsd.c:490 eelf64_s390.c:559 eelf64_sparc.c:462 -#: eelf64_sparc_fbsd.c:462 eelf64_sparc_sol2.c:594 eelf64alpha.c:550 -#: eelf64alpha_fbsd.c:550 eelf64alpha_nbsd.c:550 eelf64bmip.c:680 +#: eelf64_ia64_fbsd.c:490 eelf64_s390.c:564 eelf64_sparc.c:462 +#: eelf64_sparc_fbsd.c:462 eelf64_sparc_sol2.c:594 eelf64alpha.c:526 +#: eelf64alpha_fbsd.c:526 eelf64alpha_nbsd.c:526 eelf64bmip.c:680 #: eelf64bpf.c:299 eelf64briscv.c:540 eelf64briscv_lp64.c:540 #: eelf64briscv_lp64f.c:540 eelf64btsmip.c:666 eelf64btsmip_fbsd.c:666 -#: eelf64hppa.c:371 eelf64kvx.c:687 eelf64kvx_linux.c:724 -#: eelf64loongarch.c:518 eelf64lppc.c:1137 eelf64lppc_fbsd.c:1137 +#: eelf64hppa.c:371 eelf64kvx.c:686 eelf64kvx_linux.c:724 +#: eelf64loongarch.c:518 eelf64lppc.c:1138 eelf64lppc_fbsd.c:1138 #: eelf64lriscv.c:540 eelf64lriscv_lp64.c:540 eelf64lriscv_lp64f.c:540 -#: eelf64ltsmip.c:666 eelf64ltsmip_fbsd.c:666 eelf64mmix.c:532 -#: eelf64ppc.c:1137 eelf64ppc_fbsd.c:1137 eelf64rdos.c:483 eelf64tilegx.c:462 +#: eelf64ltsmip.c:666 eelf64ltsmip_fbsd.c:666 eelf64mmix.c:529 +#: eelf64ppc.c:1138 eelf64ppc_fbsd.c:1138 eelf64rdos.c:515 eelf64tilegx.c:462 #: eelf64tilegx_be.c:462 eelf_i386.c:7960 eelf_i386_be.c:445 #: eelf_i386_fbsd.c:492 eelf_i386_haiku.c:492 eelf_i386_ldso.c:452 #: eelf_i386_sol2.c:624 eelf_i386_vxworks.c:518 eelf_iamcu.c:492 -#: eelf_mipsel_haiku.c:666 eelf_s390.c:462 eelf_x86_64.c:8502 -#: eelf_x86_64_cloudabi.c:500 eelf_x86_64_fbsd.c:500 eelf_x86_64_haiku.c:500 -#: eelf_x86_64_sol2.c:632 eh8300elf.c:324 eh8300elf_linux.c:324 +#: eelf_mipsel_haiku.c:666 eelf_s390.c:462 eelf_x86_64.c:8534 +#: eelf_x86_64_cloudabi.c:532 eelf_x86_64_fbsd.c:532 eelf_x86_64_haiku.c:532 +#: eelf_x86_64_sol2.c:664 eh8300elf.c:324 eh8300elf_linux.c:324 #: eh8300helf.c:324 eh8300helf_linux.c:324 eh8300hnelf.c:324 eh8300self.c:324 #: eh8300self_linux.c:324 eh8300snelf.c:324 eh8300sxelf.c:324 #: eh8300sxelf_linux.c:324 eh8300sxnelf.c:324 ehppa64linux.c:421 @@ -4431,23 +4440,23 @@ msgstr "" #: eshlelf_nbsd.c:421 eshlelf_nto.c:421 eshlelf_vxworks.c:453 ev850.c:346 #: ev850_rh850.c:346 msgid "" -"%F%P: invalid visibility in `-z %s'; must be default, internal, hidden, or " +"%P: invalid visibility in `-z %s'; must be default, internal, hidden, or " "protected" msgstr "" -#: eaarch64cloudabi.c:971 eaarch64cloudabib.c:971 eaarch64elf.c:971 -#: eaarch64elf32.c:971 eaarch64elf32b.c:971 eaarch64elfb.c:971 -#: eaarch64fbsd.c:976 eaarch64fbsdb.c:976 eaarch64haiku.c:971 -#: eaarch64linux.c:976 eaarch64linux32.c:976 eaarch64linux32b.c:976 -#: eaarch64linuxb.c:976 eaarch64nto.c:1133 +#: eaarch64cloudabi.c:1006 eaarch64cloudabib.c:1006 eaarch64elf.c:1011 +#: eaarch64elf32.c:1011 eaarch64elf32b.c:1011 eaarch64elfb.c:1011 +#: eaarch64fbsd.c:1011 eaarch64fbsdb.c:1011 eaarch64haiku.c:1006 +#: eaarch64linux.c:1011 eaarch64linux32.c:1011 eaarch64linux32b.c:1011 +#: eaarch64linuxb.c:1011 eaarch64nto.c:1168 msgid "%P: error: unrecognized option for --fix-cortex-a53-843419: %s\n" msgstr "" -#: eaarch64cloudabi.c:1000 eaarch64cloudabib.c:1000 eaarch64elf.c:1000 -#: eaarch64elf32.c:1000 eaarch64elf32b.c:1000 eaarch64elfb.c:1000 -#: eaarch64fbsd.c:1005 eaarch64fbsdb.c:1005 eaarch64haiku.c:1000 -#: eaarch64linux.c:1005 eaarch64linux32.c:1005 eaarch64linux32b.c:1005 -#: eaarch64linuxb.c:1005 eaarch64nto.c:1178 earmelf.c:1191 earmelf_fbsd.c:1191 +#: eaarch64cloudabi.c:1035 eaarch64cloudabib.c:1035 eaarch64elf.c:1040 +#: eaarch64elf32.c:1040 eaarch64elf32b.c:1040 eaarch64elfb.c:1040 +#: eaarch64fbsd.c:1040 eaarch64fbsdb.c:1040 eaarch64haiku.c:1035 +#: eaarch64linux.c:1040 eaarch64linux32.c:1040 eaarch64linux32b.c:1040 +#: eaarch64linuxb.c:1040 eaarch64nto.c:1213 earmelf.c:1191 earmelf_fbsd.c:1191 #: earmelf_fuchsia.c:1196 earmelf_haiku.c:1196 earmelf_linux.c:1196 #: earmelf_linux_eabi.c:1196 earmelf_linux_fdpiceabi.c:1196 #: earmelf_nacl.c:1196 earmelf_nbsd.c:1191 earmelf_phoenix.c:1196 @@ -4461,11 +4470,11 @@ msgid "" " enum sizes\n" msgstr "" -#: eaarch64cloudabi.c:1002 eaarch64cloudabib.c:1002 eaarch64elf.c:1002 -#: eaarch64elf32.c:1002 eaarch64elf32b.c:1002 eaarch64elfb.c:1002 -#: eaarch64fbsd.c:1007 eaarch64fbsdb.c:1007 eaarch64haiku.c:1002 -#: eaarch64linux.c:1007 eaarch64linux32.c:1007 eaarch64linux32b.c:1007 -#: eaarch64linuxb.c:1007 eaarch64nto.c:1180 earmelf.c:1193 earmelf_fbsd.c:1193 +#: eaarch64cloudabi.c:1037 eaarch64cloudabib.c:1037 eaarch64elf.c:1042 +#: eaarch64elf32.c:1042 eaarch64elf32b.c:1042 eaarch64elfb.c:1042 +#: eaarch64fbsd.c:1042 eaarch64fbsdb.c:1042 eaarch64haiku.c:1037 +#: eaarch64linux.c:1042 eaarch64linux32.c:1042 eaarch64linux32b.c:1042 +#: eaarch64linuxb.c:1042 eaarch64nto.c:1215 earmelf.c:1193 earmelf_fbsd.c:1193 #: earmelf_fuchsia.c:1198 earmelf_haiku.c:1198 earmelf_linux.c:1198 #: earmelf_linux_eabi.c:1198 earmelf_linux_fdpiceabi.c:1198 #: earmelf_nacl.c:1198 earmelf_nbsd.c:1193 earmelf_phoenix.c:1198 @@ -4479,11 +4488,11 @@ msgid "" " wchar_t sizes\n" msgstr "" -#: eaarch64cloudabi.c:1004 eaarch64cloudabib.c:1004 eaarch64elf.c:1004 -#: eaarch64elf32.c:1004 eaarch64elf32b.c:1004 eaarch64elfb.c:1004 -#: eaarch64fbsd.c:1009 eaarch64fbsdb.c:1009 eaarch64haiku.c:1004 -#: eaarch64linux.c:1009 eaarch64linux32.c:1009 eaarch64linux32b.c:1009 -#: eaarch64linuxb.c:1009 eaarch64nto.c:1182 earmelf.c:1195 earmelf_fbsd.c:1195 +#: eaarch64cloudabi.c:1039 eaarch64cloudabib.c:1039 eaarch64elf.c:1044 +#: eaarch64elf32.c:1044 eaarch64elf32b.c:1044 eaarch64elfb.c:1044 +#: eaarch64fbsd.c:1044 eaarch64fbsdb.c:1044 eaarch64haiku.c:1039 +#: eaarch64linux.c:1044 eaarch64linux32.c:1044 eaarch64linux32b.c:1044 +#: eaarch64linuxb.c:1044 eaarch64nto.c:1217 earmelf.c:1195 earmelf_fbsd.c:1195 #: earmelf_fuchsia.c:1200 earmelf_haiku.c:1200 earmelf_linux.c:1200 #: earmelf_linux_eabi.c:1200 earmelf_linux_fdpiceabi.c:1200 #: earmelf_nacl.c:1200 earmelf_nbsd.c:1195 earmelf_phoenix.c:1200 @@ -4496,11 +4505,11 @@ msgid "" " --pic-veneer Always generate PIC interworking veneers\n" msgstr "" -#: eaarch64cloudabi.c:1005 eaarch64cloudabib.c:1005 eaarch64elf.c:1005 -#: eaarch64elf32.c:1005 eaarch64elf32b.c:1005 eaarch64elfb.c:1005 -#: eaarch64fbsd.c:1010 eaarch64fbsdb.c:1010 eaarch64haiku.c:1005 -#: eaarch64linux.c:1010 eaarch64linux32.c:1010 eaarch64linux32b.c:1010 -#: eaarch64linuxb.c:1010 eaarch64nto.c:1183 earmelf.c:1202 earmelf_fbsd.c:1202 +#: eaarch64cloudabi.c:1040 eaarch64cloudabib.c:1040 eaarch64elf.c:1045 +#: eaarch64elf32.c:1045 eaarch64elf32b.c:1045 eaarch64elfb.c:1045 +#: eaarch64fbsd.c:1045 eaarch64fbsdb.c:1045 eaarch64haiku.c:1040 +#: eaarch64linux.c:1045 eaarch64linux32.c:1045 eaarch64linux32b.c:1045 +#: eaarch64linuxb.c:1045 eaarch64nto.c:1218 earmelf.c:1202 earmelf_fbsd.c:1202 #: earmelf_fuchsia.c:1207 earmelf_haiku.c:1207 earmelf_linux.c:1207 #: earmelf_linux_eabi.c:1207 earmelf_linux_fdpiceabi.c:1207 #: earmelf_nacl.c:1207 earmelf_nbsd.c:1202 earmelf_phoenix.c:1207 @@ -4524,20 +4533,20 @@ msgid "" " choose suitable defaults.\n" msgstr "" -#: eaarch64cloudabi.c:1014 eaarch64cloudabib.c:1014 eaarch64elf.c:1014 -#: eaarch64elf32.c:1014 eaarch64elf32b.c:1014 eaarch64elfb.c:1014 -#: eaarch64fbsd.c:1019 eaarch64fbsdb.c:1019 eaarch64haiku.c:1014 -#: eaarch64linux.c:1019 eaarch64linux32.c:1019 eaarch64linux32b.c:1019 -#: eaarch64linuxb.c:1019 eaarch64nto.c:1192 +#: eaarch64cloudabi.c:1049 eaarch64cloudabib.c:1049 eaarch64elf.c:1054 +#: eaarch64elf32.c:1054 eaarch64elf32b.c:1054 eaarch64elfb.c:1054 +#: eaarch64fbsd.c:1054 eaarch64fbsdb.c:1054 eaarch64haiku.c:1049 +#: eaarch64linux.c:1054 eaarch64linux32.c:1054 eaarch64linux32b.c:1054 +#: eaarch64linuxb.c:1054 eaarch64nto.c:1227 #, c-format msgid " --fix-cortex-a53-835769 Fix erratum 835769\n" msgstr "" -#: eaarch64cloudabi.c:1015 eaarch64cloudabib.c:1015 eaarch64elf.c:1015 -#: eaarch64elf32.c:1015 eaarch64elf32b.c:1015 eaarch64elfb.c:1015 -#: eaarch64fbsd.c:1020 eaarch64fbsdb.c:1020 eaarch64haiku.c:1015 -#: eaarch64linux.c:1020 eaarch64linux32.c:1020 eaarch64linux32b.c:1020 -#: eaarch64linuxb.c:1020 eaarch64nto.c:1193 +#: eaarch64cloudabi.c:1050 eaarch64cloudabib.c:1050 eaarch64elf.c:1055 +#: eaarch64elf32.c:1055 eaarch64elf32b.c:1055 eaarch64elfb.c:1055 +#: eaarch64fbsd.c:1055 eaarch64fbsdb.c:1055 eaarch64haiku.c:1050 +#: eaarch64linux.c:1055 eaarch64linux32.c:1055 eaarch64linux32b.c:1055 +#: eaarch64linuxb.c:1055 eaarch64nto.c:1228 #, c-format msgid "" " --fix-cortex-a53-843419[=full|adr|adrp] Fix erratum 843419 and " @@ -4562,22 +4571,22 @@ msgid "" "you both a performance and size overhead.\n" msgstr "" -#: eaarch64cloudabi.c:1026 eaarch64cloudabib.c:1026 eaarch64elf.c:1026 -#: eaarch64elf32.c:1026 eaarch64elf32b.c:1026 eaarch64elfb.c:1026 -#: eaarch64fbsd.c:1031 eaarch64fbsdb.c:1031 eaarch64haiku.c:1026 -#: eaarch64linux.c:1031 eaarch64linux32.c:1031 eaarch64linux32b.c:1031 -#: eaarch64linuxb.c:1031 eaarch64nto.c:1204 +#: eaarch64cloudabi.c:1061 eaarch64cloudabib.c:1061 eaarch64elf.c:1066 +#: eaarch64elf32.c:1066 eaarch64elf32b.c:1066 eaarch64elfb.c:1066 +#: eaarch64fbsd.c:1066 eaarch64fbsdb.c:1066 eaarch64haiku.c:1061 +#: eaarch64linux.c:1066 eaarch64linux32.c:1066 eaarch64linux32b.c:1066 +#: eaarch64linuxb.c:1066 eaarch64nto.c:1239 #, c-format msgid "" " --no-apply-dynamic-relocs Do not apply link-time values for dynamic " "relocations\n" msgstr "" -#: eaarch64cloudabi.c:1027 eaarch64cloudabib.c:1027 eaarch64elf.c:1027 -#: eaarch64elf32.c:1027 eaarch64elf32b.c:1027 eaarch64elfb.c:1027 -#: eaarch64fbsd.c:1032 eaarch64fbsdb.c:1032 eaarch64haiku.c:1027 -#: eaarch64linux.c:1032 eaarch64linux32.c:1032 eaarch64linux32b.c:1032 -#: eaarch64linuxb.c:1032 eaarch64nto.c:1205 +#: eaarch64cloudabi.c:1062 eaarch64cloudabib.c:1062 eaarch64elf.c:1067 +#: eaarch64elf32.c:1067 eaarch64elf32b.c:1067 eaarch64elfb.c:1067 +#: eaarch64fbsd.c:1067 eaarch64fbsdb.c:1067 eaarch64haiku.c:1062 +#: eaarch64linux.c:1067 eaarch64linux32.c:1067 eaarch64linux32b.c:1067 +#: eaarch64linuxb.c:1067 eaarch64nto.c:1240 #, c-format msgid "" " -z force-bti Turn on Branch Target Identification " @@ -4586,11 +4595,11 @@ msgid "" "markings on inputs\n" msgstr "" -#: eaarch64cloudabi.c:1030 eaarch64cloudabib.c:1030 eaarch64elf.c:1030 -#: eaarch64elf32.c:1030 eaarch64elf32b.c:1030 eaarch64elfb.c:1030 -#: eaarch64fbsd.c:1035 eaarch64fbsdb.c:1035 eaarch64haiku.c:1030 -#: eaarch64linux.c:1035 eaarch64linux32.c:1035 eaarch64linux32b.c:1035 -#: eaarch64linuxb.c:1035 eaarch64nto.c:1208 +#: eaarch64cloudabi.c:1065 eaarch64cloudabib.c:1065 eaarch64elf.c:1070 +#: eaarch64elf32.c:1070 eaarch64elf32b.c:1070 eaarch64elfb.c:1070 +#: eaarch64fbsd.c:1070 eaarch64fbsdb.c:1070 eaarch64haiku.c:1065 +#: eaarch64linux.c:1070 eaarch64linux32.c:1070 eaarch64linux32b.c:1070 +#: eaarch64linuxb.c:1070 eaarch64nto.c:1243 #, c-format msgid "" " -z bti-report[=none|warning|error] Emit warning/error on mismatch of BTI " @@ -4605,22 +4614,22 @@ msgid "" " and output has BTI marking.\n" msgstr "" -#: eaarch64cloudabi.c:1037 eaarch64cloudabib.c:1037 eaarch64elf.c:1037 -#: eaarch64elf32.c:1037 eaarch64elf32b.c:1037 eaarch64elfb.c:1037 -#: eaarch64fbsd.c:1042 eaarch64fbsdb.c:1042 eaarch64haiku.c:1037 -#: eaarch64linux.c:1042 eaarch64linux32.c:1042 eaarch64linux32b.c:1042 -#: eaarch64linuxb.c:1042 eaarch64nto.c:1215 +#: eaarch64cloudabi.c:1072 eaarch64cloudabib.c:1072 eaarch64elf.c:1077 +#: eaarch64elf32.c:1077 eaarch64elf32b.c:1077 eaarch64elfb.c:1077 +#: eaarch64fbsd.c:1077 eaarch64fbsdb.c:1077 eaarch64haiku.c:1072 +#: eaarch64linux.c:1077 eaarch64linux32.c:1077 eaarch64linux32b.c:1077 +#: eaarch64linuxb.c:1077 eaarch64nto.c:1250 #, c-format msgid "" " -z pac-plt Protect PLTs with Pointer " "Authentication.\n" msgstr "" -#: eaarch64cloudabi.c:1039 eaarch64cloudabib.c:1039 eaarch64elf.c:1039 -#: eaarch64elf32.c:1039 eaarch64elf32b.c:1039 eaarch64elfb.c:1039 -#: eaarch64fbsd.c:1044 eaarch64fbsdb.c:1044 eaarch64haiku.c:1039 -#: eaarch64linux.c:1044 eaarch64linux32.c:1044 eaarch64linux32b.c:1044 -#: eaarch64linuxb.c:1044 eaarch64nto.c:1217 +#: eaarch64cloudabi.c:1074 eaarch64cloudabib.c:1074 eaarch64elf.c:1079 +#: eaarch64elf32.c:1079 eaarch64elf32b.c:1079 eaarch64elfb.c:1079 +#: eaarch64fbsd.c:1079 eaarch64fbsdb.c:1079 eaarch64haiku.c:1074 +#: eaarch64linux.c:1079 eaarch64linux32.c:1079 eaarch64linux32b.c:1079 +#: eaarch64linuxb.c:1079 eaarch64nto.c:1252 #, c-format msgid "" " -z gcs=[always|never|implicit] Controls whether the output supports " @@ -4633,11 +4642,11 @@ msgid "" "GCS.\n" msgstr "" -#: eaarch64cloudabi.c:1044 eaarch64cloudabib.c:1044 eaarch64elf.c:1044 -#: eaarch64elf32.c:1044 eaarch64elf32b.c:1044 eaarch64elfb.c:1044 -#: eaarch64fbsd.c:1049 eaarch64fbsdb.c:1049 eaarch64haiku.c:1044 -#: eaarch64linux.c:1049 eaarch64linux32.c:1049 eaarch64linux32b.c:1049 -#: eaarch64linuxb.c:1049 eaarch64nto.c:1222 +#: eaarch64cloudabi.c:1079 eaarch64cloudabib.c:1079 eaarch64elf.c:1084 +#: eaarch64elf32.c:1084 eaarch64elf32b.c:1084 eaarch64elfb.c:1084 +#: eaarch64fbsd.c:1084 eaarch64fbsdb.c:1084 eaarch64haiku.c:1079 +#: eaarch64linux.c:1084 eaarch64linux32.c:1084 eaarch64linux32b.c:1084 +#: eaarch64linuxb.c:1084 eaarch64nto.c:1257 #, c-format msgid "" " -z gcs-report[=none|warning|error] Emit warning/error on mismatch of GCS " @@ -4652,11 +4661,11 @@ msgid "" " and output have GCS marking.\n" msgstr "" -#: eaarch64cloudabi.c:1051 eaarch64cloudabib.c:1051 eaarch64elf.c:1051 -#: eaarch64elf32.c:1051 eaarch64elf32b.c:1051 eaarch64elfb.c:1051 -#: eaarch64fbsd.c:1056 eaarch64fbsdb.c:1056 eaarch64haiku.c:1051 -#: eaarch64linux.c:1056 eaarch64linux32.c:1056 eaarch64linux32b.c:1056 -#: eaarch64linuxb.c:1056 eaarch64nto.c:1229 +#: eaarch64cloudabi.c:1086 eaarch64cloudabib.c:1086 eaarch64elf.c:1091 +#: eaarch64elf32.c:1091 eaarch64elf32b.c:1091 eaarch64elfb.c:1091 +#: eaarch64fbsd.c:1091 eaarch64fbsdb.c:1091 eaarch64haiku.c:1086 +#: eaarch64linux.c:1091 eaarch64linux32.c:1091 eaarch64linux32b.c:1091 +#: eaarch64linuxb.c:1091 eaarch64nto.c:1264 #, c-format msgid "" " -z gcs-report-dynamic=none|warning|error Emit warning/error on mismatch " @@ -4675,31 +4684,66 @@ msgid "" "marking.\n" msgstr "" -#: eaarch64nto.c:490 -msgid "%F%P: cannot create .note section in stub BFD.\n" +#: eaarch64cloudabi.c:1094 eaarch64cloudabib.c:1094 eaarch64elf.c:1099 +#: eaarch64elf32.c:1099 eaarch64elf32b.c:1099 eaarch64elfb.c:1099 +#: eaarch64fbsd.c:1099 eaarch64fbsdb.c:1099 eaarch64haiku.c:1094 +#: eaarch64linux.c:1099 eaarch64linux32.c:1099 eaarch64linux32b.c:1099 +#: eaarch64linuxb.c:1099 eaarch64nto.c:1272 +#, c-format +msgid "" +" -z memtag-mode[=none|sync|async] Select Memory Tagging Extension mode " +"of operation to use.\n" +" Emits a DT_AARCH64_MEMTAG_MODE " +"dynamic tag for the binary.\n" +" This entry is only valid on the main " +"executable. It is\n" +" ignored in the dynamically loaded " +"objects by the loader.\n" +" none (default): Disable MTE " +"checking of memory reads and writes.\n" +" sync: Enable precise exceptions " +"when mismatched address and\n" +" allocation tags detected on " +"load/store operations.\n" +" async: Enable imprecise " +"exceptions.\n" +msgstr "" + +#: eaarch64cloudabi.c:1103 eaarch64cloudabib.c:1103 eaarch64elf.c:1108 +#: eaarch64elf32.c:1108 eaarch64elf32b.c:1108 eaarch64elfb.c:1108 +#: eaarch64fbsd.c:1108 eaarch64fbsdb.c:1108 eaarch64haiku.c:1103 +#: eaarch64linux.c:1108 eaarch64linux32.c:1108 eaarch64linux32b.c:1108 +#: eaarch64linuxb.c:1108 eaarch64nto.c:1281 +#, c-format +msgid "" +" -z memtag-stack Mark program stack with MTE protection.\n" +msgstr "" + +#: eaarch64nto.c:521 +msgid "%P: cannot create .note section in stub BFD.\n" msgstr "" -#: eaarch64nto.c:499 -msgid "%F%P: failed to create .note section\n" +#: eaarch64nto.c:530 +msgid "%P: failed to create .note section\n" msgstr "" -#: eaarch64nto.c:540 -msgid "%F%P: %pB: can't read contents of section .note: %E\n" +#: eaarch64nto.c:571 +msgid "%P: %pB: can't read contents of section .note: %E\n" msgstr "" -#: eaarch64nto.c:550 eaarch64nto.c:554 +#: eaarch64nto.c:581 eaarch64nto.c:585 msgid "%P: %pB: warning: duplicated QNX stack .note detected\n" msgstr "" -#: eaarch64nto.c:583 -msgid "%F%P: error: --lazy-stack must follow -zstack-size=<size>\n" +#: eaarch64nto.c:614 +msgid "%P: error: --lazy-stack must follow -zstack-size=<size>\n" msgstr "" -#: eaarch64nto.c:1238 +#: eaarch64nto.c:1284 #, c-format msgid "" " --stack <size> Set size of the initial stack\n" -" --lazy-stack\t\t Set lazy allocation of stack\n" +" --lazy-stack Set lazy allocation of stack\n" msgstr "" #: eaarch64pe.c:350 earm64pe.c:350 earm_wince_pe.c:338 earmpe.c:338 @@ -5113,29 +5157,29 @@ msgstr "" #: eaarch64pe.c:560 earm64pe.c:560 earm_wince_pe.c:571 earmpe.c:571 #: ei386beos.c:205 ei386pe.c:571 ei386pe_posix.c:571 ei386pep.c:560 #: emcorepe.c:571 eshpe.c:571 -msgid "%F%P: invalid subsystem type %s\n" +msgid "%P: invalid subsystem type %s\n" msgstr "" #: eaarch64pe.c:581 earm64pe.c:581 earm_wince_pe.c:592 earmpe.c:592 -#: ei386beos.c:216 ei386pe.c:592 ei386pe_posix.c:592 ei386pep.c:581 +#: ei386beos.c:215 ei386pe.c:592 ei386pe_posix.c:592 ei386pep.c:581 #: emcorepe.c:592 eshpe.c:592 -msgid "%F%P: invalid hex number for PE parameter '%s'\n" +msgid "%P: invalid hex number for PE parameter '%s'\n" msgstr "" #: eaarch64pe.c:598 earm64pe.c:598 earm_wince_pe.c:609 earmpe.c:609 -#: ei386beos.c:233 ei386pe.c:609 ei386pe_posix.c:609 ei386pep.c:598 +#: ei386beos.c:230 ei386pe.c:609 ei386pe_posix.c:609 ei386pep.c:598 #: emcorepe.c:609 eshpe.c:609 -msgid "%F%P: strange hex info for PE parameter '%s'\n" +msgid "%P: strange hex info for PE parameter '%s'\n" msgstr "" #: eaarch64pe.c:615 earm64pe.c:615 earm_wince_pe.c:625 earmpe.c:625 -#: eelf32mcore.c:356 ei386beos.c:249 ei386pe.c:625 ei386pe_posix.c:625 +#: eelf32mcore.c:356 ei386beos.c:245 ei386pe.c:625 ei386pe_posix.c:625 #: ei386pep.c:615 emcorepe.c:625 eshpe.c:625 -msgid "%F%P: cannot open base file %s\n" +msgid "%P: cannot open base file %s\n" msgstr "" #: eaarch64pe.c:932 earm64pe.c:932 earm_wince_pe.c:955 earmpe.c:955 -#: ei386beos.c:345 ei386pe.c:955 ei386pe_posix.c:955 ei386pep.c:932 +#: ei386beos.c:341 ei386pe.c:955 ei386pe_posix.c:955 ei386pep.c:932 #: emcorepe.c:955 eshpe.c:955 msgid "%P: warning, file alignment > section alignment\n" msgstr "" @@ -5191,7 +5235,7 @@ msgstr "" #: eaarch64pe.c:1468 earm64pe.c:1468 earm_wince_pe.c:1452 earmpe.c:1452 #: ei386pe.c:1452 ei386pe_posix.c:1452 ei386pep.c:1468 emcorepe.c:1452 #: eshpe.c:1452 -msgid "%F%P: cannot perform PE operations on non PE output file '%pB'\n" +msgid "%P: cannot perform PE operations on non PE output file '%pB'\n" msgstr "" #: eaarch64pe.c:1592 earm64pe.c:1592 earm_wince_pe.c:1595 earmpe.c:1595 @@ -5201,11 +5245,11 @@ msgid "%X%P: unable to process relocs: %E\n" msgstr "" #: eaix5ppc.c:302 eaix5rs6.c:302 eaixppc.c:302 eaixrs6.c:302 eppcmacos.c:302 -msgid "%F%P: cannot open %s\n" +msgid "%P: cannot open %s\n" msgstr "" -#: eaix5ppc.c:349 eaix5rs6.c:349 eaixppc.c:349 eaixrs6.c:349 eppcmacos.c:349 -msgid "%F%P: cannot read %s\n" +#: eaix5ppc.c:350 eaix5rs6.c:350 eaixppc.c:350 eaixrs6.c:350 eppcmacos.c:350 +msgid "%P: cannot read %s\n" msgstr "" #: eaix5ppc.c:377 eaix5rs6.c:377 eaixppc.c:377 eaixrs6.c:377 eppcmacos.c:377 @@ -5237,94 +5281,95 @@ msgid "%P: warning: ignoring invalid -pT number %s\n" msgstr "" #: eaix5ppc.c:701 eaix5rs6.c:701 eaixppc.c:701 eaixrs6.c:701 eppcmacos.c:701 -msgid "%F%P: bfd_xcoff_link_record_set failed: %E\n" +msgid "%P: bfd_xcoff_link_record_set failed: %E\n" msgstr "" #: eaix5ppc.c:731 eaix5rs6.c:731 eaixppc.c:731 eaixrs6.c:731 eppcmacos.c:731 -msgid "%F%P: bfd_link_hash_lookup of export symbol failed: %E\n" +msgid "%P: bfd_link_hash_lookup of export symbol failed: %E\n" msgstr "" #: eaix5ppc.c:733 eaix5rs6.c:733 eaixppc.c:733 eaixrs6.c:733 eppcmacos.c:733 -msgid "%F%P: bfd_xcoff_export_symbol failed: %E\n" +msgid "%P: bfd_xcoff_export_symbol failed: %E\n" msgstr "" #: eaix5ppc.c:838 eaix5rs6.c:838 eaixppc.c:838 eaixrs6.c:838 eppcmacos.c:838 -msgid "%F%P: can't find output section %s\n" +msgid "%P: can't find output section %pA\n" msgstr "" #: eaix5ppc.c:875 eaix5rs6.c:875 eaixppc.c:875 eaixrs6.c:875 eppcmacos.c:875 -msgid "%F%P: can't find %s in output section\n" +msgid "%P: can't find %pA in output section\n" msgstr "" -#: eaix5ppc.c:942 eaix5rs6.c:942 eaixppc.c:942 eaixrs6.c:942 eppcmacos.c:942 +#: eaix5ppc.c:941 eaix5rs6.c:941 eaixppc.c:941 eaixrs6.c:941 eppcmacos.c:941 msgid "%P: can't find required output section %s\n" msgstr "" -#: eaix5ppc.c:1124 eaix5rs6.c:1124 eaixppc.c:1124 eaixrs6.c:1124 -#: eppcmacos.c:1124 +#: eaix5ppc.c:1123 eaix5rs6.c:1123 eaixppc.c:1123 eaixrs6.c:1123 +#: eppcmacos.c:1123 msgid "%X%P: can not size stub sections: %E\n" msgstr "" -#: eaix5ppc.c:1129 eaix5rs6.c:1129 eaixppc.c:1129 eaixrs6.c:1129 -#: eppcmacos.c:1129 -msgid "%F%P: failed to layout dynamic sections: %E\n" +#: eaix5ppc.c:1128 eaix5rs6.c:1128 eaixppc.c:1128 eaixrs6.c:1128 +#: eppcmacos.c:1128 +msgid "%P: failed to layout dynamic sections: %E\n" msgstr "" -#: eaix5ppc.c:1342 eaix5rs6.c:1342 eaixppc.c:1342 eaixrs6.c:1342 -#: eppcmacos.c:1342 -msgid "%F%P:%s:%d: #! ([member]) is not supported in import files\n" +#: eaix5ppc.c:1341 eaix5rs6.c:1341 eaixppc.c:1341 eaixrs6.c:1341 +#: eppcmacos.c:1341 +msgid "%P:%s:%d: #! ([member]) is not supported in import files\n" msgstr "" -#: eaix5ppc.c:1359 eaix5rs6.c:1359 eaixppc.c:1359 eaixrs6.c:1359 -#: eppcmacos.c:1359 -msgid "%F%P: could not parse import path: %E\n" +#: eaix5ppc.c:1358 eaix5rs6.c:1358 eaixppc.c:1358 eaixrs6.c:1358 +#: eppcmacos.c:1358 +msgid "%P: could not parse import path: %E\n" msgstr "" -#: eaix5ppc.c:1369 eaix5ppc.c:1381 eaix5rs6.c:1369 eaix5rs6.c:1381 -#: eaixppc.c:1369 eaixppc.c:1381 eaixrs6.c:1369 eaixrs6.c:1381 -#: eppcmacos.c:1369 eppcmacos.c:1381 +#: eaix5ppc.c:1368 eaix5ppc.c:1380 eaix5rs6.c:1368 eaix5rs6.c:1380 +#: eaixppc.c:1368 eaixppc.c:1380 eaixrs6.c:1368 eaixrs6.c:1380 +#: eppcmacos.c:1368 eppcmacos.c:1380 msgid "%P:%s:%d: warning: syntax error in import file\n" msgstr "" -#: eaix5ppc.c:1416 eaix5rs6.c:1416 eaixppc.c:1416 eaixrs6.c:1416 -#: eppcmacos.c:1416 +#: eaix5ppc.c:1415 eaix5rs6.c:1415 eaixppc.c:1415 eaixrs6.c:1415 +#: eppcmacos.c:1415 msgid "%P:%s%d: warning: syntax error in import/export file\n" msgstr "" -#: eaix5ppc.c:1434 eaix5rs6.c:1434 eaixppc.c:1434 eaixrs6.c:1434 -#: eppcmacos.c:1434 +#: eaix5ppc.c:1433 eaix5rs6.c:1433 eaixppc.c:1433 eaixrs6.c:1433 +#: eppcmacos.c:1433 msgid "%P:%s:%d: warning: syntax error in import/export file\n" msgstr "" -#: eaix5ppc.c:1469 eaix5rs6.c:1469 eaixppc.c:1469 eaixrs6.c:1469 -#: eppcmacos.c:1469 +#: eaix5ppc.c:1468 eaix5rs6.c:1468 eaixppc.c:1468 eaixrs6.c:1468 +#: eppcmacos.c:1468 msgid "%X%P:%s:%d: failed to import symbol %s: %E\n" msgstr "" -#: eaix5ppc.c:1479 eaix5rs6.c:1479 eaixppc.c:1479 eaixrs6.c:1479 -#: eppcmacos.c:1479 +#: eaix5ppc.c:1478 eaix5rs6.c:1478 eaixppc.c:1478 eaixrs6.c:1478 +#: eppcmacos.c:1478 msgid "%P:%s:%d: warning: ignoring unterminated last line\n" msgstr "" -#: eaix5ppc.c:1514 eaix5rs6.c:1514 eaixppc.c:1514 eaixrs6.c:1514 -#: eppcmacos.c:1514 -msgid "%F%P: only relocations against symbols are permitted\n" +#: eaix5ppc.c:1513 eaix5rs6.c:1513 eaixppc.c:1513 eaixrs6.c:1513 +#: eppcmacos.c:1513 +msgid "%P: only relocations against symbols are permitted\n" msgstr "" -#: eaix5ppc.c:1517 eaix5rs6.c:1517 eaixppc.c:1517 eaixrs6.c:1517 -#: eppcmacos.c:1517 -msgid "%F%P: bfd_xcoff_link_count_reloc failed: %E\n" +#: eaix5ppc.c:1516 eaix5rs6.c:1516 eaixppc.c:1516 eaixrs6.c:1516 +#: eppcmacos.c:1516 +msgid "%P: bfd_xcoff_link_count_reloc failed: %E\n" msgstr "" -#: eaix5ppc.c:1605 eaix5rs6.c:1605 eaixppc.c:1605 eaixrs6.c:1605 -#: eppcmacos.c:1605 -msgid "%F%P: can not create stub BFD: %E\n" +#: eaix5ppc.c:1604 eaix5rs6.c:1604 eaixppc.c:1604 eaixrs6.c:1604 +#: eppcmacos.c:1604 +msgid "%P: can not create stub BFD: %E\n" msgstr "" -#: eaix5ppc.c:1615 eaix5rs6.c:1615 eaixppc.c:1615 eaixrs6.c:1615 -#: eelf64_s390.c:66 eelf64lppc.c:132 eelf64lppc_fbsd.c:132 eelf64ppc.c:132 -#: eelf64ppc_fbsd.c:132 eppcmacos.c:1615 -msgid "%F%P: can not init BFD: %E\n" +#: eaix5ppc.c:1614 eaix5rs6.c:1614 eaixppc.c:1614 eaixrs6.c:1614 +#: eelf32kvx.c:324 eelf64_s390.c:66 eelf64kvx.c:324 eelf64kvx_linux.c:322 +#: eelf64lppc.c:132 eelf64lppc_fbsd.c:132 eelf64ppc.c:132 eelf64ppc_fbsd.c:132 +#: eppcmacos.c:1614 +msgid "%P: can not init BFD: %E\n" msgstr "" #: ealphavms.c:168 eelf64_ia64_vms.c:168 @@ -5485,7 +5530,7 @@ msgstr "" #: earmelf_vxworks.c:145 earmelfb.c:145 earmelfb_fbsd.c:145 #: earmelfb_fuchsia.c:146 earmelfb_linux.c:146 earmelfb_linux_eabi.c:146 #: earmelfb_linux_fdpiceabi.c:146 earmelfb_nacl.c:146 earmelfb_nbsd.c:145 -#: earmnto.c:145 ei386beos.c:598 +#: earmnto.c:145 ei386beos.c:592 #, c-format msgid "%P: errors encountered processing file %s\n" msgstr "" @@ -5497,7 +5542,7 @@ msgstr "" #: earmelfb_fuchsia.c:556 earmelfb_linux.c:556 earmelfb_linux_eabi.c:556 #: earmelfb_linux_fdpiceabi.c:556 earmelfb_nacl.c:556 earmelfb_nbsd.c:555 #: earmnto.c:555 -msgid "%F%P: %s: can't open: %E\n" +msgid "%P: %s: can't open: %E\n" msgstr "" #: earmelf.c:558 earmelf_fbsd.c:558 earmelf_fuchsia.c:559 earmelf_haiku.c:559 @@ -5507,7 +5552,7 @@ msgstr "" #: earmelfb_fuchsia.c:559 earmelfb_linux.c:559 earmelfb_linux_eabi.c:559 #: earmelfb_linux_fdpiceabi.c:559 earmelfb_nacl.c:559 earmelfb_nbsd.c:558 #: earmnto.c:558 -msgid "%F%P: %s: not a relocatable file: %E\n" +msgid "%P: %s: not a relocatable file: %E\n" msgstr "" #: earmelf.c:1101 earmelf_fbsd.c:1101 earmelf_fuchsia.c:1106 @@ -5817,7 +5862,8 @@ msgstr "" msgid " --debug-relax Used for debugging avr-ld.\n" msgstr "" -#: ecskyelf.c:278 ecskyelf_linux.c:278 +#: ecskyelf.c:278 ecskyelf_linux.c:278 eelf32kvx.c:271 eelf64kvx.c:271 +#: eelf64kvx_linux.c:269 msgid "%X%P: cannot size stub section: %E\n" msgstr "" @@ -5851,7 +5897,7 @@ msgid "%X%P: can not create note section: %E\n" msgstr "" #: eelf32_spu.c:347 -msgid "%F%P: no built-in overlay manager\n" +msgid "%P: no built-in overlay manager\n" msgstr "" #: eelf32_spu.c:357 @@ -5875,7 +5921,7 @@ msgid "%X%P: can not size overlay stubs: %E\n" msgstr "" #: eelf32_spu.c:524 -msgid "%F%P: can not open script: %E\n" +msgid "%P: can not open script: %E\n" msgstr "" #: eelf32_spu.c:571 @@ -5892,35 +5938,35 @@ msgid "running: %s \"%s\" \"%s\" \"%s\" \"%s\"\n" msgstr "" #: eelf32_spu.c:1075 -msgid "%F%P: invalid --local-store address range `%s'\n" +msgid "%P: invalid --local-store address range `%s'\n" msgstr "" #: eelf32_spu.c:1111 -msgid "%F%P: invalid --num-lines/--num-regions `%u'\n" +msgid "%P: invalid --num-lines/--num-regions `%u'\n" msgstr "" #: eelf32_spu.c:1116 -msgid "%F%P: invalid --line-size/--region-size `%u'\n" +msgid "%P: invalid --line-size/--region-size `%u'\n" msgstr "" #: eelf32_spu.c:1137 -msgid "%F%P: invalid --num-lines/--num-regions `%s'\n" +msgid "%P: invalid --num-lines/--num-regions `%s'\n" msgstr "" #: eelf32_spu.c:1150 -msgid "%F%P: invalid --line-size/--region-size `%s'\n" +msgid "%P: invalid --line-size/--region-size `%s'\n" msgstr "" #: eelf32_spu.c:1159 -msgid "%F%P: invalid --fixed-space value `%s'\n" +msgid "%P: invalid --fixed-space value `%s'\n" msgstr "" #: eelf32_spu.c:1168 -msgid "%F%P: invalid --reserved-space value `%s'\n" +msgid "%P: invalid --reserved-space value `%s'\n" msgstr "" #: eelf32_spu.c:1177 -msgid "%F%P: invalid --extra-stack-space value `%s'\n" +msgid "%P: invalid --extra-stack-space value `%s'\n" msgstr "" #: eelf32_spu.c:1214 @@ -6045,243 +6091,243 @@ msgstr "" msgid " --lrlive-analysis Scan function prologue for lr liveness\n" msgstr "" -#: eelf32_tic6x_be.c:91 eelf32_tic6x_elf_be.c:91 eelf32_tic6x_elf_le.c:91 -#: eelf32_tic6x_le.c:91 eelf32_tic6x_linux_be.c:91 eelf32_tic6x_linux_le.c:91 -msgid "%F%P: invalid --dsbt-index %d, outside DSBT size\n" +#: eelf32_tic6x_be.c:90 eelf32_tic6x_elf_be.c:90 eelf32_tic6x_elf_le.c:90 +#: eelf32_tic6x_le.c:90 eelf32_tic6x_linux_be.c:90 eelf32_tic6x_linux_le.c:90 +msgid "%P: invalid --dsbt-index %d, outside DSBT size\n" msgstr "" -#: eelf32_tic6x_be.c:631 eelf32_tic6x_elf_be.c:631 eelf32_tic6x_elf_le.c:631 -#: eelf32_tic6x_le.c:631 eelf32_tic6x_linux_be.c:631 -#: eelf32_tic6x_linux_le.c:631 -msgid "%F%P: invalid --dsbt-index %s\n" +#: eelf32_tic6x_be.c:629 eelf32_tic6x_elf_be.c:629 eelf32_tic6x_elf_le.c:629 +#: eelf32_tic6x_le.c:629 eelf32_tic6x_linux_be.c:629 +#: eelf32_tic6x_linux_le.c:629 +msgid "%P: invalid --dsbt-index %s\n" msgstr "" -#: eelf32_tic6x_be.c:641 eelf32_tic6x_elf_be.c:641 eelf32_tic6x_elf_le.c:641 -#: eelf32_tic6x_le.c:641 eelf32_tic6x_linux_be.c:641 -#: eelf32_tic6x_linux_le.c:641 -msgid "%F%P: invalid --dsbt-size %s\n" +#: eelf32_tic6x_be.c:639 eelf32_tic6x_elf_be.c:639 eelf32_tic6x_elf_le.c:639 +#: eelf32_tic6x_le.c:639 eelf32_tic6x_linux_be.c:639 +#: eelf32_tic6x_linux_le.c:639 +msgid "%P: invalid --dsbt-size %s\n" msgstr "" -#: eelf32_tic6x_be.c:657 eelf32_tic6x_elf_be.c:657 eelf32_tic6x_elf_le.c:657 -#: eelf32_tic6x_le.c:657 eelf32_tic6x_linux_be.c:657 -#: eelf32_tic6x_linux_le.c:657 +#: eelf32_tic6x_be.c:655 eelf32_tic6x_elf_be.c:655 eelf32_tic6x_elf_le.c:655 +#: eelf32_tic6x_le.c:655 eelf32_tic6x_linux_be.c:655 +#: eelf32_tic6x_linux_le.c:655 #, c-format msgid "" " --dsbt-index <index> Use this as the DSBT index for the output object\n" msgstr "" -#: eelf32_tic6x_be.c:658 eelf32_tic6x_elf_be.c:658 eelf32_tic6x_elf_le.c:658 -#: eelf32_tic6x_le.c:658 eelf32_tic6x_linux_be.c:658 -#: eelf32_tic6x_linux_le.c:658 +#: eelf32_tic6x_be.c:656 eelf32_tic6x_elf_be.c:656 eelf32_tic6x_elf_le.c:656 +#: eelf32_tic6x_le.c:656 eelf32_tic6x_linux_be.c:656 +#: eelf32_tic6x_linux_le.c:656 #, c-format msgid "" " --dsbt-size <index> Use this as the number of entries in the DSBT " "table\n" msgstr "" -#: eelf32_tic6x_be.c:659 eelf32_tic6x_elf_be.c:659 eelf32_tic6x_elf_le.c:659 -#: eelf32_tic6x_le.c:659 eelf32_tic6x_linux_be.c:659 -#: eelf32_tic6x_linux_le.c:659 +#: eelf32_tic6x_be.c:657 eelf32_tic6x_elf_be.c:657 eelf32_tic6x_elf_le.c:657 +#: eelf32_tic6x_le.c:657 eelf32_tic6x_linux_be.c:657 +#: eelf32_tic6x_linux_le.c:657 #, c-format msgid " --no-merge-exidx-entries\n" msgstr "" -#: eelf32_tic6x_be.c:660 eelf32_tic6x_elf_be.c:660 eelf32_tic6x_elf_le.c:660 -#: eelf32_tic6x_le.c:660 eelf32_tic6x_linux_be.c:660 -#: eelf32_tic6x_linux_le.c:660 +#: eelf32_tic6x_be.c:658 eelf32_tic6x_elf_be.c:658 eelf32_tic6x_elf_le.c:658 +#: eelf32_tic6x_le.c:658 eelf32_tic6x_linux_be.c:658 +#: eelf32_tic6x_linux_le.c:658 #, c-format msgid " Disable merging exidx entries\n" msgstr "" -#: eelf32_x86_64.c:8606 eelf_i386.c:8061 eelf_i386_be.c:542 +#: eelf32_x86_64.c:8638 eelf_i386.c:8061 eelf_i386_be.c:542 #: eelf_i386_fbsd.c:593 eelf_i386_haiku.c:593 eelf_i386_ldso.c:553 #: eelf_i386_sol2.c:725 eelf_i386_vxworks.c:619 eelf_iamcu.c:593 -#: eelf_x86_64.c:8606 eelf_x86_64_cloudabi.c:604 eelf_x86_64_fbsd.c:604 -#: eelf_x86_64_haiku.c:604 eelf_x86_64_sol2.c:736 -msgid "%F%P: invalid number for -z call-nop=prefix-: %s\n" +#: eelf_x86_64.c:8638 eelf_x86_64_cloudabi.c:636 eelf_x86_64_fbsd.c:636 +#: eelf_x86_64_haiku.c:636 eelf_x86_64_sol2.c:768 +msgid "%P: invalid number for -z call-nop=prefix-: %s\n" msgstr "" -#: eelf32_x86_64.c:8615 eelf_i386.c:8070 eelf_i386_be.c:551 +#: eelf32_x86_64.c:8647 eelf_i386.c:8070 eelf_i386_be.c:551 #: eelf_i386_fbsd.c:602 eelf_i386_haiku.c:602 eelf_i386_ldso.c:562 #: eelf_i386_sol2.c:734 eelf_i386_vxworks.c:628 eelf_iamcu.c:602 -#: eelf_x86_64.c:8615 eelf_x86_64_cloudabi.c:613 eelf_x86_64_fbsd.c:613 -#: eelf_x86_64_haiku.c:613 eelf_x86_64_sol2.c:745 -msgid "%F%P: invalid number for -z call-nop=suffix-: %s\n" +#: eelf_x86_64.c:8647 eelf_x86_64_cloudabi.c:645 eelf_x86_64_fbsd.c:645 +#: eelf_x86_64_haiku.c:645 eelf_x86_64_sol2.c:777 +msgid "%P: invalid number for -z call-nop=suffix-: %s\n" msgstr "" -#: eelf32_x86_64.c:8620 eelf_i386.c:8075 eelf_i386_be.c:556 +#: eelf32_x86_64.c:8652 eelf_i386.c:8075 eelf_i386_be.c:556 #: eelf_i386_fbsd.c:607 eelf_i386_haiku.c:607 eelf_i386_ldso.c:567 #: eelf_i386_sol2.c:739 eelf_i386_vxworks.c:633 eelf_iamcu.c:607 -#: eelf_x86_64.c:8620 eelf_x86_64_cloudabi.c:618 eelf_x86_64_fbsd.c:618 -#: eelf_x86_64_haiku.c:618 eelf_x86_64_sol2.c:750 -msgid "%F%P: unsupported option: -z %s\n" +#: eelf_x86_64.c:8652 eelf_x86_64_cloudabi.c:650 eelf_x86_64_fbsd.c:650 +#: eelf_x86_64_haiku.c:650 eelf_x86_64_sol2.c:782 +msgid "%P: unsupported option: -z %s\n" msgstr "" -#: eelf32_x86_64.c:8642 eelf_i386.c:8097 eelf_i386_fbsd.c:629 -#: eelf_i386_haiku.c:629 eelf_x86_64.c:8642 eelf_x86_64_cloudabi.c:640 -#: eelf_x86_64_fbsd.c:640 eelf_x86_64_haiku.c:640 eelf_x86_64_sol2.c:772 -msgid "%F%P: invalid option for -z cet-report=: %s\n" +#: eelf32_x86_64.c:8674 eelf_i386.c:8097 eelf_i386_fbsd.c:629 +#: eelf_i386_haiku.c:629 eelf_x86_64.c:8674 eelf_x86_64_cloudabi.c:672 +#: eelf_x86_64_fbsd.c:672 eelf_x86_64_haiku.c:672 eelf_x86_64_sol2.c:804 +msgid "%P: invalid option for -z cet-report=: %s\n" msgstr "" -#: eelf32_x86_64.c:8656 eelf_i386.c:8111 eelf_i386_fbsd.c:643 -#: eelf_i386_haiku.c:643 eelf_x86_64.c:8656 eelf_x86_64_cloudabi.c:654 -#: eelf_x86_64_fbsd.c:654 eelf_x86_64_haiku.c:654 eelf_x86_64_sol2.c:786 -msgid "%F%P: invalid x86-64 ISA level: %s\n" +#: eelf32_x86_64.c:8688 eelf_i386.c:8111 eelf_i386_fbsd.c:643 +#: eelf_i386_haiku.c:643 eelf_x86_64.c:8688 eelf_x86_64_cloudabi.c:686 +#: eelf_x86_64_fbsd.c:686 eelf_x86_64_haiku.c:686 eelf_x86_64_sol2.c:818 +msgid "%P: invalid x86-64 ISA level: %s\n" msgstr "" -#: eelf32_x86_64.c:8672 eelf_i386.c:8127 eelf_i386_fbsd.c:659 -#: eelf_i386_haiku.c:659 eelf_x86_64.c:8672 eelf_x86_64_cloudabi.c:670 -#: eelf_x86_64_fbsd.c:670 eelf_x86_64_haiku.c:670 eelf_x86_64_sol2.c:802 -msgid "%F%P: invalid option for -z isa-level-report=: %s\n" +#: eelf32_x86_64.c:8704 eelf_i386.c:8127 eelf_i386_fbsd.c:659 +#: eelf_i386_haiku.c:659 eelf_x86_64.c:8704 eelf_x86_64_cloudabi.c:702 +#: eelf_x86_64_fbsd.c:702 eelf_x86_64_haiku.c:702 eelf_x86_64_sol2.c:834 +msgid "%P: invalid option for -z isa-level-report=: %s\n" msgstr "" -#: eelf32_x86_64.c:8719 eelf_i386.c:8169 eelf_i386_be.c:572 +#: eelf32_x86_64.c:8751 eelf_i386.c:8169 eelf_i386_be.c:572 #: eelf_i386_fbsd.c:701 eelf_i386_haiku.c:701 eelf_i386_ldso.c:592 #: eelf_i386_sol2.c:764 eelf_i386_vxworks.c:654 eelf_iamcu.c:632 -#: eelf_x86_64.c:8769 eelf_x86_64_cloudabi.c:767 eelf_x86_64_fbsd.c:767 -#: eelf_x86_64_haiku.c:767 eelf_x86_64_sol2.c:899 +#: eelf_x86_64.c:8801 eelf_x86_64_cloudabi.c:799 eelf_x86_64_fbsd.c:799 +#: eelf_x86_64_haiku.c:799 eelf_x86_64_sol2.c:931 #, c-format msgid "" " -z noextern-protected-data Do not treat protected data symbol as " "external\n" msgstr "" -#: eelf32_x86_64.c:8721 eelf_i386.c:8171 eelf_i386_be.c:574 +#: eelf32_x86_64.c:8753 eelf_i386.c:8171 eelf_i386_be.c:574 #: eelf_i386_fbsd.c:703 eelf_i386_haiku.c:703 eelf_i386_ldso.c:594 #: eelf_i386_sol2.c:766 eelf_i386_vxworks.c:656 eelf_iamcu.c:634 -#: eelf_x86_64.c:8771 eelf_x86_64_cloudabi.c:769 eelf_x86_64_fbsd.c:769 -#: eelf_x86_64_haiku.c:769 eelf_x86_64_sol2.c:901 +#: eelf_x86_64.c:8803 eelf_x86_64_cloudabi.c:801 eelf_x86_64_fbsd.c:801 +#: eelf_x86_64_haiku.c:801 eelf_x86_64_sol2.c:933 #, c-format msgid " -z indirect-extern-access Enable indirect external access\n" msgstr "" -#: eelf32_x86_64.c:8723 eelf_i386.c:8173 eelf_i386_be.c:576 +#: eelf32_x86_64.c:8755 eelf_i386.c:8173 eelf_i386_be.c:576 #: eelf_i386_fbsd.c:705 eelf_i386_haiku.c:705 eelf_i386_ldso.c:596 #: eelf_i386_sol2.c:768 eelf_i386_vxworks.c:658 eelf_iamcu.c:636 -#: eelf_x86_64.c:8773 eelf_x86_64_cloudabi.c:771 eelf_x86_64_fbsd.c:771 -#: eelf_x86_64_haiku.c:771 eelf_x86_64_sol2.c:903 +#: eelf_x86_64.c:8805 eelf_x86_64_cloudabi.c:803 eelf_x86_64_fbsd.c:803 +#: eelf_x86_64_haiku.c:803 eelf_x86_64_sol2.c:935 #, c-format msgid "" " -z noindirect-extern-access Disable indirect external access (default)\n" msgstr "" -#: eelf32_x86_64.c:8726 eelf32lppc.c:881 eelf32lppclinux.c:881 +#: eelf32_x86_64.c:8758 eelf32lppc.c:881 eelf32lppclinux.c:881 #: eelf32lppcnto.c:881 eelf32lppcsim.c:881 eelf32ppc.c:881 #: eelf32ppc_fbsd.c:881 eelf32ppchaiku.c:881 eelf32ppclinux.c:881 #: eelf32ppcnto.c:881 eelf32ppcsim.c:881 eelf32ppcvxworks.c:855 -#: eelf32ppcwindiss.c:881 eelf64lppc.c:1395 eelf64lppc_fbsd.c:1395 -#: eelf64ppc.c:1395 eelf64ppc_fbsd.c:1395 eelf_i386.c:8176 eelf_i386_be.c:579 +#: eelf32ppcwindiss.c:881 eelf64lppc.c:1396 eelf64lppc_fbsd.c:1396 +#: eelf64ppc.c:1396 eelf64ppc_fbsd.c:1396 eelf_i386.c:8176 eelf_i386_be.c:579 #: eelf_i386_fbsd.c:708 eelf_i386_haiku.c:708 eelf_i386_ldso.c:599 #: eelf_i386_sol2.c:771 eelf_i386_vxworks.c:661 eelf_iamcu.c:639 -#: eelf_x86_64.c:8776 eelf_x86_64_cloudabi.c:774 eelf_x86_64_fbsd.c:774 -#: eelf_x86_64_haiku.c:774 eelf_x86_64_sol2.c:906 +#: eelf_x86_64.c:8808 eelf_x86_64_cloudabi.c:806 eelf_x86_64_fbsd.c:806 +#: eelf_x86_64_haiku.c:806 eelf_x86_64_sol2.c:938 #, c-format msgid "" " -z dynamic-undefined-weak Make undefined weak symbols dynamic\n" " -z nodynamic-undefined-weak Do not make undefined weak symbols dynamic\n" msgstr "" -#: eelf32_x86_64.c:8730 eelf_x86_64.c:8780 eelf_x86_64_cloudabi.c:778 -#: eelf_x86_64_fbsd.c:778 eelf_x86_64_haiku.c:778 eelf_x86_64_sol2.c:910 +#: eelf32_x86_64.c:8762 eelf_x86_64.c:8812 eelf_x86_64_cloudabi.c:810 +#: eelf_x86_64_fbsd.c:810 eelf_x86_64_haiku.c:810 eelf_x86_64_sol2.c:942 #, c-format msgid " -z noreloc-overflow Disable relocation overflow check\n" msgstr "" -#: eelf32_x86_64.c:8733 eelf_i386.c:8180 eelf_i386_be.c:583 +#: eelf32_x86_64.c:8765 eelf_i386.c:8180 eelf_i386_be.c:583 #: eelf_i386_fbsd.c:712 eelf_i386_haiku.c:712 eelf_i386_ldso.c:603 #: eelf_i386_sol2.c:775 eelf_i386_vxworks.c:665 eelf_iamcu.c:643 -#: eelf_x86_64.c:8783 eelf_x86_64_cloudabi.c:781 eelf_x86_64_fbsd.c:781 -#: eelf_x86_64_haiku.c:781 eelf_x86_64_sol2.c:913 +#: eelf_x86_64.c:8815 eelf_x86_64_cloudabi.c:813 eelf_x86_64_fbsd.c:813 +#: eelf_x86_64_haiku.c:813 eelf_x86_64_sol2.c:945 #, c-format msgid " -z call-nop=PADDING Use PADDING as 1-byte NOP for branch\n" msgstr "" -#: eelf32_x86_64.c:8736 eelf_i386.c:8183 eelf_i386_fbsd.c:715 -#: eelf_i386_haiku.c:715 eelf_x86_64.c:8786 eelf_x86_64_cloudabi.c:784 -#: eelf_x86_64_fbsd.c:784 eelf_x86_64_haiku.c:784 eelf_x86_64_sol2.c:916 +#: eelf32_x86_64.c:8768 eelf_i386.c:8183 eelf_i386_fbsd.c:715 +#: eelf_i386_haiku.c:715 eelf_x86_64.c:8818 eelf_x86_64_cloudabi.c:816 +#: eelf_x86_64_fbsd.c:816 eelf_x86_64_haiku.c:816 eelf_x86_64_sol2.c:948 #, c-format msgid " -z ibtplt Generate IBT-enabled PLT entries\n" msgstr "" -#: eelf32_x86_64.c:8738 eelf_i386.c:8185 eelf_i386_fbsd.c:717 -#: eelf_i386_haiku.c:717 eelf_x86_64.c:8788 eelf_x86_64_cloudabi.c:786 -#: eelf_x86_64_fbsd.c:786 eelf_x86_64_haiku.c:786 eelf_x86_64_sol2.c:918 +#: eelf32_x86_64.c:8770 eelf_i386.c:8185 eelf_i386_fbsd.c:717 +#: eelf_i386_haiku.c:717 eelf_x86_64.c:8820 eelf_x86_64_cloudabi.c:818 +#: eelf_x86_64_fbsd.c:818 eelf_x86_64_haiku.c:818 eelf_x86_64_sol2.c:950 #, c-format msgid " -z ibt Generate GNU_PROPERTY_X86_FEATURE_1_IBT\n" msgstr "" -#: eelf32_x86_64.c:8740 eelf_i386.c:8187 eelf_i386_fbsd.c:719 -#: eelf_i386_haiku.c:719 eelf_x86_64.c:8790 eelf_x86_64_cloudabi.c:788 -#: eelf_x86_64_fbsd.c:788 eelf_x86_64_haiku.c:788 eelf_x86_64_sol2.c:920 +#: eelf32_x86_64.c:8772 eelf_i386.c:8187 eelf_i386_fbsd.c:719 +#: eelf_i386_haiku.c:719 eelf_x86_64.c:8822 eelf_x86_64_cloudabi.c:820 +#: eelf_x86_64_fbsd.c:820 eelf_x86_64_haiku.c:820 eelf_x86_64_sol2.c:952 #, c-format msgid "" " -z shstk Generate GNU_PROPERTY_X86_FEATURE_1_SHSTK\n" msgstr "" -#: eelf32_x86_64.c:8742 eelf_i386.c:8189 eelf_i386_fbsd.c:721 -#: eelf_i386_haiku.c:721 eelf_x86_64.c:8792 eelf_x86_64_cloudabi.c:790 -#: eelf_x86_64_fbsd.c:790 eelf_x86_64_haiku.c:790 eelf_x86_64_sol2.c:922 +#: eelf32_x86_64.c:8774 eelf_i386.c:8189 eelf_i386_fbsd.c:721 +#: eelf_i386_haiku.c:721 eelf_x86_64.c:8824 eelf_x86_64_cloudabi.c:822 +#: eelf_x86_64_fbsd.c:822 eelf_x86_64_haiku.c:822 eelf_x86_64_sol2.c:954 #, c-format msgid "" " -z cet-report=[none|warning|error] (default: none)\n" " Report missing IBT and SHSTK properties\n" msgstr "" -#: eelf32_x86_64.c:8746 eelf_i386.c:8193 eelf_i386_fbsd.c:725 -#: eelf_i386_haiku.c:725 eelf_x86_64.c:8796 eelf_x86_64_cloudabi.c:794 -#: eelf_x86_64_fbsd.c:794 eelf_x86_64_haiku.c:794 eelf_x86_64_sol2.c:926 +#: eelf32_x86_64.c:8778 eelf_i386.c:8193 eelf_i386_fbsd.c:725 +#: eelf_i386_haiku.c:725 eelf_x86_64.c:8828 eelf_x86_64_cloudabi.c:826 +#: eelf_x86_64_fbsd.c:826 eelf_x86_64_haiku.c:826 eelf_x86_64_sol2.c:958 #, c-format msgid " -z report-relative-reloc Report relative relocations\n" msgstr "" -#: eelf32_x86_64.c:8749 eelf_i386.c:8196 eelf_i386_fbsd.c:728 -#: eelf_i386_haiku.c:728 eelf_x86_64.c:8799 eelf_x86_64_cloudabi.c:797 -#: eelf_x86_64_fbsd.c:797 eelf_x86_64_haiku.c:797 eelf_x86_64_sol2.c:929 +#: eelf32_x86_64.c:8781 eelf_i386.c:8196 eelf_i386_fbsd.c:728 +#: eelf_i386_haiku.c:728 eelf_x86_64.c:8831 eelf_x86_64_cloudabi.c:829 +#: eelf_x86_64_fbsd.c:829 eelf_x86_64_haiku.c:829 eelf_x86_64_sol2.c:961 #, c-format msgid "" " -z x86-64-{baseline|v[234]} Mark x86-64-{baseline|v[234]} ISA level as " "needed\n" msgstr "" -#: eelf32_x86_64.c:8752 eelf_i386.c:8199 eelf_i386_fbsd.c:731 -#: eelf_i386_haiku.c:731 eelf_x86_64.c:8802 eelf_x86_64_cloudabi.c:800 -#: eelf_x86_64_fbsd.c:800 eelf_x86_64_haiku.c:800 eelf_x86_64_sol2.c:932 +#: eelf32_x86_64.c:8784 eelf_i386.c:8199 eelf_i386_fbsd.c:731 +#: eelf_i386_haiku.c:731 eelf_x86_64.c:8834 eelf_x86_64_cloudabi.c:832 +#: eelf_x86_64_fbsd.c:832 eelf_x86_64_haiku.c:832 eelf_x86_64_sol2.c:964 #, c-format msgid "" " -z isa-level-report=[none|all|needed|used] (default: none)\n" " Report x86-64 ISA level\n" msgstr "" -#: eelf32_x86_64.c:8757 eelf_x86_64.c:8821 eelf_x86_64_cloudabi.c:819 -#: eelf_x86_64_fbsd.c:819 eelf_x86_64_haiku.c:819 eelf_x86_64_sol2.c:951 +#: eelf32_x86_64.c:8789 eelf_x86_64.c:8853 eelf_x86_64_cloudabi.c:851 +#: eelf_x86_64_fbsd.c:851 eelf_x86_64_haiku.c:851 eelf_x86_64_sol2.c:983 #, c-format msgid "" " -z mark-plt Mark PLT with dynamic tags (default)\n" " -z nomark-plt Do not mark PLT with dynamic tags\n" msgstr "" -#: eelf32_x86_64.c:8761 eelf_x86_64.c:8825 eelf_x86_64_cloudabi.c:823 -#: eelf_x86_64_fbsd.c:823 eelf_x86_64_haiku.c:823 eelf_x86_64_sol2.c:955 +#: eelf32_x86_64.c:8793 eelf_x86_64.c:8857 eelf_x86_64_cloudabi.c:855 +#: eelf_x86_64_fbsd.c:855 eelf_x86_64_haiku.c:855 eelf_x86_64_sol2.c:987 #, c-format msgid "" " -z mark-plt Mark PLT with dynamic tags\n" " -z nomark-plt Do not mark PLT with dynamic tags (default)\n" msgstr "" -#: eelf32_x86_64.c:8765 eelf64loongarch.c:619 eelf64lppc.c:1399 -#: eelf64lppc_fbsd.c:1399 eelf64ppc.c:1399 eelf64ppc_fbsd.c:1399 +#: eelf32_x86_64.c:8797 eelf64loongarch.c:619 eelf64lppc.c:1400 +#: eelf64lppc_fbsd.c:1400 eelf64ppc.c:1400 eelf64ppc_fbsd.c:1400 #: eelf_i386.c:8203 eelf_i386_fbsd.c:735 eelf_i386_haiku.c:735 -#: eelf_x86_64.c:8829 eelf_x86_64_cloudabi.c:827 eelf_x86_64_fbsd.c:827 -#: eelf_x86_64_haiku.c:827 eelf_x86_64_sol2.c:959 +#: eelf_x86_64.c:8861 eelf_x86_64_cloudabi.c:859 eelf_x86_64_fbsd.c:859 +#: eelf_x86_64_haiku.c:859 eelf_x86_64_sol2.c:991 #, c-format msgid " -z pack-relative-relocs Pack relative relocations\n" msgstr "" -#: eelf32_x86_64.c:8767 eelf64loongarch.c:621 eelf64lppc.c:1401 -#: eelf64lppc_fbsd.c:1401 eelf64ppc.c:1401 eelf64ppc_fbsd.c:1401 +#: eelf32_x86_64.c:8799 eelf64loongarch.c:621 eelf64lppc.c:1402 +#: eelf64lppc_fbsd.c:1402 eelf64ppc.c:1402 eelf64ppc_fbsd.c:1402 #: eelf_i386.c:8205 eelf_i386_fbsd.c:737 eelf_i386_haiku.c:737 -#: eelf_x86_64.c:8831 eelf_x86_64_cloudabi.c:829 eelf_x86_64_fbsd.c:829 -#: eelf_x86_64_haiku.c:829 eelf_x86_64_sol2.c:961 +#: eelf_x86_64.c:8863 eelf_x86_64_cloudabi.c:861 eelf_x86_64_fbsd.c:861 +#: eelf_x86_64_haiku.c:861 eelf_x86_64_sol2.c:993 #, c-format msgid "" " -z nopack-relative-relocs Do not pack relative relocations (default)\n" @@ -6419,12 +6465,11 @@ msgid "" msgstr "" #: eelf32cr16.c:88 -msgid "" -"%F%P: %pB: all input objects must be COFF or ELF for --embedded-relocs\n" +msgid "%P: %pB: all input objects must be COFF or ELF for --embedded-relocs\n" msgstr "" #: eelf32cr16.c:112 em68kelf.c:116 em68kelfnbsd.c:116 -msgid "%F%P: %pB: can not create .emreloc section: %E\n" +msgid "%P: %pB: can not create .emreloc section: %E\n" msgstr "" #: eelf32cr16.c:131 em68kelf.c:137 em68kelfnbsd.c:137 @@ -6440,7 +6485,11 @@ msgid "%X%P: %pB: can not create runtime reloc information: %s\n" msgstr "" #: eelf32kvx.c:64 eelf64kvx.c:64 -msgid "%F:%P: -pie not supported\n" +msgid ":%P: -pie not supported\n" +msgstr "" + +#: eelf32kvx.c:316 eelf64kvx.c:316 eelf64kvx_linux.c:314 +msgid "%P: can not create BFD %E\n" msgstr "" #: eelf32lppc.c:99 eelf32lppclinux.c:99 eelf32lppcnto.c:99 eelf32lppcsim.c:99 @@ -6478,24 +6527,24 @@ msgstr "" #: eelf32lppcsim.c:822 eelf32ppc.c:822 eelf32ppc_fbsd.c:822 #: eelf32ppchaiku.c:822 eelf32ppclinux.c:822 eelf32ppcnto.c:822 #: eelf32ppcsim.c:822 eelf32ppcvxworks.c:792 eelf32ppcwindiss.c:822 -#: eelf64lppc.c:1262 eelf64lppc_fbsd.c:1262 eelf64ppc.c:1262 -#: eelf64ppc_fbsd.c:1262 -msgid "%F%P: invalid --plt-align `%s'\n" +#: eelf64lppc.c:1263 eelf64lppc_fbsd.c:1263 eelf64ppc.c:1263 +#: eelf64ppc_fbsd.c:1263 +msgid "%P: invalid --plt-align `%s'\n" msgstr "" #: eelf32lppc.c:855 eelf32lppclinux.c:855 eelf32lppcnto.c:855 #: eelf32lppcsim.c:855 eelf32ppc.c:855 eelf32ppc_fbsd.c:855 #: eelf32ppchaiku.c:855 eelf32ppclinux.c:855 eelf32ppcnto.c:855 #: eelf32ppcsim.c:855 eelf32ppcvxworks.c:825 eelf32ppcwindiss.c:855 -msgid "%F%P: invalid pagesize `%s'\n" +msgid "%P: invalid pagesize `%s'\n" msgstr "" #: eelf32lppc.c:885 eelf32lppclinux.c:885 eelf32lppcnto.c:885 #: eelf32lppcsim.c:885 eelf32ppc.c:885 eelf32ppc_fbsd.c:885 #: eelf32ppchaiku.c:885 eelf32ppclinux.c:885 eelf32ppcnto.c:885 #: eelf32ppcsim.c:885 eelf32ppcvxworks.c:859 eelf32ppcwindiss.c:885 -#: eelf64lppc.c:1447 eelf64lppc_fbsd.c:1447 eelf64ppc.c:1447 -#: eelf64ppc_fbsd.c:1447 +#: eelf64lppc.c:1448 eelf64lppc_fbsd.c:1448 eelf64ppc.c:1448 +#: eelf64ppc_fbsd.c:1448 #, c-format msgid " --emit-stub-syms Label linker stubs with a symbol\n" msgstr "" @@ -6504,8 +6553,8 @@ msgstr "" #: eelf32lppcsim.c:888 eelf32ppc.c:888 eelf32ppc_fbsd.c:888 #: eelf32ppchaiku.c:888 eelf32ppclinux.c:888 eelf32ppcnto.c:888 #: eelf32ppcsim.c:888 eelf32ppcvxworks.c:862 eelf32ppcwindiss.c:888 -#: eelf64lppc.c:1450 eelf64lppc_fbsd.c:1450 eelf64ppc.c:1450 -#: eelf64ppc_fbsd.c:1450 +#: eelf64lppc.c:1451 eelf64lppc_fbsd.c:1451 eelf64ppc.c:1451 +#: eelf64ppc_fbsd.c:1451 #, c-format msgid " --no-emit-stub-syms Don't label linker stubs with a symbol\n" msgstr "" @@ -6514,8 +6563,8 @@ msgstr "" #: eelf32lppcsim.c:891 eelf32ppc.c:891 eelf32ppc_fbsd.c:891 #: eelf32ppchaiku.c:891 eelf32ppclinux.c:891 eelf32ppcnto.c:891 #: eelf32ppcsim.c:891 eelf32ppcvxworks.c:865 eelf32ppcwindiss.c:891 -#: eelf64lppc.c:1470 eelf64lppc_fbsd.c:1470 eelf64ppc.c:1470 -#: eelf64ppc_fbsd.c:1470 +#: eelf64lppc.c:1471 eelf64lppc_fbsd.c:1471 eelf64ppc.c:1471 +#: eelf64ppc_fbsd.c:1471 #, c-format msgid " --no-tls-optimize Don't try to optimize TLS accesses\n" msgstr "" @@ -6524,8 +6573,8 @@ msgstr "" #: eelf32lppcsim.c:894 eelf32ppc.c:894 eelf32ppc_fbsd.c:894 #: eelf32ppchaiku.c:894 eelf32ppclinux.c:894 eelf32ppcnto.c:894 #: eelf32ppcsim.c:894 eelf32ppcvxworks.c:868 eelf32ppcwindiss.c:894 -#: eelf64lppc.c:1476 eelf64lppc_fbsd.c:1476 eelf64ppc.c:1476 -#: eelf64ppc_fbsd.c:1476 +#: eelf64lppc.c:1477 eelf64lppc_fbsd.c:1477 eelf64ppc.c:1477 +#: eelf64ppc_fbsd.c:1477 #, c-format msgid " --no-tls-get-addr-optimize Don't use a special __tls_get_addr call\n" msgstr "" @@ -6557,8 +6606,8 @@ msgstr "" #: eelf32lppc.c:906 eelf32lppclinux.c:906 eelf32lppcnto.c:906 #: eelf32lppcsim.c:906 eelf32ppc.c:906 eelf32ppc_fbsd.c:906 #: eelf32ppchaiku.c:906 eelf32ppclinux.c:906 eelf32ppcnto.c:906 -#: eelf32ppcsim.c:906 eelf32ppcwindiss.c:906 eelf64lppc.c:1429 -#: eelf64lppc_fbsd.c:1429 eelf64ppc.c:1429 eelf64ppc_fbsd.c:1429 +#: eelf32ppcsim.c:906 eelf32ppcwindiss.c:906 eelf64lppc.c:1430 +#: eelf64lppc_fbsd.c:1430 eelf64ppc.c:1430 eelf64ppc_fbsd.c:1430 #, c-format msgid " --no-plt-align Dont't align individual PLT call stubs\n" msgstr "" @@ -6566,8 +6615,8 @@ msgstr "" #: eelf32lppc.c:909 eelf32lppclinux.c:909 eelf32lppcnto.c:909 #: eelf32lppcsim.c:909 eelf32ppc.c:909 eelf32ppc_fbsd.c:909 #: eelf32ppchaiku.c:909 eelf32ppclinux.c:909 eelf32ppcnto.c:909 -#: eelf32ppcsim.c:909 eelf32ppcwindiss.c:909 eelf64lppc.c:1488 -#: eelf64lppc_fbsd.c:1488 eelf64ppc.c:1488 eelf64ppc_fbsd.c:1488 +#: eelf32ppcsim.c:909 eelf32ppcwindiss.c:909 eelf64lppc.c:1489 +#: eelf64lppc_fbsd.c:1489 eelf64ppc.c:1489 eelf64ppc_fbsd.c:1489 #, c-format msgid "" " --no-inline-optimize Don't convert inline PLT to direct calls\n" @@ -6622,8 +6671,8 @@ msgid "" " --base_file <basefile> Generate a base file for relocatable DLLs\n" msgstr "" -#: eelf32metag.c:802 eelf64lppc.c:1404 eelf64lppc_fbsd.c:1404 eelf64ppc.c:1404 -#: eelf64ppc_fbsd.c:1404 ehppaelf.c:631 ehppalinux.c:843 ehppanbsd.c:843 +#: eelf32metag.c:802 eelf64lppc.c:1405 eelf64lppc_fbsd.c:1405 eelf64ppc.c:1405 +#: eelf64ppc_fbsd.c:1405 ehppaelf.c:631 ehppalinux.c:843 ehppanbsd.c:843 #: ehppaobsd.c:843 #, c-format msgid "" @@ -6694,7 +6743,7 @@ msgid "" msgstr "" #: eelf32xtensa.c:421 -msgid "%F%P: %pB: cannot read contents of section %pA\n" +msgid "%P: %pB: cannot read contents of section %pA\n" msgstr "" #: eelf32xtensa.c:432 @@ -6706,23 +6755,23 @@ msgid "%P: %pB: warning: cannot parse .xtensa.info section\n" msgstr "" #: eelf32xtensa.c:462 -msgid "%F%P: little endian output does not match Xtensa configuration\n" +msgid "%P: little endian output does not match Xtensa configuration\n" msgstr "" #: eelf32xtensa.c:468 -msgid "%F%P: big endian output does not match Xtensa configuration\n" +msgid "%P: big endian output does not match Xtensa configuration\n" msgstr "" #: eelf32xtensa.c:487 -msgid "%F%P: cross-endian linking for %pB not supported\n" +msgid "%P: cross-endian linking for %pB not supported\n" msgstr "" #: eelf32xtensa.c:518 -msgid "%F%P: failed to create .xtensa.info section\n" +msgid "%P: failed to create .xtensa.info section\n" msgstr "" #: eelf32xtensa.c:1257 -msgid "%F%P: Relaxation not supported with --enable-non-contiguous-regions.\n" +msgid "%P: Relaxation not supported with --enable-non-contiguous-regions.\n" msgstr "" #: eelf32xtensa.c:2466 @@ -6744,7 +6793,7 @@ msgid " --abi-call0 Choose call0 ABI for the output object\n" msgstr "" #: eelf32z80.c:70 ez80.c:59 -msgid "%F%P: %pB: Instruction sets of object files incompatible\n" +msgid "%P: %pB: Instruction sets of object files incompatible\n" msgstr "" #: eelf64_ia64.c:575 eelf64_ia64_fbsd.c:575 @@ -6753,26 +6802,18 @@ msgid "" " --itanium Generate code for Intel Itanium processor\n" msgstr "" -#: eelf64_s390.c:648 +#: eelf64_s390.c:661 #, c-format msgid "" " --s390-pgste Tell the kernel to allocate 4k page tables\n" msgstr "" -#: eelf64alpha.c:645 eelf64alpha_fbsd.c:645 eelf64alpha_nbsd.c:645 -#, c-format -msgid "" -" --taso Load executable in the lower 31-bit " -"addressable\n" -" virtual address range\n" -msgstr "" - -#: eelf64alpha.c:648 eelf64alpha_fbsd.c:648 eelf64alpha_nbsd.c:648 +#: eelf64alpha.c:618 eelf64alpha_fbsd.c:618 eelf64alpha_nbsd.c:618 #, c-format msgid " --secureplt Force PLT in text segment\n" msgstr "" -#: eelf64alpha.c:650 eelf64alpha_fbsd.c:650 eelf64alpha_nbsd.c:650 +#: eelf64alpha.c:620 eelf64alpha_fbsd.c:620 eelf64alpha_nbsd.c:620 #, c-format msgid " --no-secureplt Force PLT in data segment\n" msgstr "" @@ -6791,76 +6832,76 @@ msgstr "" msgid "%P: .init/.fini fragments use differing TOC pointers\n" msgstr "" -#: eelf64lppc.c:1291 eelf64lppc_fbsd.c:1291 eelf64ppc.c:1291 -#: eelf64ppc_fbsd.c:1291 -msgid "%F%P: invalid --power10-stubs argument `%s'\n" +#: eelf64lppc.c:1292 eelf64lppc_fbsd.c:1292 eelf64ppc.c:1292 +#: eelf64ppc_fbsd.c:1292 +msgid "%P: invalid --power10-stubs argument `%s'\n" msgstr "" -#: eelf64lppc.c:1414 eelf64ppc.c:1414 +#: eelf64lppc.c:1415 eelf64ppc.c:1415 #, c-format msgid "" " --plt-static-chain PLT call stubs should load r11 (default)\n" msgstr "" -#: eelf64lppc.c:1417 eelf64ppc.c:1417 +#: eelf64lppc.c:1418 eelf64ppc.c:1418 #, c-format msgid " --no-plt-static-chain PLT call stubs should not load r11\n" msgstr "" -#: eelf64lppc.c:1420 eelf64lppc_fbsd.c:1420 eelf64ppc.c:1420 -#: eelf64ppc_fbsd.c:1420 +#: eelf64lppc.c:1421 eelf64lppc_fbsd.c:1421 eelf64ppc.c:1421 +#: eelf64ppc_fbsd.c:1421 #, c-format msgid " --plt-thread-safe PLT call stubs with load-load barrier\n" msgstr "" -#: eelf64lppc.c:1423 eelf64lppc_fbsd.c:1423 eelf64ppc.c:1423 -#: eelf64ppc_fbsd.c:1423 +#: eelf64lppc.c:1424 eelf64lppc_fbsd.c:1424 eelf64ppc.c:1424 +#: eelf64ppc_fbsd.c:1424 #, c-format msgid " --no-plt-thread-safe PLT call stubs without barrier\n" msgstr "" -#: eelf64lppc.c:1426 eelf64lppc_fbsd.c:1426 eelf64ppc.c:1426 -#: eelf64ppc_fbsd.c:1426 +#: eelf64lppc.c:1427 eelf64lppc_fbsd.c:1427 eelf64ppc.c:1427 +#: eelf64ppc_fbsd.c:1427 #, c-format msgid " --plt-align [=<align>] Align PLT call stubs to fit cache lines\n" msgstr "" -#: eelf64lppc.c:1432 eelf64lppc_fbsd.c:1432 eelf64ppc.c:1432 -#: eelf64ppc_fbsd.c:1432 +#: eelf64lppc.c:1433 eelf64lppc_fbsd.c:1433 eelf64ppc.c:1433 +#: eelf64ppc_fbsd.c:1433 #, c-format msgid "" " --plt-localentry Optimize calls to ELFv2 localentry:0 " "functions\n" msgstr "" -#: eelf64lppc.c:1435 eelf64lppc_fbsd.c:1435 eelf64ppc.c:1435 -#: eelf64ppc_fbsd.c:1435 +#: eelf64lppc.c:1436 eelf64lppc_fbsd.c:1436 eelf64ppc.c:1436 +#: eelf64ppc_fbsd.c:1436 #, c-format msgid " --no-plt-localentry Don't optimize ELFv2 calls\n" msgstr "" -#: eelf64lppc.c:1438 eelf64lppc_fbsd.c:1438 eelf64ppc.c:1438 -#: eelf64ppc_fbsd.c:1438 +#: eelf64lppc.c:1439 eelf64lppc_fbsd.c:1439 eelf64ppc.c:1439 +#: eelf64ppc_fbsd.c:1439 #, c-format msgid "" " --power10-stubs [=auto] Use Power10 PLT call stubs (default auto)\n" msgstr "" -#: eelf64lppc.c:1441 eelf64lppc_fbsd.c:1441 eelf64ppc.c:1441 -#: eelf64ppc_fbsd.c:1441 +#: eelf64lppc.c:1442 eelf64lppc_fbsd.c:1442 eelf64ppc.c:1442 +#: eelf64ppc_fbsd.c:1442 #, c-format msgid "" " --no-pcrel-optimize Don't perform R_PPC64_PCREL_OPT optimization\n" msgstr "" -#: eelf64lppc.c:1444 eelf64lppc_fbsd.c:1444 eelf64ppc.c:1444 -#: eelf64ppc_fbsd.c:1444 +#: eelf64lppc.c:1445 eelf64lppc_fbsd.c:1445 eelf64ppc.c:1445 +#: eelf64ppc_fbsd.c:1445 #, c-format msgid " --no-power10-stubs Don't use Power10 PLT call stubs\n" msgstr "" -#: eelf64lppc.c:1453 eelf64lppc_fbsd.c:1453 eelf64ppc.c:1453 -#: eelf64ppc_fbsd.c:1453 +#: eelf64lppc.c:1454 eelf64lppc_fbsd.c:1454 eelf64ppc.c:1454 +#: eelf64ppc_fbsd.c:1454 #, c-format msgid "" " --dotsyms For every version pattern \"foo\" in a " @@ -6870,15 +6911,15 @@ msgid "" " descriptor symbols. Defaults to on.\n" msgstr "" -#: eelf64lppc.c:1459 eelf64lppc_fbsd.c:1459 eelf64ppc.c:1459 -#: eelf64ppc_fbsd.c:1459 +#: eelf64lppc.c:1460 eelf64lppc_fbsd.c:1460 eelf64ppc.c:1460 +#: eelf64ppc_fbsd.c:1460 #, c-format msgid "" " --no-dotsyms Don't do anything special in version scripts\n" msgstr "" -#: eelf64lppc.c:1462 eelf64lppc_fbsd.c:1462 eelf64ppc.c:1462 -#: eelf64ppc_fbsd.c:1462 +#: eelf64lppc.c:1463 eelf64lppc_fbsd.c:1463 eelf64ppc.c:1463 +#: eelf64ppc_fbsd.c:1463 #, c-format msgid "" " --save-restore-funcs Provide register save and restore routines " @@ -6887,71 +6928,71 @@ msgid "" " final link, off for ld -r.\n" msgstr "" -#: eelf64lppc.c:1467 eelf64lppc_fbsd.c:1467 eelf64ppc.c:1467 -#: eelf64ppc_fbsd.c:1467 +#: eelf64lppc.c:1468 eelf64lppc_fbsd.c:1468 eelf64ppc.c:1468 +#: eelf64ppc_fbsd.c:1468 #, c-format msgid " --no-save-restore-funcs Don't provide these routines\n" msgstr "" -#: eelf64lppc.c:1473 eelf64lppc_fbsd.c:1473 eelf64ppc.c:1473 -#: eelf64ppc_fbsd.c:1473 +#: eelf64lppc.c:1474 eelf64lppc_fbsd.c:1474 eelf64ppc.c:1474 +#: eelf64ppc_fbsd.c:1474 #, c-format msgid "" " --tls-get-addr-optimize Force use of special __tls_get_addr call\n" msgstr "" -#: eelf64lppc.c:1479 eelf64lppc_fbsd.c:1479 eelf64ppc.c:1479 -#: eelf64ppc_fbsd.c:1479 +#: eelf64lppc.c:1480 eelf64lppc_fbsd.c:1480 eelf64ppc.c:1480 +#: eelf64ppc_fbsd.c:1480 #, c-format msgid " --tls-get-addr-regsave Force register save __tls_get_addr stub\n" msgstr "" -#: eelf64lppc.c:1482 eelf64lppc_fbsd.c:1482 eelf64ppc.c:1482 -#: eelf64ppc_fbsd.c:1482 +#: eelf64lppc.c:1483 eelf64lppc_fbsd.c:1483 eelf64ppc.c:1483 +#: eelf64ppc_fbsd.c:1483 #, c-format msgid "" " --no-tls-get-addr-regsave Don't use register save __tls_get_addr stub\n" msgstr "" -#: eelf64lppc.c:1485 eelf64lppc_fbsd.c:1485 eelf64ppc.c:1485 -#: eelf64ppc_fbsd.c:1485 +#: eelf64lppc.c:1486 eelf64lppc_fbsd.c:1486 eelf64ppc.c:1486 +#: eelf64ppc_fbsd.c:1486 #, c-format msgid " --no-opd-optimize Don't optimize the OPD section\n" msgstr "" -#: eelf64lppc.c:1491 eelf64lppc_fbsd.c:1491 eelf64ppc.c:1491 -#: eelf64ppc_fbsd.c:1491 +#: eelf64lppc.c:1492 eelf64lppc_fbsd.c:1492 eelf64ppc.c:1492 +#: eelf64ppc_fbsd.c:1492 #, c-format msgid " --no-toc-optimize Don't optimize the TOC section\n" msgstr "" -#: eelf64lppc.c:1494 eelf64lppc_fbsd.c:1494 eelf64ppc.c:1494 -#: eelf64ppc_fbsd.c:1494 +#: eelf64lppc.c:1495 eelf64lppc_fbsd.c:1495 eelf64ppc.c:1495 +#: eelf64ppc_fbsd.c:1495 #, c-format msgid "" " --no-multi-toc Disallow automatic multiple toc sections\n" msgstr "" -#: eelf64lppc.c:1497 eelf64lppc_fbsd.c:1497 eelf64ppc.c:1497 -#: eelf64ppc_fbsd.c:1497 +#: eelf64lppc.c:1498 eelf64lppc_fbsd.c:1498 eelf64ppc.c:1498 +#: eelf64ppc_fbsd.c:1498 #, c-format msgid " --no-toc-sort Don't sort TOC and GOT sections\n" msgstr "" -#: eelf64lppc.c:1500 eelf64lppc_fbsd.c:1500 eelf64ppc.c:1500 -#: eelf64ppc_fbsd.c:1500 +#: eelf64lppc.c:1501 eelf64lppc_fbsd.c:1501 eelf64ppc.c:1501 +#: eelf64ppc_fbsd.c:1501 #, c-format msgid "" " --non-overlapping-opd Canonicalize .opd, so that there are no\n" " overlapping .opd entries\n" msgstr "" -#: eelf64lppc_fbsd.c:1414 eelf64ppc_fbsd.c:1414 +#: eelf64lppc_fbsd.c:1415 eelf64ppc_fbsd.c:1415 #, c-format msgid " --plt-static-chain PLT call stubs should load r111\n" msgstr "" -#: eelf64lppc_fbsd.c:1417 eelf64ppc_fbsd.c:1417 +#: eelf64lppc_fbsd.c:1418 eelf64ppc_fbsd.c:1418 #, c-format msgid "" " --no-plt-static-chain PLT call stubs should not load r11 (default)\n" @@ -6965,58 +7006,57 @@ msgstr "" msgid "%X%P: too many global registers: %u, max 223\n" msgstr "" -#. This is a fatal error; make einfo call not return. -#: eelf64mmix.c:146 emmo.c:146 -msgid "%F%P: can't finalize linker-allocated global registers\n" +#: eelf64mmix.c:144 emmo.c:144 +msgid "%P: can't finalize linker-allocated global registers\n" msgstr "" -#: eelf_x86_64.c:8687 eelf_x86_64_cloudabi.c:685 eelf_x86_64_fbsd.c:685 -#: eelf_x86_64_haiku.c:685 eelf_x86_64_sol2.c:817 -msgid "%F%P: invalid option for -z lam-u48-report=: %s\n" +#: eelf_x86_64.c:8719 eelf_x86_64_cloudabi.c:717 eelf_x86_64_fbsd.c:717 +#: eelf_x86_64_haiku.c:717 eelf_x86_64_sol2.c:849 +msgid "%P: invalid option for -z lam-u48-report=: %s\n" msgstr "" -#: eelf_x86_64.c:8701 eelf_x86_64_cloudabi.c:699 eelf_x86_64_fbsd.c:699 -#: eelf_x86_64_haiku.c:699 eelf_x86_64_sol2.c:831 -msgid "%F%P: invalid option for -z lam-u57-report=: %s\n" +#: eelf_x86_64.c:8733 eelf_x86_64_cloudabi.c:731 eelf_x86_64_fbsd.c:731 +#: eelf_x86_64_haiku.c:731 eelf_x86_64_sol2.c:863 +msgid "%P: invalid option for -z lam-u57-report=: %s\n" msgstr "" -#: eelf_x86_64.c:8722 eelf_x86_64_cloudabi.c:720 eelf_x86_64_fbsd.c:720 -#: eelf_x86_64_haiku.c:720 eelf_x86_64_sol2.c:852 -msgid "%F%P: invalid option for -z lam-report=: %s\n" +#: eelf_x86_64.c:8754 eelf_x86_64_cloudabi.c:752 eelf_x86_64_fbsd.c:752 +#: eelf_x86_64_haiku.c:752 eelf_x86_64_sol2.c:884 +msgid "%P: invalid option for -z lam-report=: %s\n" msgstr "" -#: eelf_x86_64.c:8806 eelf_x86_64_cloudabi.c:804 eelf_x86_64_fbsd.c:804 -#: eelf_x86_64_haiku.c:804 eelf_x86_64_sol2.c:936 +#: eelf_x86_64.c:8838 eelf_x86_64_cloudabi.c:836 eelf_x86_64_fbsd.c:836 +#: eelf_x86_64_haiku.c:836 eelf_x86_64_sol2.c:968 #, c-format msgid "" " -z lam-u48 Generate GNU_PROPERTY_X86_FEATURE_1_LAM_U48\n" msgstr "" -#: eelf_x86_64.c:8808 eelf_x86_64_cloudabi.c:806 eelf_x86_64_fbsd.c:806 -#: eelf_x86_64_haiku.c:806 eelf_x86_64_sol2.c:938 +#: eelf_x86_64.c:8840 eelf_x86_64_cloudabi.c:838 eelf_x86_64_fbsd.c:838 +#: eelf_x86_64_haiku.c:838 eelf_x86_64_sol2.c:970 #, c-format msgid "" " -z lam-u48-report=[none|warning|error] (default: none)\n" " Report missing LAM_U48 property\n" msgstr "" -#: eelf_x86_64.c:8811 eelf_x86_64_cloudabi.c:809 eelf_x86_64_fbsd.c:809 -#: eelf_x86_64_haiku.c:809 eelf_x86_64_sol2.c:941 +#: eelf_x86_64.c:8843 eelf_x86_64_cloudabi.c:841 eelf_x86_64_fbsd.c:841 +#: eelf_x86_64_haiku.c:841 eelf_x86_64_sol2.c:973 #, c-format msgid "" " -z lam-u57 Generate GNU_PROPERTY_X86_FEATURE_1_LAM_U57\n" msgstr "" -#: eelf_x86_64.c:8813 eelf_x86_64_cloudabi.c:811 eelf_x86_64_fbsd.c:811 -#: eelf_x86_64_haiku.c:811 eelf_x86_64_sol2.c:943 +#: eelf_x86_64.c:8845 eelf_x86_64_cloudabi.c:843 eelf_x86_64_fbsd.c:843 +#: eelf_x86_64_haiku.c:843 eelf_x86_64_sol2.c:975 #, c-format msgid "" " -z lam-u57-report=[none|warning|error] (default: none)\n" " Report missing LAM_U57 property\n" msgstr "" -#: eelf_x86_64.c:8816 eelf_x86_64_cloudabi.c:814 eelf_x86_64_fbsd.c:814 -#: eelf_x86_64_haiku.c:814 eelf_x86_64_sol2.c:946 +#: eelf_x86_64.c:8848 eelf_x86_64_cloudabi.c:846 eelf_x86_64_fbsd.c:846 +#: eelf_x86_64_haiku.c:846 eelf_x86_64_sol2.c:978 #, c-format msgid "" " -z lam-report=[none|warning|error] (default: none)\n" @@ -7034,20 +7074,20 @@ msgid "" " multiple sub-space shared libraries\n" msgstr "" -#: ei386beos.c:359 -msgid "%F%P: PE operations on non PE file\n" +#: ei386beos.c:354 +msgid "%P: PE operations on non PE file\n" msgstr "" -#: ei386beos.c:409 ei386beos.c:414 -msgid "%F%P: %pB: can't read contents of section .idata: %E\n" +#: ei386beos.c:403 ei386beos.c:408 +msgid "%P: %pB: can't read contents of section .idata: %E\n" msgstr "" -#: ei386beos.c:646 -msgid "%F%P: section %s has '$' as first character\n" +#: ei386beos.c:640 +msgid "%P: section %s has '$' as first character\n" msgstr "" -#: ei386beos.c:676 -msgid "%F%P: *(%s$) missing from linker script\n" +#: ei386beos.c:670 +msgid "%P: *(%s$) missing from linker script\n" msgstr "" #: em68hc11elf.c:144 em68hc11elfb.c:144 em68hc12elf.c:144 em68hc12elfb.c:144 @@ -7077,7 +7117,7 @@ msgid "" msgstr "" #: em68kelf.c:92 em68kelfnbsd.c:92 -msgid "%F%P: %pB: all input objects must be ELF for --embedded-relocs\n" +msgid "%P: %pB: all input objects must be ELF for --embedded-relocs\n" msgstr "" #: em68kelf.c:701 em68kelfnbsd.c:701 @@ -7089,7 +7129,7 @@ msgstr "" msgid " --got=<type> Specify GOT handling scheme\n" msgstr "" -#: emmo.c:333 +#: emmo.c:330 msgid "%X%P: internal problems scanning %pB after opening it" msgstr "" @@ -7148,7 +7188,7 @@ msgstr "" #. Incompatible objects. #: ends32belf.c:129 ends32belf16m.c:129 ends32belf_linux.c:129 ends32elf.c:129 #: ends32elf16m.c:129 ends32elf_linux.c:129 -msgid "%F%P: %pB: ABI version of object files mismatched\n" +msgid "%P: %pB: ABI version of object files mismatched\n" msgstr "" #: ends32belf.c:450 ends32belf16m.c:450 ends32belf_linux.c:583 ends32elf.c:450 @@ -7227,6 +7267,6 @@ msgstr "" msgid " --format 0|1|2 Specify which COFF version to use\n" msgstr "" -#: etic3xcoff.c:92 etic3xcoff_onchip.c:92 etic4xcoff.c:92 etic54xcoff.c:92 -msgid "%F%P: invalid COFF format version %s\n" +#: etic3xcoff.c:91 etic3xcoff_onchip.c:91 etic4xcoff.c:91 etic54xcoff.c:91 +msgid "%P: invalid COFF format version %s\n" msgstr "" diff --git a/ld/testsuite/ld-aarch64/aarch64-elf.exp b/ld/testsuite/ld-aarch64/aarch64-elf.exp index 4de498f..8d56beb 100644 --- a/ld/testsuite/ld-aarch64/aarch64-elf.exp +++ b/ld/testsuite/ld-aarch64/aarch64-elf.exp @@ -376,6 +376,10 @@ run_dump_test_lp64 "variant_pcs-r" run_dump_test_lp64 "variant_pcs-shared" run_dump_test_lp64 "variant_pcs-now" +run_dump_test_lp64 "mte-tagged-frame" +run_dump_test_lp64 "dt-memtag-mode" +run_dump_test_lp64 "dt-memtag-stack" + set aarch64elflinktests { {"ld-aarch64/so with global symbol" "-shared" "" "" {copy-reloc-so.s} {} "copy-reloc-so.so"} diff --git a/ld/testsuite/ld-aarch64/dt-memtag-mode.d b/ld/testsuite/ld-aarch64/dt-memtag-mode.d new file mode 100644 index 0000000..21670bc --- /dev/null +++ b/ld/testsuite/ld-aarch64/dt-memtag-mode.d @@ -0,0 +1,7 @@ +#source: dt-memtag.s +#ld: -shared -z memtag-mode=async +#readelf: -d + +#... + 0x0000000070000009 \(AARCH64_MEMTAG_MODE\) 0x1 +#... diff --git a/ld/testsuite/ld-aarch64/dt-memtag-stack.d b/ld/testsuite/ld-aarch64/dt-memtag-stack.d new file mode 100644 index 0000000..242f61f --- /dev/null +++ b/ld/testsuite/ld-aarch64/dt-memtag-stack.d @@ -0,0 +1,7 @@ +#source: dt-memtag.s +#ld: -shared -z memtag-stack +#readelf: -d + +#... + 0x000000007000000c \(AARCH64_MEMTAG_STACK\) 0x1 +#... diff --git a/ld/testsuite/ld-aarch64/dt-memtag.s b/ld/testsuite/ld-aarch64/dt-memtag.s new file mode 100644 index 0000000..51f3ba5 --- /dev/null +++ b/ld/testsuite/ld-aarch64/dt-memtag.s @@ -0,0 +1,7 @@ +// Test DT_AARCH64_MEMTAG_MODE. + +.text +.p2align 3 +.global foo +foo: +.xword foo diff --git a/ld/testsuite/ld-aarch64/mte-tagged-frame-bar.s b/ld/testsuite/ld-aarch64/mte-tagged-frame-bar.s new file mode 100644 index 0000000..0bd5619 --- /dev/null +++ b/ld/testsuite/ld-aarch64/mte-tagged-frame-bar.s @@ -0,0 +1,17 @@ + .text + .global bar + .type bar, %function +bar: + .cfi_startproc + .cfi_mte_tagged_frame + stp x19, x20, [sp, -144]! + .cfi_def_cfa_offset 144 + .cfi_offset 19, -144 + .cfi_offset 20, -136 + ldp x19, x20, [sp], 144 + .cfi_restore 20 + .cfi_restore 19 + .cfi_def_cfa_offset 0 + ret + .cfi_endproc + .size bar, .-bar diff --git a/ld/testsuite/ld-aarch64/mte-tagged-frame-foo.s b/ld/testsuite/ld-aarch64/mte-tagged-frame-foo.s new file mode 100644 index 0000000..af5a8c4 --- /dev/null +++ b/ld/testsuite/ld-aarch64/mte-tagged-frame-foo.s @@ -0,0 +1,16 @@ + .text + .global foo + .type foo, %function +foo: + .cfi_startproc + stp x19, x20, [sp, -32]! + .cfi_def_cfa_offset 32 + .cfi_offset 19, -32 + .cfi_offset 20, -16 + ldp x19, x20, [sp], 32 + .cfi_restore 20 + .cfi_restore 19 + .cfi_def_cfa_offset 0 + ret + .cfi_endproc + .size foo, .-foo diff --git a/ld/testsuite/ld-aarch64/mte-tagged-frame.d b/ld/testsuite/ld-aarch64/mte-tagged-frame.d new file mode 100644 index 0000000..dd667fe --- /dev/null +++ b/ld/testsuite/ld-aarch64/mte-tagged-frame.d @@ -0,0 +1,35 @@ +#source: mte-tagged-frame-foo.s +#source: mte-tagged-frame-bar.s +#ld: -shared +#objdump: -Wf +#name: MTE tagged EH Frame FDE + +#... +Contents of the .eh_frame section: + +00000000 0000000000000010 00000000 CIE + Version: 1 + Augmentation: "zR" + Code alignment factor: 4 + Data alignment factor: -8 + Return address column: 30 + Augmentation data: 1b + DW_CFA_def_cfa: r31 \(sp\) ofs 0 + +00000014 0000000000000020 00000018 FDE cie=00000000 pc=[a-f0-9]+\.\.[a-f0-9]+ +#... + +00000038 0000000000000014 00000000 CIE + Version: 1 + Augmentation: "zRG" + Code alignment factor: 4 + Data alignment factor: -8 + Return address column: 30 + Augmentation data: 1b + DW_CFA_def_cfa: r31 \(sp\) ofs 0 + DW_CFA_nop + DW_CFA_nop + DW_CFA_nop + +00000050 000000000000001c 0000001c FDE cie=00000038 pc=[a-f0-9]+\.\.[a-f0-9]+ +#... diff --git a/ld/testsuite/ld-loongarch-elf/relax-after-alignment.d b/ld/testsuite/ld-loongarch-elf/relax-after-alignment.d index 844c518..08def25 100644 --- a/ld/testsuite/ld-loongarch-elf/relax-after-alignment.d +++ b/ld/testsuite/ld-loongarch-elf/relax-after-alignment.d @@ -2,6 +2,7 @@ #as: #ld: --defsym _start=0 #objdump: -d --no-show-raw-insn +#xfail: *-*-* .*:\s+file format .* diff --git a/ld/testsuite/ld-mips-elf/micromips-hilo-n32.d b/ld/testsuite/ld-mips-elf/micromips-hilo-n32.d deleted file mode 100644 index 1cb3d87..0000000 --- a/ld/testsuite/ld-mips-elf/micromips-hilo-n32.d +++ /dev/null @@ -1,8 +0,0 @@ -#name: R_MICROMIPS_HI16 and R_MICROMIPS_LO16 relocs n32 -#source: ../../../gas/testsuite/gas/mips/mips-hilo.s -#source: mips-hilo.s -#as: -mmicromips -march=mips64r2 -#objdump: -d -#ld: -Tmips-hilo.ld -e 0x500000 -N -#notarget: mips*el-ps2-elf* -#dump: micromips-hilo.d diff --git a/ld/testsuite/ld-mips-elf/micromips-hilo-n64.d b/ld/testsuite/ld-mips-elf/micromips-hilo-n64.d index 1243e91..b3d34a1 100644 --- a/ld/testsuite/ld-mips-elf/micromips-hilo-n64.d +++ b/ld/testsuite/ld-mips-elf/micromips-hilo-n64.d @@ -1,4 +1,4 @@ -#name: R_MICROMIPS_HI16 and R_MICROMIPS_LO16 relocs n64 +#name: R_MICROMIPS_HI16 and R_MICROMIPS_LO16 relocs (n64) #source: ../../../gas/testsuite/gas/mips/mips-hilo-n64.s #source: mips-hilo.s #as: -mmicromips -march=mips64r2 diff --git a/ld/testsuite/ld-mips-elf/micromips-hilo-srec-n32.d b/ld/testsuite/ld-mips-elf/micromips-hilo-srec-n32.d deleted file mode 100644 index 1ea7daa..0000000 --- a/ld/testsuite/ld-mips-elf/micromips-hilo-srec-n32.d +++ /dev/null @@ -1,8 +0,0 @@ -#name: R_MICROMIPS_HI16 and R_MICROMIPS_LO16 relocs srec n32 -#source: ../../../gas/testsuite/gas/mips/mips-hilo.s -#source: mips-hilo.s -#as: -mmicromips -march=mips64r2 -#objdump: -m mips:micromips -j .sec1 -D -#ld: --oformat=srec -Tmips-hilo.ld -e 0x500000 -N -#notarget: mips*el-ps2-elf* -#dump: micromips-hilo.d diff --git a/ld/testsuite/ld-mips-elf/micromips-hilo-srec-n64.d b/ld/testsuite/ld-mips-elf/micromips-hilo-srec-n64.d index c25fbe8..efbaaa5 100644 --- a/ld/testsuite/ld-mips-elf/micromips-hilo-srec-n64.d +++ b/ld/testsuite/ld-mips-elf/micromips-hilo-srec-n64.d @@ -1,4 +1,4 @@ -#name: R_MICROMIPS_HI16 and R_MICROMIPS_LO16 relocs srec n64 +#name: R_MICROMIPS_HI16 and R_MICROMIPS_LO16 relocs srec (n64) #source: ../../../gas/testsuite/gas/mips/mips-hilo-n64.s #source: mips-hilo.s #as: -mmicromips -march=mips64r2 diff --git a/ld/testsuite/ld-mips-elf/micromips-hilo-srec.d b/ld/testsuite/ld-mips-elf/micromips-hilo-srec.d index e6b8459..c8bee0a 100644 --- a/ld/testsuite/ld-mips-elf/micromips-hilo-srec.d +++ b/ld/testsuite/ld-mips-elf/micromips-hilo-srec.d @@ -1,7 +1,7 @@ #name: R_MICROMIPS_HI16 and R_MICROMIPS_LO16 relocs srec #source: ../../../gas/testsuite/gas/mips/mips-hilo.s #source: mips-hilo.s -#as: -mmicromips -march=mips32r2 +#as: -mmicromips -march=mips64r2 #objdump: -m mips:micromips -j .sec1 -D #ld: --oformat=srec -Tmips-hilo.ld -e 0x500000 -N #notarget: mips*el-ps2-elf* diff --git a/ld/testsuite/ld-mips-elf/micromips-hilo.d b/ld/testsuite/ld-mips-elf/micromips-hilo.d index d518dfb..ec5c9d1 100644 --- a/ld/testsuite/ld-mips-elf/micromips-hilo.d +++ b/ld/testsuite/ld-mips-elf/micromips-hilo.d @@ -1,7 +1,7 @@ #name: R_MICROMIPS_HI16 and R_MICROMIPS_LO16 relocs #source: ../../../gas/testsuite/gas/mips/mips-hilo.s #source: mips-hilo.s -#as: -mmicromips -march=mips32r2 +#as: -mmicromips -march=mips64r2 #objdump: -d #ld: -Tmips-hilo.ld -e 0x500000 -N #notarget: mips*el-ps2-elf* diff --git a/ld/testsuite/ld-mips-elf/mips-elf.exp b/ld/testsuite/ld-mips-elf/mips-elf.exp index d0919ea..e8a1d42 100644 --- a/ld/testsuite/ld-mips-elf/mips-elf.exp +++ b/ld/testsuite/ld-mips-elf/mips-elf.exp @@ -815,42 +815,67 @@ run_dump_test_n32 "jalbal" noarch run_dump_test "mode-change-error-1" run_dump_test_o32 "mips16-hilo" noarch -run_dump_test_n32 "mips16-hilo-n32" noarch +run_dump_test_n32 "mips16-hilo" [list noarch [list name (n32)]] run_dump_test_o32 "mips16-hilo-srec" \ [list noarch \ [list objdump [expr { [istarget *el-*-*] ? "-EL" : "-EB" }]]] -run_dump_test_n32 "mips16-hilo-srec-n32" \ +run_dump_test_n32 "mips16-hilo-srec" \ [list noarch \ + [list name (n32)] \ [list objdump [expr { [istarget *el-*-*] ? "-EL" : "-EB" }]]] run_dump_test_o32 "mips16e2-hilo" noarch -run_dump_test_n32 "mips16e2-hilo-n32" noarch +run_dump_test_n32 "mips16e2-hilo" [list noarch [list name (n32)]] run_dump_test_o32 "mips16e2-hilo-srec" \ [list noarch \ [list objdump [expr { [istarget *el-*-*] ? "-EL" : "-EB" }]]] -run_dump_test_n32 "mips16e2-hilo-srec-n32" \ +run_dump_test_n32 "mips16e2-hilo-srec" \ [list noarch \ + [list name (n32)] \ [list objdump [expr { [istarget *el-*-*] ? "-EL" : "-EB" }]]] run_dump_test_o32 "mips-hilo" -run_dump_test_n32 "mips-hilo-n32" +run_dump_test_n32 "mips-hilo" [list [list name (n32)]] run_dump_test_n64 "mips-hilo-n64" run_dump_test_o32 "mips-hilo-srec" \ [list [list objdump [expr { [istarget *el-*-*] ? "-EL" : "-EB" }]]] -run_dump_test_n32 "mips-hilo-srec-n32" \ - [list [list objdump [expr { [istarget *el-*-*] ? "-EL" : "-EB" }]]] +run_dump_test_n32 "mips-hilo-srec" \ + [list [list name (n32)] \ + [list objdump [expr { [istarget *el-*-*] ? "-EL" : "-EB" }]]] run_dump_test_n64 "mips-hilo-srec-n64" \ [list [list objdump [expr { [istarget *el-*-*] ? "-EL" : "-EB" }]]] run_dump_test_o32 "micromips-hilo" noarch -run_dump_test_n32 "micromips-hilo-n32" noarch +run_dump_test_n32 "micromips-hilo" [list noarch [list name (n32)]] run_dump_test_n64 "micromips-hilo-n64" noarch run_dump_test_o32 "micromips-hilo-srec" \ [list noarch \ [list objdump [expr { [istarget *el-*-*] ? "-EL" : "-EB" }]]] -run_dump_test_n32 "micromips-hilo-srec-n32" \ +run_dump_test_n32 "micromips-hilo-srec" \ [list noarch \ + [list name (n32)] \ [list objdump [expr { [istarget *el-*-*] ? "-EL" : "-EB" }]]] run_dump_test_n64 "micromips-hilo-srec-n64" \ [list noarch \ [list objdump [expr { [istarget *el-*-*] ? "-EL" : "-EB" }]]] +run_dump_test_o32 "pcrel-hilo" +run_dump_test_n32 "pcrel-hilo" [list [list name (n32)]] +run_dump_test_n64 "pcrel-hilo" [list [list name (n64)]] +run_dump_test_o32 "pcrel-hilo-srec" \ + [list [list objdump [expr { [istarget *el-*-*] ? "-EL" : "-EB" }]]] +run_dump_test_n32 "pcrel-hilo-srec" \ + [list [list name (n32)] \ + [list objdump [expr { [istarget *el-*-*] ? "-EL" : "-EB" }]]] +run_dump_test_n64 "pcrel-hilo-srec" \ + [list [list name (n64)] \ + [list objdump [expr { [istarget *el-*-*] ? "-EL" : "-EB" }]]] + +run_dump_test_o32 "pr19977" +run_dump_test_n32 "pr19977" [list [list name (n32)]] +run_dump_test_o32 "pr19977-mips16" noarch +run_dump_test_n32 "pr19977-mips16" [list noarch [list name (n32)]] +run_dump_test_o32 "pr19977-micromips" noarch +run_dump_test_n32 "pr19977-micromips" [list noarch [list name (n32)]] +run_dump_test_o32 "pr19977-r" +run_dump_test_o32 "pr19977-r-mips16" noarch +run_dump_test_o32 "pr19977-r-micromips" noarch if { $linux_gnu } { run_dump_test_n32 "textrel-1" diff --git a/ld/testsuite/ld-mips-elf/mips-hilo-n32.d b/ld/testsuite/ld-mips-elf/mips-hilo-n32.d deleted file mode 100644 index 012e1f0..0000000 --- a/ld/testsuite/ld-mips-elf/mips-hilo-n32.d +++ /dev/null @@ -1,6 +0,0 @@ -#name: R_MIPS_HI16 and R_MIPS_LO16 relocs n32 -#source: ../../../gas/testsuite/gas/mips/mips-hilo.s -#source: mips-hilo.s -#objdump: -d -#ld: -Tmips-hilo.ld -e 0x500000 -N -#dump: mips-hilo.d diff --git a/ld/testsuite/ld-mips-elf/mips-hilo-n64.d b/ld/testsuite/ld-mips-elf/mips-hilo-n64.d index 5a3f919..9cac1b3 100644 --- a/ld/testsuite/ld-mips-elf/mips-hilo-n64.d +++ b/ld/testsuite/ld-mips-elf/mips-hilo-n64.d @@ -1,4 +1,4 @@ -#name: R_MIPS_HI16 and R_MIPS_LO16 relocs n64 +#name: R_MIPS_HI16 and R_MIPS_LO16 relocs (n64) #source: ../../../gas/testsuite/gas/mips/mips-hilo-n64.s #source: mips-hilo.s #objdump: -d diff --git a/ld/testsuite/ld-mips-elf/mips-hilo-srec-n32.d b/ld/testsuite/ld-mips-elf/mips-hilo-srec-n32.d deleted file mode 100644 index ccd0195..0000000 --- a/ld/testsuite/ld-mips-elf/mips-hilo-srec-n32.d +++ /dev/null @@ -1,6 +0,0 @@ -#name: R_MIPS_HI16 and R_MIPS_LO16 relocs srec n32 -#source: ../../../gas/testsuite/gas/mips/mips-hilo.s -#source: mips-hilo.s -#objdump: -m mips:4000 -j .sec1 -D -#ld: --oformat=srec -Tmips-hilo.ld -e 0x500000 -N -#dump: mips-hilo.d diff --git a/ld/testsuite/ld-mips-elf/mips-hilo-srec-n64.d b/ld/testsuite/ld-mips-elf/mips-hilo-srec-n64.d index b02983e..19ba44c 100644 --- a/ld/testsuite/ld-mips-elf/mips-hilo-srec-n64.d +++ b/ld/testsuite/ld-mips-elf/mips-hilo-srec-n64.d @@ -1,4 +1,4 @@ -#name: R_MIPS_HI16 and R_MIPS_LO16 relocs srec n64 +#name: R_MIPS_HI16 and R_MIPS_LO16 relocs srec (n64) #source: ../../../gas/testsuite/gas/mips/mips-hilo-n64.s #source: mips-hilo.s #objdump: -m mips:4000 -j .sec1 -D diff --git a/ld/testsuite/ld-mips-elf/mips-hilo-srec.d b/ld/testsuite/ld-mips-elf/mips-hilo-srec.d index 59e5717..a6afb3f 100644 --- a/ld/testsuite/ld-mips-elf/mips-hilo-srec.d +++ b/ld/testsuite/ld-mips-elf/mips-hilo-srec.d @@ -1,6 +1,6 @@ #name: R_MIPS_HI16 and R_MIPS_LO16 relocs srec #source: ../../../gas/testsuite/gas/mips/mips-hilo.s #source: mips-hilo.s -#objdump: -m mips:3000 -j .sec1 -D +#objdump: -m mips:4000 -j .sec1 -D #ld: --oformat=srec -Tmips-hilo.ld -e 0x500000 -N #dump: mips-hilo.d diff --git a/ld/testsuite/ld-mips-elf/mips16-hilo-n32.d b/ld/testsuite/ld-mips-elf/mips16-hilo-n32.d deleted file mode 100644 index 08b591c..0000000 --- a/ld/testsuite/ld-mips-elf/mips16-hilo-n32.d +++ /dev/null @@ -1,7 +0,0 @@ -#name: R_MIPS16_HI16 and R_MIPS16_LO16 relocs n32 -#source: ../../../gas/testsuite/gas/mips/mips16-hilo.s -#source: mips-hilo.s -#as: -march=mips3 -#objdump: -mmips:16 -dr -#ld: -Tmips-hilo.ld -e 0x500000 -N -#dump: mips16-hilo.d diff --git a/ld/testsuite/ld-mips-elf/mips16-hilo-srec-n32.d b/ld/testsuite/ld-mips-elf/mips16-hilo-srec-n32.d deleted file mode 100644 index 724adcb..0000000 --- a/ld/testsuite/ld-mips-elf/mips16-hilo-srec-n32.d +++ /dev/null @@ -1,7 +0,0 @@ -#name: R_MIPS16_HI16 and R_MIPS16_LO16 relocs srec n32 -#source: ../../../gas/testsuite/gas/mips/mips16-hilo.s -#source: mips-hilo.s -#as: -march=mips3 -#objdump: -mmips:16 -j .sec1 -D -#ld: --oformat=srec -Tmips-hilo.ld -e 0x500000 -N -#dump: mips16-hilo.d diff --git a/ld/testsuite/ld-mips-elf/mips16-hilo-srec.d b/ld/testsuite/ld-mips-elf/mips16-hilo-srec.d index 9c41d9a..cd20d98 100644 --- a/ld/testsuite/ld-mips-elf/mips16-hilo-srec.d +++ b/ld/testsuite/ld-mips-elf/mips16-hilo-srec.d @@ -1,7 +1,7 @@ #name: R_MIPS16_HI16 and R_MIPS16_LO16 relocs srec #source: ../../../gas/testsuite/gas/mips/mips16-hilo.s #source: mips-hilo.s -#as: -march=mips1 +#as: -march=mips3 #objdump: -mmips:16 -j .sec1 -D #ld: --oformat=srec -Tmips-hilo.ld -e 0x500000 -N #dump: mips16-hilo.d diff --git a/ld/testsuite/ld-mips-elf/mips16-hilo.d b/ld/testsuite/ld-mips-elf/mips16-hilo.d index 1f01ca2..3a8dc71 100644 --- a/ld/testsuite/ld-mips-elf/mips16-hilo.d +++ b/ld/testsuite/ld-mips-elf/mips16-hilo.d @@ -1,8 +1,8 @@ #name: R_MIPS16_HI16 and R_MIPS16_LO16 relocs #source: ../../../gas/testsuite/gas/mips/mips16-hilo.s #source: mips-hilo.s -#as: -march=mips1 -#objdump: -mmips:16 -dr +#as: -march=mips3 +#objdump: -mmips:16 -d #ld: -Tmips-hilo.ld -e 0x500000 -N .*: file format (:?elf.*mips.*|srec) diff --git a/ld/testsuite/ld-mips-elf/mips16e2-hilo-n32.d b/ld/testsuite/ld-mips-elf/mips16e2-hilo-n32.d deleted file mode 100644 index e900e87..0000000 --- a/ld/testsuite/ld-mips-elf/mips16e2-hilo-n32.d +++ /dev/null @@ -1,8 +0,0 @@ -#name: MIPS16e2 R_MIPS16_HI16 and R_MIPS16_LO16 relocs n32 -#source: ../../../gas/testsuite/gas/mips/mips-hilo.s -#source: mips-hilo.s -#as: -mips16 -mmips16e2 -march=mips64r2 -#objdump: -d -#ld: -Tmips-hilo.ld -e 0x500000 -N -#notarget: mips*el-ps2-elf* -#dump: mips16e2-hilo.d diff --git a/ld/testsuite/ld-mips-elf/mips16e2-hilo-srec-n32.d b/ld/testsuite/ld-mips-elf/mips16e2-hilo-srec-n32.d deleted file mode 100644 index 0132fa8..0000000 --- a/ld/testsuite/ld-mips-elf/mips16e2-hilo-srec-n32.d +++ /dev/null @@ -1,8 +0,0 @@ -#name: MIPS16e2 R_MIPS16_HI16 and R_MIPS16_LO16 relocs srec n32 -#source: ../../../gas/testsuite/gas/mips/mips-hilo.s -#source: mips-hilo.s -#as: -mips16 -mmips16e2 -march=mips64r2 -#objdump: -mmips:16 -j .sec1 -D -#ld: --oformat=srec -Tmips-hilo.ld -e 0x500000 -N -#notarget: mips*el-ps2-elf* -#dump: mips16e2-hilo.d diff --git a/ld/testsuite/ld-mips-elf/mips16e2-hilo-srec.d b/ld/testsuite/ld-mips-elf/mips16e2-hilo-srec.d index e46708b..12a2d28 100644 --- a/ld/testsuite/ld-mips-elf/mips16e2-hilo-srec.d +++ b/ld/testsuite/ld-mips-elf/mips16e2-hilo-srec.d @@ -1,7 +1,7 @@ #name: MIPS16e2 R_MIPS16_HI16 and R_MIPS16_LO16 relocs srec #source: ../../../gas/testsuite/gas/mips/mips-hilo.s #source: mips-hilo.s -#as: -mips16 -mmips16e2 -march=mips32r2 +#as: -mips16 -mmips16e2 -march=mips64r2 #objdump: -mmips:16 -j .sec1 -D #ld: --oformat=srec -Tmips-hilo.ld -e 0x500000 -N #notarget: mips*el-ps2-elf* diff --git a/ld/testsuite/ld-mips-elf/mips16e2-hilo.d b/ld/testsuite/ld-mips-elf/mips16e2-hilo.d index eb93873..5aa1624 100644 --- a/ld/testsuite/ld-mips-elf/mips16e2-hilo.d +++ b/ld/testsuite/ld-mips-elf/mips16e2-hilo.d @@ -1,7 +1,7 @@ #name: MIPS16e2 R_MIPS16_HI16 and R_MIPS16_LO16 relocs #source: ../../../gas/testsuite/gas/mips/mips-hilo.s #source: mips-hilo.s -#as: -mips16 -mmips16e2 -march=mips32r2 +#as: -mips16 -mmips16e2 -march=mips64r2 #objdump: -d #ld: -Tmips-hilo.ld -e 0x500000 -N #notarget: mips*el-ps2-elf* diff --git a/ld/testsuite/ld-mips-elf/pcrel-hilo-srec.d b/ld/testsuite/ld-mips-elf/pcrel-hilo-srec.d new file mode 100644 index 0000000..e9b0956 --- /dev/null +++ b/ld/testsuite/ld-mips-elf/pcrel-hilo-srec.d @@ -0,0 +1,6 @@ +#name: MIPSr6 PCHI16/PCLO16 relocations srec +#as: -mno-pdr +#ld: -e 0 --defsym=baz=0xfedcba98 -T pcrel-hilo.ld --oformat=srec +#objdump: -m mips:isa64r6 -D -j .sec1 +#source: ../../../gas/testsuite/gas/mips/pcrel-hilo.s +#dump: pcrel-hilo.d diff --git a/ld/testsuite/ld-mips-elf/pcrel-hilo.d b/ld/testsuite/ld-mips-elf/pcrel-hilo.d new file mode 100644 index 0000000..ae5d052 --- /dev/null +++ b/ld/testsuite/ld-mips-elf/pcrel-hilo.d @@ -0,0 +1,42 @@ +#name: MIPSr6 PCHI16/PCLO16 relocations +#as: -mno-pdr +#ld: -e 0 --defsym=baz=0xfedcba98 -T pcrel-hilo.ld +#objdump: -m mips:isa64r6 -d +#source: ../../../gas/testsuite/gas/mips/pcrel-hilo.s + +.*: +file format (?:.*mips.*|srec) + +Disassembly of section \.(?:text|sec1): + +0*10000000 <[^>]*>: + *10000000: ec9e2456 auipc a0,0x2456 + *10000004: 3c05fedd lui a1,0xfedd + *10000008: ecde2456 auipc a2,0x2456 + *1000000c: ecfe2457 auipc a3,0x2457 + *10000010: 24847fec addiu a0,a0,32748 + *10000014: 24a5ba98 addiu a1,a1,-17768 + *10000018: 24c67ff0 addiu a2,a2,32752 + *1000001c: 24e7ffe4 addiu a3,a3,-28 + *10000020: ec9e2456 auipc a0,0x2456 + *10000024: 3c05fedd lui a1,0xfedd + *10000028: ecde2456 auipc a2,0x2456 + *1000002c: ecfe2457 auipc a3,0x2457 + \.\.\. + *10030030: 24847fec addiu a0,a0,32748 + *10030034: 24a5ba98 addiu a1,a1,-17768 + *10030038: 24c67ff0 addiu a2,a2,32752 + *1003003c: 24e7ffe4 addiu a3,a3,-28 + *10030040: 24107fec li s0,32748 + *10030044: 2411ba98 li s1,-17768 + *10030048: 24127ff0 li s2,32752 + *1003004c: 2413ffe4 li s3,-28 + *10030050: ec9e2456 auipc a0,0x2456 + *10030054: 3c05fedd lui a1,0xfedd + *10030058: ecde2456 auipc a2,0x2456 + *1003005c: ecfe2457 auipc a3,0x2457 + *10030060: 00902021 addu a0,a0,s0 + *10030064: 00b12821 addu a1,a1,s1 + *10030068: 00d23021 addu a2,a2,s2 + *1003006c: 00f33821 addu a3,a3,s3 + *10030070: d81f0000 jrc ra + \.\.\. diff --git a/ld/testsuite/ld-mips-elf/pcrel-hilo.ld b/ld/testsuite/ld-mips-elf/pcrel-hilo.ld new file mode 100644 index 0000000..77d361d --- /dev/null +++ b/ld/testsuite/ld-mips-elf/pcrel-hilo.ld @@ -0,0 +1,14 @@ +MEMORY +{ + text (rx) : ORIGIN = 0x10000000, LENGTH = 0x40000 + data (w) : ORIGIN = 0x34560000, LENGTH = 0x40000 +} +SECTIONS +{ + .text : { *(.text) } >text + .data : { *(.data) } >data + .symtab : { *(.symtab) } + .strtab : { *(.strtab) } + .shstrtab : { *(.shstrtab) } + /DISCARD/ : { *(*) } +} diff --git a/ld/testsuite/ld-mips-elf/pr19977-micromips.d b/ld/testsuite/ld-mips-elf/pr19977-micromips.d new file mode 100644 index 0000000..021b29c --- /dev/null +++ b/ld/testsuite/ld-mips-elf/pr19977-micromips.d @@ -0,0 +1,25 @@ +#name: pr19977 microMIPS +#source: ../../../gas/testsuite/gas/mips/pr19977.s +#as: -mmicromips -march=mips64r2 +#objdump: -d +#ld: -Tpr19977.ld -e 0 -N +#notarget: mips*el-ps2-elf* + +.*: file format elf.*mips.* + +Disassembly of section \.text: + +10000000 <[^>]*>: +10000000: 3060 1122 li v1,4386 +10000004: 0063 8000 sll v1,v1,0x10 +10000008: 3063 2988 addiu v1,v1,10632 +1000000c: 3060 1122 li v1,4386 +10000010: 0063 8000 sll v1,v1,0x10 +10000014: 3063 1988 addiu v1,v1,6536 +10000018: 3060 1122 li v1,4386 +1000001c: 0063 8000 sll v1,v1,0x10 +10000020: 3063 a988 addiu v1,v1,-22136 +10000024: 3060 1122 li v1,4386 +10000028: 0063 8000 sll v1,v1,0x10 +1000002c: 3063 9988 addiu v1,v1,-26232 +#pass diff --git a/ld/testsuite/ld-mips-elf/pr19977-mips16.d b/ld/testsuite/ld-mips-elf/pr19977-mips16.d new file mode 100644 index 0000000..c927357 --- /dev/null +++ b/ld/testsuite/ld-mips-elf/pr19977-mips16.d @@ -0,0 +1,24 @@ +#name: pr19977 MIPS16 +#source: ../../../gas/testsuite/gas/mips/pr19977.s +#as: -mips16 -march=mips3 +#objdump: -d +#ld: -Tpr19977.ld -e 0 -N + +.*: file format elf.*mips.* + +Disassembly of section \.text: + +10000000 <[^>]*>: +10000000: f122 6b02 li v1,4386 +10000004: f400 3360 sll v1,16 +10000008: f185 4b08 addiu v1,10632 +1000000c: f122 6b02 li v1,4386 +10000010: f400 3360 sll v1,16 +10000014: f183 4b08 addiu v1,6536 +10000018: f122 6b02 li v1,4386 +1000001c: f400 3360 sll v1,16 +10000020: f195 4b08 addiu v1,-22136 +10000024: f122 6b02 li v1,4386 +10000028: f400 3360 sll v1,16 +1000002c: f193 4b08 addiu v1,-26232 +#pass diff --git a/ld/testsuite/ld-mips-elf/pr19977-r-micromips.d b/ld/testsuite/ld-mips-elf/pr19977-r-micromips.d new file mode 100644 index 0000000..db99b97 --- /dev/null +++ b/ld/testsuite/ld-mips-elf/pr19977-r-micromips.d @@ -0,0 +1,8 @@ +#name: pr19977 microMIPS -r +#source: pr19977-r.s +#source: ../../../gas/testsuite/gas/mips/pr19977.s +#as: -mmicromips -march=mips64r2 +#objdump: -dr +#ld: -r +#notarget: mips*el-ps2-elf* +#dump: pr19977-r.d diff --git a/ld/testsuite/ld-mips-elf/pr19977-r-mips16.d b/ld/testsuite/ld-mips-elf/pr19977-r-mips16.d new file mode 100644 index 0000000..dafa793 --- /dev/null +++ b/ld/testsuite/ld-mips-elf/pr19977-r-mips16.d @@ -0,0 +1,7 @@ +#name: pr19977 MIPS16 -r +#source: pr19977-r.s +#source: ../../../gas/testsuite/gas/mips/pr19977.s +#as: -mips16 -march=mips3 +#objdump: -dr +#ld: -r +#dump: pr19977-r.d diff --git a/ld/testsuite/ld-mips-elf/pr19977-r.d b/ld/testsuite/ld-mips-elf/pr19977-r.d new file mode 100644 index 0000000..166194b --- /dev/null +++ b/ld/testsuite/ld-mips-elf/pr19977-r.d @@ -0,0 +1,32 @@ +#name: pr19977 MIPS -r +#source: pr19977-r.s +#source: ../../../gas/testsuite/gas/mips/pr19977.s +#objdump: -dr +#ld: -r + +.* + +Disassembly of section \.text: + +0+ <foo>: + 0: .* li v1,4387 + 0: R_(|MICRO)MIPS(|16)_TLS_TPREL_HI16 \$loc0 + 4: .* sll .* + 8: .* addiu v1(|,v1),-26232 + 8: R_(|MICRO)MIPS(|16)_TLS_TPREL_LO16 \$loc0 + c: .* li v1,4387 + c: R_(|MICRO)MIPS(|16)_TLS_DTPREL_HI16 \$loc0 + 10: .* sll .* + 14: .* addiu v1(|,v1),-26232 + 14: R_(|MICRO)MIPS(|16)_TLS_DTPREL_LO16 \$loc0 + 18: .* li v1,4387 + 18: R_(|MICRO)MIPS(|16)_TLS_TPREL_HI16 \.tdata + 1c: .* sll .* + 20: .* addiu v1(|,v1),-30328 + 20: R_(|MICRO)MIPS(|16)_TLS_TPREL_LO16 \.tdata + 24: .* li v1,4387 + 24: R_(|MICRO)MIPS(|16)_TLS_DTPREL_HI16 \.tdata + 28: .* sll .* + 2c: .* addiu v1(|,v1),-30328 + 2c: R_(|MICRO)MIPS(|16)_TLS_DTPREL_LO16 \.tdata +#pass diff --git a/ld/testsuite/ld-mips-elf/pr19977-r.s b/ld/testsuite/ld-mips-elf/pr19977-r.s new file mode 100644 index 0000000..4a46b30 --- /dev/null +++ b/ld/testsuite/ld-mips-elf/pr19977-r.s @@ -0,0 +1,2 @@ + .section .tdata,"awT",%progbits + .space 28672 diff --git a/ld/testsuite/ld-mips-elf/pr19977.d b/ld/testsuite/ld-mips-elf/pr19977.d new file mode 100644 index 0000000..145f697 --- /dev/null +++ b/ld/testsuite/ld-mips-elf/pr19977.d @@ -0,0 +1,23 @@ +#name: pr19977 MIPS +#source: ../../../gas/testsuite/gas/mips/pr19977.s +#objdump: -d +#ld: -Tpr19977.ld -e 0 -N + +.*: file format elf.*mips.* + +Disassembly of section \.text: + +10000000 <[^>]*>: +10000000: 24031122 li v1,4386 +10000004: 00031c00 sll v1,v1,0x10 +10000008: 24632988 addiu v1,v1,10632 +1000000c: 24031122 li v1,4386 +10000010: 00031c00 sll v1,v1,0x10 +10000014: 24631988 addiu v1,v1,6536 +10000018: 24031122 li v1,4386 +1000001c: 00031c00 sll v1,v1,0x10 +10000020: 2463a988 addiu v1,v1,-22136 +10000024: 24031122 li v1,4386 +10000028: 00031c00 sll v1,v1,0x10 +1000002c: 24639988 addiu v1,v1,-26232 +#pass diff --git a/ld/testsuite/ld-mips-elf/pr19977.ld b/ld/testsuite/ld-mips-elf/pr19977.ld new file mode 100644 index 0000000..0b2f7c1 --- /dev/null +++ b/ld/testsuite/ld-mips-elf/pr19977.ld @@ -0,0 +1,14 @@ +MEMORY +{ + text (rx) : ORIGIN = 0x10000000, LENGTH = 0x40000 + data (w) : ORIGIN = 0x34560000, LENGTH = 0x40000 +} +SECTIONS +{ + .text : { *(.text) } >text + .tdata : { *(.tdata) } >data + .symtab : { *(.symtab) } + .strtab : { *(.strtab) } + .shstrtab : { *(.shstrtab) } + /DISCARD/ : { *(*) } +} diff --git a/libctf/ChangeLog b/libctf/ChangeLog index ef66b95..a687793 100644 --- a/libctf/ChangeLog +++ b/libctf/ChangeLog @@ -1,3 +1,7 @@ +2025-07-13 Nick Clifton <nickc@redhat.com> + + * 2.45 Branch point. + 2025-01-19 Nick Clifton <nickc@redhat.com> * 2.44 Branch point. diff --git a/libsframe/doc/sframe-spec.texi b/libsframe/doc/sframe-spec.texi index ecc333d..7307789 100644 --- a/libsframe/doc/sframe-spec.texi +++ b/libsframe/doc/sframe-spec.texi @@ -77,9 +77,10 @@ Appendices @section Overview @cindex Overview -The SFrame stack trace information is provided in a loaded section, known as the -@code{.sframe} section. When available, the @code{.sframe} section appears in -a new segment of its own, PT_GNU_SFRAME. +The SFrame stack trace information is provided in a loaded section, known as +the @code{.sframe} section. When available, the @code{.sframe} section appears +in segment of type PT_GNU_SFRAME. An ELF SFrame section will have the type +SHT_GNU_SFRAME. The SFrame format is currently supported only for select ABIs, namely, AMD64, AAPCS64, and s390x. diff --git a/libsframe/libsframe.ver b/libsframe/libsframe.ver index 06324ee..8cc80da 100644 --- a/libsframe/libsframe.ver +++ b/libsframe/libsframe.ver @@ -1,6 +1,6 @@ LIBSFRAME_0.0 { }; -LIBSFRAME_1.0 { +LIBSFRAME_2.0 { global: sframe_decoder_free; sframe_fde_create_func_info; @@ -11,12 +11,13 @@ LIBSFRAME_1.0 { sframe_fre_get_ra_offset; sframe_fre_get_ra_mangled_p; sframe_decode; + sframe_decoder_get_flags; sframe_decoder_get_hdr_size; sframe_decoder_get_abi_arch; sframe_decoder_get_version; + sframe_decoder_get_offsetof_fde_start_addr; sframe_decoder_get_fixed_fp_offset; sframe_decoder_get_fixed_ra_offset; - sframe_get_funcdesc_with_addr; sframe_find_fre; sframe_decoder_get_num_fidx; sframe_decoder_get_funcdesc; @@ -24,9 +25,11 @@ LIBSFRAME_1.0 { sframe_decoder_get_fre; sframe_encode; sframe_encoder_free; + sframe_encoder_get_flags; sframe_encoder_get_hdr_size; sframe_encoder_get_abi_arch; sframe_encoder_get_version; + sframe_encoder_get_offsetof_fde_start_addr; sframe_encoder_get_num_fidx; sframe_encoder_add_fre; sframe_encoder_add_funcdesc; @@ -38,10 +41,3 @@ LIBSFRAME_1.0 { local: *; } LIBSFRAME_0.0; - -LIBSFRAME_1.1 { - sframe_decoder_get_flags; - sframe_decoder_get_offsetof_fde_start_addr; - sframe_encoder_get_flags; - sframe_encoder_get_offsetof_fde_start_addr; -} LIBSFRAME_1.0; diff --git a/libsframe/libtool-version b/libsframe/libtool-version index 9dcbe48..e06835d 100644 --- a/libsframe/libtool-version +++ b/libsframe/libtool-version @@ -27,4 +27,4 @@ # then set age to 0. # # CURRENT:REVISION:AGE -1:0:0 +2:0:0 diff --git a/libsframe/sframe.c b/libsframe/sframe.c index d482d58..7357fc1 100644 --- a/libsframe/sframe.c +++ b/libsframe/sframe.c @@ -876,7 +876,7 @@ sframe_decode_fre (const char *fre_buf, sframe_frame_row_entry *fre, return 0; } -/* Decode the specified SFrame buffer CF_BUF of size CF_SIZE and return the +/* Decode the specified SFrame buffer SF_BUF of size SF_SIZE and return the new SFrame decoder context. Sets ERRP for the caller if any error. Frees up the allocated memory in @@ -1079,18 +1079,6 @@ sframe_decoder_get_offsetof_fde_start_addr (sframe_decoder_ctx *dctx, + offsetof (sframe_func_desc_entry, sfde_func_start_address)); } -/* Find the function descriptor entry which contains the specified address - ADDR. - This function is deprecated and will be removed from libsframe.so.2. */ - -void * -sframe_get_funcdesc_with_addr (sframe_decoder_ctx *ctx __attribute__ ((unused)), - int32_t addr __attribute__ ((unused)), - int *errp) -{ - return sframe_ret_set_errno (errp, SFRAME_ERR_INVAL); -} - /* Find the function descriptor entry starting which contains the specified address ADDR. */ @@ -1639,7 +1627,7 @@ sframe_encoder_add_funcdesc (sframe_encoder_ctx *encoder, int32_t start_addr, uint32_t func_size, unsigned char func_info, - uint32_t num_fres __attribute__ ((unused))) + uint32_t num_fres ATTRIBUTE_UNUSED) { sframe_header *ehp; sf_fde_tbl *fd_info; @@ -1721,7 +1709,7 @@ sframe_encoder_add_funcdesc_v2 (sframe_encoder_ctx *encoder, uint32_t func_size, unsigned char func_info, uint8_t rep_block_size, - uint32_t num_fres __attribute__ ((unused))) + uint32_t num_fres ATTRIBUTE_UNUSED) { sf_fde_tbl *fd_info; int err; diff --git a/libsframe/testsuite/libsframe.find/plt-findfre-2.c b/libsframe/testsuite/libsframe.find/plt-findfre-2.c index 195a05b..00a5b2a 100644 --- a/libsframe/testsuite/libsframe.find/plt-findfre-2.c +++ b/libsframe/testsuite/libsframe.find/plt-findfre-2.c @@ -48,7 +48,11 @@ add_plt0_fde (sframe_encoder_ctx *ectx, uint32_t plt_vaddr, unsigned char finfo = sframe_fde_create_func_info (SFRAME_FRE_TYPE_ADDR1, SFRAME_FDE_TYPE_PCINC); - int32_t func_start_addr = plt_vaddr - sframe_vaddr; + uint32_t offsetof_fde_in_sec + = sframe_encoder_get_offsetof_fde_start_addr (ectx, idx, NULL); + + int32_t func_start_addr = (plt_vaddr + - (sframe_vaddr + offsetof_fde_in_sec)); /* 1 PCINC-type FDE for 1 plt0 entry of 32 bytes. */ int err = sframe_encoder_add_funcdesc_v2 (ectx, func_start_addr, @@ -77,7 +81,11 @@ add_pltn_fde (sframe_encoder_ctx *ectx, uint32_t plt_vaddr, unsigned char finfo = sframe_fde_create_func_info (SFRAME_FRE_TYPE_ADDR1, SFRAME_FDE_TYPE_PCMASK); - int32_t func_start_addr = plt_vaddr - sframe_vaddr; + uint32_t offsetof_fde_in_sec + = sframe_encoder_get_offsetof_fde_start_addr (ectx, idx, NULL); + + int32_t func_start_addr = (plt_vaddr + - (sframe_vaddr + offsetof_fde_in_sec)); /* 1 PCMASK-type FDE for 5 pltN entries of 32 bytes each. */ int err = sframe_encoder_add_funcdesc_v2 (ectx, func_start_addr, @@ -117,7 +125,8 @@ void test_plt_findfre (const char suffix, const uint32_t plt_vaddr, } \ while (0) - ectx = sframe_encode (SFRAME_VERSION, 0, SFRAME_ABI_S390X_ENDIAN_BIG, + ectx = sframe_encode (SFRAME_VERSION, SFRAME_F_FDE_FUNC_START_PCREL, + SFRAME_ABI_S390X_ENDIAN_BIG, SFRAME_CFA_FIXED_FP_INVALID, SFRAME_CFA_FIXED_RA_INVALID, &err); diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 609e621..13659e3 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2025-07-13 Nick Clifton <nickc@redhat.com> + + * 2.45 Branch point. + 2025-01-19 Nick Clifton <nickc@redhat.com> * 2.44 Branch point. diff --git a/opcodes/aarch64-opc.c b/opcodes/aarch64-opc.c index 4de7965..9c4e181 100644 --- a/opcodes/aarch64-opc.c +++ b/opcodes/aarch64-opc.c @@ -5720,10 +5720,21 @@ verify_constraints (const struct aarch64_inst *inst, { /* Check to see if the MOVPRFX SVE instruction is followed by an SVE instruction for better error messages. */ - if (!opcode->avariant - || (!AARCH64_CPU_HAS_FEATURE (*opcode->avariant, SVE) - && !AARCH64_CPU_HAS_FEATURE (*opcode->avariant, SVE2) - && !AARCH64_CPU_HAS_FEATURE (*opcode->avariant, SVE2p1))) + bool sve_operand_p = false; + for (int i = 0; i < AARCH64_MAX_OPND_NUM; ++i) + { + enum aarch64_operand_class op_class + = aarch64_get_operand_class (opcode->operands[i]); + if (op_class == AARCH64_OPND_CLASS_SVE_REG + || op_class == AARCH64_OPND_CLASS_SVE_REGLIST + || op_class == AARCH64_OPND_CLASS_PRED_REG) + { + sve_operand_p = true; + break; + } + } + + if (!sve_operand_p) { mismatch_detail->kind = AARCH64_OPDE_SYNTAX_ERROR; mismatch_detail->error = _("SVE instruction expected after " diff --git a/opcodes/aarch64-tbl.h b/opcodes/aarch64-tbl.h index 71563b0..b23fc7c 100644 --- a/opcodes/aarch64-tbl.h +++ b/opcodes/aarch64-tbl.h @@ -2789,12 +2789,7 @@ QLF3(V_4S, V_8H, S_H), \ } -/* Opcode table. - - Any SVE or SVE2 feature must include AARCH64_FEATURE_{SVE|SVE2} in its - bitmask, even if this is implied by other selected feature bits. This - allows verify_constraints to identify SVE instructions when selecting an - error message for MOVPRFX constraint violations. */ +/* Opcode table. */ static const aarch64_feature_set aarch64_feature_v8 = AARCH64_FEATURE (V8); @@ -2873,23 +2868,23 @@ static const aarch64_feature_set aarch64_feature_sve2 = static const aarch64_feature_set aarch64_feature_sve2aes = AARCH64_FEATURES (2, SVE_AES, SVE2_SSVE_AES); static const aarch64_feature_set aarch64_feature_sve2sha3 = - AARCH64_FEATURES (2, SVE2, SVE2_SHA3); + AARCH64_FEATURE (SVE2_SHA3); static const aarch64_feature_set aarch64_feature_sve2sm4 = - AARCH64_FEATURES (2, SVE2, SVE2_SM4); + AARCH64_FEATURE (SVE2_SM4); static const aarch64_feature_set aarch64_feature_sve2bitperm = - AARCH64_FEATURES (2, SVE2, SVE2_BITPERM); + AARCH64_FEATURE (SVE2_BITPERM); static const aarch64_feature_set aarch64_feature_sme = - AARCH64_FEATURES (2, SVE2, SME); + AARCH64_FEATURE (SME); static const aarch64_feature_set aarch64_feature_sme_f64f64 = - AARCH64_FEATURES (3, SVE2, SME, SME_F64F64); + AARCH64_FEATURE (SME_F64F64); static const aarch64_feature_set aarch64_feature_sme_i16i64 = - AARCH64_FEATURES (3, SVE2, SME, SME_I16I64); + AARCH64_FEATURE (SME_I16I64); static const aarch64_feature_set aarch64_feature_sme2 = - AARCH64_FEATURES (3, SVE2, SME, SME2); + AARCH64_FEATURE (SME2); static const aarch64_feature_set aarch64_feature_sme2_i16i64 = - AARCH64_FEATURES (2, SME2, SME_I16I64); + AARCH64_FEATURE (SME_I16I64); static const aarch64_feature_set aarch64_feature_sme2_f64f64 = - AARCH64_FEATURES (2, SME2, SME_F64F64); + AARCH64_FEATURE (SME_F64F64); static const aarch64_feature_set aarch64_feature_i8mm = AARCH64_FEATURE (I8MM); static const aarch64_feature_set aarch64_feature_i8mm_sve = @@ -2929,7 +2924,7 @@ static const aarch64_feature_set aarch64_feature_the = static const aarch64_feature_set aarch64_feature_d128_the = AARCH64_FEATURES (2, D128, THE); static const aarch64_feature_set aarch64_feature_sve_b16b16_sve2 = - AARCH64_FEATURES (2, SVE_B16B16, SVE2); + AARCH64_FEATURES (2, SVE_B16B16, SVE2_SME2); static const aarch64_feature_set aarch64_feature_sve_b16b16_sme2 = AARCH64_FEATURES (2, SVE_B16B16, SME2); static const aarch64_feature_set aarch64_feature_sme_b16b16 = @@ -2961,7 +2956,7 @@ static const aarch64_feature_set aarch64_feature_faminmax = static const aarch64_feature_set aarch64_feature_faminmax_sve2 = AARCH64_FEATURES (2, FAMINMAX, SVE2); static const aarch64_feature_set aarch64_feature_faminmax_sme2 = - AARCH64_FEATURES (3, SVE2, FAMINMAX, SME2); + AARCH64_FEATURES (2, FAMINMAX, SME2); static const aarch64_feature_set aarch64_feature_fp8 = AARCH64_FEATURE (FP8); static const aarch64_feature_set aarch64_feature_fp8_sve2 = @@ -2989,31 +2984,31 @@ static const aarch64_feature_set aarch64_feature_fp8dot4 = static const aarch64_feature_set aarch64_feature_fp8dot2 = AARCH64_FEATURE (FP8DOT2); static const aarch64_feature_set aarch64_feature_fp8fma_sve = - AARCH64_FEATURES (2, FP8FMA_SVE, SVE); + AARCH64_FEATURE (FP8FMA_SVE); static const aarch64_feature_set aarch64_feature_fp8dot4_sve = - AARCH64_FEATURES (2, FP8DOT4_SVE, SVE); + AARCH64_FEATURE (FP8DOT4_SVE); static const aarch64_feature_set aarch64_feature_fp8dot2_sve = - AARCH64_FEATURES (2, FP8DOT2_SVE, SVE); + AARCH64_FEATURE (FP8DOT2_SVE); static const aarch64_feature_set aarch64_feature_sme_f8f32 = - AARCH64_FEATURES (2, SME_F8F32, SME2); + AARCH64_FEATURE (SME_F8F32); static const aarch64_feature_set aarch64_feature_sme_f8f16 = - AARCH64_FEATURES (2, SME_F8F16, SME2); + AARCH64_FEATURE (SME_F8F16); static const aarch64_feature_set aarch64_feature_sme_f16f16_f8f16 = - AARCH64_FEATURES (2, SME_F16F16_F8F16, SME2); + AARCH64_FEATURE (SME_F16F16_F8F16); static const aarch64_feature_set aarch64_feature_sme_f16f16 = - AARCH64_FEATURES (2, SME_F16F16, SME2); + AARCH64_FEATURE (SME_F16F16); static const aarch64_feature_set aarch64_feature_sve2p1_sme = - AARCH64_FEATURES (2, SVE2p1_SME, SVE); + AARCH64_FEATURE (SVE2p1_SME); static const aarch64_feature_set aarch64_feature_sve2p1_sme2 = - AARCH64_FEATURES (2, SVE2p1_SME2, SVE); + AARCH64_FEATURE (SVE2p1_SME2); static const aarch64_feature_set aarch64_feature_sve2p1_sme2p1 = - AARCH64_FEATURES (2, SVE2p1_SME2p1, SVE); + AARCH64_FEATURE (SVE2p1_SME2p1); static const aarch64_feature_set aarch64_feature_sme2p2 = - AARCH64_FEATURES (2, SME2p2, SME); + AARCH64_FEATURE (SME2p2); static const aarch64_feature_set aarch64_feature_sve_sme2p2 = - AARCH64_FEATURES (2, SVE_SME2p2, SVE); + AARCH64_FEATURE (SVE_SME2p2); static const aarch64_feature_set aarch64_feature_sve2p2_sme2p2 = - AARCH64_FEATURES (2, SVE2p2_SME2p2, SVE); + AARCH64_FEATURE (SVE2p2_SME2p2); #define CORE &aarch64_feature_v8 #define FP &aarch64_feature_fp @@ -3126,11 +3121,11 @@ static const aarch64_feature_set aarch64_feature_sve2p2_sme2p2 = #define SVE2p2_SME2p2 &aarch64_feature_sve2p2_sme2p2 #define CORE_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, OP, CORE, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, OP, CORE, OPS, QUALS, FLAGS | F_INVALID_IMM_SYMS_1, 0, 0, NULL } #define __FP_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, OP, FP, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, OP, FP, OPS, QUALS, FLAGS | F_INVALID_IMM_SYMS_1, 0, 0, NULL } #define SIMD_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, OP, SIMD, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, OP, SIMD, OPS, QUALS, FLAGS | F_INVALID_IMM_SYMS_1, 0, 0, NULL } #define _SIMD_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,VERIFIER) \ { NAME, OPCODE, MASK, CLASS, OP, SIMD, OPS, QUALS, FLAGS, 0, 0, VERIFIER } #define _CRC_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ @@ -3150,21 +3145,21 @@ static const aarch64_feature_set aarch64_feature_sve2p2_sme2p2 = #define RDMA_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, RDMA, OPS, QUALS, FLAGS, 0, 0, NULL } #define FF16_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, 0, FP_F16, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, 0, FP_F16, OPS, QUALS, FLAGS | F_INVALID_IMM_SYMS_1, 0, 0, NULL } #define SF16_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, 0, SIMD_F16, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, 0, SIMD_F16, OPS, QUALS, FLAGS | F_INVALID_IMM_SYMS_1, 0, 0, NULL } #define FPRCVT_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, FPRCVT, OPS, QUALS, FLAGS, 0, 0, NULL } #define _SVE_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,TIED) \ { NAME, OPCODE, MASK, CLASS, OP, SVE, OPS, QUALS, \ - FLAGS | F_STRICT, 0, TIED, NULL } + FLAGS | F_STRICT | F_INVALID_IMM_SYMS_2, 0, TIED, NULL } #define _SVE_INSNC(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,CONSTRAINTS,TIED) \ { NAME, OPCODE, MASK, CLASS, OP, SVE, OPS, QUALS, \ - FLAGS | F_STRICT, CONSTRAINTS, TIED, NULL } + FLAGS | F_STRICT | F_INVALID_IMM_SYMS_2, CONSTRAINTS, TIED, NULL } #define PAUTH_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, PAUTH, OPS, QUALS, FLAGS, 0, 0, NULL } #define CNUM_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, OP, COMPNUM, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, OP, COMPNUM, OPS, QUALS, FLAGS | F_INVALID_IMM_SYMS_1, 0, 0, NULL } #define JSCVT_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, JSCVT, OPS, QUALS, FLAGS, 0, 0, NULL } #define RCPC_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ @@ -3176,7 +3171,7 @@ static const aarch64_feature_set aarch64_feature_sve2p2_sme2p2 = #define AES_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, AES, OPS, QUALS, FLAGS, 0, 0, NULL } #define SHA3_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, 0, SHA3, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, 0, SHA3, OPS, QUALS, FLAGS | F_INVALID_IMM_SYMS_1, 0, 0, NULL } #define SM4_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, SM4, OPS, QUALS, FLAGS, 0, 0, NULL } #define FP16_V8_2A_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ @@ -3192,30 +3187,30 @@ static const aarch64_feature_set aarch64_feature_sve2p2_sme2p2 = #define PREDRES_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, PREDRES, OPS, QUALS, FLAGS, 0, 0, NULL } #define CMPBR_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, 0, CMPBR, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, 0, CMPBR, OPS, QUALS, FLAGS | F_INVALID_IMM_SYMS_1, 0, 0, NULL } #define MEMTAG_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, 0, MEMTAG, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, 0, MEMTAG, OPS, QUALS, FLAGS | F_INVALID_IMM_SYMS_1, 0, 0, NULL } #define _TME_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, OP, TME, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, OP, TME, OPS, QUALS, FLAGS | F_INVALID_IMM_SYMS_1, 0, 0, NULL } #define SVE2_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,TIED) \ { NAME, OPCODE, MASK, CLASS, OP, SVE2, OPS, QUALS, \ - FLAGS | F_STRICT, 0, TIED, NULL } + FLAGS | F_STRICT | F_INVALID_IMM_SYMS_2, 0, TIED, NULL } #define SME2p1_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,TIED) \ { NAME, OPCODE, MASK, CLASS, OP, SME2p1, OPS, QUALS, \ FLAGS | F_STRICT, 0, TIED, NULL } #define SVE_F16F32MM_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, OP, SVE_F16F32MM, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, OP, SVE_F16F32MM, OPS, QUALS, FLAGS | F_STRICT, 0, 0, NULL } #define F8F32MM_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, OP, F8F32MM, OPS, QUALS, FLAGS, 0, 0, NULL } #define F8F32MM_SVE2_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, OP, F8F32MM_SVE2, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, OP, F8F32MM_SVE2, OPS, QUALS, FLAGS | F_STRICT, 0, 0, NULL } #define F8F16MM_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, OP, F8F16MM, OPS, QUALS, FLAGS, 0, 0, NULL } #define F8F16MM_SVE2_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, OP, F8F16MM_SVE2, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, OP, F8F16MM_SVE2, OPS, QUALS, FLAGS | F_STRICT, 0, 0, NULL } #define SVE2_INSNC(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,CONSTRAINTS,TIED) \ { NAME, OPCODE, MASK, CLASS, OP, SVE2, OPS, QUALS, \ - FLAGS | F_STRICT, CONSTRAINTS, TIED, NULL } + FLAGS | F_STRICT | F_INVALID_IMM_SYMS_2, CONSTRAINTS, TIED, NULL } #define B16B16_SVE2_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,TIED) \ { NAME, OPCODE, MASK, CLASS, OP, B16B16_SVE2, OPS, QUALS, \ FLAGS | F_STRICT, 0, TIED, NULL } @@ -3254,7 +3249,7 @@ static const aarch64_feature_set aarch64_feature_sve2p2_sme2p2 = FLAGS | F_STRICT, CONSTRAINTS, TIED, NULL } #define SME_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,TIED) \ { NAME, OPCODE, MASK, CLASS, OP, SME, OPS, QUALS, \ - F_STRICT | FLAGS, 0, TIED, NULL } + F_STRICT | F_INVALID_IMM_SYMS_2 | FLAGS, 0, TIED, NULL } #define SME_F64F64_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,TIED) \ { NAME, OPCODE, MASK, CLASS, OP, SME_F64F64, OPS, QUALS, \ F_STRICT | FLAGS, 0, TIED, NULL } @@ -3266,7 +3261,7 @@ static const aarch64_feature_set aarch64_feature_sve2p2_sme2p2 = F_STRICT | FLAGS, CONSTRAINTS, TIED, NULL } #define SME2_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,TIED) \ { NAME, OPCODE, MASK, CLASS, OP, SME2, OPS, QUALS, \ - F_STRICT | FLAGS, 0, TIED, NULL } + F_STRICT | F_INVALID_IMM_SYMS_3 | FLAGS, 0, TIED, NULL } #define SME2_INSNC(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,CONSTRAINTS,TIED) \ { NAME, OPCODE, MASK, CLASS, OP, SME2, OPS, QUALS, \ FLAGS | F_STRICT, CONSTRAINTS, TIED, NULL } @@ -3280,36 +3275,34 @@ static const aarch64_feature_set aarch64_feature_sve2p2_sme2p2 = { NAME, OPCODE, MASK, CLASS, OP, SVE2_BITPERM, OPS, QUALS, \ FLAGS | F_STRICT, 0, TIED, NULL } #define SVE_BFSCALE_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS,TIED) \ - { NAME, OPCODE, MASK, CLASS, 0, SVE_BFSCALE, OPS, QUALS, FLAGS, 0, TIED, NULL } + { NAME, OPCODE, MASK, CLASS, 0, SVE_BFSCALE, OPS, QUALS, FLAGS | F_STRICT, 0, TIED, NULL } #define SVE_BFSCALE_SME2_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS,TIED) \ - { NAME, OPCODE, MASK, CLASS, 0, SVE_BFSCALE_SME2, OPS, QUALS, FLAGS, 0, TIED, NULL } -#define BFLOAT16_SVE_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, 0, BFLOAT16_SVE, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, 0, SVE_BFSCALE_SME2, OPS, QUALS, FLAGS | F_STRICT, 0, TIED, NULL } #define BFLOAT16_SVE_INSNC(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS, CONSTRAINTS, TIED) \ { NAME, OPCODE, MASK, CLASS, 0, BFLOAT16_SVE, OPS, QUALS, FLAGS | F_STRICT, \ CONSTRAINTS, TIED, NULL } #define BFLOAT16_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, BFLOAT16, OPS, QUALS, FLAGS, 0, 0, NULL } #define INT8MATMUL_SVE_INSNC(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS, CONSTRAINTS, TIED) \ - { NAME, OPCODE, MASK, CLASS, 0, I8MM_SVE, OPS, QUALS, FLAGS, CONSTRAINTS, TIED, NULL } + { NAME, OPCODE, MASK, CLASS, 0, I8MM_SVE, OPS, QUALS, FLAGS | F_STRICT, CONSTRAINTS, TIED, NULL } #define INT8MATMUL_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, I8MM, OPS, QUALS, FLAGS, 0, 0, NULL } #define F64MATMUL_SVE_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS,TIED) \ - { NAME, OPCODE, MASK, CLASS, 0, F64MM_SVE, OPS, QUALS, FLAGS, 0, TIED, NULL } + { NAME, OPCODE, MASK, CLASS, 0, F64MM_SVE, OPS, QUALS, FLAGS | F_STRICT, 0, TIED, NULL } #define F64MATMUL_SVE_INSNC(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS, CONSTRAINTS, TIED) \ - { NAME, OPCODE, MASK, CLASS, 0, F64MM_SVE, OPS, QUALS, FLAGS, CONSTRAINTS, TIED, NULL } + { NAME, OPCODE, MASK, CLASS, 0, F64MM_SVE, OPS, QUALS, FLAGS | F_STRICT, CONSTRAINTS, TIED, NULL } #define F32MATMUL_SVE_INSNC(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS, CONSTRAINTS, TIED) \ - { NAME, OPCODE, MASK, CLASS, 0, F32MM_SVE, OPS, QUALS, FLAGS, CONSTRAINTS, TIED, NULL } + { NAME, OPCODE, MASK, CLASS, 0, F32MM_SVE, OPS, QUALS, FLAGS | F_STRICT, CONSTRAINTS, TIED, NULL } #define V8R_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, ARMV8R, OPS, QUALS, FLAGS, 0, 0, NULL } #define XS_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, 0, XS, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, 0, XS, OPS, QUALS, FLAGS | F_INVALID_IMM_SYMS_1, 0, 0, NULL } #define WFXT_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, WFXT, OPS, QUALS, FLAGS, 0, 0, NULL } #define _LS64_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, LS64, OPS, QUALS, FLAGS, 0, 0, NULL } #define FLAGM_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, CLASS, 0, FLAGM, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, CLASS, 0, FLAGM, OPS, QUALS, FLAGS | F_INVALID_IMM_SYMS_1, 0, 0, NULL } #define MOPS_INSN(NAME, OPCODE, MASK, CLASS, OPS, QUALS, FLAGS, CONSTRAINTS, VERIFIER) \ { NAME, OPCODE, MASK, CLASS, 0, MOPS, OPS, QUALS, FLAGS, CONSTRAINTS, \ 0, VERIFIER } @@ -3319,13 +3312,13 @@ static const aarch64_feature_set aarch64_feature_sve2p2_sme2p2 = #define HBC_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, HBC, OPS, QUALS, FLAGS, 0, 0, NULL } #define CSSC_INSN(NAME,OPCODE,MASK,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, cssc, 0, CSSC, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, cssc, 0, CSSC, OPS, QUALS, FLAGS | F_INVALID_IMM_SYMS_1, 0, 0, NULL } #define CHK_INSN(NAME, OPCODE, MASK, OPS, QUALS, FLAGS) \ { NAME, OPCODE, MASK, ic_system, 0, CHK, OPS, QUALS, FLAGS, 0, 0, NULL } #define GCS_INSN(NAME, OPCODE, MASK, OPS, QUALS, FLAGS) \ { NAME, OPCODE, MASK, gcs, 0, GCS, OPS, QUALS, FLAGS, 0, 0, NULL } #define D128_INSN(NAME,OPCODE,MASK,OPS,QUALS,FLAGS) \ - { NAME, OPCODE, MASK, ic_system, 0, D128, OPS, QUALS, FLAGS, 0, 0, NULL } + { NAME, OPCODE, MASK, ic_system, 0, D128, OPS, QUALS, FLAGS | F_INVALID_IMM_SYMS_1, 0, 0, NULL } #define THE_INSN(NAME,OPCODE,MASK,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, the, 0, THE, OPS, QUALS, FLAGS, 0, 0, NULL } #define D128_THE_INSN(NAME,OPCODE,MASK,OPS,QUALS,FLAGS) \ @@ -3341,10 +3334,10 @@ static const aarch64_feature_set aarch64_feature_sve2p2_sme2p2 = { NAME, OPCODE, MASK, asimdsame, 0, FAMINMAX, OPS, QUALS, FLAGS, 0, 0, NULL } #define FAMINMAX_SVE2_INSN(NAME,OPCODE,MASK,OPS,QUALS,CONSTRAINTS) \ { NAME, OPCODE, MASK, sve_size_hsd, 0, FAMINMAX_SVE2, OPS, QUALS, \ - 0 | F_STRICT, CONSTRAINTS, 2, NULL } + F_STRICT, CONSTRAINTS, 2, NULL } #define FAMINMAX_SME2_INSN(NAME,OPCODE,MASK,OPS,QUALS) \ { NAME, OPCODE, MASK, sme_size_22_hsd, 0, FAMINMAX_SME2, OPS, QUALS, \ - F_STRICT | 0, 0, 1, NULL } + F_STRICT, 0, 1, NULL } #define FP8_INSN(NAME, OPCODE, MASK, CLASS, OPS, QUALS, FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, FP8, OPS, QUALS, FLAGS, 0, 0, NULL } #define FP8_SVE2_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,TIED) \ @@ -3356,16 +3349,16 @@ static const aarch64_feature_set aarch64_feature_sve2p2_sme2p2 = #define LUT_INSN(NAME,OPCODE,MASK,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, lut, 0, LUT, OPS, QUALS, FLAGS, 0, 0, NULL } #define LUT_SVE2_INSN(NAME,OPCODE,MASK,OPS,QUALS,FLAGS,CONSTRAINTS) \ - { NAME, OPCODE, MASK, lut, 0, LUT_SVE2, OPS, QUALS, \ - FLAGS, CONSTRAINTS, 0, NULL } + { NAME, OPCODE, MASK, sve_misc, 0, LUT_SVE2, OPS, QUALS, \ + FLAGS | F_STRICT, CONSTRAINTS, 0, NULL } #define BRBE_INSN(NAME,OPCODE,MASK,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, ic_system, 0, BRBE, OPS, QUALS, FLAGS, 0, 0, NULL } #define LUTv2_SME2_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, LUTv2_SME2, OPS, QUALS, \ - FLAGS, 0, 0, NULL } + FLAGS | F_STRICT, 0, 0, NULL } #define LUTv2_SME2p1_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, LUTv2_SME2p1, OPS, QUALS, \ - FLAGS, 0, 0, NULL } + FLAGS | F_STRICT, 0, 0, NULL } #define FP8FMA_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ { NAME, OPCODE, MASK, CLASS, 0, FP8FMA, OPS, QUALS, FLAGS, 0, 0, NULL } #define FP8DOT4_INSN(NAME,OPCODE,MASK,CLASS,OPS,QUALS,FLAGS) \ @@ -3395,7 +3388,7 @@ static const aarch64_feature_set aarch64_feature_sve2p2_sme2p2 = F_STRICT | FLAGS, CONSTRAINTS, TIED, NULL } #define SVE2p1_SME2_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,TIED) \ { NAME, OPCODE, MASK, CLASS, OP, SVE2p1_SME2, OPS, QUALS, \ - F_STRICT | FLAGS, 0, TIED, NULL } + F_STRICT | F_INVALID_IMM_SYMS_2 | FLAGS, 0, TIED, NULL } #define SVE2p1_SME2_INSNC(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,CONSTRAINTS,TIED) \ { NAME, OPCODE, MASK, CLASS, OP, SVE2p1_SME2, OPS, QUALS, \ F_STRICT | FLAGS, CONSTRAINTS, TIED, NULL } @@ -3404,7 +3397,7 @@ static const aarch64_feature_set aarch64_feature_sve2p2_sme2p2 = F_STRICT | FLAGS, 0, TIED, NULL } #define SVE2p1_SME2p1_INSNC(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,CONSTRAINTS,TIED) \ { NAME, OPCODE, MASK, CLASS, OP, SVE2p1_SME2p1, OPS, QUALS, \ - F_STRICT | FLAGS, CONSTRAINTS, TIED, NULL } + F_STRICT | F_INVALID_IMM_SYMS_2 | FLAGS, CONSTRAINTS, TIED, NULL } #define SVE_SME2p2_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,TIED) \ { NAME, OPCODE, MASK, CLASS, OP, SVE_SME2p2, OPS, QUALS, \ FLAGS | F_STRICT, 0, TIED, NULL } diff --git a/opcodes/configure b/opcodes/configure index ee9df4d..7dc7b49 100755 --- a/opcodes/configure +++ b/opcodes/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for opcodes 2.44.50. +# Generated by GNU Autoconf 2.69 for opcodes 2.45.50. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -587,8 +587,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='opcodes' PACKAGE_TARNAME='opcodes' -PACKAGE_VERSION='2.44.50' -PACKAGE_STRING='opcodes 2.44.50' +PACKAGE_VERSION='2.45.50' +PACKAGE_STRING='opcodes 2.45.50' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1368,7 +1368,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures opcodes 2.44.50 to adapt to many kinds of systems. +\`configure' configures opcodes 2.45.50 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1439,7 +1439,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of opcodes 2.44.50:";; + short | recursive ) echo "Configuration of opcodes 2.45.50:";; esac cat <<\_ACEOF @@ -1560,7 +1560,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -opcodes configure 2.44.50 +opcodes configure 2.45.50 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1971,7 +1971,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by opcodes $as_me 2.44.50, which was +It was created by opcodes $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2951,7 +2951,7 @@ fi # Define the identity of the package. PACKAGE='opcodes' - VERSION='2.44.50' + VERSION='2.45.50' cat >>confdefs.h <<_ACEOF @@ -14623,7 +14623,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by opcodes $as_me 2.44.50, which was +This file was extended by opcodes $as_me 2.45.50, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -14689,7 +14689,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -opcodes config.status 2.44.50 +opcodes config.status 2.45.50 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/opcodes/po/opcodes.pot b/opcodes/po/opcodes.pot index 3d757bb..3bba0da 100644 --- a/opcodes/po/opcodes.pot +++ b/opcodes/po/opcodes.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n" -"POT-Creation-Date: 2025-01-19 12:23+0000\n" +"POT-Creation-Date: 2025-07-13 08:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -30,17 +30,17 @@ msgstr "" msgid "unrecognised disassembler option: %s" msgstr "" -#: aarch64-dis.c:4096 +#: aarch64-dis.c:4137 #, c-format msgid "this `%s' should have an immediately preceding `%s'" msgstr "" -#: aarch64-dis.c:4103 +#: aarch64-dis.c:4144 #, c-format msgid "expected `%s' after previous `%s'" msgstr "" -#: aarch64-dis.c:4529 +#: aarch64-dis.c:4570 #, c-format msgid "" "\n" @@ -48,348 +48,348 @@ msgid "" "with the -M switch (multiple options should be separated by commas):\n" msgstr "" -#: aarch64-dis.c:4533 +#: aarch64-dis.c:4574 #, c-format msgid "" "\n" " no-aliases Don't print instruction aliases.\n" msgstr "" -#: aarch64-dis.c:4536 +#: aarch64-dis.c:4577 #, c-format msgid "" "\n" " aliases Do print instruction aliases.\n" msgstr "" -#: aarch64-dis.c:4539 +#: aarch64-dis.c:4580 #, c-format msgid "" "\n" " no-notes Don't print instruction notes.\n" msgstr "" -#: aarch64-dis.c:4542 +#: aarch64-dis.c:4583 #, c-format msgid "" "\n" " notes Do print instruction notes.\n" msgstr "" -#: aarch64-dis.c:4546 +#: aarch64-dis.c:4587 #, c-format msgid "" "\n" " debug_dump Temp switch for debug trace.\n" msgstr "" -#: aarch64-dis.c:4550 arc-dis.c:1585 arc-dis.c:1608 arc-dis.c:1611 -#: kvx-dis.c:1586 loongarch-dis.c:337 mips-dis.c:2903 mips-dis.c:2915 -#: mips-dis.c:2918 nfp-dis.c:3002 riscv-dis.c:1660 riscv-dis.c:1663 +#: aarch64-dis.c:4591 arc-dis.c:1585 arc-dis.c:1608 arc-dis.c:1611 +#: kvx-dis.c:1586 loongarch-dis.c:342 mips-dis.c:2930 mips-dis.c:2942 +#: mips-dis.c:2945 nfp-dis.c:3002 riscv-dis.c:1750 riscv-dis.c:1753 #, c-format msgid "\n" msgstr "" -#: aarch64-opc.c:1471 +#: aarch64-opc.c:1476 msgid "immediate value" msgstr "" -#: aarch64-opc.c:1481 +#: aarch64-opc.c:1486 msgid "immediate offset" msgstr "" -#: aarch64-opc.c:1491 +#: aarch64-opc.c:1496 msgid "register number" msgstr "" -#: aarch64-opc.c:1501 +#: aarch64-opc.c:1506 msgid "register element index" msgstr "" -#: aarch64-opc.c:1511 +#: aarch64-opc.c:1516 msgid "shift amount" msgstr "" -#: aarch64-opc.c:1523 +#: aarch64-opc.c:1528 msgid "multiplier" msgstr "" -#: aarch64-opc.c:1692 +#: aarch64-opc.c:1697 msgid "expected a selection register in the range w12-w15" msgstr "" -#: aarch64-opc.c:1696 +#: aarch64-opc.c:1701 msgid "expected a selection register in the range w8-w11" msgstr "" -#: aarch64-opc.c:1715 +#: aarch64-opc.c:1720 msgid "starting offset is not a multiple of 2" msgstr "" -#: aarch64-opc.c:1716 +#: aarch64-opc.c:1721 msgid "starting offset is not a multiple of 4" msgstr "" -#: aarch64-opc.c:1724 +#: aarch64-opc.c:1729 msgid "expected a single offset rather than a range" msgstr "" -#: aarch64-opc.c:1728 +#: aarch64-opc.c:1733 msgid "expected a range of two offsets" msgstr "" -#: aarch64-opc.c:1731 +#: aarch64-opc.c:1736 msgid "expected a range of four offsets" msgstr "" -#: aarch64-opc.c:1812 +#: aarch64-opc.c:1817 msgid "second reg in pair should be xzr if first is xzr" msgstr "" -#: aarch64-opc.c:1826 +#: aarch64-opc.c:1831 msgid "reg pair must start from even reg" msgstr "" -#: aarch64-opc.c:1832 +#: aarch64-opc.c:1837 msgid "reg pair must be contiguous" msgstr "" -#: aarch64-opc.c:1846 +#: aarch64-opc.c:1851 msgid "extraneous register" msgstr "" -#: aarch64-opc.c:1852 +#: aarch64-opc.c:1857 msgid "missing register" msgstr "" -#: aarch64-opc.c:1863 +#: aarch64-opc.c:1868 msgid "stack pointer register expected" msgstr "" -#: aarch64-opc.c:2000 aarch64-opc.c:2016 +#: aarch64-opc.c:2007 aarch64-opc.c:2023 msgid "start register out of range" msgstr "" -#: aarch64-opc.c:2209 aarch64-opc.c:2217 aarch64-opc.c:2240 +#: aarch64-opc.c:2216 aarch64-opc.c:2224 aarch64-opc.c:2247 msgid "unexpected address writeback" msgstr "" -#: aarch64-opc.c:2228 +#: aarch64-opc.c:2235 msgid "address writeback expected" msgstr "" -#: aarch64-opc.c:2288 +#: aarch64-opc.c:2295 msgid "negative or unaligned offset expected" msgstr "" -#: aarch64-opc.c:2345 +#: aarch64-opc.c:2352 msgid "invalid register offset" msgstr "" -#: aarch64-opc.c:2367 +#: aarch64-opc.c:2374 msgid "invalid post-increment amount" msgstr "" -#: aarch64-opc.c:2383 aarch64-opc.c:2933 +#: aarch64-opc.c:2390 aarch64-opc.c:2945 msgid "invalid shift amount" msgstr "" -#: aarch64-opc.c:2396 +#: aarch64-opc.c:2403 msgid "invalid extend/shift operator" msgstr "" -#: aarch64-opc.c:2470 aarch64-opc.c:2512 aarch64-opc.c:2576 aarch64-opc.c:2610 +#: aarch64-opc.c:2478 aarch64-opc.c:2520 aarch64-opc.c:2588 aarch64-opc.c:2622 msgid "invalid addressing mode" msgstr "" -#: aarch64-opc.c:2568 +#: aarch64-opc.c:2580 msgid "index register xzr is not allowed" msgstr "" -#: aarch64-opc.c:2637 +#: aarch64-opc.c:2649 msgid "invalid increment amount" msgstr "" -#: aarch64-opc.c:2720 aarch64-opc.c:2742 aarch64-opc.c:2966 aarch64-opc.c:2974 -#: aarch64-opc.c:3040 aarch64-opc.c:3069 +#: aarch64-opc.c:2732 aarch64-opc.c:2754 aarch64-opc.c:2978 aarch64-opc.c:2986 +#: aarch64-opc.c:3052 aarch64-opc.c:3081 msgid "invalid shift operator" msgstr "" -#: aarch64-opc.c:2726 +#: aarch64-opc.c:2738 msgid "shift amount must be 0 or 12" msgstr "" -#: aarch64-opc.c:2732 aarch64-opc.c:2767 aarch64-opc.c:2786 aarch64-opc.c:2794 -#: aarch64-opc.c:2886 aarch64-opc.c:3063 aarch64-opc.c:3163 aarch64-opc.c:3176 +#: aarch64-opc.c:2744 aarch64-opc.c:2779 aarch64-opc.c:2798 aarch64-opc.c:2806 +#: aarch64-opc.c:2898 aarch64-opc.c:3075 aarch64-opc.c:3175 aarch64-opc.c:3188 msgid "immediate out of range" msgstr "" -#: aarch64-opc.c:2749 +#: aarch64-opc.c:2761 msgid "shift amount must be a multiple of 16" msgstr "" -#: aarch64-opc.c:2761 +#: aarch64-opc.c:2773 msgid "negative immediate value not allowed" msgstr "" -#: aarch64-opc.c:2897 +#: aarch64-opc.c:2909 msgid "immediate zero expected" msgstr "" -#: aarch64-opc.c:2911 +#: aarch64-opc.c:2923 msgid "rotate expected to be 0, 90, 180 or 270" msgstr "" -#: aarch64-opc.c:2922 +#: aarch64-opc.c:2934 msgid "rotate expected to be 90 or 270" msgstr "" -#: aarch64-opc.c:2982 +#: aarch64-opc.c:2994 msgid "shift is not permitted" msgstr "" -#: aarch64-opc.c:3007 +#: aarch64-opc.c:3019 msgid "invalid value for immediate" msgstr "" -#: aarch64-opc.c:3032 +#: aarch64-opc.c:3044 msgid "shift amount must be 0 or 16" msgstr "" -#: aarch64-opc.c:3053 +#: aarch64-opc.c:3065 msgid "floating-point immediate expected" msgstr "" -#: aarch64-opc.c:3087 +#: aarch64-opc.c:3099 msgid "no shift amount allowed for 8-bit constants" msgstr "" -#: aarch64-opc.c:3097 +#: aarch64-opc.c:3109 msgid "shift amount must be 0 or 8" msgstr "" -#: aarch64-opc.c:3110 +#: aarch64-opc.c:3122 msgid "immediate too big for element size" msgstr "" -#: aarch64-opc.c:3117 +#: aarch64-opc.c:3129 msgid "invalid arithmetic immediate" msgstr "" -#: aarch64-opc.c:3131 +#: aarch64-opc.c:3143 msgid "floating-point value must be 0.5 or 1.0" msgstr "" -#: aarch64-opc.c:3141 +#: aarch64-opc.c:3153 msgid "floating-point value must be 0.5 or 2.0" msgstr "" -#: aarch64-opc.c:3151 +#: aarch64-opc.c:3163 msgid "floating-point value must be 0.0 or 1.0" msgstr "" -#: aarch64-opc.c:3182 +#: aarch64-opc.c:3194 msgid "invalid replicated MOV immediate" msgstr "" -#: aarch64-opc.c:3240 +#: aarch64-opc.c:3252 msgid "byte index must be a multiple of 8" msgstr "" -#: aarch64-opc.c:3278 +#: aarch64-opc.c:3290 msgid "" "the register-index form of PRFM does not accept opcodes in the range 24-31" msgstr "" -#: aarch64-opc.c:3347 +#: aarch64-opc.c:3359 msgid "extend operator expected" msgstr "" -#: aarch64-opc.c:3360 +#: aarch64-opc.c:3372 msgid "missing extend operator" msgstr "" -#: aarch64-opc.c:3366 +#: aarch64-opc.c:3378 msgid "'LSL' operator not allowed" msgstr "" -#: aarch64-opc.c:3387 +#: aarch64-opc.c:3399 msgid "W register expected" msgstr "" -#: aarch64-opc.c:3398 +#: aarch64-opc.c:3410 msgid "shift operator expected" msgstr "" -#: aarch64-opc.c:3405 +#: aarch64-opc.c:3417 msgid "'ROR' operator not allowed" msgstr "" -#: aarch64-opc.c:4952 +#: aarch64-opc.c:4971 msgid "reading from a write-only register" msgstr "" -#: aarch64-opc.c:4954 +#: aarch64-opc.c:4973 msgid "writing to a read-only register" msgstr "" -#: aarch64-opc.c:5483 +#: aarch64-opc.c:5515 msgid "the three register operands must be distinct from one another" msgstr "" -#: aarch64-opc.c:5594 +#: aarch64-opc.c:5626 msgid "destination register differs from preceding instruction" msgstr "" -#: aarch64-opc.c:5597 +#: aarch64-opc.c:5629 msgid "source register differs from preceding instruction" msgstr "" -#: aarch64-opc.c:5600 +#: aarch64-opc.c:5632 msgid "size register differs from preceding instruction" msgstr "" -#: aarch64-opc.c:5648 +#: aarch64-opc.c:5680 msgid "instruction opens new dependency sequence without ending previous one" msgstr "" -#: aarch64-opc.c:5677 +#: aarch64-opc.c:5709 msgid "previous `movprfx' sequence not closed" msgstr "" -#: aarch64-opc.c:5697 +#: aarch64-opc.c:5740 msgid "SVE instruction expected after `movprfx'" msgstr "" -#: aarch64-opc.c:5710 +#: aarch64-opc.c:5753 msgid "SVE `movprfx' compatible instruction expected" msgstr "" -#: aarch64-opc.c:5798 +#: aarch64-opc.c:5841 msgid "predicated instruction expected after `movprfx'" msgstr "" -#: aarch64-opc.c:5810 +#: aarch64-opc.c:5853 msgid "merging predicate expected due to preceding `movprfx'" msgstr "" -#: aarch64-opc.c:5822 +#: aarch64-opc.c:5865 msgid "predicate register differs from that in preceding `movprfx'" msgstr "" -#: aarch64-opc.c:5841 +#: aarch64-opc.c:5884 msgid "output register of preceding `movprfx' not used in current instruction" msgstr "" -#: aarch64-opc.c:5854 +#: aarch64-opc.c:5897 msgid "output register of preceding `movprfx' expected as output" msgstr "" -#: aarch64-opc.c:5866 +#: aarch64-opc.c:5909 msgid "output register of preceding `movprfx' used as input" msgstr "" -#: aarch64-opc.c:5882 +#: aarch64-opc.c:5925 msgid "register size not compatible with previous `movprfx'" msgstr "" @@ -472,7 +472,7 @@ msgid "" "with the -M switch (multiple options should be separated by commas):\n" msgstr "" -#: arc-dis.c:1594 mips-dis.c:2910 riscv-dis.c:1655 +#: arc-dis.c:1594 mips-dis.c:2937 riscv-dis.c:1745 #, c-format msgid "" "\n" @@ -744,7 +744,7 @@ msgid "" msgstr "" #. The option without '=' should be defined above. -#: bpf-dis.c:90 riscv-dis.c:130 riscv-dis.c:167 +#: bpf-dis.c:90 riscv-dis.c:124 riscv-dis.c:162 #, c-format msgid "unrecognized disassembler option: %s" msgstr "" @@ -1101,11 +1101,11 @@ msgstr "" msgid "Don't understand 0x%x \n" msgstr "" -#: i386-dis.c:8727 +#: i386-dis.c:8738 msgid "<internal disassembler error>" msgstr "" -#: i386-dis.c:8975 +#: i386-dis.c:8986 #, c-format msgid "" "\n" @@ -1114,86 +1114,86 @@ msgid "" "with the -M switch (multiple options should be separated by commas):\n" msgstr "" -#: i386-dis.c:8979 +#: i386-dis.c:8990 #, c-format msgid " x86-64 Disassemble in 64bit mode\n" msgstr "" -#: i386-dis.c:8980 +#: i386-dis.c:8991 #, c-format msgid " i386 Disassemble in 32bit mode\n" msgstr "" -#: i386-dis.c:8981 +#: i386-dis.c:8992 #, c-format msgid " i8086 Disassemble in 16bit mode\n" msgstr "" -#: i386-dis.c:8982 +#: i386-dis.c:8993 #, c-format msgid " att Display instruction in AT&T syntax\n" msgstr "" -#: i386-dis.c:8983 +#: i386-dis.c:8994 #, c-format msgid " intel Display instruction in Intel syntax\n" msgstr "" -#: i386-dis.c:8984 +#: i386-dis.c:8995 #, c-format msgid "" " att-mnemonic (AT&T syntax only)\n" " Display instruction with AT&T mnemonic\n" msgstr "" -#: i386-dis.c:8986 +#: i386-dis.c:8997 #, c-format msgid "" " intel-mnemonic (AT&T syntax only)\n" " Display instruction with Intel mnemonic\n" msgstr "" -#: i386-dis.c:8988 +#: i386-dis.c:8999 #, c-format msgid " addr64 Assume 64bit address size\n" msgstr "" -#: i386-dis.c:8989 +#: i386-dis.c:9000 #, c-format msgid " addr32 Assume 32bit address size\n" msgstr "" -#: i386-dis.c:8990 +#: i386-dis.c:9001 #, c-format msgid " addr16 Assume 16bit address size\n" msgstr "" -#: i386-dis.c:8991 +#: i386-dis.c:9002 #, c-format msgid " data32 Assume 32bit data size\n" msgstr "" -#: i386-dis.c:8992 +#: i386-dis.c:9003 #, c-format msgid " data16 Assume 16bit data size\n" msgstr "" -#: i386-dis.c:8993 +#: i386-dis.c:9004 #, c-format msgid " suffix Always display instruction suffix in AT&T syntax\n" msgstr "" -#: i386-dis.c:8994 +#: i386-dis.c:9005 #, c-format msgid " amd64 Display instruction in AMD64 ISA\n" msgstr "" -#: i386-dis.c:8995 +#: i386-dis.c:9006 #, c-format msgid " intel64 Display instruction in Intel64 ISA\n" msgstr "" -#: i386-dis.c:9795 +#: i386-dis.c:9796 msgid "64-bit address is disabled" msgstr "" @@ -1359,7 +1359,7 @@ msgstr "" msgid "internal error: lm32_cgen_cpu_open: no endianness specified" msgstr "" -#: loongarch-dis.c:329 +#: loongarch-dis.c:334 #, c-format msgid "" "\n" @@ -1367,14 +1367,14 @@ msgid "" "with the -M switch (multiple options should be separated by commas):\n" msgstr "" -#: loongarch-dis.c:333 +#: loongarch-dis.c:338 #, c-format msgid "" "\n" " no-aliases Use canonical instruction forms.\n" msgstr "" -#: loongarch-dis.c:335 +#: loongarch-dis.c:340 #, c-format msgid "" "\n" @@ -1564,86 +1564,86 @@ msgstr "" msgid "illegal MEP INDEX setting '%x' in ELF header e_flags field" msgstr "" -#: mips-dis.c:1907 mips-dis.c:2140 +#: mips-dis.c:1934 mips-dis.c:2167 #, c-format msgid "# internal error, undefined operand in `%s %s'" msgstr "" -#: mips-dis.c:2745 +#: mips-dis.c:2772 msgid "Use canonical instruction forms.\n" msgstr "" -#: mips-dis.c:2747 +#: mips-dis.c:2774 msgid "Recognize MSA instructions.\n" msgstr "" -#: mips-dis.c:2749 +#: mips-dis.c:2776 msgid "Recognize the virtualization ASE instructions.\n" msgstr "" -#: mips-dis.c:2751 +#: mips-dis.c:2778 msgid "" "Recognize the eXtended Physical Address (XPA) ASE\n" " instructions.\n" msgstr "" -#: mips-dis.c:2754 +#: mips-dis.c:2781 msgid "Recognize the Global INValidate (GINV) ASE instructions.\n" msgstr "" -#: mips-dis.c:2758 +#: mips-dis.c:2785 msgid "" "Recognize the Loongson MultiMedia extensions Instructions (MMI) ASE " "instructions.\n" msgstr "" -#: mips-dis.c:2762 +#: mips-dis.c:2789 msgid "Recognize the Loongson Content Address Memory (CAM) instructions.\n" msgstr "" -#: mips-dis.c:2766 +#: mips-dis.c:2793 msgid "Recognize the Loongson EXTensions (EXT) instructions.\n" msgstr "" -#: mips-dis.c:2770 +#: mips-dis.c:2797 msgid "Recognize the Loongson EXTensions R2 (EXT2) instructions.\n" msgstr "" -#: mips-dis.c:2773 +#: mips-dis.c:2800 msgid "" "Print GPR names according to specified ABI.\n" " Default: based on binary being disassembled.\n" msgstr "" -#: mips-dis.c:2776 +#: mips-dis.c:2803 msgid "" "Print FPR names according to specified ABI.\n" " Default: numeric.\n" msgstr "" -#: mips-dis.c:2779 +#: mips-dis.c:2806 msgid "" "Print CP0 register names according to specified architecture.\n" " Default: based on binary being disassembled.\n" msgstr "" -#: mips-dis.c:2783 +#: mips-dis.c:2810 msgid "" "Print HWR names according to specified architecture.\n" " Default: based on binary being disassembled.\n" msgstr "" -#: mips-dis.c:2786 +#: mips-dis.c:2813 msgid "Print GPR and FPR names according to specified ABI.\n" msgstr "" -#: mips-dis.c:2788 +#: mips-dis.c:2815 msgid "" "Print CP0 register and HWR names according to specified\n" " architecture." msgstr "" -#: mips-dis.c:2874 +#: mips-dis.c:2901 #, c-format msgid "" "\n" @@ -1840,19 +1840,19 @@ msgstr "" msgid "internal relocation type invalid" msgstr "" -#: or1k-desc.c:2041 +#: or1k-desc.c:2043 #, c-format msgid "" "internal error: or1k_cgen_rebuild_tables: conflicting insn-chunk-bitsize " "values: `%d' vs. `%d'" msgstr "" -#: or1k-desc.c:2129 +#: or1k-desc.c:2131 #, c-format msgid "internal error: or1k_cgen_cpu_open: unsupported argument `%d'" msgstr "" -#: or1k-desc.c:2148 +#: or1k-desc.c:2150 #, c-format msgid "internal error: or1k_cgen_cpu_open: no endianness specified" msgstr "" @@ -1898,142 +1898,150 @@ msgstr "" msgid "invalid offset: must be in the range [-512, -8] and be a multiple of 8" msgstr "" -#: ppc-opc.c:706 +#: ppc-opc.c:752 msgid "invalid R operand" msgstr "" -#: ppc-opc.c:761 +#: ppc-opc.c:807 msgid "invalid mask field" msgstr "" -#: ppc-opc.c:784 +#: ppc-opc.c:830 msgid "invalid mfcr mask" msgstr "" -#: ppc-opc.c:902 ppc-opc.c:920 +#: ppc-opc.c:948 ppc-opc.c:966 msgid "illegal L operand value" msgstr "" -#: ppc-opc.c:943 +#: ppc-opc.c:989 msgid "illegal WC operand value" msgstr "" -#: ppc-opc.c:1040 +#: ppc-opc.c:1086 msgid "incompatible L operand value" msgstr "" -#: ppc-opc.c:1239 ppc-opc.c:1274 +#: ppc-opc.c:1285 ppc-opc.c:1320 msgid "illegal bitmask" msgstr "" -#: ppc-opc.c:1418 +#: ppc-opc.c:1464 msgid "address register in load range" msgstr "" -#: ppc-opc.c:1458 +#: ppc-opc.c:1504 msgid "illegal PL operand value" msgstr "" -#: ppc-opc.c:1539 +#: ppc-opc.c:1585 msgid "index register in load range" msgstr "" -#: ppc-opc.c:1568 ppc-opc.c:1654 +#: ppc-opc.c:1614 ppc-opc.c:1700 msgid "source and target register operands must be different" msgstr "" -#: ppc-opc.c:1599 +#: ppc-opc.c:1645 msgid "invalid base address register operand" msgstr "" -#: ppc-opc.c:1717 +#: ppc-opc.c:1763 msgid "illegal immediate value" msgstr "" -#: ppc-opc.c:2024 +#: ppc-opc.c:2070 msgid "invalid bat number" msgstr "" -#: ppc-opc.c:2059 +#: ppc-opc.c:2105 msgid "invalid sprg number" msgstr "" -#: ppc-opc.c:2096 +#: ppc-opc.c:2142 msgid "invalid tbr number" msgstr "" -#: ppc-opc.c:2203 ppc-opc.c:2271 +#: ppc-opc.c:2249 ppc-opc.c:2317 msgid "VSR overlaps ACC operand" msgstr "" -#: ppc-opc.c:2380 +#: ppc-opc.c:2426 msgid "invalid constant" msgstr "" -#: ppc-opc.c:2482 ppc-opc.c:2505 ppc-opc.c:2528 ppc-opc.c:2551 +#: ppc-opc.c:2448 +msgid "invalid M value" +msgstr "" + +#: ppc-opc.c:2550 ppc-opc.c:2573 ppc-opc.c:2596 ppc-opc.c:2619 msgid "UIMM = 00000 is illegal" msgstr "" -#: ppc-opc.c:2574 +#: ppc-opc.c:2642 msgid "UIMM values >7 are illegal" msgstr "" -#: ppc-opc.c:2597 +#: ppc-opc.c:2665 msgid "UIMM values >15 are illegal" msgstr "" -#: ppc-opc.c:2620 +#: ppc-opc.c:2688 msgid "GPR odd is illegal" msgstr "" -#: ppc-opc.c:2643 ppc-opc.c:2666 +#: ppc-opc.c:2711 ppc-opc.c:2734 msgid "invalid offset" msgstr "" -#: ppc-opc.c:2689 +#: ppc-opc.c:2757 msgid "invalid Ddd value" msgstr "" -#: ppc-opc.c:2742 ppc-opc.c:2769 +#: ppc-opc.c:2810 ppc-opc.c:2837 msgid "invalid TH value" msgstr "" #. Invalid options with '=', no option name before '=', #. and no value after '='. -#: riscv-dis.c:138 +#: riscv-dis.c:132 #, c-format msgid "unrecognized disassembler option with '=': %s" msgstr "" -#: riscv-dis.c:152 +#: riscv-dis.c:147 #, c-format msgid "unknown privileged spec set by %s=%s" msgstr "" -#: riscv-dis.c:159 +#: riscv-dis.c:154 #, c-format msgid "" "mis-matched privilege spec set by %s=%s, the elf privilege attribute is %s" msgstr "" -#: riscv-dis.c:892 +#: riscv-dis.c:929 #, c-format msgid "# internal error, undefined modifier (%c)" msgstr "" -#: riscv-dis.c:1536 +#: riscv-dis.c:1623 +msgid "Disassemble without checking architecture string." +msgstr "" + +#: riscv-dis.c:1626 msgid "Print numeric register names, rather than ABI names." msgstr "" -#: riscv-dis.c:1539 +#: riscv-dis.c:1629 msgid "Disassemble only into canonical instructions." msgstr "" -#: riscv-dis.c:1542 +#: riscv-dis.c:1632 msgid "Print the CSR according to the chosen privilege spec." msgstr "" -#: riscv-dis.c:1618 +#: riscv-dis.c:1708 #, c-format msgid "" "\n" @@ -2095,7 +2103,7 @@ msgstr "" msgid "unknown S/390 disassembler option: %s" msgstr "" -#: s390-dis.c:587 +#: s390-dis.c:584 #, c-format msgid "" "\n" |