From 8f595e9b4fd0a3a74d53ddffd69f2825627ae5c6 Mon Sep 17 00:00:00 2001 From: Nelson Chu Date: Wed, 20 May 2020 17:22:48 +0100 Subject: [PATCH v2 0/9] RISC-V: Support version controling for ISA standard extensions and CSR 1. Remove the -mriscv-isa-version and --with-riscv-isa-version options. We can still use -march to choose the version for each extensions, so there is no need to add these. 2. Change the arguments of options from [1p9|1p9p1|...] to [1.9|1.9.1|...]. Unlike the architecture string has specified by spec, ther is no need to do the same thing for options. 3. Spilt the patches to reduce the burdens of review. [PATCH 3/7] RISC-V: Support new GAS options and configure options to set ISA versions to [PATCH v2 3/9] RISC-V: Support GAS option -misa-spec to set ISA versions [PATCH v2 4/9] RISC-V: Support configure options to set ISA versions by default. [PATCH 4/7] RISC-V: Support version checking for CSR according to privilege version. to [PATCH v2 5/9] RISC-V: Support version checking for CSR according to privilege spec version. [PATCH v2 6/9] RISC-V: Support configure option to choose the privilege spec version. 4. Use enum class rather than string to compare the choosen ISA spec in opcodes/riscv-opc.c. The behavior is same as comparing the choosen privilege spec. include * opcode/riscv.h: Include "bfd.h" to support bfd_boolean. (enum riscv_isa_spec_class): New enum class. All supported ISA spec belong to one of the class (struct riscv_ext_version): New structure holds version information for the specific ISA. * opcode/riscv-opc.h (DECLARE_CSR): There are two version information, define_version and abort_version. The define_version means which privilege spec is started to define the CSR, and the abort_version means which privilege spec is started to abort the CSR. If the CSR is valid for the newest spec, then the abort_version should be PRIV_SPEC_CLASS_DRAFT. (DECLARE_CSR_ALIAS): Same as DECLARE_CSR, but only for the obselete CSR. * opcode/riscv.h (enum riscv_priv_spec_class): New enum class. Define the current supported privilege spec versions. (struct riscv_csr_extra): Add new fields to store more information about the CSR. We use these information to find the suitable CSR address when user choosing a specific privilege spec. binutils * dwarf.c: Updated since DECLARE_CSR is changed. opcodes * riscv-opc.c (riscv_ext_version_table): The table used to store all information about the supported spec and the corresponding ISA versions. Currently, only Zicsr is supported to verify the correctness of Z sub extension settings. Others will be supported in the future patches. (struct isa_spec_t, isa_specs): List for all supported ISA spec classes and the corresponding strings. (riscv_get_isa_spec_class): New function. Get the corresponding ISA spec class by giving a ISA spec string. * riscv-opc.c (struct priv_spec_t): New structure. (struct priv_spec_t priv_specs): List for all supported privilege spec classes and the corresponding strings. (riscv_get_priv_spec_class): New function. Get the corresponding privilege spec class by giving a spec string. (riscv_get_priv_spec_name): New function. Get the corresponding privilege spec string by giving a CSR version class. * riscv-dis.c: Updated since DECLARE_CSR is changed. * riscv-dis.c: Add new disassembler option -Mpriv-spec to dump the CSR according to the chosen version. Build a hash table riscv_csr_hash to store the valid CSR for the chosen pirv verison. Dump the direct CSR address rather than it's name if it is invalid. (parse_riscv_dis_option_without_args): New function. Parse the options without arguments. (parse_riscv_dis_option): Call parse_riscv_dis_option_without_args to parse the options without arguments first, and then handle the options with arguments. Add the new option -Mpriv-spec, which has argument. * riscv-dis.c (print_riscv_disassembler_options): Add description about the new OBJDUMP option. ld * testsuite/ld-riscv-elf/attr-merge-arch-01.d: Updated priv attributes according to the -mpriv-spec option. * testsuite/ld-riscv-elf/attr-merge-arch-02.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-arch-03.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-priv-spec-a.s: Likewise. * testsuite/ld-riscv-elf/attr-merge-priv-spec-b.s: Likewise. * testsuite/ld-riscv-elf/attr-merge-priv-spec.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-stack-align.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-strict-align-01.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-strict-align-02.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-strict-align-03.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-strict-align-04.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-strict-align-05.d: Likewise. bfd * elfxx-riscv.h (riscv_parse_subset_t): Add new callback function get_default_version. It is used to find the default version for the specific extension. * elfxx-riscv.c (riscv_parsing_subset_version): Remove the parameters default_major_version and default_minor_version. Add new bfd_boolean parameter *use_default_version. Set it to TRUE if we need to call the callback rps->get_default_version to find the default version. (riscv_parse_std_ext): Call rps->get_default_version if we fail to find the default version in riscv_parsing_subset_version, and then call riscv_add_subset to add the subset into subset list. (riscv_parse_prefixed_ext): Likewise. (riscv_std_z_ext_strtab): Support Zicsr extensions. * elfnn-riscv.c (riscv_merge_std_ext): Use strcasecmp to compare the strings rather than characters. riscv_merge_arch_attr_info): The callback function get_default_version is only needed for assembler, so set it to NULL int the linker. * elfxx-riscv.c (riscv_estimate_digit): Remove the static. * elfxx-riscv.h: Updated. gas * testsuite/gas/riscv/priv-reg-fail-read-only-01.s: Updated. * config/tc-riscv.c (default_arch_with_ext, default_isa_spec): Static variables which are used to set the ISA extensions. You can use -march (or ELF build attributes) and -misa-spec to set them, respectively. (ext_version_hash): The hash table used to handle the extensions with versions. (init_ext_version_hash): Initialize the ext_version_hash according to riscv_ext_version_table. (riscv_get_default_ext_version): The callback function of riscv_parse_subset_t. According to the choosed ISA spec, get the default version for the specific extension. (riscv_set_arch): Set the callback function. (enum options, struct option md_longopts): Add new option -misa-spec. (md_parse_option): Do not call riscv_set_arch for -march. We will call it later in riscv_after_parse_args. Call riscv_get_isa_spec_class to set default_isa_spec class. (riscv_after_parse_args): Call init_ext_version_hash to initialize the ext_version_hash, and then call riscv_set_arch to set the architecture with versions according to default_arch_with_ext. * testsuite/gas/riscv/attribute-02.d: Set 0p0 as default version for x extensions. * testsuite/gas/riscv/attribute-03.d: Likewise. * testsuite/gas/riscv/attribute-09.d: New testcase. For i-ext, we already set it's version to 2p1 by march, so no need to use the default 2p2 version. For m-ext, we do not set the version by -march and ELF arch attribute, so set the default 2p0 to it. For zicsr, it is not defined in ISA spec 2p2, so set 0p0 to it. * testsuite/gas/riscv/attribute-10.d: New testcase. The version of zicsr is 2p0 according to ISA spec 20191213. * config/tc-riscv.c (DEFAULT_RISCV_ARCH_WITH_EXT) (DEFAULT_RISCV_ISA_SPEC): Default configure option settings. You can set them by configure options --with-arch and --with-isa-spec, respectively. (riscv_set_default_isa_spec): New function used to set the default ISA spec. (md_parse_option): Call riscv_set_default_isa_spec rather than call riscv_get_isa_spec_class directly. (riscv_after_parse_args): If the -isa-spec is not set, then we set the default ISA spec according to DEFAULT_RISCV_ISA_SPEC by calling riscv_set_default_isa_spec. * testsuite/gas/riscv/attribute-01.d: Add -misa-spec=2.2, since the --with-isa-spec may be set to different ISA spec. * testsuite/gas/riscv/attribute-02.d: Likewise. * testsuite/gas/riscv/attribute-03.d: Likewise. * testsuite/gas/riscv/attribute-04.d: Likewise. * testsuite/gas/riscv/attribute-05.d: Likewise. * testsuite/gas/riscv/attribute-06.d: Likewise. * testsuite/gas/riscv/attribute-07.d: Likewise. * configure.ac: Add configure options, --with-arch and --with-isa-spec. * configure: Regenerated. * config.in: Regenerated. * config/tc-riscv.c (default_priv_spec): Static variable which is used to check if the CSR is valid for the chosen privilege spec. You can use -mpriv-spec to set it. (enum reg_class): We now get the CSR address from csr_extra_hash rather than reg_names_hash. Therefore, move RCLASS_CSR behind RCLASS_MAX. (riscv_init_csr_hashes): Only need to initialize one hash table csr_extra_hash. (riscv_csr_class_check): Change the return type to void. Don't check the ISA dependency if -mcsr-check isn't set. (riscv_csr_version_check): New function. Check and find the CSR address from csr_extra_hash, according to default_priv_spec. Report warning for the invalid CSR if -mcsr-check is set. (reg_csr_lookup_internal): Updated. (reg_lookup_internal): Likewise. (md_begin): Updated since DECLARE_CSR and DECLARE_CSR_ALIAS are changed. (enum options, struct option md_longopts): Add new GAS option -mpriv-spec. (md_parse_option): Call riscv_set_default_priv_version to set default_priv_spec. (riscv_after_parse_args): If -mpriv-spec isn't set, then set the default privilege spec to the newest one. (enum riscv_csr_class, struct riscv_csr_extra): Move them to include/opcode/riscv.h. * testsuite/gas/riscv/priv-reg-fail-fext.d: This test case just want to check the ISA dependency for CSR, so fix the spec version by adding -mpriv-spec=1.11. * testsuite/gas/riscv/priv-reg-fail-fext.l: Likewise. There are some version warnings for the test case. * gas/testsuite/gas/riscv/priv-reg-fail-read-only-01.d: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-read-only-01.l: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-read-only-02.d: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-rv32-only.d: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-rv32-only.l: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p9.d: New test case. Check whether the CSR is valid when privilege version 1.9 is choosed. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p9.l: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p9p1.d: New test case. Check whether the CSR is valid when privilege version 1.9.1 is choosed. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p9p1.l: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p10.d: New test case. Check whether the CSR is valid when privilege version 1.10 is choosed. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p10.l: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p11.d: New test case. Check whether the CSR is valid when privilege version 1.11 is choosed. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p11.l: Likewise. * config/tc-riscv.c (DEFAULT_RISCV_ISA_SPEC): Default configure option setting. You can set it by configure option --with-priv-spec. (riscv_set_default_priv_spec): New function used to set the default privilege spec. (md_parse_option): Call riscv_set_default_priv_spec rather than call riscv_get_priv_spec_class directly. (riscv_after_parse_args): If -mpriv-spec isn't set, then we set the default privilege spec according to DEFAULT_RISCV_PRIV_SPEC by calling riscv_set_default_priv_spec. * testsuite/gas/riscv/csr-dw-regnums.d: Add -mpriv-spec=1.11, since the --with-priv-spec may be set to different privilege spec. * testsuite/gas/riscv/priv-reg.d: Likewise. * configure.ac: Add configure option --with-priv-spec. * configure: Regenerated. * config.in: Regenerated. * config/tc-riscv.c (explicit_attr): Rename explicit_arch_attr to explicit_attr. Set it to TRUE if any ELF attribute is found. (riscv_set_default_priv_spec): Try to set the default_priv_spec if the priv attributes are set. (md_assemble): Set the default_priv_spec according to the priv attributes when we start to assemble instruction. (riscv_write_out_attrs): Rename riscv_write_out_arch_attr to riscv_write_out_attrs. Update the arch and priv attributes. If we don't set the corresponding ELF attributes, then try to output the default ones. (riscv_set_public_attributes): If any ELF attribute or -march-attr options is set (explicit_attr is TRUE), then call riscv_write_out_attrs to update the arch and priv attributes. (s_riscv_attribute): Make sure all arch and priv attributes are set before any instruction. * testsuite/gas/riscv/attribute-01.d: Update the priv attributes if any ELF attribute or -march-attr is set. If the priv attributes are not set, then try to update them by the default setting (-mpriv-spec or --with-priv-spec). * testsuite/gas/riscv/attribute-02.d: Likewise. * testsuite/gas/riscv/attribute-03.d: Likewise. * testsuite/gas/riscv/attribute-04.d: Likewise. * testsuite/gas/riscv/attribute-06.d: Likewise. * testsuite/gas/riscv/attribute-07.d: Likewise. * testsuite/gas/riscv/attribute-08.d: Likewise. * testsuite/gas/riscv/attribute-09.d: Likewise. * testsuite/gas/riscv/attribute-10.d: Likewise. * testsuite/gas/riscv/attribute-unknown.d: Likewise. * testsuite/gas/riscv/attribute-05.d: Likewise. Also, the priv spec set by priv attributes must be supported. * testsuite/gas/riscv/attribute-05.s: Likewise. * testsuite/gas/riscv/priv-reg-fail-version-1p9.d: Likewise. Updated priv attributes according to the -mpriv-spec option. * testsuite/gas/riscv/priv-reg-fail-version-1p9p1.d: Likewise. * testsuite/gas/riscv/priv-reg-fail-version-1p10.d: Likewise. * testsuite/gas/riscv/priv-reg-fail-version-1p11.d: Likewise. * testsuite/gas/riscv/priv-reg.d: Removed. * testsuite/gas/riscv/priv-reg-version-1p9.d: New test case. Dump the CSR according to the priv spec 1.9. * testsuite/gas/riscv/priv-reg-version-1p9p1.d: New test case. Dump the CSR according to the priv spec 1.9.1. * testsuite/gas/riscv/priv-reg-version-1p10.d: New test case. Dump the CSR according to the priv spec 1.10. * testsuite/gas/riscv/priv-reg-version-1p11.d: New test case. Dump the CSR according to the priv spec 1.11. * config/tc-riscv.c (md_show_usage): Add descriptions about the new GAS options. * doc/c-riscv.texi: Likewise. --- gas/po/gas.pot | 4360 ++++++++++++++++++++++++++++++-------------------------- 1 file changed, 2350 insertions(+), 2010 deletions(-) (limited to 'gas/po') diff --git a/gas/po/gas.pot b/gas/po/gas.pot index 0b9d5d7..f93cfac 100644 --- a/gas/po/gas.pot +++ b/gas/po/gas.pot @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#: config/tc-arm.c:708 #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: bug-binutils@gnu.org\n" -"POT-Creation-Date: 2020-01-18 14:01+0000\n" +"POT-Creation-Date: 2020-05-20 15:53+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,26 +56,26 @@ msgstr "" msgid "end of file in comment; newline inserted" msgstr "" -#: as.c:170 +#: as.c:173 msgid "missing emulation mode name" msgstr "" -#: as.c:185 +#: as.c:188 #, c-format msgid "unrecognized emulation name `%s'" msgstr "" -#: as.c:232 +#: as.c:235 #, c-format msgid "GNU assembler version %s (%s) using BFD version %s\n" msgstr "" -#: as.c:244 +#: as.c:247 #, c-format msgid "Usage: %s [option...] [asmfile...]\n" msgstr "" -#: as.c:246 +#: as.c:249 #, c-format msgid "" "Options:\n" @@ -93,12 +92,12 @@ msgid "" " \t =FILE list to FILE (must be last sub-option)\n" msgstr "" -#: as.c:260 +#: as.c:263 #, c-format msgid " --alternate initially turn on alternate macro syntax\n" msgstr "" -#: as.c:263 +#: as.c:266 #, c-format msgid "" " --compress-debug-sections[={none|zlib|zlib-gnu|zlib-gabi}]\n" @@ -106,213 +105,215 @@ msgid "" "[default]\n" msgstr "" -#: as.c:266 +#: as.c:269 #, c-format msgid "" " --nocompress-debug-sections\n" " don't compress DWARF debug sections\n" msgstr "" -#: as.c:270 +#: as.c:273 #, c-format msgid "" " --compress-debug-sections[={none|zlib|zlib-gnu|zlib-gabi}]\n" " compress DWARF debug sections using zlib\n" msgstr "" -#: as.c:273 +#: as.c:276 #, c-format msgid "" " --nocompress-debug-sections\n" " don't compress DWARF debug sections [default]\n" msgstr "" -#: as.c:277 +#: as.c:280 #, c-format msgid " -D produce assembler debugging messages\n" msgstr "" -#: as.c:279 +#: as.c:282 #, c-format msgid "" " --debug-prefix-map OLD=NEW\n" " map OLD to NEW in debug information\n" msgstr "" -#: as.c:282 +#: as.c:285 #, c-format msgid " --defsym SYM=VAL define symbol SYM to given value\n" msgstr "" -#: as.c:298 +#: as.c:301 #, c-format msgid " emulate output (default %s)\n" msgstr "" -#: as.c:303 +#: as.c:306 #, c-format msgid " --execstack require executable stack for this object\n" msgstr "" -#: as.c:305 +#: as.c:308 #, c-format msgid "" " --noexecstack don't require executable stack for this object\n" msgstr "" -#: as.c:307 +#: as.c:310 #, c-format msgid "" " --size-check=[error|warning]\n" "\t\t\t ELF .size directive check (default --size-check=error)\n" msgstr "" -#: as.c:310 +#: as.c:313 #, c-format msgid " --elf-stt-common=[no|yes] " msgstr "" -#: as.c:313 as.c:324 config/tc-i386.c:12769 config/tc-i386.c:12789 +#: as.c:316 as.c:327 config/tc-i386.c:13385 config/tc-i386.c:13405 #, c-format msgid "(default: yes)\n" msgstr "" -#: as.c:315 as.c:326 config/tc-i386.c:12771 config/tc-i386.c:12791 +#: as.c:318 as.c:329 config/tc-i386.c:13387 config/tc-i386.c:13407 #, c-format msgid "(default: no)\n" msgstr "" -#: as.c:316 +#: as.c:319 #, c-format msgid "" " generate ELF common symbols with STT_COMMON type\n" msgstr "" -#: as.c:318 +#: as.c:321 #, c-format msgid " --sectname-subst enable section name substitution sequences\n" msgstr "" -#: as.c:321 +#: as.c:324 #, c-format msgid " --generate-missing-build-notes=[no|yes] " msgstr "" -#: as.c:328 +#: as.c:331 #, c-format msgid "" " generate GNU Build notes if none are present in " "the input\n" msgstr "" -#: as.c:332 +#: as.c:335 #, c-format msgid " -f skip whitespace and comment preprocessing\n" msgstr "" -#: as.c:334 +#: as.c:337 #, c-format msgid " -g --gen-debug generate debugging information\n" msgstr "" -#: as.c:336 +#: as.c:339 #, c-format msgid " --gstabs generate STABS debugging information\n" msgstr "" -#: as.c:338 +#: as.c:341 #, c-format msgid "" " --gstabs+ generate STABS debug info with GNU extensions\n" msgstr "" -#: as.c:340 +#: as.c:343 #, c-format -msgid " --gdwarf-2 generate DWARF2 debugging information\n" +msgid "" +" --gdwarf- generate DWARF debugging information. 2 <= " +"<= 5\n" msgstr "" -#: as.c:342 +#: as.c:345 #, c-format msgid "" " --gdwarf-sections generate per-function section names for DWARF line " "information\n" msgstr "" -#: as.c:344 +#: as.c:347 #, c-format msgid " --hash-size= set the hash table size close to \n" msgstr "" -#: as.c:346 +#: as.c:349 #, c-format msgid " --help show this message and exit\n" msgstr "" -#: as.c:348 +#: as.c:351 #, c-format msgid " --target-help show target specific options\n" msgstr "" -#: as.c:350 +#: as.c:353 #, c-format msgid "" " -I DIR add DIR to search list for .include directives\n" msgstr "" -#: as.c:352 +#: as.c:355 #, c-format msgid " -J don't warn about signed overflow\n" msgstr "" -#: as.c:354 +#: as.c:357 #, c-format msgid "" " -K warn when differences altered for long " "displacements\n" msgstr "" -#: as.c:356 +#: as.c:359 #, c-format msgid " -L,--keep-locals keep local symbols (e.g. starting with `L')\n" msgstr "" -#: as.c:358 +#: as.c:361 #, c-format msgid " -M,--mri assemble in MRI compatibility mode\n" msgstr "" -#: as.c:360 +#: as.c:363 #, c-format msgid "" " --MD FILE write dependency information in FILE (default " "none)\n" msgstr "" -#: as.c:362 +#: as.c:365 #, c-format msgid " -nocpp ignored\n" msgstr "" -#: as.c:364 +#: as.c:367 #, c-format msgid "" " -no-pad-sections do not pad the end of sections to alignment " "boundaries\n" msgstr "" -#: as.c:366 +#: as.c:369 #, c-format msgid "" " -o OBJFILE name the object-file output OBJFILE (default a." "out)\n" msgstr "" -#: as.c:368 +#: as.c:371 #, c-format msgid " -R fold data section into text section\n" msgstr "" -#: as.c:370 +#: as.c:373 #, c-format msgid "" " --reduce-memory-overheads \n" @@ -320,44 +321,44 @@ msgid "" " assembly times\n" msgstr "" -#: as.c:374 +#: as.c:377 #, c-format msgid "" " --statistics print various measured statistics from execution\n" msgstr "" -#: as.c:376 +#: as.c:379 #, c-format msgid " --strip-local-absolute strip local absolute symbols\n" msgstr "" -#: as.c:378 +#: as.c:381 #, c-format msgid "" " --traditional-format Use same format as native assembler when possible\n" msgstr "" -#: as.c:380 +#: as.c:383 #, c-format msgid " --version print assembler version number and exit\n" msgstr "" -#: as.c:382 +#: as.c:385 #, c-format msgid " -W --no-warn suppress warnings\n" msgstr "" -#: as.c:384 +#: as.c:387 #, c-format msgid " --warn don't suppress warnings\n" msgstr "" -#: as.c:386 +#: as.c:389 #, c-format msgid " --fatal-warnings treat warnings as errors\n" msgstr "" -#: as.c:389 +#: as.c:392 #, c-format msgid "" " --itbl INSTTBL extend instruction set to include instructions\n" @@ -365,22 +366,22 @@ msgid "" "INSTTBL\n" msgstr "" -#: as.c:393 +#: as.c:396 #, c-format msgid " -w ignored\n" msgstr "" -#: as.c:395 +#: as.c:398 #, c-format msgid " -X ignored\n" msgstr "" -#: as.c:397 +#: as.c:400 #, c-format msgid " -Z generate object file even after errors\n" msgstr "" -#: as.c:399 +#: as.c:402 #, c-format msgid "" " --listing-lhs-width set the width in words of the output data column " @@ -388,7 +389,7 @@ msgid "" " the listing\n" msgstr "" -#: as.c:402 +#: as.c:405 #, c-format msgid "" " --listing-lhs-width2 set the width in words of the continuation lines\n" @@ -397,47 +398,47 @@ msgid "" " the width of the first line\n" msgstr "" -#: as.c:406 +#: as.c:409 #, c-format msgid "" " --listing-rhs-width set the max width in characters of the lines from\n" " the source file\n" msgstr "" -#: as.c:409 +#: as.c:412 #, c-format msgid "" " --listing-cont-lines set the maximum number of continuation lines used\n" " for the output data column of the listing\n" msgstr "" -#: as.c:412 +#: as.c:415 #, c-format msgid " @FILE read options from FILE\n" msgstr "" -#: as.c:420 +#: as.c:423 #, c-format msgid "Report bugs to %s\n" msgstr "" -#: as.c:644 +#: as.c:653 #, c-format msgid "unrecognized option -%c%s" msgstr "" #. This output is intended to follow the GNU standards document. -#: as.c:686 +#: as.c:695 #, c-format msgid "GNU assembler %s\n" msgstr "" -#: as.c:687 +#: as.c:696 #, c-format msgid "Copyright (C) 2020 Free Software Foundation, Inc.\n" msgstr "" -#: as.c:688 +#: as.c:697 #, c-format msgid "" "This program is free software; you may redistribute it under the terms of\n" @@ -445,137 +446,137 @@ msgid "" "This program has absolutely no warranty.\n" msgstr "" -#: as.c:693 +#: as.c:702 #, c-format msgid "" "This assembler was configured for a target of `%s' and default,\n" "cpu type `%s'.\n" msgstr "" -#: as.c:697 +#: as.c:706 #, c-format msgid "This assembler was configured for a target of `%s'.\n" msgstr "" -#: as.c:705 +#: as.c:714 msgid "multiple emulation names specified" msgstr "" -#: as.c:707 +#: as.c:716 msgid "emulations not handled in this configuration" msgstr "" -#: as.c:712 +#: as.c:721 #, c-format msgid "alias = %s\n" msgstr "" -#: as.c:713 +#: as.c:722 #, c-format msgid "canonical = %s\n" msgstr "" -#: as.c:714 +#: as.c:723 #, c-format msgid "cpu-type = %s\n" msgstr "" -#: as.c:716 +#: as.c:725 #, c-format msgid "format = %s\n" msgstr "" -#: as.c:719 +#: as.c:728 #, c-format msgid "bfd-target = %s\n" msgstr "" -#: as.c:736 +#: as.c:745 #, c-format msgid "Invalid --compress-debug-sections option: `%s'" msgstr "" -#: as.c:739 +#: as.c:748 #, c-format msgid "--compress-debug-sections=%s is unsupported" msgstr "" -#: as.c:764 +#: as.c:773 msgid "bad defsym; format is --defsym name=value" msgstr "" -#: as.c:784 +#: as.c:793 msgid "no file name following -t option" msgstr "" -#: as.c:799 +#: as.c:808 #, c-format msgid "failed to read instruction table %s\n" msgstr "" -#: as.c:847 +#: as.c:875 #, c-format msgid "Invalid --gdwarf-cie-version `%s'" msgstr "" -#: as.c:925 +#: as.c:968 #, c-format msgid "Invalid --size-check= option: `%s'" msgstr "" -#: as.c:934 +#: as.c:977 #, c-format msgid "Invalid --elf-stt-common= option: `%s'" msgstr "" -#: as.c:948 +#: as.c:991 #, c-format msgid "Invalid --generate-missing-build-notes option: `%s'" msgstr "" -#: as.c:1019 +#: as.c:1062 #, c-format msgid "invalid listing option `%c'" msgstr "" -#: as.c:1072 +#: as.c:1115 msgid "--hash-size needs a numeric argument" msgstr "" -#: as.c:1094 +#: as.c:1137 #, c-format msgid "%s: total time in assembly: %ld.%06ld\n" msgstr "" -#: as.c:1260 +#: as.c:1303 msgid "libbfd ABI mismatch" msgstr "" -#: as.c:1299 +#: as.c:1348 #, c-format msgid "The input '%s' and output '%s' files are the same" msgstr "" -#: as.c:1409 +#: as.c:1458 #, c-format msgid "%d warning" msgid_plural "%d warnings" msgstr[0] "" msgstr[1] "" -#: as.c:1411 +#: as.c:1460 #, c-format msgid "%d error" msgid_plural "%d errors" msgstr[0] "" msgstr[1] "" -#: as.c:1415 +#: as.c:1464 #, c-format msgid "%s, treating warnings as errors" msgstr "" -#: as.c:1426 +#: as.c:1475 #, c-format msgid "%s, %s, generating bad object file\n" msgstr "" @@ -596,7 +597,7 @@ msgstr "" #: cgen.c:106 config/tc-alpha.c:2097 config/tc-alpha.c:2121 #: config/tc-arc.c:4060 config/tc-arc.c:4134 config/tc-d10v.c:550 #: config/tc-d30v.c:537 config/tc-mn10200.c:1098 config/tc-mn10300.c:1752 -#: config/tc-ppc.c:3518 config/tc-ppc.c:4020 config/tc-s390.c:1342 +#: config/tc-ppc.c:3531 config/tc-ppc.c:4033 config/tc-s390.c:1342 #: config/tc-s390.c:1465 config/tc-s390.c:1599 config/tc-v850.c:2538 #: config/tc-v850.c:2609 config/tc-v850.c:2656 config/tc-v850.c:2693 #: config/tc-v850.c:2730 config/tc-v850.c:2993 @@ -604,19 +605,19 @@ msgid "too many fixups" msgstr "" #: cgen.c:371 cgen.c:391 config/tc-d10v.c:461 config/tc-d30v.c:453 -#: config/tc-mn10200.c:1040 config/tc-mn10300.c:1677 config/tc-ppc.c:3560 +#: config/tc-mn10200.c:1040 config/tc-mn10300.c:1677 config/tc-ppc.c:3573 #: config/tc-s390.c:1326 config/tc-v850.c:2647 config/tc-v850.c:2681 -#: config/tc-v850.c:2721 config/tc-v850.c:2966 config/tc-z80.c:741 +#: config/tc-v850.c:2721 config/tc-v850.c:2966 config/tc-z80.c:770 msgid "illegal operand" msgstr "" #: cgen.c:395 config/tc-avr.c:898 config/tc-d10v.c:463 config/tc-d30v.c:455 #: config/tc-h8300.c:497 config/tc-mcore.c:661 config/tc-microblaze.c:613 #: config/tc-mmix.c:495 config/tc-mn10200.c:1043 config/tc-mn10300.c:1680 -#: config/tc-msp430.c:417 config/tc-ppc.c:3562 config/tc-s390.c:1331 +#: config/tc-msp430.c:417 config/tc-ppc.c:3575 config/tc-s390.c:1331 #: config/tc-sh.c:988 config/tc-v850.c:2651 config/tc-v850.c:2685 #: config/tc-v850.c:2725 config/tc-v850.c:2969 config/tc-xgate.c:895 -#: config/tc-z80.c:851 config/tc-z8k.c:349 +#: config/tc-z80.c:912 config/tc-z8k.c:349 msgid "missing operand" msgstr "" @@ -629,22 +630,22 @@ msgid "operand mask overflow" msgstr "" #. We can't actually support subtracting a symbol. -#: cgen.c:857 config/tc-arm.c:2048 config/tc-arm.c:11269 config/tc-arm.c:11321 -#: config/tc-arm.c:11603 config/tc-arm.c:12499 config/tc-arm.c:13639 -#: config/tc-arm.c:13679 config/tc-arm.c:14052 config/tc-arm.c:14094 -#: config/tc-arm.c:21317 config/tc-arm.c:21377 config/tc-avr.c:1549 +#: cgen.c:857 config/tc-arm.c:2075 config/tc-arm.c:11318 config/tc-arm.c:11370 +#: config/tc-arm.c:11652 config/tc-arm.c:12548 config/tc-arm.c:13688 +#: config/tc-arm.c:13728 config/tc-arm.c:14101 config/tc-arm.c:14143 +#: config/tc-arm.c:21376 config/tc-arm.c:21436 config/tc-avr.c:1549 #: config/tc-avr.c:1561 config/tc-avr.c:1825 config/tc-cris.c:4060 #: config/tc-d10v.c:1507 config/tc-d30v.c:1912 config/tc-ft32.c:574 -#: config/tc-ft32.c:587 config/tc-mips.c:9681 config/tc-mips.c:10991 -#: config/tc-mips.c:12288 config/tc-mips.c:12971 config/tc-nds32.c:7827 +#: config/tc-ft32.c:587 config/tc-mips.c:9720 config/tc-mips.c:11030 +#: config/tc-mips.c:12327 config/tc-mips.c:13010 config/tc-nds32.c:7827 #: config/tc-pru.c:746 config/tc-pru.c:756 config/tc-spu.c:972 #: config/tc-spu.c:996 config/tc-tilegx.c:1483 config/tc-tilepro.c:1344 #: config/tc-v850.c:3451 config/tc-vax.c:282 config/tc-xstormy16.c:482 -#: config/tc-xtensa.c:5967 config/tc-xtensa.c:13044 +#: config/tc-xtensa.c:5987 config/tc-xtensa.c:13070 config/tc-z80.c:3798 msgid "expression too complex" msgstr "" -#: cgen.c:956 config/tc-ppc.c:7722 config/tc-s390.c:2380 config/tc-v850.c:3503 +#: cgen.c:956 config/tc-ppc.c:7735 config/tc-s390.c:2380 config/tc-v850.c:3503 #: config/tc-xstormy16.c:539 msgid "unresolved expression that must be resolved" msgstr "" @@ -734,7 +735,7 @@ msgstr "" msgid "Infinities are not supported by this target" msgstr "" -#: config/atof-ieee.c:829 config/atof-vax.c:449 config/tc-arm.c:1294 +#: config/atof-ieee.c:829 config/atof-vax.c:449 config/tc-arm.c:1321 #: config/tc-ia64.c:11603 config/tc-tic30.c:1263 config/tc-tic4x.c:2583 msgid "Unrecognized or unsupported floating point constant" msgstr "" @@ -759,8 +760,8 @@ msgstr "" msgid "Inserting \"%s\" into structure table failed: %s" msgstr "" -#: config/obj-coff.c:212 config/obj-coff.c:1675 config/tc-ppc.c:6259 -#: config/tc-tic54x.c:3984 read.c:2961 +#: config/obj-coff.c:212 config/obj-coff.c:1680 config/tc-ppc.c:6272 +#: config/tc-tic54x.c:3984 read.c:2962 #, c-format msgid "error setting flags for \"%s\": %s" msgstr "" @@ -854,22 +855,22 @@ msgstr "" #. STYP_INFO #. STYP_LIB #. STYP_OVER -#: config/obj-coff.c:1640 +#: config/obj-coff.c:1642 #, c-format msgid "unsupported section attribute '%c'" msgstr "" -#: config/obj-coff.c:1644 config/tc-ppc.c:6241 +#: config/obj-coff.c:1646 config/tc-ppc.c:6254 #, c-format msgid "unknown section attribute '%c'" msgstr "" -#: config/obj-coff.c:1687 config/obj-macho.c:269 +#: config/obj-coff.c:1692 config/obj-macho.c:269 #, c-format msgid "Ignoring changed section attributes for %s" msgstr "" -#: config/obj-coff.c:1825 +#: config/obj-coff.c:1830 #, c-format msgid "0x%lx: \"%s\" type = %ld, class = %d, segment = %d\n" msgstr "" @@ -891,236 +892,276 @@ msgstr "" msgid "Missing symbol name in directive" msgstr "" -#: config/obj-elf.c:644 +#: config/obj-elf.c:649 #, c-format msgid "setting incorrect section type for %s" msgstr "" -#: config/obj-elf.c:649 +#: config/obj-elf.c:654 #, c-format msgid "ignoring incorrect section type for %s" msgstr "" -#: config/obj-elf.c:700 +#: config/obj-elf.c:705 #, c-format msgid "setting incorrect section attributes for %s" msgstr "" -#: config/obj-elf.c:757 +#. This is a special section with known type. User +#. 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:776 #, c-format msgid "ignoring changed section type for %s" msgstr "" -#: config/obj-elf.c:769 +#. Do error when assembly isn't self-consistent. +#: config/obj-elf.c:779 +#, c-format +msgid "changed section type for %s" +msgstr "" + +#: config/obj-elf.c:794 #, c-format msgid "ignoring changed section attributes for %s" msgstr "" -#: config/obj-elf.c:776 +#: config/obj-elf.c:796 +#, c-format +msgid "changed section attributes for %s" +msgstr "" + +#: config/obj-elf.c:804 #, c-format -msgid "ignoring changed section entity size for %s" +msgid "changed section entity size for %s" msgstr "" -#: config/obj-elf.c:841 -msgid "unrecognized .section attribute: want a,e,w,x,M,S,G,T or number" +#: config/obj-elf.c:872 +msgid "unrecognized .section attribute: want a,e,o,w,x,M,S,G,T or number" msgstr "" -#: config/obj-elf.c:901 +#: config/obj-elf.c:932 msgid "extraneous characters at end of numeric section type" msgstr "" -#: config/obj-elf.c:907 read.c:2945 +#: config/obj-elf.c:938 read.c:2946 msgid "unrecognized section type" msgstr "" -#: config/obj-elf.c:939 +#: config/obj-elf.c:970 msgid "unrecognized section attribute" msgstr "" -#: config/obj-elf.c:970 config/tc-alpha.c:4208 +#: config/obj-elf.c:1001 config/tc-alpha.c:4208 msgid "missing name" msgstr "" -#: config/obj-elf.c:1050 +#: config/obj-elf.c:1083 #, c-format msgid "section name '%s' already defined as another symbol" msgstr "" -#: config/obj-elf.c:1143 +#: config/obj-elf.c:1175 msgid "invalid merge entity size" msgstr "" -#: config/obj-elf.c:1150 +#: config/obj-elf.c:1182 msgid "entity size for SHF_MERGE not specified" msgstr "" -#: config/obj-elf.c:1156 +#: config/obj-elf.c:1201 msgid "? section flag ignored with G present" msgstr "" -#: config/obj-elf.c:1180 +#: config/obj-elf.c:1225 msgid "group name for SHF_GROUP not specified" msgstr "" -#: config/obj-elf.c:1205 +#: config/obj-elf.c:1251 #, c-format msgid "unsupported mbind section info: %s" msgstr "" -#: config/obj-elf.c:1220 +#: config/obj-elf.c:1300 +#, c-format +msgid "unsupported section id: %s" +msgstr "" + +#: config/obj-elf.c:1325 msgid "character following name is not '#'" msgstr "" -#: config/obj-elf.c:1249 +#: config/obj-elf.c:1354 #, c-format msgid "SHF_ALLOC isn't set for GNU_MBIND section: %s" msgstr "" -#: config/obj-elf.c:1256 +#: config/obj-elf.c:1361 msgid "GNU_MBIND section is supported only by GNU and FreeBSD targets" msgstr "" -#: config/obj-elf.c:1359 +#: config/obj-elf.c:1464 msgid ".previous without corresponding .section; ignored" msgstr "" -#: config/obj-elf.c:1385 +#: config/obj-elf.c:1490 msgid ".popsection without corresponding .pushsection; ignored" msgstr "" -#: config/obj-elf.c:1431 -msgid "expected comma after name in .symver" +#: config/obj-elf.c:1534 config/obj-elf.c:1629 +#, c-format +msgid "missing version name in `%s' for symbol `%s'" msgstr "" -#: config/obj-elf.c:1447 config/obj-elf.c:2365 +#: config/obj-elf.c:1553 #, c-format -msgid "`%s' can't be versioned to common symbol '%s'" +msgid "only one version name with `@@@' is allowed for symbol `%s'" msgstr "" -#: config/obj-elf.c:1462 +#: config/obj-elf.c:1561 #, c-format -msgid "missing version name in `%s' for symbol `%s'" +msgid "invalid version name '%s' for symbol `%s'" msgstr "" -#: config/obj-elf.c:1473 +#: config/obj-elf.c:1603 +msgid "expected comma after name in .symver" +msgstr "" + +#: config/obj-elf.c:1620 config/obj-elf.c:2513 #, c-format -msgid "multiple versions [`%s'|`%s'] for symbol `%s'" +msgid "`%s' can't be versioned to common symbol '%s'" msgstr "" -#: config/obj-elf.c:1509 +#: config/obj-elf.c:1697 #, c-format msgid "expected `%s' to have already been set for .vtable_inherit" msgstr "" -#: config/obj-elf.c:1519 +#: config/obj-elf.c:1707 msgid "expected comma after name in .vtable_inherit" msgstr "" -#: config/obj-elf.c:1580 +#: config/obj-elf.c:1768 msgid "expected comma after name in .vtable_entry" msgstr "" -#: config/obj-elf.c:1719 +#: config/obj-elf.c:1907 #, c-format msgid "Attribute name not recognised: %s" msgstr "" -#: config/obj-elf.c:1736 +#: config/obj-elf.c:1924 msgid "expected numeric constant" msgstr "" -#: config/obj-elf.c:1745 config/tc-arm.c:7015 +#: config/obj-elf.c:1933 config/tc-arm.c:7042 msgid "expected comma" msgstr "" -#: config/obj-elf.c:1778 +#: config/obj-elf.c:1966 msgid "bad string constant" msgstr "" -#: config/obj-elf.c:1782 +#: config/obj-elf.c:1970 msgid "expected , " msgstr "" -#: config/obj-elf.c:1900 +#: config/obj-elf.c:2088 msgid "expected quoted string" msgstr "" -#: config/obj-elf.c:1920 +#: config/obj-elf.c:2108 #, c-format msgid "expected comma after name `%s' in .size directive" msgstr "" -#: config/obj-elf.c:1929 +#: config/obj-elf.c:2117 msgid "missing expression in .size directive" msgstr "" -#: config/obj-elf.c:2052 +#: config/obj-elf.c:2240 #, c-format msgid "symbol '%s' is already defined" msgstr "" -#: config/obj-elf.c:2073 +#: config/obj-elf.c:2261 #, c-format msgid "symbol type \"%s\" is supported only by GNU and FreeBSD targets" msgstr "" -#: config/obj-elf.c:2086 +#: config/obj-elf.c:2265 +#, c-format +msgid "symbol type \"%s\" is not supported by MIPS targets" +msgstr "" + +#: config/obj-elf.c:2278 #, c-format msgid "symbol type \"%s\" is supported only by GNU targets" msgstr "" -#: config/obj-elf.c:2096 +#: config/obj-elf.c:2288 #, c-format msgid "unrecognized symbol type \"%s\"" msgstr "" -#: config/obj-elf.c:2117 +#: config/obj-elf.c:2309 #, c-format msgid "cannot change type of common symbol '%s'" msgstr "" -#: config/obj-elf.c:2129 +#: config/obj-elf.c:2321 #, c-format msgid "symbol '%s' already has its type set" msgstr "" -#: config/obj-elf.c:2293 config/obj-elf.c:2296 +#: config/obj-elf.c:2486 config/obj-elf.c:2489 #, c-format msgid ".size expression for %s does not evaluate to a constant" msgstr "" -#: config/obj-elf.c:2330 +#: config/obj-elf.c:2585 ecoff.c:3600 #, c-format -msgid "" -"invalid attempt to declare external version name as default in symbol `%s'" +msgid "symbol `%s' can not be both weak and common" msgstr "" -#: config/obj-elf.c:2399 ecoff.c:3600 +#: config/obj-elf.c:2620 #, c-format -msgid "symbol `%s' can not be both weak and common" +msgid "undefined linked-to symbol `%s' on section `%s'" msgstr "" -#: config/obj-elf.c:2494 +#: config/obj-elf.c:2695 #, c-format msgid "assuming all members of group `%s' are COMDAT" msgstr "" -#: config/obj-elf.c:2506 +#: config/obj-elf.c:2707 #, c-format msgid "can't create group: %s" msgstr "" -#: config/obj-elf.c:2657 +#: config/obj-elf.c:2781 +#, c-format +msgid "" +"invalid attempt to declare external version name as default in symbol `%s'" +msgstr "" + +#: config/obj-elf.c:2791 +#, c-format +msgid "multiple versions [`%s'|`%s'] for symbol `%s'" +msgstr "" + +#: config/obj-elf.c:2883 #, c-format msgid "failed to set up debugging information: %s" msgstr "" -#: config/obj-elf.c:2677 +#: config/obj-elf.c:2903 #, c-format msgid "can't start writing .mdebug section: %s" msgstr "" -#: config/obj-elf.c:2685 +#: config/obj-elf.c:2911 #, c-format msgid "could not write .mdebug section: %s" msgstr "" @@ -1170,7 +1211,7 @@ msgid "missing sizeof_stub expression" msgstr "" #: config/obj-macho.c:478 config/tc-ia64.c:1083 config/tc-ia64.c:11765 -#: config/tc-score.c:6099 expr.c:1179 read.c:1716 +#: config/tc-score.c:6087 expr.c:1179 read.c:1717 msgid "expected symbol name" msgstr "" @@ -1178,23 +1219,23 @@ msgstr "" msgid "bad or irreducible absolute expression" msgstr "" -#: config/obj-macho.c:497 config/tc-score.c:6116 read.c:1754 +#: config/obj-macho.c:497 config/tc-score.c:6104 read.c:1755 msgid "missing size expression" msgstr "" -#: config/obj-macho.c:506 config/tc-ia64.c:1118 read.c:1760 +#: config/obj-macho.c:506 config/tc-ia64.c:1118 read.c:1761 #, c-format msgid "size (%ld) out of range, ignored" msgstr "" -#: config/obj-macho.c:516 config/tc-score.c:6260 dwarf2dbg.c:997 ecoff.c:3359 -#: read.c:1772 read.c:1877 read.c:2628 read.c:3201 read.c:3632 symbols.c:474 +#: config/obj-macho.c:516 config/tc-score.c:6242 dwarf2dbg.c:1267 ecoff.c:3359 +#: read.c:1773 read.c:1878 read.c:2629 read.c:3202 read.c:3633 symbols.c:474 #: symbols.c:569 #, c-format msgid "symbol `%s' is already defined" msgstr "" -#: config/obj-macho.c:526 read.c:1787 +#: config/obj-macho.c:526 read.c:1788 #, c-format msgid "size of \"%s\" is already %ld; not changing to %ld" msgstr "" @@ -1405,7 +1446,7 @@ msgstr "" msgid "128-bit SIMD scalar or floating-point quad precision register expected" msgstr "" -#: config/tc-aarch64.c:427 config/tc-arm.c:4722 +#: config/tc-aarch64.c:427 config/tc-arm.c:4749 msgid "register expected" msgstr "" @@ -1432,8 +1473,8 @@ msgstr "" msgid "invalid register type %d" msgstr "" -#: config/tc-aarch64.c:604 config/tc-aarch64.c:606 config/tc-arm.c:1168 -#: config/tc-score.c:6510 expr.c:1350 read.c:2610 +#: config/tc-aarch64.c:604 config/tc-aarch64.c:606 config/tc-arm.c:1195 +#: config/tc-score.c:6492 expr.c:1350 read.c:2611 msgid "bad expression" msgstr "" @@ -1441,7 +1482,7 @@ msgstr "" msgid "bad segment" msgstr "" -#: config/tc-aarch64.c:651 config/tc-arm.c:1234 +#: config/tc-aarch64.c:651 config/tc-arm.c:1261 msgid "invalid floating point number" msgstr "" @@ -1482,8 +1523,8 @@ msgid "index not allowed inside register list" msgstr "" #: config/tc-aarch64.c:1075 config/tc-aarch64.c:2045 config/tc-aarch64.c:2246 -#: config/tc-arm.c:1788 config/tc-arm.c:3998 config/tc-arm.c:5172 -#: config/tc-arm.c:7294 +#: config/tc-arm.c:1815 config/tc-arm.c:4025 config/tc-arm.c:5199 +#: config/tc-arm.c:7329 msgid "constant expression required" msgstr "" @@ -1496,7 +1537,7 @@ msgstr "" msgid "invalid use of vector register" msgstr "" -#: config/tc-aarch64.c:1186 config/tc-arm.c:2104 +#: config/tc-aarch64.c:1186 config/tc-arm.c:2131 msgid "expecting {" msgstr "" @@ -1536,30 +1577,30 @@ msgstr "" msgid "empty vector register list" msgstr "" -#: config/tc-aarch64.c:1321 config/tc-arm.c:2540 +#: config/tc-aarch64.c:1321 config/tc-arm.c:2567 #, c-format msgid "ignoring attempt to redefine built-in register '%s'" msgstr "" -#: config/tc-aarch64.c:1327 config/tc-arm.c:2545 +#: config/tc-aarch64.c:1327 config/tc-arm.c:2572 #, c-format msgid "ignoring redefinition of register alias '%s'" msgstr "" -#: config/tc-aarch64.c:1373 config/tc-arm.c:2611 +#: config/tc-aarch64.c:1373 config/tc-arm.c:2638 #, c-format msgid "unknown register '%s' -- .req ignored" msgstr "" -#: config/tc-aarch64.c:1431 config/tc-arm.c:2819 +#: config/tc-aarch64.c:1431 config/tc-arm.c:2846 msgid "invalid syntax for .req directive" msgstr "" -#: config/tc-aarch64.c:1456 config/tc-arm.c:2857 +#: config/tc-aarch64.c:1456 config/tc-arm.c:2884 msgid "invalid syntax for .unreq directive" msgstr "" -#: config/tc-aarch64.c:1462 config/tc-arm.c:2864 +#: config/tc-aarch64.c:1462 config/tc-arm.c:2891 #, c-format msgid "unknown register alias '%s'" msgstr "" @@ -1569,13 +1610,13 @@ msgstr "" msgid "ignoring attempt to undefine built-in register '%s'" msgstr "" -#: config/tc-aarch64.c:1788 config/tc-arm.c:3610 config/tc-arm.c:3637 -#: config/tc-arm.c:3650 +#: config/tc-aarch64.c:1788 config/tc-arm.c:3637 config/tc-arm.c:3664 +#: config/tc-arm.c:3677 msgid "literal pool overflow" msgstr "" -#: config/tc-aarch64.c:1970 config/tc-aarch64.c:6223 config/tc-arm.c:3871 -#: config/tc-arm.c:7711 +#: config/tc-aarch64.c:1970 config/tc-aarch64.c:6224 config/tc-arm.c:3898 +#: config/tc-arm.c:7760 msgid "unrecognized relocation suffix" msgstr "" @@ -1596,7 +1637,7 @@ msgstr "" msgid "invalid floating-point constant" msgstr "" -#: config/tc-aarch64.c:3121 config/tc-arm.c:5512 config/tc-arm.c:5521 +#: config/tc-aarch64.c:3121 config/tc-arm.c:5539 config/tc-arm.c:5548 msgid "shift expression expected" msgstr "" @@ -1699,7 +1740,7 @@ msgstr "" msgid "invalid expression in the address" msgstr "" -#: config/tc-aarch64.c:3720 config/tc-arm.c:6102 config/tc-arm.c:6695 +#: config/tc-aarch64.c:3720 config/tc-arm.c:6129 config/tc-arm.c:6722 msgid "']' expected" msgstr "" @@ -1707,7 +1748,7 @@ msgstr "" msgid "register offset not allowed in pre-indexed addressing mode" msgstr "" -#: config/tc-aarch64.c:3743 config/tc-arm.c:6138 +#: config/tc-aarch64.c:3743 config/tc-arm.c:6165 msgid "cannot combine pre- and post-indexing" msgstr "" @@ -1717,11 +1758,11 @@ msgid "missing offset in the pre-indexed address" msgstr "" #: config/tc-aarch64.c:4029 -msgid "unknown or missing option to PSB" +msgid "unknown or missing option to PSB/TSB" msgstr "" #: config/tc-aarch64.c:4037 -msgid "the specified option is not accepted for PSB" +msgid "the specified option is not accepted for PSB/TSB" msgstr "" #: config/tc-aarch64.c:4064 config/tc-aarch64.c:4078 @@ -1754,7 +1795,7 @@ msgstr "" msgid "Info: " msgstr "" -#: config/tc-aarch64.c:4764 config/tc-score.c:2749 config/tc-score.c:6499 +#: config/tc-aarch64.c:4764 config/tc-score.c:2749 config/tc-score.c:6481 #, c-format msgid "%s -- `%s'" msgstr "" @@ -1798,7 +1839,7 @@ msgstr "" msgid "%s out of range %d to %d at operand %d -- `%s'" msgstr "" -#: config/tc-aarch64.c:4882 config/tc-aarch64.c:4886 config/tc-aarch64.c:6825 +#: config/tc-aarch64.c:4882 config/tc-aarch64.c:4886 config/tc-aarch64.c:6826 msgid "immediate value" msgstr "" @@ -1846,7 +1887,7 @@ msgstr "" msgid "the top half of a 128-bit FP/SIMD register is expected" msgstr "" -#: config/tc-aarch64.c:5808 config/tc-arm.c:2213 config/tc-arm.c:2258 +#: config/tc-aarch64.c:5808 config/tc-arm.c:2240 config/tc-arm.c:2285 #: config/tc-h8300.c:1043 msgid "invalid register list" msgstr "" @@ -1875,316 +1916,316 @@ msgstr "" msgid "can't mix relocation modifier with explicit shift" msgstr "" -#: config/tc-aarch64.c:6184 config/tc-arm.c:15831 config/tc-arm.c:15856 -#: config/tc-arm.c:15867 config/tc-arm.c:15874 +#: config/tc-aarch64.c:6185 config/tc-arm.c:15898 config/tc-arm.c:15923 +#: config/tc-arm.c:15934 config/tc-arm.c:15941 msgid "invalid condition" msgstr "" -#: config/tc-aarch64.c:6210 +#: config/tc-aarch64.c:6211 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:6218 +#: config/tc-aarch64.c:6219 msgid "invalid use of \"=immediate\"" msgstr "" -#: config/tc-aarch64.c:6283 config/tc-aarch64.c:6315 config/tc-aarch64.c:6333 -#: config/tc-aarch64.c:6357 config/tc-aarch64.c:6377 config/tc-aarch64.c:6396 -#: config/tc-aarch64.c:6419 config/tc-aarch64.c:6455 config/tc-aarch64.c:6462 -#: config/tc-aarch64.c:6490 config/tc-aarch64.c:6510 config/tc-aarch64.c:6535 -#: config/tc-aarch64.c:6553 config/tc-aarch64.c:6561 config/tc-aarch64.c:6578 -#: config/tc-aarch64.c:6602 +#: config/tc-aarch64.c:6284 config/tc-aarch64.c:6316 config/tc-aarch64.c:6334 +#: config/tc-aarch64.c:6358 config/tc-aarch64.c:6378 config/tc-aarch64.c:6397 +#: config/tc-aarch64.c:6420 config/tc-aarch64.c:6456 config/tc-aarch64.c:6463 +#: config/tc-aarch64.c:6491 config/tc-aarch64.c:6511 config/tc-aarch64.c:6536 +#: config/tc-aarch64.c:6554 config/tc-aarch64.c:6562 config/tc-aarch64.c:6579 +#: config/tc-aarch64.c:6603 msgid "invalid addressing mode" msgstr "" -#: config/tc-aarch64.c:6299 +#: config/tc-aarch64.c:6300 msgid "the optional immediate offset can only be 0" msgstr "" -#: config/tc-aarch64.c:6338 config/tc-aarch64.c:6362 config/tc-aarch64.c:6382 +#: config/tc-aarch64.c:6339 config/tc-aarch64.c:6363 config/tc-aarch64.c:6383 msgid "relocation not allowed" msgstr "" -#: config/tc-aarch64.c:6429 +#: config/tc-aarch64.c:6430 msgid "writeback value must be an immediate constant" msgstr "" #. Make sure this has priority over #. "invalid addressing mode". -#: config/tc-aarch64.c:6470 +#: config/tc-aarch64.c:6471 msgid "constant offset required" msgstr "" -#: config/tc-aarch64.c:6614 +#: config/tc-aarch64.c:6615 msgid "unknown or missing system register name" msgstr "" -#: config/tc-aarch64.c:6626 +#: config/tc-aarch64.c:6627 msgid "unknown or missing PSTATE field name" msgstr "" -#: config/tc-aarch64.c:6658 +#: config/tc-aarch64.c:6659 msgid "unknown or missing operation name" msgstr "" -#: config/tc-aarch64.c:6671 +#: config/tc-aarch64.c:6672 msgid "the specified option is not accepted in ISB" msgstr "" -#: config/tc-aarch64.c:6703 config/tc-aarch64.c:7884 config/tc-arm.c:7993 +#: config/tc-aarch64.c:6704 config/tc-aarch64.c:7886 config/tc-arm.c:8042 #, c-format msgid "unhandled operand code %d" msgstr "" -#: config/tc-aarch64.c:6745 +#: config/tc-aarch64.c:6746 msgid "unexpected comma before the omitted optional operand" msgstr "" -#: config/tc-aarch64.c:6773 +#: config/tc-aarch64.c:6774 msgid "unexpected characters following instruction" msgstr "" -#: config/tc-aarch64.c:6851 config/tc-arm.c:5636 config/tc-arm.c:6246 -#: config/tc-arm.c:8797 +#: config/tc-aarch64.c:6852 config/tc-arm.c:5663 config/tc-arm.c:6273 +#: config/tc-arm.c:8846 msgid "constant expression expected" msgstr "" -#: config/tc-aarch64.c:6858 +#: config/tc-aarch64.c:6859 msgid "literal pool insertion failed" msgstr "" -#: config/tc-aarch64.c:6929 config/tc-aarch64.c:6944 +#: config/tc-aarch64.c:6930 config/tc-aarch64.c:6945 #, c-format msgid "unpredictable transfer with writeback -- `%s'" msgstr "" -#: config/tc-aarch64.c:6948 +#: config/tc-aarch64.c:6949 #, c-format msgid "unpredictable load of register pair -- `%s'" msgstr "" -#: config/tc-aarch64.c:6960 +#: config/tc-aarch64.c:6961 #, c-format msgid "unpredictable: identical transfer and status registers --`%s'" msgstr "" -#: config/tc-aarch64.c:6976 +#: config/tc-aarch64.c:6977 #, c-format msgid "previous `%s' sequence has not been closed" msgstr "" -#: config/tc-aarch64.c:7055 +#: config/tc-aarch64.c:7056 #, c-format msgid "unknown mnemonic `%s' -- `%s'" msgstr "" -#: config/tc-aarch64.c:7063 +#: config/tc-aarch64.c:7064 #, c-format msgid "unexpected comma after the mnemonic name `%s' -- `%s'" msgstr "" -#: config/tc-aarch64.c:7121 +#: config/tc-aarch64.c:7122 #, c-format msgid "selected processor does not support `%s'" msgstr "" -#: config/tc-aarch64.c:7544 config/tc-arm.c:27479 +#: config/tc-aarch64.c:7545 config/tc-arm.c:28017 msgid "GOT already in the symbol table" msgstr "" -#: config/tc-aarch64.c:7707 +#: config/tc-aarch64.c:7708 msgid "immediate cannot be moved by a single instruction" msgstr "" -#: config/tc-aarch64.c:7750 config/tc-aarch64.c:7795 config/tc-aarch64.c:7821 -#: config/tc-arm.c:16375 config/tc-arm.c:18072 config/tc-arm.c:18658 -#: config/tc-arm.c:18685 config/tc-arm.c:19471 config/tc-arm.c:20305 -#: config/tc-arm.c:21320 config/tc-arm.c:21380 config/tc-metag.c:2444 +#: config/tc-aarch64.c:7752 config/tc-aarch64.c:7797 config/tc-aarch64.c:7823 +#: config/tc-arm.c:16442 config/tc-arm.c:18139 config/tc-arm.c:18719 +#: config/tc-arm.c:18746 config/tc-arm.c:19532 config/tc-arm.c:20364 +#: config/tc-arm.c:21379 config/tc-arm.c:21439 config/tc-metag.c:2444 #: config/tc-metag.c:2453 config/tc-metag.c:2492 config/tc-metag.c:2501 #: config/tc-metag.c:3021 config/tc-metag.c:3030 msgid "immediate out of range" msgstr "" -#: config/tc-aarch64.c:7814 config/tc-metag.c:4656 config/tc-xtensa.c:4203 +#: config/tc-aarch64.c:7816 config/tc-metag.c:4656 config/tc-xtensa.c:4221 msgid "invalid immediate" msgstr "" -#: config/tc-aarch64.c:7879 config/tc-tic6x.c:3861 config/tc-tic6x.c:3926 +#: config/tc-aarch64.c:7881 config/tc-tic6x.c:3861 config/tc-tic6x.c:3926 #: config/tc-tic6x.c:3953 config/tc-tic6x.c:3981 msgid "immediate offset out of range" msgstr "" -#: config/tc-aarch64.c:7953 config/tc-arm.c:27817 config/tc-arm.c:27885 -#: config/tc-arm.c:28167 +#: config/tc-aarch64.c:7955 config/tc-arm.c:28355 config/tc-arm.c:28423 +#: config/tc-arm.c:28705 #, c-format msgid "undefined symbol %s used as an immediate value" msgstr "" -#: config/tc-aarch64.c:7965 +#: config/tc-aarch64.c:7967 msgid "pc-relative load offset not word aligned" msgstr "" -#: config/tc-aarch64.c:7968 +#: config/tc-aarch64.c:7970 msgid "pc-relative load offset out of range" msgstr "" -#: config/tc-aarch64.c:7980 +#: config/tc-aarch64.c:7982 msgid "pc-relative address offset out of range" msgstr "" -#: config/tc-aarch64.c:7992 config/tc-aarch64.c:8007 +#: config/tc-aarch64.c:7994 config/tc-aarch64.c:8009 msgid "conditional branch target not word aligned" msgstr "" -#: config/tc-aarch64.c:7995 config/tc-aarch64.c:8010 config/tc-arm.c:28462 +#: config/tc-aarch64.c:7997 config/tc-aarch64.c:8012 config/tc-arm.c:29000 msgid "conditional branch out of range" msgstr "" -#: config/tc-aarch64.c:8023 +#: config/tc-aarch64.c:8025 msgid "branch target not word aligned" msgstr "" -#: config/tc-aarch64.c:8026 config/tc-arm.c:899 config/tc-arm.c:29265 -#: config/tc-mips.c:16047 config/tc-mips.c:16063 config/tc-mips.c:16153 +#: config/tc-aarch64.c:8028 config/tc-arm.c:924 config/tc-arm.c:29806 +#: config/tc-mips.c:16086 config/tc-mips.c:16102 config/tc-mips.c:16192 msgid "branch out of range" msgstr "" -#: config/tc-aarch64.c:8085 config/tc-arm.c:28058 config/tc-arm.c:28073 -#: config/tc-arm.c:28088 config/tc-arm.c:28099 config/tc-arm.c:28122 -#: config/tc-arm.c:28969 config/tc-moxie.c:716 config/tc-pj.c:452 -#: config/tc-sh.c:3727 +#: config/tc-aarch64.c:8087 config/tc-arm.c:28596 config/tc-arm.c:28611 +#: config/tc-arm.c:28626 config/tc-arm.c:28637 config/tc-arm.c:28660 +#: config/tc-arm.c:29510 config/tc-moxie.c:714 config/tc-pj.c:452 +#: config/tc-sh.c:3728 msgid "offset out of range" msgstr "" -#: config/tc-aarch64.c:8100 +#: config/tc-aarch64.c:8102 msgid "unsigned value out of range" msgstr "" -#: config/tc-aarch64.c:8111 +#: config/tc-aarch64.c:8113 msgid "signed value out of range" msgstr "" -#: config/tc-aarch64.c:8261 +#: config/tc-aarch64.c:8263 #, c-format msgid "unexpected %s fixup" msgstr "" -#: config/tc-aarch64.c:8327 config/tc-arm.c:29685 config/tc-arm.c:29706 -#: config/tc-mips.c:18414 config/tc-or1k.c:345 config/tc-score.c:7468 +#: config/tc-aarch64.c:8329 config/tc-arm.c:30226 config/tc-arm.c:30247 +#: config/tc-mips.c:18453 config/tc-or1k.c:345 config/tc-score.c:7450 #, c-format msgid "cannot represent %s relocation in this object file format" msgstr "" -#: config/tc-aarch64.c:8360 +#: config/tc-aarch64.c:8362 #, c-format msgid "cannot do %u-byte relocation" msgstr "" -#: config/tc-aarch64.c:8683 config/tc-arm.c:30180 config/tc-score.c:6293 -#: config/tc-score.c:6523 config/tc-score.c:6528 +#: config/tc-aarch64.c:8685 config/tc-arm.c:30721 config/tc-score.c:6275 +#: config/tc-score.c:6505 config/tc-score.c:6510 msgid "virtual memory exhausted" msgstr "" -#: config/tc-aarch64.c:8849 config/tc-arm.c:30523 +#: config/tc-aarch64.c:8851 config/tc-arm.c:31064 msgid "assemble for big-endian" msgstr "" -#: config/tc-aarch64.c:8850 config/tc-arm.c:30524 +#: config/tc-aarch64.c:8852 config/tc-arm.c:31065 msgid "assemble for little-endian" msgstr "" -#: config/tc-aarch64.c:8853 +#: config/tc-aarch64.c:8855 msgid "temporary switch for dumping" msgstr "" -#: config/tc-aarch64.c:8855 +#: config/tc-aarch64.c:8857 msgid "output verbose error messages" msgstr "" -#: config/tc-aarch64.c:8857 +#: config/tc-aarch64.c:8859 msgid "do not output verbose error messages" msgstr "" -#: config/tc-aarch64.c:9137 config/tc-arm.c:31607 +#: config/tc-aarch64.c:9139 config/tc-arm.c:32164 msgid "invalid architectural extension" msgstr "" -#: config/tc-aarch64.c:9162 config/tc-arm.c:31639 +#: config/tc-aarch64.c:9164 config/tc-arm.c:32196 msgid "must specify extensions to add before specifying those to remove" msgstr "" -#: config/tc-aarch64.c:9170 config/tc-arm.c:31647 +#: config/tc-aarch64.c:9172 config/tc-arm.c:32204 msgid "missing architectural extension" msgstr "" -#: config/tc-aarch64.c:9197 config/tc-arm.c:31733 +#: config/tc-aarch64.c:9199 config/tc-arm.c:32290 #, c-format msgid "unknown architectural extension `%s'" msgstr "" -#: config/tc-aarch64.c:9221 config/tc-arm.c:31783 config/tc-metag.c:5834 +#: config/tc-aarch64.c:9223 config/tc-arm.c:32340 config/tc-metag.c:5834 #, c-format msgid "missing cpu name `%s'" msgstr "" -#: config/tc-aarch64.c:9235 config/tc-aarch64.c:9452 config/tc-arm.c:31818 -#: config/tc-arm.c:32617 config/tc-csky.c:896 config/tc-metag.c:5845 +#: config/tc-aarch64.c:9237 config/tc-aarch64.c:9454 config/tc-arm.c:32375 +#: config/tc-arm.c:33176 config/tc-csky.c:896 config/tc-metag.c:5845 #, c-format msgid "unknown cpu `%s'" msgstr "" -#: config/tc-aarch64.c:9253 config/tc-arm.c:31836 +#: config/tc-aarch64.c:9255 config/tc-arm.c:32393 #, c-format msgid "missing architecture name `%s'" msgstr "" -#: config/tc-aarch64.c:9267 config/tc-aarch64.c:9499 config/tc-arm.c:31858 -#: config/tc-arm.c:32652 config/tc-arm.c:32682 config/tc-score.c:7703 +#: config/tc-aarch64.c:9269 config/tc-aarch64.c:9501 config/tc-arm.c:32415 +#: config/tc-arm.c:33211 config/tc-arm.c:33241 config/tc-score.c:7685 #, c-format msgid "unknown architecture `%s'\n" msgstr "" -#: config/tc-aarch64.c:9290 +#: config/tc-aarch64.c:9292 #, c-format msgid "missing abi name `%s'" msgstr "" -#: config/tc-aarch64.c:9301 +#: config/tc-aarch64.c:9303 #, c-format msgid "unknown abi `%s'\n" msgstr "" -#: config/tc-aarch64.c:9307 +#: config/tc-aarch64.c:9309 msgid "\t specify for ABI " msgstr "" -#: config/tc-aarch64.c:9310 config/tc-arm.c:31945 config/tc-metag.c:5911 +#: config/tc-aarch64.c:9312 config/tc-arm.c:32502 config/tc-metag.c:5911 msgid "\t assemble for CPU " msgstr "" -#: config/tc-aarch64.c:9312 config/tc-arm.c:31947 +#: config/tc-aarch64.c:9314 config/tc-arm.c:32504 msgid "\t assemble for architecture " msgstr "" -#: config/tc-aarch64.c:9351 config/tc-aarch64.c:9371 config/tc-arm.c:32015 -#: config/tc-arm.c:32033 config/tc-arm.c:32053 config/tc-metag.c:5936 +#: config/tc-aarch64.c:9353 config/tc-aarch64.c:9373 config/tc-arm.c:32572 +#: config/tc-arm.c:32590 config/tc-arm.c:32610 config/tc-metag.c:5936 #, c-format msgid "option `-%c%s' is deprecated: %s" msgstr "" -#: config/tc-aarch64.c:9391 +#: config/tc-aarch64.c:9393 #, c-format msgid " AArch64-specific assembler options:\n" msgstr "" -#: config/tc-aarch64.c:9402 config/tc-arc.c:3583 config/tc-arm.c:32084 +#: config/tc-aarch64.c:9404 config/tc-arc.c:3583 config/tc-arm.c:32641 #, c-format msgid " -EB assemble code for a big-endian cpu\n" msgstr "" -#: config/tc-aarch64.c:9407 config/tc-arc.c:3585 config/tc-arm.c:32089 +#: config/tc-aarch64.c:9409 config/tc-arc.c:3585 config/tc-arm.c:32646 #, c-format msgid " -EL assemble code for a little-endian cpu\n" msgstr "" @@ -2340,7 +2381,7 @@ msgid "sequence number in use for !tlsgd!%ld" msgstr "" #: config/tc-alpha.c:1994 config/tc-arc.c:2850 config/tc-mn10200.c:854 -#: config/tc-mn10300.c:1150 config/tc-ppc.c:2079 config/tc-s390.c:676 +#: config/tc-mn10300.c:1150 config/tc-ppc.c:2089 config/tc-s390.c:676 #: config/tc-tilegx.c:426 config/tc-tilegx.c:476 config/tc-tilepro.c:382 msgid "operand" msgstr "" @@ -2357,8 +2398,8 @@ msgstr "" msgid "can not resolve expression" msgstr "" -#: config/tc-alpha.c:3514 config/tc-microblaze.c:204 config/tc-ppc.c:2414 -#: config/tc-ppc.c:6006 +#: config/tc-alpha.c:3514 config/tc-microblaze.c:204 config/tc-ppc.c:2424 +#: config/tc-ppc.c:6019 #, c-format msgid ".COMMon length (%ld.) <0! Ignored." msgstr "" @@ -2397,7 +2438,7 @@ msgstr "" msgid ".fmask outside of .ent" msgstr "" -#: config/tc-alpha.c:3831 config/tc-score.c:5594 ecoff.c:3209 +#: config/tc-alpha.c:3831 config/tc-score.c:5596 ecoff.c:3209 msgid ".mask outside of .ent" msgstr "" @@ -2409,12 +2450,12 @@ msgstr "" msgid "bad .mask directive" msgstr "" -#: config/tc-alpha.c:3874 config/tc-mips.c:19896 config/tc-score.c:5735 +#: config/tc-alpha.c:3874 config/tc-mips.c:19935 config/tc-score.c:5730 #: ecoff.c:3173 msgid ".frame outside of .ent" msgstr "" -#: config/tc-alpha.c:3885 config/tc-mips.c:19907 ecoff.c:3184 +#: config/tc-alpha.c:3885 config/tc-mips.c:19946 ecoff.c:3184 msgid "bad .frame directive" msgstr "" @@ -2517,7 +2558,7 @@ msgstr "" msgid "No symbol after .code_address" msgstr "" -#: config/tc-alpha.c:4771 config/tc-score.c:5600 +#: config/tc-alpha.c:4771 config/tc-score.c:5602 msgid "Bad .mask directive" msgstr "" @@ -2580,8 +2621,8 @@ msgid "internal error: can't hash macro `%s': %s" msgstr "" #: config/tc-alpha.c:5551 config/tc-arc.c:2503 config/tc-arc.c:2517 -#: config/tc-arm.c:872 config/tc-xtensa.c:5445 config/tc-xtensa.c:5521 -#: config/tc-xtensa.c:5638 config/tc-z80.c:3286 +#: config/tc-arm.c:896 config/tc-xtensa.c:5465 config/tc-xtensa.c:5541 +#: config/tc-xtensa.c:5658 config/tc-z80.c:3626 msgid "syntax error" msgstr "" @@ -2630,7 +2671,7 @@ msgstr "" #: config/tc-alpha.c:6242 config/tc-arc.c:3261 config/tc-csky.c:5152 #: config/tc-tilegx.c:1749 config/tc-tilepro.c:1529 config/tc-wasm32.c:813 -#: config/tc-xtensa.c:6142 +#: config/tc-xtensa.c:6168 #, c-format msgid "cannot represent `%s' relocation in object file" msgstr "" @@ -2680,8 +2721,8 @@ msgstr "" msgid "unknown architecture: %s\n" msgstr "" -#: config/tc-arc.c:898 config/tc-ia64.c:7490 config/tc-riscv.c:762 -#: config/tc-riscv.c:3205 config/tc-tilegx.c:262 +#: config/tc-arc.c:898 config/tc-ia64.c:7490 config/tc-riscv.c:1091 +#: config/tc-riscv.c:3705 config/tc-tilegx.c:262 msgid "Could not set architecture and machine" msgstr "" @@ -2713,16 +2754,16 @@ msgstr "" msgid "Brackets in operand field incorrect" msgstr "" -#: config/tc-arc.c:1340 config/tc-xtensa.c:2058 +#: config/tc-arc.c:1340 config/tc-xtensa.c:2064 msgid "extra comma" msgstr "" #: config/tc-arc.c:1342 config/tc-pru.c:1450 config/tc-pru.c:1719 -#: config/tc-xtensa.c:2062 +#: config/tc-xtensa.c:2068 msgid "missing argument" msgstr "" -#: config/tc-arc.c:1344 config/tc-xtensa.c:2064 +#: config/tc-arc.c:1344 config/tc-xtensa.c:2070 msgid "missing comma or colon" msgstr "" @@ -2777,7 +2818,7 @@ msgstr "" #: config/tc-h8300.c:117 config/tc-h8300.c:128 config/tc-h8300.c:243 #: config/tc-hppa.c:6821 config/tc-hppa.c:6827 config/tc-hppa.c:6833 #: config/tc-hppa.c:6839 config/tc-hppa.c:8227 config/tc-lm32.c:197 -#: config/tc-mips.c:3691 config/tc-mips.c:4199 config/tc-mn10300.c:935 +#: config/tc-mips.c:3694 config/tc-mips.c:4202 config/tc-mn10300.c:935 #: config/tc-mn10300.c:940 config/tc-mn10300.c:2440 config/tc-xc16x.c:79 #: config/tc-xc16x.c:86 config/tc-xc16x.c:93 msgid "could not set architecture and machine" @@ -2913,7 +2954,7 @@ msgid "Insn %s has an instruction %s with limm in its delay slot." msgstr "" #: config/tc-arc.c:4279 config/tc-microblaze.c:2554 config/tc-mn10300.c:1069 -#: config/tc-sh.c:418 config/tc-z80.c:1040 read.c:4577 +#: config/tc-sh.c:418 config/tc-z80.c:1101 read.c:4578 #, c-format msgid "unsupported BFD relocation size %u" msgstr "" @@ -3021,935 +3062,947 @@ msgstr "" msgid "Overwrite explicitly set Tag_ARC_ABI_rf16 to full register file" msgstr "" -#: config/tc-arm.c:684 +#: config/tc-arm.c:708 msgid "ARM register expected" msgstr "" -#: config/tc-arm.c:685 +#: config/tc-arm.c:709 msgid "bad or missing co-processor number" msgstr "" -#: config/tc-arm.c:686 +#: config/tc-arm.c:710 msgid "co-processor register expected" msgstr "" -#: config/tc-arm.c:687 +#: config/tc-arm.c:711 msgid "FPA register expected" msgstr "" -#: config/tc-arm.c:688 +#: config/tc-arm.c:712 msgid "VFP single precision register expected" msgstr "" -#: config/tc-arm.c:689 +#: config/tc-arm.c:713 msgid "VFP/Neon double precision register expected" msgstr "" -#: config/tc-arm.c:690 +#: config/tc-arm.c:714 msgid "Neon quad precision register expected" msgstr "" -#: config/tc-arm.c:691 +#: config/tc-arm.c:715 msgid "VFP single or double precision register expected" msgstr "" -#: config/tc-arm.c:692 +#: config/tc-arm.c:716 msgid "Neon double or quad precision register expected" msgstr "" -#: config/tc-arm.c:693 +#: config/tc-arm.c:717 msgid "Neon single or double precision register expected" msgstr "" -#: config/tc-arm.c:694 +#: config/tc-arm.c:718 msgid "VFP single, double or Neon quad precision register expected" msgstr "" -#: config/tc-arm.c:696 +#: config/tc-arm.c:720 msgid "VFP system register expected" msgstr "" -#: config/tc-arm.c:697 +#: config/tc-arm.c:721 msgid "Maverick MVF register expected" msgstr "" -#: config/tc-arm.c:698 +#: config/tc-arm.c:722 msgid "Maverick MVD register expected" msgstr "" -#: config/tc-arm.c:699 +#: config/tc-arm.c:723 msgid "Maverick MVFX register expected" msgstr "" -#: config/tc-arm.c:700 +#: config/tc-arm.c:724 msgid "Maverick MVDX register expected" msgstr "" -#: config/tc-arm.c:701 +#: config/tc-arm.c:725 msgid "Maverick MVAX register expected" msgstr "" -#: config/tc-arm.c:702 +#: config/tc-arm.c:726 msgid "Maverick DSPSC register expected" msgstr "" -#: config/tc-arm.c:703 +#: config/tc-arm.c:727 msgid "iWMMXt data register expected" msgstr "" -#: config/tc-arm.c:704 config/tc-arm.c:7793 +#: config/tc-arm.c:728 config/tc-arm.c:7842 msgid "iWMMXt control register expected" msgstr "" -#: config/tc-arm.c:705 +#: config/tc-arm.c:729 msgid "iWMMXt scalar register expected" msgstr "" -#: config/tc-arm.c:706 +#: config/tc-arm.c:730 msgid "XScale accumulator register expected" msgstr "" -#: config/tc-arm.c:707 +#: config/tc-arm.c:731 msgid "MVE vector register expected" msgstr "" #. For score5u : div/mul will pop warning message, mmu/alw/asw will pop error message. -#: config/tc-arm.c:873 config/tc-score.c:259 +#: config/tc-arm.c:897 config/tc-score.c:259 msgid "bad arguments to instruction" msgstr "" -#: config/tc-arm.c:874 +#: config/tc-arm.c:898 msgid "r13 not allowed here" msgstr "" -#: config/tc-arm.c:875 +#: config/tc-arm.c:899 msgid "r15 not allowed here" msgstr "" -#: config/tc-arm.c:876 +#: config/tc-arm.c:900 msgid "Odd register not allowed here" msgstr "" -#: config/tc-arm.c:877 +#: config/tc-arm.c:901 msgid "Even register not allowed here" msgstr "" -#: config/tc-arm.c:878 +#: config/tc-arm.c:902 msgid "instruction cannot be conditional" msgstr "" -#: config/tc-arm.c:879 +#: config/tc-arm.c:903 msgid "registers may not be the same" msgstr "" -#: config/tc-arm.c:880 +#: config/tc-arm.c:904 msgid "lo register required" msgstr "" -#: config/tc-arm.c:881 +#: config/tc-arm.c:905 msgid "instruction not supported in Thumb16 mode" msgstr "" -#: config/tc-arm.c:882 +#: config/tc-arm.c:906 msgid "instruction does not accept this addressing mode" msgstr "" -#: config/tc-arm.c:883 +#: config/tc-arm.c:907 msgid "branch must be last instruction in IT block" msgstr "" -#: config/tc-arm.c:884 +#: config/tc-arm.c:908 msgid "branch out of range or not a multiple of 2" msgstr "" -#: config/tc-arm.c:885 +#: config/tc-arm.c:909 +msgid "instruction not allowed in VPT block" +msgstr "" + +#: config/tc-arm.c:910 msgid "instruction not allowed in IT block" msgstr "" -#: config/tc-arm.c:886 +#: config/tc-arm.c:911 msgid "instruction missing MVE vector predication code" msgstr "" -#: config/tc-arm.c:887 +#: config/tc-arm.c:912 msgid "selected FPU does not support instruction" msgstr "" -#: config/tc-arm.c:888 +#: config/tc-arm.c:913 msgid "thumb conditional instruction should be in IT block" msgstr "" -#: config/tc-arm.c:890 +#: config/tc-arm.c:915 msgid "vector predicated instruction should be in VPT/VPST block" msgstr "" -#: config/tc-arm.c:891 +#: config/tc-arm.c:916 msgid "incorrect condition in IT block" msgstr "" -#: config/tc-arm.c:892 +#: config/tc-arm.c:917 msgid "incorrect condition in VPT/VPST block" msgstr "" -#: config/tc-arm.c:893 +#: config/tc-arm.c:918 msgid "IT falling in the range of a previous IT block" msgstr "" -#: config/tc-arm.c:894 +#: config/tc-arm.c:919 msgid "missing .fnstart before unwinding directive" msgstr "" -#: config/tc-arm.c:896 +#: config/tc-arm.c:921 msgid "cannot use register index with PC-relative addressing" msgstr "" -#: config/tc-arm.c:898 +#: config/tc-arm.c:923 msgid "cannot use writeback with PC-relative addressing" msgstr "" -#: config/tc-arm.c:900 +#: config/tc-arm.c:925 msgid "selected processor does not support fp16 instruction" msgstr "" -#: config/tc-arm.c:901 +#: config/tc-arm.c:926 msgid "selected processor does not support bf16 instruction" msgstr "" -#: config/tc-arm.c:902 +#: config/tc-arm.c:927 +msgid "selected processor does not support cde instruction" +msgstr "" + +#: config/tc-arm.c:928 +msgid "coprocessor for insn is not enabled for cde" +msgstr "" + +#: config/tc-arm.c:929 msgid "using " msgstr "" -#: config/tc-arm.c:903 +#: config/tc-arm.c:930 msgid "relocation valid in thumb1 code only" msgstr "" -#: config/tc-arm.c:904 +#: config/tc-arm.c:931 msgid "Warning: instruction is UNPREDICTABLE in an IT block" msgstr "" -#: config/tc-arm.c:906 +#: config/tc-arm.c:933 msgid "Warning: instruction is UNPREDICTABLE in a VPT block" msgstr "" -#: config/tc-arm.c:908 +#: config/tc-arm.c:935 msgid "Warning: instruction is UNPREDICTABLE with PC operand" msgstr "" -#: config/tc-arm.c:910 +#: config/tc-arm.c:937 msgid "Warning: instruction is UNPREDICTABLE with SP operand" msgstr "" -#: config/tc-arm.c:912 +#: config/tc-arm.c:939 msgid "bad type in SIMD instruction" msgstr "" -#: config/tc-arm.c:914 +#: config/tc-arm.c:941 msgid "" "GAS auto-detection mode and -march=all is deprecated for MVE, please use a " "valid -march or -mcpu option." msgstr "" -#: config/tc-arm.c:916 +#: config/tc-arm.c:943 msgid "" "Warning: 32-bit element size and same destination and source operands makes " "instruction UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:918 +#: config/tc-arm.c:945 msgid "bad element type for instruction" msgstr "" -#: config/tc-arm.c:919 +#: config/tc-arm.c:946 msgid "MVE vector register Q[0..7] expected" msgstr "" -#: config/tc-arm.c:1139 +#: config/tc-arm.c:1166 msgid "immediate expression requires a # prefix" msgstr "" -#: config/tc-arm.c:1168 read.c:3800 +#: config/tc-arm.c:1195 read.c:3801 msgid "missing expression" msgstr "" -#: config/tc-arm.c:1182 config/tc-arm.c:5649 config/tc-score.c:1209 +#: config/tc-arm.c:1209 config/tc-arm.c:5676 config/tc-score.c:1209 msgid "invalid constant" msgstr "" -#: config/tc-arm.c:1360 +#: config/tc-arm.c:1387 msgid "expected #constant" msgstr "" -#: config/tc-arm.c:1532 config/tc-arm.c:1563 +#: config/tc-arm.c:1559 config/tc-arm.c:1590 #, c-format msgid "bad size %d in type specifier" msgstr "" -#: config/tc-arm.c:1539 +#: config/tc-arm.c:1566 msgid "unexpected type character `b' -- did you mean `bf'?" msgstr "" -#: config/tc-arm.c:1546 +#: config/tc-arm.c:1573 #, c-format msgid "unexpected character `%c' in type specifier" msgstr "" -#: config/tc-arm.c:1613 +#: config/tc-arm.c:1640 msgid "only one type should be specified for operand" msgstr "" -#: config/tc-arm.c:1619 +#: config/tc-arm.c:1646 msgid "vector type expected" msgstr "" -#: config/tc-arm.c:1728 +#: config/tc-arm.c:1755 msgid "expected MVE register [q0..q7]" msgstr "" -#: config/tc-arm.c:1748 +#: config/tc-arm.c:1775 msgid "can't redefine type for operand" msgstr "" -#: config/tc-arm.c:1764 +#: config/tc-arm.c:1791 msgid "only D and Q registers may be indexed" msgstr "" -#: config/tc-arm.c:1766 +#: config/tc-arm.c:1793 msgid "only D registers may be indexed" msgstr "" -#: config/tc-arm.c:1772 +#: config/tc-arm.c:1799 msgid "can't change index for operand" msgstr "" -#: config/tc-arm.c:1835 +#: config/tc-arm.c:1862 msgid "register operand expected, but got scalar" msgstr "" -#: config/tc-arm.c:1886 +#: config/tc-arm.c:1913 msgid "scalar must have an index" msgstr "" -#: config/tc-arm.c:1891 config/tc-arm.c:20150 config/tc-arm.c:20233 -#: config/tc-arm.c:20898 +#: config/tc-arm.c:1918 config/tc-arm.c:20209 config/tc-arm.c:20292 +#: config/tc-arm.c:20957 msgid "scalar index out of range" msgstr "" -#: config/tc-arm.c:1961 +#: config/tc-arm.c:1988 msgid "r0-r12, lr or APSR expected" msgstr "" -#: config/tc-arm.c:1980 +#: config/tc-arm.c:2007 msgid "bad range in register list" msgstr "" -#: config/tc-arm.c:1988 config/tc-arm.c:1997 config/tc-arm.c:2038 +#: config/tc-arm.c:2015 config/tc-arm.c:2024 config/tc-arm.c:2065 #, c-format msgid "Warning: duplicated register (r%d) in register list" msgstr "" -#: config/tc-arm.c:2000 +#: config/tc-arm.c:2027 msgid "Warning: register range not in ascending order" msgstr "" -#: config/tc-arm.c:2011 +#: config/tc-arm.c:2038 msgid "missing `}'" msgstr "" -#: config/tc-arm.c:2027 +#: config/tc-arm.c:2054 msgid "invalid register mask" msgstr "" -#: config/tc-arm.c:2171 config/tc-arm.c:2279 +#: config/tc-arm.c:2198 config/tc-arm.c:2306 msgid "VPR expected last" msgstr "" -#: config/tc-arm.c:2177 +#: config/tc-arm.c:2204 msgid "VFP single precision register or VPR expected" msgstr "" #. regtype == REG_TYPE_VFD. -#: config/tc-arm.c:2180 +#: config/tc-arm.c:2207 msgid "VFP/Neon double precision register or VPR expected" msgstr "" -#: config/tc-arm.c:2197 config/tc-arm.c:2241 +#: config/tc-arm.c:2224 config/tc-arm.c:2268 msgid "register out of range in list" msgstr "" -#: config/tc-arm.c:2219 config/tc-arm.c:4518 config/tc-arm.c:4652 +#: config/tc-arm.c:2246 config/tc-arm.c:4545 config/tc-arm.c:4679 msgid "register list not in ascending order" msgstr "" -#: config/tc-arm.c:2250 +#: config/tc-arm.c:2277 msgid "register range not in ascending order" msgstr "" -#: config/tc-arm.c:2289 +#: config/tc-arm.c:2316 msgid "non-contiguous register range" msgstr "" -#: config/tc-arm.c:2349 +#: config/tc-arm.c:2376 msgid "register stride must be 1" msgstr "" -#: config/tc-arm.c:2350 +#: config/tc-arm.c:2377 msgid "register stride must be 1 or 2" msgstr "" -#: config/tc-arm.c:2351 +#: config/tc-arm.c:2378 msgid "mismatched element/structure types in list" msgstr "" -#: config/tc-arm.c:2421 +#: config/tc-arm.c:2448 msgid "don't use Rn-Rm syntax with non-unit stride" msgstr "" -#: config/tc-arm.c:2476 +#: config/tc-arm.c:2503 msgid "error parsing element/structure list" msgstr "" -#: config/tc-arm.c:2482 +#: config/tc-arm.c:2509 msgid "expected }" msgstr "" -#: config/tc-arm.c:2573 +#: config/tc-arm.c:2600 msgid "attempt to redefine typed alias" msgstr "" -#: config/tc-arm.c:2708 +#: config/tc-arm.c:2735 msgid "bad type for register" msgstr "" -#: config/tc-arm.c:2719 config/tc-nios2.c:1802 +#: config/tc-arm.c:2746 config/tc-nios2.c:1802 msgid "expression must be constant" msgstr "" -#: config/tc-arm.c:2736 +#: config/tc-arm.c:2763 msgid "can't redefine the type of a register alias" msgstr "" -#: config/tc-arm.c:2743 +#: config/tc-arm.c:2770 msgid "you must specify a single type only" msgstr "" -#: config/tc-arm.c:2756 +#: config/tc-arm.c:2783 msgid "can't redefine the index of a scalar alias" msgstr "" -#: config/tc-arm.c:2764 +#: config/tc-arm.c:2791 msgid "scalar index must be constant" msgstr "" -#: config/tc-arm.c:2773 +#: config/tc-arm.c:2800 msgid "expecting ]" msgstr "" -#: config/tc-arm.c:2825 +#: config/tc-arm.c:2852 msgid "invalid syntax for .dn directive" msgstr "" -#: config/tc-arm.c:2831 +#: config/tc-arm.c:2858 msgid "invalid syntax for .qn directive" msgstr "" -#: config/tc-arm.c:2866 +#: config/tc-arm.c:2893 #, c-format msgid "ignoring attempt to use .unreq on fixed register name: '%s'" msgstr "" -#: config/tc-arm.c:3131 +#: config/tc-arm.c:3158 #, c-format msgid "Failed to find real start of function: %s\n" msgstr "" -#: config/tc-arm.c:3148 +#: config/tc-arm.c:3175 msgid "selected processor does not support THUMB opcodes" msgstr "" -#: config/tc-arm.c:3161 +#: config/tc-arm.c:3188 msgid "selected processor does not support ARM opcodes" msgstr "" -#: config/tc-arm.c:3173 +#: config/tc-arm.c:3200 #, c-format msgid "invalid instruction size selected (%d)" msgstr "" -#: config/tc-arm.c:3205 +#: config/tc-arm.c:3232 #, c-format msgid "invalid operand to .code directive (%d) (expecting 16 or 32)" msgstr "" -#: config/tc-arm.c:3260 +#: config/tc-arm.c:3287 #, c-format msgid "expected comma after name \"%s\"" msgstr "" -#: config/tc-arm.c:3310 config/tc-m32r.c:584 +#: config/tc-arm.c:3337 config/tc-m32r.c:584 #, c-format msgid "symbol `%s' already defined" msgstr "" -#: config/tc-arm.c:3343 +#: config/tc-arm.c:3370 #, c-format msgid "unrecognized syntax mode \"%s\"" msgstr "" -#: config/tc-arm.c:3386 +#: config/tc-arm.c:3413 msgid ".ref pseudo-op only available with -mccs flag." msgstr "" -#: config/tc-arm.c:3427 +#: config/tc-arm.c:3454 msgid ".asmfunc repeated." msgstr "" -#: config/tc-arm.c:3431 +#: config/tc-arm.c:3458 msgid ".asmfunc without function." msgstr "" -#: config/tc-arm.c:3437 +#: config/tc-arm.c:3464 msgid ".asmfunc pseudo-op only available with -mccs flag." msgstr "" -#: config/tc-arm.c:3448 +#: config/tc-arm.c:3475 msgid ".endasmfunc without a .asmfunc." msgstr "" -#: config/tc-arm.c:3452 +#: config/tc-arm.c:3479 msgid ".endasmfunc without function." msgstr "" -#: config/tc-arm.c:3463 +#: config/tc-arm.c:3490 msgid ".endasmfunc pseudo-op only available with -mccs flag." msgstr "" -#: config/tc-arm.c:3472 +#: config/tc-arm.c:3499 msgid ".def pseudo-op only available with -mccs flag." msgstr "" -#: config/tc-arm.c:3630 +#: config/tc-arm.c:3657 msgid "invalid type for literal pool" msgstr "" -#: config/tc-arm.c:3710 config/tc-tic54x.c:5354 +#: config/tc-arm.c:3737 config/tc-tic54x.c:5354 #, c-format msgid "Invalid label '%s'" msgstr "" -#: config/tc-arm.c:3886 +#: config/tc-arm.c:3913 msgid "(plt) is only valid on branch targets" msgstr "" -#: config/tc-arm.c:3892 config/tc-csky.c:6992 config/tc-s390.c:1210 -#: config/tc-s390.c:1880 config/tc-xtensa.c:1684 +#: config/tc-arm.c:3919 config/tc-csky.c:6992 config/tc-s390.c:1210 +#: config/tc-s390.c:1880 config/tc-xtensa.c:1690 #, 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:3974 +#: config/tc-arm.c:4001 msgid ".inst.n operand too big. Use .inst.w instead" msgstr "" -#: config/tc-arm.c:3994 +#: config/tc-arm.c:4021 msgid "cannot determine Thumb instruction size. Use .inst.n/.inst.w instead" msgstr "" -#: config/tc-arm.c:4024 +#: config/tc-arm.c:4051 msgid "width suffixes are invalid in ARM mode" msgstr "" -#: config/tc-arm.c:4066 dwarf2dbg.c:1033 +#: config/tc-arm.c:4093 dwarf2dbg.c:1303 msgid "expected 0 or 1" msgstr "" -#: config/tc-arm.c:4070 +#: config/tc-arm.c:4097 msgid "missing comma" msgstr "" -#: config/tc-arm.c:4103 +#: config/tc-arm.c:4130 msgid "duplicate .fnstart directive" msgstr "" -#: config/tc-arm.c:4134 config/tc-tic6x.c:412 +#: config/tc-arm.c:4161 config/tc-tic6x.c:412 msgid "duplicate .handlerdata directive" msgstr "" -#: config/tc-arm.c:4153 +#: config/tc-arm.c:4180 msgid ".fnend directive without .fnstart" msgstr "" -#: config/tc-arm.c:4220 config/tc-tic6x.c:393 +#: config/tc-arm.c:4247 config/tc-tic6x.c:393 msgid "personality routine specified for cantunwind frame" msgstr "" -#: config/tc-arm.c:4237 config/tc-tic6x.c:454 +#: config/tc-arm.c:4264 config/tc-tic6x.c:454 msgid "duplicate .personalityindex directive" msgstr "" -#: config/tc-arm.c:4244 config/tc-tic6x.c:461 +#: config/tc-arm.c:4271 config/tc-tic6x.c:461 msgid "bad personality routine number" msgstr "" -#: config/tc-arm.c:4266 config/tc-tic6x.c:478 +#: config/tc-arm.c:4293 config/tc-tic6x.c:478 msgid "duplicate .personality directive" msgstr "" -#: config/tc-arm.c:4290 config/tc-arm.c:4420 config/tc-arm.c:4470 +#: config/tc-arm.c:4317 config/tc-arm.c:4447 config/tc-arm.c:4497 msgid "expected register list" msgstr "" -#: config/tc-arm.c:4372 +#: config/tc-arm.c:4399 msgid "expected , " msgstr "" -#: config/tc-arm.c:4381 +#: config/tc-arm.c:4408 msgid "number of registers must be in the range [1:4]" msgstr "" -#: config/tc-arm.c:4532 config/tc-arm.c:4666 +#: config/tc-arm.c:4559 config/tc-arm.c:4693 msgid "bad register range" msgstr "" -#: config/tc-arm.c:4732 +#: config/tc-arm.c:4759 msgid "FPA .unwind_save does not take a register list" msgstr "" -#: config/tc-arm.c:4760 +#: config/tc-arm.c:4787 msgid ".unwind_save does not support this kind of register" msgstr "" -#: config/tc-arm.c:4799 +#: config/tc-arm.c:4826 msgid "SP and PC not permitted in .unwind_movsp directive" msgstr "" -#: config/tc-arm.c:4804 +#: config/tc-arm.c:4831 msgid "unexpected .unwind_movsp directive" msgstr "" -#: config/tc-arm.c:4831 +#: config/tc-arm.c:4858 msgid "stack increment must be multiple of 4" msgstr "" -#: config/tc-arm.c:4863 +#: config/tc-arm.c:4890 msgid "expected , " msgstr "" -#: config/tc-arm.c:4881 +#: config/tc-arm.c:4908 msgid "register must be either sp or set by a previousunwind_movsp directive" msgstr "" -#: config/tc-arm.c:4920 +#: config/tc-arm.c:4947 msgid "expected , " msgstr "" -#: config/tc-arm.c:4932 +#: config/tc-arm.c:4959 msgid "unwind opcode too long" msgstr "" -#: config/tc-arm.c:4937 +#: config/tc-arm.c:4964 msgid "invalid unwind opcode" msgstr "" -#: config/tc-arm.c:5052 config/tc-arm.c:31762 +#: config/tc-arm.c:5079 config/tc-arm.c:32319 #, c-format msgid "unrecognised float16 format \"%s\"" msgstr "" -#: config/tc-arm.c:5063 +#: config/tc-arm.c:5090 msgid "float16 format cannot be set more than once, ignoring." msgstr "" -#: config/tc-arm.c:5178 config/tc-arm.c:6252 config/tc-arm.c:11606 -#: config/tc-arm.c:12139 config/tc-arm.c:14259 config/tc-arm.c:16192 -#: config/tc-arm.c:16227 config/tc-arm.c:17155 config/tc-arm.c:19082 -#: config/tc-arm.c:19090 config/tc-arm.c:19097 config/tc-arm.c:20739 -#: config/tc-arm.c:28846 config/tc-arm.c:28910 config/tc-arm.c:28918 +#: config/tc-arm.c:5205 config/tc-arm.c:6279 config/tc-arm.c:11655 +#: config/tc-arm.c:12188 config/tc-arm.c:14308 config/tc-arm.c:16259 +#: config/tc-arm.c:16294 config/tc-arm.c:17222 config/tc-arm.c:19143 +#: config/tc-arm.c:19151 config/tc-arm.c:19158 config/tc-arm.c:20798 +#: config/tc-arm.c:29387 config/tc-arm.c:29451 config/tc-arm.c:29459 #: config/tc-metag.c:5176 config/tc-z8k.c:1151 config/tc-z8k.c:1161 msgid "immediate value out of range" msgstr "" -#: config/tc-arm.c:5348 +#: config/tc-arm.c:5375 msgid "invalid FPA immediate expression" msgstr "" -#: config/tc-arm.c:5533 +#: config/tc-arm.c:5560 msgid "'UXTW' not allowed here" msgstr "" -#: config/tc-arm.c:5541 +#: config/tc-arm.c:5568 msgid "'LSL' or 'ASR' required" msgstr "" -#: config/tc-arm.c:5549 +#: config/tc-arm.c:5576 msgid "'LSL' required" msgstr "" -#: config/tc-arm.c:5557 +#: config/tc-arm.c:5584 msgid "'ASR' required" msgstr "" -#: config/tc-arm.c:5564 +#: config/tc-arm.c:5591 msgid "'UXTW' required" msgstr "" -#: config/tc-arm.c:5643 +#: config/tc-arm.c:5670 msgid "invalid rotation" msgstr "" -#: config/tc-arm.c:5825 config/tc-arm.c:6030 +#: config/tc-arm.c:5852 config/tc-arm.c:6057 msgid "unknown group relocation" msgstr "" -#: config/tc-arm.c:5861 +#: config/tc-arm.c:5888 msgid "alignment must be constant" msgstr "" -#: config/tc-arm.c:6064 +#: config/tc-arm.c:6091 msgid "this group relocation is not allowed on this instruction" msgstr "" -#: config/tc-arm.c:6120 +#: config/tc-arm.c:6147 msgid "'}' expected at end of 'option' field" msgstr "" -#: config/tc-arm.c:6125 +#: config/tc-arm.c:6152 msgid "cannot combine index with option" msgstr "" -#: config/tc-arm.c:6390 +#: config/tc-arm.c:6417 msgid "unexpected bit specified after APSR" msgstr "" -#: config/tc-arm.c:6402 +#: config/tc-arm.c:6429 msgid "selected processor does not support DSP extension" msgstr "" -#: config/tc-arm.c:6414 +#: config/tc-arm.c:6441 msgid "bad bitmask specified after APSR" msgstr "" -#: config/tc-arm.c:6438 +#: config/tc-arm.c:6465 msgid "writing to APSR without specifying a bitmask is deprecated" msgstr "" -#: config/tc-arm.c:6450 config/tc-arm.c:13362 config/tc-arm.c:13407 -#: config/tc-arm.c:13411 +#: config/tc-arm.c:6477 config/tc-arm.c:13411 config/tc-arm.c:13456 +#: config/tc-arm.c:13460 msgid "selected processor does not support requested special purpose register" msgstr "" -#: config/tc-arm.c:6455 +#: config/tc-arm.c:6482 msgid "flag for {c}psr instruction expected" msgstr "" -#: config/tc-arm.c:6513 +#: config/tc-arm.c:6540 msgid "unrecognized CPS flag" msgstr "" -#: config/tc-arm.c:6520 +#: config/tc-arm.c:6547 msgid "missing CPS flags" msgstr "" -#: config/tc-arm.c:6543 config/tc-arm.c:6549 +#: config/tc-arm.c:6570 config/tc-arm.c:6576 msgid "valid endian specifiers are be or le" msgstr "" -#: config/tc-arm.c:6571 +#: config/tc-arm.c:6598 msgid "missing rotation field after comma" msgstr "" -#: config/tc-arm.c:6586 +#: config/tc-arm.c:6613 msgid "rotation can only be 0, 8, 16, or 24" msgstr "" -#: config/tc-arm.c:6615 +#: config/tc-arm.c:6642 msgid "condition required" msgstr "" -#: config/tc-arm.c:6657 config/tc-arm.c:9775 +#: config/tc-arm.c:6684 config/tc-arm.c:9824 msgid "'[' expected" msgstr "" -#: config/tc-arm.c:6670 +#: config/tc-arm.c:6697 msgid "',' expected" msgstr "" -#: config/tc-arm.c:6687 +#: config/tc-arm.c:6714 msgid "invalid shift" msgstr "" -#: config/tc-arm.c:6767 +#: config/tc-arm.c:6794 msgid "expected ARM or MVE vector register" msgstr "" -#: config/tc-arm.c:6816 +#: config/tc-arm.c:6843 msgid "can't use Neon quad register here" msgstr "" -#: config/tc-arm.c:6885 +#: config/tc-arm.c:6912 msgid "expected or or operand" msgstr "" -#: config/tc-arm.c:6985 +#: config/tc-arm.c:7012 msgid "VFP single, double or MVE vector register expected" msgstr "" -#: config/tc-arm.c:7005 +#: config/tc-arm.c:7032 msgid "parse error" msgstr "" -#: config/tc-arm.c:7299 +#: config/tc-arm.c:7334 msgid "immediate value 48 or 64 expected" msgstr "" #. ISB can only take SY as an option. -#: config/tc-arm.c:7348 +#: config/tc-arm.c:7383 msgid "invalid barrier type" msgstr "" -#: config/tc-arm.c:7511 +#: config/tc-arm.c:7557 msgid "only floating point zero is allowed as immediate value" msgstr "" -#: config/tc-arm.c:7606 +#: config/tc-arm.c:7652 msgid "immediate value is out of range" msgstr "" -#: config/tc-arm.c:7778 +#: config/tc-arm.c:7827 msgid "iWMMXt data or control register expected" msgstr "" -#: config/tc-arm.c:7819 +#: config/tc-arm.c:7868 msgid "Banked registers are not available with this architecture." msgstr "" -#: config/tc-arm.c:8067 +#: config/tc-arm.c:8116 msgid "operand must be LR register" msgstr "" -#: config/tc-arm.c:8138 config/tc-score.c:264 +#: config/tc-arm.c:8187 config/tc-score.c:264 msgid "garbage following instruction" msgstr "" #. If REG is R13 (the stack pointer), warn that its use is #. deprecated. -#: config/tc-arm.c:8188 +#: config/tc-arm.c:8237 msgid "use of r13 is deprecated" msgstr "" -#: config/tc-arm.c:8206 config/tc-arm.c:20447 +#: config/tc-arm.c:8255 config/tc-arm.c:20506 msgid "" "ARMv8.2 scalar fp16 instruction cannot be conditional, the behaviour is " "UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:8281 +#: config/tc-arm.c:8330 msgid "D register out of range for selected VFP version" msgstr "" -#: config/tc-arm.c:8378 config/tc-arm.c:11301 +#: config/tc-arm.c:8427 config/tc-arm.c:11350 msgid "Instruction does not support =N addresses" msgstr "" -#: config/tc-arm.c:8386 +#: config/tc-arm.c:8435 msgid "instruction does not accept preindexed addressing" msgstr "" #. unindexed - only for coprocessor -#: config/tc-arm.c:8402 config/tc-arm.c:11364 +#: config/tc-arm.c:8451 config/tc-arm.c:11413 msgid "instruction does not accept unindexed addressing" msgstr "" -#: config/tc-arm.c:8410 +#: config/tc-arm.c:8459 msgid "destination register same as write-back base" msgstr "" -#: config/tc-arm.c:8411 +#: config/tc-arm.c:8460 msgid "source register same as write-back base" msgstr "" -#: config/tc-arm.c:8461 +#: config/tc-arm.c:8510 msgid "use of PC in this instruction is deprecated" msgstr "" -#: config/tc-arm.c:8484 +#: config/tc-arm.c:8533 msgid "instruction does not accept scaled register index" msgstr "" -#: config/tc-arm.c:8789 +#: config/tc-arm.c:8838 msgid "invalid pseudo operation" msgstr "" -#: config/tc-arm.c:9032 +#: config/tc-arm.c:9081 msgid "invalid co-processor operand" msgstr "" -#: config/tc-arm.c:9048 +#: config/tc-arm.c:9097 msgid "instruction does not support unindexed addressing" msgstr "" -#: config/tc-arm.c:9063 +#: config/tc-arm.c:9112 msgid "pc may not be used with write-back" msgstr "" -#: config/tc-arm.c:9068 +#: config/tc-arm.c:9117 msgid "instruction does not support writeback" msgstr "" -#: config/tc-arm.c:9174 +#: config/tc-arm.c:9223 msgid "Rn must not overlap other operands" msgstr "" -#: config/tc-arm.c:9179 +#: config/tc-arm.c:9228 msgid "swp{b} use is obsoleted for ARMv8 and later" msgstr "" -#: config/tc-arm.c:9182 +#: config/tc-arm.c:9231 msgid "swp{b} use is deprecated for ARMv6 and ARMv7" msgstr "" -#: config/tc-arm.c:9301 config/tc-arm.c:9320 config/tc-arm.c:9333 -#: config/tc-arm.c:11976 config/tc-arm.c:12007 config/tc-arm.c:12029 +#: config/tc-arm.c:9350 config/tc-arm.c:9369 config/tc-arm.c:9382 +#: config/tc-arm.c:12025 config/tc-arm.c:12056 config/tc-arm.c:12078 msgid "bit-field extends past end of register" msgstr "" -#: config/tc-arm.c:9363 +#: config/tc-arm.c:9412 msgid "the only valid suffixes here are '(plt)' and '(tlscall)'" msgstr "" -#: config/tc-arm.c:9416 +#: config/tc-arm.c:9465 msgid "use of r15 in blx in ARM mode is not really useful" msgstr "" -#: config/tc-arm.c:9438 +#: config/tc-arm.c:9487 msgid "use of r15 in bx in ARM mode is not really useful" msgstr "" -#: config/tc-arm.c:9464 +#: config/tc-arm.c:9513 msgid "use of r15 in bxj is not really useful" msgstr "" -#: config/tc-arm.c:9512 +#: config/tc-arm.c:9561 msgid "This coprocessor register access is deprecated in ARMv8" msgstr "" -#: config/tc-arm.c:9720 config/tc-arm.c:9729 +#: config/tc-arm.c:9769 config/tc-arm.c:9778 msgid "writeback of base register is UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:9723 +#: config/tc-arm.c:9772 msgid "writeback of base register when in register list is UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:9733 +#: config/tc-arm.c:9782 msgid "if writeback register is in list, it must be the lowest reg in the list" msgstr "" -#: config/tc-arm.c:9770 +#: config/tc-arm.c:9819 msgid "first transfer register must be even" msgstr "" -#: config/tc-arm.c:9773 +#: config/tc-arm.c:9822 msgid "can only transfer two consecutive registers" msgstr "" @@ -3957,1359 +4010,1421 @@ 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:9774 config/tc-arm.c:9844 config/tc-arm.c:10575 -#: config/tc-arm.c:12851 +#: config/tc-arm.c:9823 config/tc-arm.c:9893 config/tc-arm.c:10624 +#: config/tc-arm.c:12900 msgid "r14 not allowed here" msgstr "" -#: config/tc-arm.c:9786 +#: config/tc-arm.c:9835 msgid "base register written back, and overlaps second transfer register" msgstr "" -#: config/tc-arm.c:9796 +#: config/tc-arm.c:9845 msgid "index register overlaps transfer register" msgstr "" -#: config/tc-arm.c:9825 config/tc-arm.c:10542 +#: config/tc-arm.c:9874 config/tc-arm.c:10591 msgid "offset must be zero in ARM encoding" msgstr "" -#: config/tc-arm.c:9838 config/tc-arm.c:10569 +#: config/tc-arm.c:9887 config/tc-arm.c:10618 msgid "even register required" msgstr "" -#: config/tc-arm.c:9841 +#: config/tc-arm.c:9890 msgid "can only load two consecutive registers" msgstr "" -#: config/tc-arm.c:9859 +#: config/tc-arm.c:9908 msgid "ldr to register 15 must be 4-byte aligned" msgstr "" -#: config/tc-arm.c:9882 config/tc-arm.c:9914 +#: config/tc-arm.c:9931 config/tc-arm.c:9963 msgid "this instruction requires a post-indexed address" msgstr "" -#: config/tc-arm.c:9941 +#: config/tc-arm.c:9990 msgid "Rd and Rm should be different in mla" msgstr "" -#: config/tc-arm.c:9968 config/tc-arm.c:13226 +#: config/tc-arm.c:10017 config/tc-arm.c:13275 msgid ":lower16: not allowed in this instruction" msgstr "" -#: config/tc-arm.c:9970 config/tc-arm.c:13231 +#: config/tc-arm.c:10019 config/tc-arm.c:13280 msgid ":upper16: not allowed in this instruction" msgstr "" -#: config/tc-arm.c:9987 +#: config/tc-arm.c:10036 msgid "operand 1 must be FPSCR" msgstr "" -#: config/tc-arm.c:10040 config/tc-arm.c:10049 config/tc-arm.c:10103 -#: config/tc-arm.c:10112 +#: config/tc-arm.c:10089 config/tc-arm.c:10098 config/tc-arm.c:10152 +#: config/tc-arm.c:10161 msgid "selected processor does not support instruction" msgstr "" -#: config/tc-arm.c:10052 config/tc-arm.c:10115 +#: config/tc-arm.c:10101 config/tc-arm.c:10164 msgid "accessing MVE system register without MVE is UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:10143 config/tc-arm.c:13345 +#: config/tc-arm.c:10192 config/tc-arm.c:13394 msgid "bad register for mrs" msgstr "" -#: config/tc-arm.c:10150 config/tc-arm.c:13369 +#: config/tc-arm.c:10199 config/tc-arm.c:13418 msgid "'APSR', 'CPSR' or 'SPSR' expected" msgstr "" -#: config/tc-arm.c:10191 +#: config/tc-arm.c:10240 msgid "Rd and Rm should be different in mul" msgstr "" -#: config/tc-arm.c:10210 config/tc-arm.c:10487 config/tc-arm.c:13508 +#: config/tc-arm.c:10259 config/tc-arm.c:10536 config/tc-arm.c:13557 msgid "rdhi and rdlo must be different" msgstr "" -#: config/tc-arm.c:10216 +#: config/tc-arm.c:10265 msgid "rdhi, rdlo and rm must all be different" msgstr "" -#: config/tc-arm.c:10282 +#: config/tc-arm.c:10331 msgid "'[' expected after PLD mnemonic" msgstr "" -#: config/tc-arm.c:10284 config/tc-arm.c:10299 +#: config/tc-arm.c:10333 config/tc-arm.c:10348 msgid "post-indexed expression used in preload instruction" msgstr "" -#: config/tc-arm.c:10286 config/tc-arm.c:10301 +#: config/tc-arm.c:10335 config/tc-arm.c:10350 msgid "writeback used in preload instruction" msgstr "" -#: config/tc-arm.c:10288 config/tc-arm.c:10303 +#: config/tc-arm.c:10337 config/tc-arm.c:10352 msgid "unindexed addressing used in preload instruction" msgstr "" -#: config/tc-arm.c:10297 +#: config/tc-arm.c:10346 msgid "'[' expected after PLI mnemonic" msgstr "" -#: config/tc-arm.c:10312 config/tc-arm.c:13677 +#: config/tc-arm.c:10361 config/tc-arm.c:13726 msgid "push/pop do not support {reglist}^" msgstr "" -#: config/tc-arm.c:10390 config/tc-arm.c:13854 +#: config/tc-arm.c:10439 config/tc-arm.c:13903 msgid "setend use is deprecated for ARMv8" msgstr "" -#: config/tc-arm.c:10411 config/tc-arm.c:13915 config/tc-arm.c:13947 -#: config/tc-arm.c:13990 +#: config/tc-arm.c:10460 config/tc-arm.c:13964 config/tc-arm.c:13996 +#: config/tc-arm.c:14039 msgid "extraneous shift as part of operand to shift insn" msgstr "" -#: config/tc-arm.c:10421 config/tc-arm.c:14053 +#: config/tc-arm.c:10470 config/tc-arm.c:14102 msgid "immediate too large (bigger than 0xF)" msgstr "" -#: config/tc-arm.c:10445 config/tc-arm.c:10454 +#: config/tc-arm.c:10494 config/tc-arm.c:10503 msgid "selected processor does not support SETPAN instruction" msgstr "" -#: config/tc-arm.c:10513 +#: config/tc-arm.c:10562 msgid "SRS base register must be r13" msgstr "" -#: config/tc-arm.c:10572 +#: config/tc-arm.c:10621 msgid "can only store two consecutive registers" msgstr "" -#: config/tc-arm.c:10694 config/tc-arm.c:10715 +#: config/tc-arm.c:10743 config/tc-arm.c:10764 msgid "only two consecutive VFP SP registers allowed here" msgstr "" -#: config/tc-arm.c:10743 config/tc-arm.c:10758 +#: config/tc-arm.c:10792 config/tc-arm.c:10807 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:10887 +#: config/tc-arm.c:10936 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:10894 +#: config/tc-arm.c:10943 msgid "immediate value out of range, expected range [1, 32]" msgstr "" -#: config/tc-arm.c:10960 +#: config/tc-arm.c:11009 msgid "this instruction does not support indexing" msgstr "" -#: config/tc-arm.c:10983 +#: config/tc-arm.c:11032 msgid "only r15 allowed here" msgstr "" -#: config/tc-arm.c:11118 +#: config/tc-arm.c:11167 msgid "immediate operand requires iWMMXt2" msgstr "" -#: config/tc-arm.c:11262 +#: config/tc-arm.c:11311 msgid "shift by register not allowed in thumb mode" msgstr "" -#: config/tc-arm.c:11274 config/tc-arm.c:14099 config/tc-arm.c:28140 +#: config/tc-arm.c:11323 config/tc-arm.c:14148 config/tc-arm.c:28678 msgid "shift expression is too large" msgstr "" -#: config/tc-arm.c:11307 +#: config/tc-arm.c:11356 msgid "cannot use register index with this instruction" msgstr "" -#: config/tc-arm.c:11309 +#: config/tc-arm.c:11358 msgid "Thumb does not support negative register indexing" msgstr "" -#: config/tc-arm.c:11311 +#: config/tc-arm.c:11360 msgid "Thumb does not support register post-indexing" msgstr "" -#: config/tc-arm.c:11313 +#: config/tc-arm.c:11362 msgid "Thumb does not support register indexing with writeback" msgstr "" -#: config/tc-arm.c:11315 +#: config/tc-arm.c:11364 msgid "Thumb supports only LSL in shifted register indexing" msgstr "" -#: config/tc-arm.c:11324 config/tc-arm.c:19815 +#: config/tc-arm.c:11373 config/tc-arm.c:19874 msgid "shift out of range" msgstr "" -#: config/tc-arm.c:11333 +#: config/tc-arm.c:11382 msgid "cannot use writeback with this instruction" msgstr "" -#: config/tc-arm.c:11354 +#: config/tc-arm.c:11403 msgid "cannot use post-indexing with PC-relative addressing" msgstr "" -#: config/tc-arm.c:11355 +#: config/tc-arm.c:11404 msgid "cannot use post-indexing with this instruction" msgstr "" -#: config/tc-arm.c:11601 +#: config/tc-arm.c:11650 msgid "only SUBS PC, LR, #const allowed" msgstr "" -#: config/tc-arm.c:11684 config/tc-arm.c:11844 config/tc-arm.c:11941 -#: config/tc-arm.c:13306 config/tc-arm.c:13614 +#: config/tc-arm.c:11733 config/tc-arm.c:11893 config/tc-arm.c:11990 +#: config/tc-arm.c:13355 config/tc-arm.c:13663 msgid "shift must be constant" msgstr "" -#: config/tc-arm.c:11689 +#: config/tc-arm.c:11738 msgid "shift value over 3 not allowed in thumb mode" msgstr "" -#: config/tc-arm.c:11691 +#: config/tc-arm.c:11740 msgid "only LSL shift allowed in thumb mode" msgstr "" -#: config/tc-arm.c:11715 config/tc-arm.c:11859 config/tc-arm.c:11956 -#: config/tc-arm.c:13319 +#: config/tc-arm.c:11764 config/tc-arm.c:11908 config/tc-arm.c:12005 +#: config/tc-arm.c:13368 msgid "unshifted register required" msgstr "" -#: config/tc-arm.c:11730 config/tc-arm.c:11967 config/tc-arm.c:13469 +#: config/tc-arm.c:11779 config/tc-arm.c:12016 config/tc-arm.c:13518 msgid "dest must overlap one source register" msgstr "" -#: config/tc-arm.c:11862 config/tc-csky.c:5510 +#: config/tc-arm.c:11911 config/tc-csky.c:5510 msgid "dest and source1 must be the same register" msgstr "" -#: config/tc-arm.c:12102 +#: config/tc-arm.c:12151 msgid "" "selected architecture does not support wide conditional branch instruction" msgstr "" -#: config/tc-arm.c:12135 +#: config/tc-arm.c:12184 msgid "instruction is always unconditional" msgstr "" -#: config/tc-arm.c:12310 +#: config/tc-arm.c:12359 msgid "selected processor does not support 'A' form of this instruction" msgstr "" -#: config/tc-arm.c:12313 +#: config/tc-arm.c:12362 msgid "Thumb does not support the 2-argument form of this instruction" msgstr "" -#: config/tc-arm.c:12438 +#: config/tc-arm.c:12487 msgid "SP not allowed in register list" msgstr "" -#: config/tc-arm.c:12442 config/tc-arm.c:12549 +#: config/tc-arm.c:12491 config/tc-arm.c:12598 msgid "" "having the base register in the register list when using write back is " "UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:12450 +#: config/tc-arm.c:12499 msgid "LR and PC should not both be in register list" msgstr "" -#: config/tc-arm.c:12458 +#: config/tc-arm.c:12507 msgid "PC not allowed in register list" msgstr "" -#: config/tc-arm.c:12501 +#: config/tc-arm.c:12550 msgid "Thumb load/store multiple does not support {reglist}^" msgstr "" -#: config/tc-arm.c:12526 config/tc-arm.c:12604 +#: config/tc-arm.c:12575 config/tc-arm.c:12653 #, c-format msgid "value stored for r%d is UNKNOWN" msgstr "" -#: config/tc-arm.c:12597 +#: config/tc-arm.c:12646 msgid "Thumb-2 instruction only valid in unified syntax" msgstr "" -#: config/tc-arm.c:12601 config/tc-arm.c:12611 +#: config/tc-arm.c:12650 config/tc-arm.c:12660 msgid "this instruction will write back the base register" msgstr "" -#: config/tc-arm.c:12614 +#: config/tc-arm.c:12663 msgid "this instruction will not write back the base register" msgstr "" -#: config/tc-arm.c:12645 +#: config/tc-arm.c:12694 msgid "r14 not allowed as first register when second register is omitted" msgstr "" -#: config/tc-arm.c:12745 +#: config/tc-arm.c:12794 msgid "" "This instruction may be unpredictable if executed on M-profile cores with " "interrupts enabled." msgstr "" -#: config/tc-arm.c:12774 config/tc-arm.c:12787 config/tc-arm.c:12823 +#: config/tc-arm.c:12823 config/tc-arm.c:12836 config/tc-arm.c:12872 msgid "Thumb does not support this addressing mode" msgstr "" -#: config/tc-arm.c:12791 +#: config/tc-arm.c:12840 msgid "byte or halfword not valid for base register" msgstr "" -#: config/tc-arm.c:12794 +#: config/tc-arm.c:12843 msgid "r15 based store not allowed" msgstr "" -#: config/tc-arm.c:12796 +#: config/tc-arm.c:12845 msgid "invalid base register for register offset" msgstr "" -#: config/tc-arm.c:12853 +#: config/tc-arm.c:12902 msgid "r12 not allowed here" msgstr "" -#: config/tc-arm.c:12859 +#: config/tc-arm.c:12908 msgid "base register written back, and overlaps one of transfer registers" msgstr "" -#: config/tc-arm.c:12987 +#: config/tc-arm.c:13036 #, 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:13182 +#: config/tc-arm.c:13231 msgid "shifts in CMP/MOV instructions are only supported in unified syntax" msgstr "" -#: config/tc-arm.c:13210 +#: config/tc-arm.c:13259 msgid "only lo regs allowed with immediate" msgstr "" -#: config/tc-arm.c:13387 +#: config/tc-arm.c:13436 msgid "Thumb encoding does not support an immediate here" msgstr "" -#: config/tc-arm.c:13474 +#: config/tc-arm.c:13523 msgid "Thumb-2 MUL must not set flags" msgstr "" -#: config/tc-arm.c:13539 +#: config/tc-arm.c:13588 msgid "Thumb does not support NOP with hints" msgstr "" -#: config/tc-arm.c:13699 config/tc-arm.c:13711 +#: config/tc-arm.c:13748 config/tc-arm.c:13760 msgid "invalid register list to push/pop instruction" msgstr "" -#: config/tc-arm.c:13974 +#: config/tc-arm.c:14023 msgid "source1 and dest must be same register" msgstr "" -#: config/tc-arm.c:13999 +#: config/tc-arm.c:14048 msgid "ror #imm not supported" msgstr "" -#: config/tc-arm.c:14050 +#: config/tc-arm.c:14099 msgid "SMC is not permitted on this architecture" msgstr "" -#: config/tc-arm.c:14216 +#: config/tc-arm.c:14265 msgid "Thumb encoding does not support rotation" msgstr "" -#: config/tc-arm.c:14236 +#: config/tc-arm.c:14285 msgid "instruction requires register index" msgstr "" -#: config/tc-arm.c:14246 +#: config/tc-arm.c:14295 msgid "instruction does not allow shifted index" msgstr "" -#: config/tc-arm.c:14402 config/tc-arm.c:29281 +#: config/tc-arm.c:14451 config/tc-arm.c:29822 msgid "out of range label-relative fixup value" msgstr "" -#: config/tc-arm.c:14726 +#: config/tc-arm.c:14775 msgid "invalid neon suffix for non neon instruction" msgstr "" -#: config/tc-arm.c:15105 config/tc-arm.c:15458 config/tc-arm.c:16941 -#: config/tc-arm.c:17021 config/tc-arm.c:17078 config/tc-arm.c:18965 -#: config/tc-arm.c:21143 config/tc-arm.c:21330 +#: config/tc-arm.c:15170 config/tc-arm.c:15523 config/tc-arm.c:17008 +#: config/tc-arm.c:17088 config/tc-arm.c:17145 config/tc-arm.c:19026 +#: config/tc-arm.c:21202 config/tc-arm.c:21389 msgid "invalid instruction shape" msgstr "" -#: config/tc-arm.c:15357 +#: config/tc-arm.c:15422 msgid "types specified in both the mnemonic and operands" msgstr "" -#: config/tc-arm.c:15394 +#: config/tc-arm.c:15459 msgid "operand types can't be inferred" msgstr "" -#: config/tc-arm.c:15400 +#: config/tc-arm.c:15465 msgid "type specifier has the wrong number of parts" msgstr "" -#: config/tc-arm.c:15486 config/tc-arm.c:19234 config/tc-arm.c:19241 +#: config/tc-arm.c:15551 config/tc-arm.c:19295 config/tc-arm.c:19302 msgid "operand size must match register width" msgstr "" -#: config/tc-arm.c:15508 +#: config/tc-arm.c:15573 msgid "inconsistent types in Neon instruction" msgstr "" -#: config/tc-arm.c:15927 +#: config/tc-arm.c:15994 msgid "Type is not allowed for this instruction" msgstr "" -#: config/tc-arm.c:16002 +#: config/tc-arm.c:16069 msgid "MVE vector or ARM register expected" msgstr "" -#: config/tc-arm.c:16119 +#: config/tc-arm.c:16186 msgid "immediate must be either 1, 2, 4 or 8" msgstr "" -#: config/tc-arm.c:16276 +#: config/tc-arm.c:16343 msgid "immediate operand expected in the range [1,8]" msgstr "" -#: config/tc-arm.c:16277 +#: config/tc-arm.c:16344 msgid "immediate operand expected in the range [1,16]" msgstr "" -#: config/tc-arm.c:16419 +#: config/tc-arm.c:16486 msgid "expected LR" msgstr "" -#: config/tc-arm.c:16918 config/tc-arm.c:16998 config/tc-arm.c:18601 -#: config/tc-arm.c:20432 +#: config/tc-arm.c:16985 config/tc-arm.c:17065 config/tc-arm.c:18662 +#: config/tc-arm.c:20491 msgid "immediate out of range for shift" msgstr "" -#: config/tc-arm.c:17212 +#: config/tc-arm.c:17279 msgid "first and second operands shall be the same register" msgstr "" -#: config/tc-arm.c:17326 config/tc-arm.c:17388 +#: config/tc-arm.c:17393 config/tc-arm.c:17455 msgid "destination register and offset register may not be the same" msgstr "" -#: config/tc-arm.c:17338 config/tc-arm.c:17457 +#: config/tc-arm.c:17405 config/tc-arm.c:17524 msgid "immediate must be a multiple of 4 in the range of +/-[0,508]" msgstr "" -#: config/tc-arm.c:17340 +#: config/tc-arm.c:17407 msgid "immediate must be a multiple of 8 in the range of +/-[0,1016]" msgstr "" -#: config/tc-arm.c:17361 +#: config/tc-arm.c:17428 msgid "can not shift offsets when accessing less than half-word" msgstr "" -#: config/tc-arm.c:17363 +#: config/tc-arm.c:17430 msgid "" "shift immediate must be 1, 2 or 3 for half-word, word or double-word " "accesses respectively" msgstr "" -#: config/tc-arm.c:17450 +#: config/tc-arm.c:17517 msgid "immediate must be in the range of +/-[0,127]" msgstr "" -#: config/tc-arm.c:17453 +#: config/tc-arm.c:17520 msgid "immediate must be a multiple of 2 in the range of +/-[0,254]" msgstr "" -#: config/tc-arm.c:17467 config/tc-arm.c:18299 +#: config/tc-arm.c:17534 config/tc-arm.c:18360 msgid "MVE vector register in the range [Q0..Q7] expected" msgstr "" -#: config/tc-arm.c:17783 config/tc-arm.c:19652 +#: config/tc-arm.c:17850 config/tc-arm.c:19713 msgid "scalar out of range for multiply instruction" msgstr "" -#: config/tc-arm.c:17871 +#: config/tc-arm.c:17938 msgid "index must be in the range 0 to 3" msgstr "" -#: config/tc-arm.c:17874 +#: config/tc-arm.c:17941 msgid "indexed register must be less than 8" msgstr "" -#: config/tc-arm.c:18075 config/tc-arm.c:21394 +#: config/tc-arm.c:18142 config/tc-arm.c:21453 msgid "" "Warning: 32-bit element size and same first and third operand makes " "instruction UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:18440 +#: config/tc-arm.c:18501 msgid "instruction form not available on this architecture." msgstr "" -#: config/tc-arm.c:18443 +#: config/tc-arm.c:18504 msgid "this instruction implies use of ARMv8.1 AdvSIMD." msgstr "" -#: config/tc-arm.c:18550 config/tc-arm.c:18575 +#: config/tc-arm.c:18611 config/tc-arm.c:18636 msgid "immediate out of range for insert" msgstr "" -#: config/tc-arm.c:18722 +#: config/tc-arm.c:18783 msgid "immediate out of range for narrowing operation" msgstr "" -#: config/tc-arm.c:18869 +#: config/tc-arm.c:18930 msgid "operands 0 and 1 must be the same register" msgstr "" -#: config/tc-arm.c:18975 config/tc-arm.c:21242 +#: config/tc-arm.c:19036 config/tc-arm.c:21301 msgid "invalid rounding mode" msgstr "" -#: config/tc-arm.c:19445 +#: config/tc-arm.c:19506 msgid "operand size must be specified for immediate VMOV" msgstr "" -#: config/tc-arm.c:19455 +#: config/tc-arm.c:19516 msgid "immediate has bits set outside the operand size" msgstr "" -#: config/tc-arm.c:19687 +#: config/tc-arm.c:19748 msgid "" "vfmal/vfmsl with FP16 type cannot be conditional, the behaviour is " "UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:19797 +#: config/tc-arm.c:19856 msgid "Instruction form not available on this architecture." msgstr "" -#: config/tc-arm.c:19851 +#: config/tc-arm.c:19910 msgid "" "Warning: 64-bit element size and same destination and source operands makes " "instruction UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:19856 +#: config/tc-arm.c:19915 msgid "elements must be smaller than reversal region" msgstr "" -#: config/tc-arm.c:19948 +#: config/tc-arm.c:20007 msgid "Index one must be [2,3] and index two must be two less than index one." msgstr "" -#: config/tc-arm.c:19951 +#: config/tc-arm.c:20010 msgid "General purpose registers may not be the same" msgstr "" -#: config/tc-arm.c:20149 config/tc-arm.c:20232 +#: config/tc-arm.c:20208 config/tc-arm.c:20291 msgid "bad type for scalar" msgstr "" -#: config/tc-arm.c:20288 +#: config/tc-arm.c:20347 msgid "" "immediate constant is valid both as a bit-pattern and a floating point value " "(using the fp value)" msgstr "" -#: config/tc-arm.c:20340 config/tc-arm.c:20351 +#: config/tc-arm.c:20399 config/tc-arm.c:20410 msgid "VFP registers must be adjacent" msgstr "" -#: config/tc-arm.c:20441 +#: config/tc-arm.c:20500 msgid "invalid suffix" msgstr "" -#: config/tc-arm.c:20593 +#: config/tc-arm.c:20652 msgid "bad list length for table lookup" msgstr "" -#: config/tc-arm.c:20626 +#: config/tc-arm.c:20685 msgid "writeback (!) must be used for VLDMDB and VSTMDB" msgstr "" -#: config/tc-arm.c:20629 config/tc-arm.c:20654 config/tc-arm.c:20675 +#: config/tc-arm.c:20688 config/tc-arm.c:20713 config/tc-arm.c:20734 msgid "register list must contain at least 1 and at most 16 registers" msgstr "" -#: config/tc-arm.c:20697 config/tc-arm.c:20730 +#: config/tc-arm.c:20756 config/tc-arm.c:20789 msgid "Use of PC here is UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:20699 +#: config/tc-arm.c:20758 msgid "Use of PC here is deprecated" msgstr "" -#: config/tc-arm.c:20733 +#: config/tc-arm.c:20792 msgid "instruction does not accept register index" msgstr "" -#: config/tc-arm.c:20736 +#: config/tc-arm.c:20795 msgid "instruction does not accept PC-relative addressing" msgstr "" -#: config/tc-arm.c:20758 config/tc-arm.c:20767 +#: config/tc-arm.c:20817 config/tc-arm.c:20826 msgid "Instruction not permitted on this architecture" msgstr "" -#: config/tc-arm.c:20816 +#: config/tc-arm.c:20875 msgid "bad alignment" msgstr "" -#: config/tc-arm.c:20833 +#: config/tc-arm.c:20892 msgid "bad list type for instruction" msgstr "" -#: config/tc-arm.c:20877 +#: config/tc-arm.c:20936 msgid "unsupported alignment for instruction" msgstr "" -#: config/tc-arm.c:20896 config/tc-arm.c:20990 config/tc-arm.c:21002 -#: config/tc-arm.c:21012 config/tc-arm.c:21026 +#: config/tc-arm.c:20955 config/tc-arm.c:21049 config/tc-arm.c:21061 +#: config/tc-arm.c:21071 config/tc-arm.c:21085 msgid "bad list length" msgstr "" -#: config/tc-arm.c:20901 +#: config/tc-arm.c:20960 msgid "stride of 2 unavailable when element size is 8" msgstr "" -#: config/tc-arm.c:20934 config/tc-arm.c:21010 +#: config/tc-arm.c:20993 config/tc-arm.c:21069 msgid "can't use alignment with this instruction" msgstr "" -#: config/tc-arm.c:21082 +#: config/tc-arm.c:21141 msgid "post-index must be a register" msgstr "" -#: config/tc-arm.c:21084 +#: config/tc-arm.c:21143 msgid "bad register for post-index" msgstr "" -#: config/tc-arm.c:21306 +#: config/tc-arm.c:21365 msgid "scalar out of range" msgstr "" -#: config/tc-arm.c:21439 +#: config/tc-arm.c:21498 msgid "" "Dot Product instructions cannot be conditional, the behaviour is " "UNPREDICTABLE" msgstr "" -#: config/tc-arm.c:21514 config/tc-arm.c:21542 config/tc-arm.c:21777 +#: config/tc-arm.c:21573 config/tc-arm.c:21601 config/tc-arm.c:22283 msgid "index must be 0 or 1" msgstr "" -#: config/tc-arm.c:21517 config/tc-arm.c:21545 config/tc-arm.c:21780 +#: config/tc-arm.c:21576 config/tc-arm.c:21604 config/tc-arm.c:22286 msgid "indexed register must be less than 16" msgstr "" -#: config/tc-arm.c:22130 config/tc-arm.c:22234 +#: config/tc-arm.c:21642 +msgid "Register must be r0-r14 except r13, or APSR_nzcv." +msgstr "" + +#: config/tc-arm.c:21645 +msgid "Register must be an even register between r0-r10." +msgstr "" + +#: config/tc-arm.c:21670 +msgid "CDE Coprocessor must be in range 0-7" +msgstr "" + +#: config/tc-arm.c:21704 +msgid "cx1d requires consecutive destination registers." +msgstr "" + +#: config/tc-arm.c:21734 +msgid "cx2d requires consecutive destination registers." +msgstr "" + +#: config/tc-arm.c:21773 +msgid "cx3d requires consecutive destination registers." +msgstr "" + +#: config/tc-arm.c:21965 +msgid "'q' register must be in range 0-7" +msgstr "" + +#: config/tc-arm.c:21968 +msgid "'d' register must be in range 0-15" +msgstr "" + +#: config/tc-arm.c:21970 +msgid "'s' register must be in range 0-31" +msgstr "" + +#: config/tc-arm.c:22025 +msgid "vcx instructions with Q registers require MVE" +msgstr "" + +#: config/tc-arm.c:22030 +msgid "" +"vcx instructions with S or D registers require either MVE or Armv8-M " +"floating point etension." +msgstr "" + +#: config/tc-arm.c:22046 +msgid "vcx1 with S or D registers takes immediate within 0-2047" +msgstr "" + +#: config/tc-arm.c:22062 +msgid "vcx2 with S or D registers takes immediate within 0-63" +msgstr "" + +#: config/tc-arm.c:22077 +msgid "vcx2 with S or D registers takes immediate within 0-7" +msgstr "" + +#: config/tc-arm.c:22636 config/tc-arm.c:22740 msgid "conditional infixes are deprecated in unified syntax" msgstr "" -#: config/tc-arm.c:22445 +#: config/tc-arm.c:22951 msgid "Warning: conditional outside an IT block for Thumb." msgstr "" -#: config/tc-arm.c:22771 +#: config/tc-arm.c:23278 msgid "Short branches, Undefined, SVC, LDM/STM" msgstr "" -#: config/tc-arm.c:22772 +#: config/tc-arm.c:23279 msgid "Miscellaneous 16-bit instructions" msgstr "" -#: config/tc-arm.c:22773 +#: config/tc-arm.c:23280 msgid "ADR" msgstr "" -#: config/tc-arm.c:22774 +#: config/tc-arm.c:23281 msgid "Literal loads" msgstr "" -#: config/tc-arm.c:22775 +#: config/tc-arm.c:23282 msgid "Hi-register ADD, MOV, CMP, BX, BLX using pc" msgstr "" -#: config/tc-arm.c:22776 +#: config/tc-arm.c:23283 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:22779 +#: config/tc-arm.c:23286 msgid "ADD/SUB sp, sp #imm" msgstr "" -#: config/tc-arm.c:22800 +#: config/tc-arm.c:23308 msgid "" "IT blocks containing 32-bit Thumb instructions are performance deprecated in " "ARMv8-A and ARMv8-R" msgstr "" -#: config/tc-arm.c:22812 +#: config/tc-arm.c:23320 #, 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:22826 +#: config/tc-arm.c:23334 msgid "" "IT blocks containing more than one conditional instruction are performance " "deprecated in ARMv8-A and ARMv8-R" msgstr "" -#: config/tc-arm.c:22944 +#: config/tc-arm.c:23452 #, c-format msgid "bad instruction `%s'" msgstr "" -#: config/tc-arm.c:22950 +#: config/tc-arm.c:23458 msgid "s suffix on comparison instruction is deprecated" msgstr "" -#: config/tc-arm.c:22970 +#: config/tc-arm.c:23478 msgid "SVC is not permitted on this architecture" msgstr "" -#: config/tc-arm.c:22972 +#: config/tc-arm.c:23480 #, c-format msgid "selected processor does not support `%s' in Thumb mode" msgstr "" -#: config/tc-arm.c:22978 +#: config/tc-arm.c:23486 msgid "Thumb does not support conditional execution" msgstr "" -#: config/tc-arm.c:22998 +#: config/tc-arm.c:23506 #, c-format msgid "" "selected processor does not support 32bit wide variant of instruction `%s'" msgstr "" -#: config/tc-arm.c:23001 +#: config/tc-arm.c:23509 #, c-format msgid "selected processor does not support `%s' in Thumb-2 mode" msgstr "" -#: config/tc-arm.c:23026 +#: config/tc-arm.c:23534 #, c-format msgid "cannot honor width suffix -- `%s'" msgstr "" -#: config/tc-arm.c:23068 +#: config/tc-arm.c:23576 #, c-format msgid "selected processor does not support `%s' in ARM mode" msgstr "" -#: config/tc-arm.c:23073 +#: config/tc-arm.c:23581 #, c-format msgid "width suffixes are invalid in ARM mode -- `%s'" msgstr "" -#: config/tc-arm.c:23106 +#: config/tc-arm.c:23614 #, c-format msgid "attempt to use an ARM instruction on a Thumb-only processor -- `%s'" msgstr "" -#: config/tc-arm.c:23124 +#: config/tc-arm.c:23632 #, c-format msgid "section '%s' finished with an open IT block." msgstr "" -#: config/tc-arm.c:23127 +#: config/tc-arm.c:23635 #, c-format msgid "section '%s' finished with an open VPT/VPST block." msgstr "" -#: config/tc-arm.c:23134 +#: config/tc-arm.c:23642 msgid "file finished with an open IT block." msgstr "" -#: config/tc-arm.c:23136 +#: config/tc-arm.c:23644 msgid "file finished with an open VPT/VPST block." msgstr "" -#: config/tc-arm.c:26787 +#: config/tc-arm.c:27325 #, c-format msgid "alignments greater than %d bytes not supported in .text sections." msgstr "" -#: config/tc-arm.c:27054 config/tc-ia64.c:3594 +#: config/tc-arm.c:27592 config/tc-ia64.c:3594 #, c-format msgid "Group section `%s' has no group signature" msgstr "" -#: config/tc-arm.c:27100 +#: config/tc-arm.c:27638 msgid "handlerdata in cantunwind frame" msgstr "" -#: config/tc-arm.c:27117 +#: config/tc-arm.c:27655 msgid "too many unwind opcodes for personality routine 0" msgstr "" -#: config/tc-arm.c:27148 +#: config/tc-arm.c:27686 msgid "attempt to recreate an unwind entry" msgstr "" -#: config/tc-arm.c:27158 +#: config/tc-arm.c:27696 msgid "too many unwind opcodes" msgstr "" -#: config/tc-arm.c:27457 +#: config/tc-arm.c:27995 #, c-format msgid "[-mwarn-syms]: Assignment makes a symbol match an ARM instruction: %s" msgstr "" -#: config/tc-arm.c:27819 config/tc-arm.c:27887 +#: config/tc-arm.c:28357 config/tc-arm.c:28425 #, c-format msgid "symbol %s is in a different section" msgstr "" -#: config/tc-arm.c:27821 config/tc-arm.c:27889 +#: config/tc-arm.c:28359 config/tc-arm.c:28427 #, c-format msgid "symbol %s is weak and may be overridden later" msgstr "" -#: config/tc-arm.c:27866 config/tc-arm.c:28238 +#: config/tc-arm.c:28404 config/tc-arm.c:28776 #, c-format msgid "invalid constant (%lx) after fixup" msgstr "" -#: config/tc-arm.c:27922 +#: config/tc-arm.c:28460 #, c-format msgid "unable to compute ADRL instructions for PC offset of 0x%lx" msgstr "" -#: config/tc-arm.c:27958 config/tc-arm.c:27988 +#: config/tc-arm.c:28496 config/tc-arm.c:28526 msgid "invalid literal constant: pool needs to be closer" msgstr "" -#: config/tc-arm.c:27961 config/tc-arm.c:28010 +#: config/tc-arm.c:28499 config/tc-arm.c:28548 #, c-format msgid "bad immediate value for offset (%ld)" msgstr "" -#: config/tc-arm.c:27991 +#: config/tc-arm.c:28529 #, c-format msgid "bad immediate value for 8-bit offset (%ld)" msgstr "" -#: config/tc-arm.c:28051 +#: config/tc-arm.c:28589 msgid "offset not a multiple of 4" msgstr "" -#: config/tc-arm.c:28254 +#: config/tc-arm.c:28792 msgid "invalid smc expression" msgstr "" -#: config/tc-arm.c:28264 +#: config/tc-arm.c:28802 msgid "invalid hvc expression" msgstr "" -#: config/tc-arm.c:28275 config/tc-arm.c:28284 +#: config/tc-arm.c:28813 config/tc-arm.c:28822 msgid "invalid swi expression" msgstr "" -#: config/tc-arm.c:28294 +#: config/tc-arm.c:28832 msgid "invalid expression in load/store multiple" msgstr "" -#: config/tc-arm.c:28356 +#: config/tc-arm.c:28894 #, c-format msgid "blx to '%s' an ARM ISA state function changed to bl" msgstr "" -#: config/tc-arm.c:28375 +#: config/tc-arm.c:28913 msgid "misaligned branch destination" msgstr "" -#: config/tc-arm.c:28496 +#: config/tc-arm.c:29034 #, c-format msgid "blx to Thumb func '%s' from Thumb ISA state changed to bl" msgstr "" -#: config/tc-arm.c:28545 +#: config/tc-arm.c:29083 msgid "Thumb2 branch out of range" msgstr "" -#: config/tc-arm.c:28597 config/tc-arm.c:28630 +#: config/tc-arm.c:29135 config/tc-arm.c:29168 msgid "Relocation supported only in FDPIC mode" msgstr "" -#: config/tc-arm.c:28660 +#: config/tc-arm.c:29198 msgid "rel31 relocation overflow" msgstr "" -#: config/tc-arm.c:28682 config/tc-arm.c:28688 config/tc-arm.c:28692 -#: config/tc-arm.c:28739 +#: config/tc-arm.c:29220 config/tc-arm.c:29226 config/tc-arm.c:29230 +#: config/tc-arm.c:29277 msgid "co-processor offset out of range" msgstr "" -#: config/tc-arm.c:28756 +#: config/tc-arm.c:29294 #, c-format msgid "invalid offset, target not word aligned (0x%08lX)" msgstr "" -#: config/tc-arm.c:28763 config/tc-arm.c:28772 config/tc-arm.c:28780 -#: config/tc-arm.c:28788 config/tc-arm.c:28796 +#: config/tc-arm.c:29300 +msgid "section does not have enough alignment to ensure safe PC-relative loads" +msgstr "" + +#: config/tc-arm.c:29304 config/tc-arm.c:29313 config/tc-arm.c:29321 +#: config/tc-arm.c:29329 config/tc-arm.c:29337 #, c-format msgid "invalid offset, value too big (0x%08lX)" msgstr "" -#: config/tc-arm.c:28837 +#: config/tc-arm.c:29378 msgid "invalid Hi register with immediate" msgstr "" -#: config/tc-arm.c:28853 +#: config/tc-arm.c:29394 msgid "invalid immediate for stack address calculation" msgstr "" -#: config/tc-arm.c:28872 +#: config/tc-arm.c:29413 msgid "address calculation needs a strongly defined nearby symbol" msgstr "" -#: config/tc-arm.c:28888 +#: config/tc-arm.c:29429 msgid "symbol too far away" msgstr "" -#: config/tc-arm.c:28900 +#: config/tc-arm.c:29441 #, c-format msgid "invalid immediate for address calculation (value = 0x%08lX)" msgstr "" -#: config/tc-arm.c:28930 +#: config/tc-arm.c:29471 #, c-format msgid "invalid immediate: %ld is out of range" msgstr "" -#: config/tc-arm.c:28942 +#: config/tc-arm.c:29483 #, c-format msgid "invalid shift value: %ld" msgstr "" -#: config/tc-arm.c:29012 config/tc-arm.c:29083 +#: config/tc-arm.c:29553 config/tc-arm.c:29624 #, c-format msgid "the offset 0x%08lX is not representable" msgstr "" -#: config/tc-arm.c:29044 +#: config/tc-arm.c:29585 #, c-format msgid "Unable to process relocation for thumb opcode: %lx" msgstr "" -#: config/tc-arm.c:29123 +#: config/tc-arm.c:29664 #, c-format msgid "bad offset 0x%08lX (only 12 bits available for the magnitude)" msgstr "" -#: config/tc-arm.c:29162 +#: config/tc-arm.c:29703 #, c-format msgid "bad offset 0x%08lX (only 8 bits available for the magnitude)" msgstr "" -#: config/tc-arm.c:29202 +#: config/tc-arm.c:29743 #, c-format msgid "bad offset 0x%08lX (must be word-aligned)" msgstr "" -#: config/tc-arm.c:29207 +#: config/tc-arm.c:29748 #, c-format msgid "bad offset 0x%08lX (must be an 8-bit number of words)" msgstr "" -#: config/tc-arm.c:29428 config/tc-score.c:7379 +#: config/tc-arm.c:29969 config/tc-score.c:7361 #, c-format msgid "bad relocation fixup type (%d)" msgstr "" -#: config/tc-arm.c:29546 +#: config/tc-arm.c:30087 msgid "literal referenced across section boundary" msgstr "" -#: config/tc-arm.c:29626 +#: config/tc-arm.c:30167 msgid "internal relocation (type: IMMEDIATE) not fixed up" msgstr "" -#: config/tc-arm.c:29631 +#: config/tc-arm.c:30172 msgid "ADRL used for a symbol not defined in the same file" msgstr "" -#: config/tc-arm.c:29638 +#: config/tc-arm.c:30179 #, c-format msgid "%s used for a symbol not defined in the same file" msgstr "" -#: config/tc-arm.c:29654 +#: config/tc-arm.c:30195 #, c-format msgid "undefined local label `%s'" msgstr "" -#: config/tc-arm.c:29660 +#: config/tc-arm.c:30201 msgid "internal_relocation (type: OFFSET_IMM) not fixed up" msgstr "" -#: config/tc-arm.c:29682 config/tc-cris.c:4006 config/tc-csky.c:877 +#: config/tc-arm.c:30223 config/tc-cris.c:4006 config/tc-csky.c:877 #: config/tc-ft32.c:709 config/tc-mcore.c:1928 config/tc-microblaze.c:1995 -#: config/tc-mmix.c:2894 config/tc-moxie.c:825 config/tc-ns32k.c:2248 -#: config/tc-score.c:7466 +#: config/tc-mmix.c:2894 config/tc-moxie.c:823 config/tc-ns32k.c:2248 +#: config/tc-score.c:7448 msgid "" msgstr "" -#: config/tc-arm.c:30084 +#: config/tc-arm.c:30625 #, c-format msgid "%s: unexpected function type: %d" msgstr "" -#: config/tc-arm.c:30224 +#: config/tc-arm.c:30765 msgid "use of old and new-style options to set CPU type" msgstr "" -#: config/tc-arm.c:30243 +#: config/tc-arm.c:30784 msgid "use of old and new-style options to set FPU type" msgstr "" -#: config/tc-arm.c:30322 +#: config/tc-arm.c:30863 msgid "hard-float conflicts with specified fpu" msgstr "" -#: config/tc-arm.c:30513 +#: config/tc-arm.c:31054 msgid "generate PIC code" msgstr "" -#: config/tc-arm.c:30514 +#: config/tc-arm.c:31055 msgid "assemble Thumb code" msgstr "" -#: config/tc-arm.c:30515 +#: config/tc-arm.c:31056 msgid "support ARM/Thumb interworking" msgstr "" -#: config/tc-arm.c:30517 +#: config/tc-arm.c:31058 msgid "code uses 32-bit program counter" msgstr "" -#: config/tc-arm.c:30518 +#: config/tc-arm.c:31059 msgid "code uses 26-bit program counter" msgstr "" -#: config/tc-arm.c:30519 +#: config/tc-arm.c:31060 msgid "floating point args are in fp regs" msgstr "" -#: config/tc-arm.c:30521 +#: config/tc-arm.c:31062 msgid "re-entrant code" msgstr "" -#: config/tc-arm.c:30522 +#: config/tc-arm.c:31063 msgid "code is ATPCS conformant" msgstr "" #. These are recognized by the assembler, but have no affect on code. -#: config/tc-arm.c:30528 +#: config/tc-arm.c:31069 msgid "use frame pointer" msgstr "" -#: config/tc-arm.c:30529 +#: config/tc-arm.c:31070 msgid "use stack size checking" msgstr "" -#: config/tc-arm.c:30532 +#: config/tc-arm.c:31073 msgid "do not warn on use of deprecated feature" msgstr "" -#: config/tc-arm.c:30535 +#: config/tc-arm.c:31076 msgid "" "warn about performance deprecated IT instructions in ARMv8-A and ARMv8-R" msgstr "" -#: config/tc-arm.c:30539 +#: config/tc-arm.c:31080 msgid "warn about symbols that match instruction names [default]" msgstr "" -#: config/tc-arm.c:30540 +#: config/tc-arm.c:31081 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:30556 config/tc-arm.c:30557 +#: config/tc-arm.c:31097 config/tc-arm.c:31098 msgid "use -mcpu=arm1" msgstr "" -#: config/tc-arm.c:30558 config/tc-arm.c:30559 +#: config/tc-arm.c:31099 config/tc-arm.c:31100 msgid "use -mcpu=arm2" msgstr "" -#: config/tc-arm.c:30560 config/tc-arm.c:30561 +#: config/tc-arm.c:31101 config/tc-arm.c:31102 msgid "use -mcpu=arm250" msgstr "" -#: config/tc-arm.c:30562 config/tc-arm.c:30563 +#: config/tc-arm.c:31103 config/tc-arm.c:31104 msgid "use -mcpu=arm3" msgstr "" -#: config/tc-arm.c:30564 config/tc-arm.c:30565 +#: config/tc-arm.c:31105 config/tc-arm.c:31106 msgid "use -mcpu=arm6" msgstr "" -#: config/tc-arm.c:30566 config/tc-arm.c:30567 +#: config/tc-arm.c:31107 config/tc-arm.c:31108 msgid "use -mcpu=arm600" msgstr "" -#: config/tc-arm.c:30568 config/tc-arm.c:30569 +#: config/tc-arm.c:31109 config/tc-arm.c:31110 msgid "use -mcpu=arm610" msgstr "" -#: config/tc-arm.c:30570 config/tc-arm.c:30571 +#: config/tc-arm.c:31111 config/tc-arm.c:31112 msgid "use -mcpu=arm620" msgstr "" -#: config/tc-arm.c:30572 config/tc-arm.c:30573 +#: config/tc-arm.c:31113 config/tc-arm.c:31114 msgid "use -mcpu=arm7" msgstr "" -#: config/tc-arm.c:30574 config/tc-arm.c:30575 +#: config/tc-arm.c:31115 config/tc-arm.c:31116 msgid "use -mcpu=arm70" msgstr "" -#: config/tc-arm.c:30576 config/tc-arm.c:30577 +#: config/tc-arm.c:31117 config/tc-arm.c:31118 msgid "use -mcpu=arm700" msgstr "" -#: config/tc-arm.c:30578 config/tc-arm.c:30579 +#: config/tc-arm.c:31119 config/tc-arm.c:31120 msgid "use -mcpu=arm700i" msgstr "" -#: config/tc-arm.c:30580 config/tc-arm.c:30581 +#: config/tc-arm.c:31121 config/tc-arm.c:31122 msgid "use -mcpu=arm710" msgstr "" -#: config/tc-arm.c:30582 config/tc-arm.c:30583 +#: config/tc-arm.c:31123 config/tc-arm.c:31124 msgid "use -mcpu=arm710c" msgstr "" -#: config/tc-arm.c:30584 config/tc-arm.c:30585 +#: config/tc-arm.c:31125 config/tc-arm.c:31126 msgid "use -mcpu=arm720" msgstr "" -#: config/tc-arm.c:30586 config/tc-arm.c:30587 +#: config/tc-arm.c:31127 config/tc-arm.c:31128 msgid "use -mcpu=arm7d" msgstr "" -#: config/tc-arm.c:30588 config/tc-arm.c:30589 +#: config/tc-arm.c:31129 config/tc-arm.c:31130 msgid "use -mcpu=arm7di" msgstr "" -#: config/tc-arm.c:30590 config/tc-arm.c:30591 +#: config/tc-arm.c:31131 config/tc-arm.c:31132 msgid "use -mcpu=arm7m" msgstr "" -#: config/tc-arm.c:30592 config/tc-arm.c:30593 +#: config/tc-arm.c:31133 config/tc-arm.c:31134 msgid "use -mcpu=arm7dm" msgstr "" -#: config/tc-arm.c:30594 config/tc-arm.c:30595 +#: config/tc-arm.c:31135 config/tc-arm.c:31136 msgid "use -mcpu=arm7dmi" msgstr "" -#: config/tc-arm.c:30596 config/tc-arm.c:30597 +#: config/tc-arm.c:31137 config/tc-arm.c:31138 msgid "use -mcpu=arm7100" msgstr "" -#: config/tc-arm.c:30598 config/tc-arm.c:30599 +#: config/tc-arm.c:31139 config/tc-arm.c:31140 msgid "use -mcpu=arm7500" msgstr "" -#: config/tc-arm.c:30600 config/tc-arm.c:30601 +#: config/tc-arm.c:31141 config/tc-arm.c:31142 msgid "use -mcpu=arm7500fe" msgstr "" -#: config/tc-arm.c:30602 config/tc-arm.c:30603 config/tc-arm.c:30604 -#: config/tc-arm.c:30605 +#: config/tc-arm.c:31143 config/tc-arm.c:31144 config/tc-arm.c:31145 +#: config/tc-arm.c:31146 msgid "use -mcpu=arm7tdmi" msgstr "" -#: config/tc-arm.c:30606 config/tc-arm.c:30607 +#: config/tc-arm.c:31147 config/tc-arm.c:31148 msgid "use -mcpu=arm710t" msgstr "" -#: config/tc-arm.c:30608 config/tc-arm.c:30609 +#: config/tc-arm.c:31149 config/tc-arm.c:31150 msgid "use -mcpu=arm720t" msgstr "" -#: config/tc-arm.c:30610 config/tc-arm.c:30611 +#: config/tc-arm.c:31151 config/tc-arm.c:31152 msgid "use -mcpu=arm740t" msgstr "" -#: config/tc-arm.c:30612 config/tc-arm.c:30613 +#: config/tc-arm.c:31153 config/tc-arm.c:31154 msgid "use -mcpu=arm8" msgstr "" -#: config/tc-arm.c:30614 config/tc-arm.c:30615 +#: config/tc-arm.c:31155 config/tc-arm.c:31156 msgid "use -mcpu=arm810" msgstr "" -#: config/tc-arm.c:30616 config/tc-arm.c:30617 +#: config/tc-arm.c:31157 config/tc-arm.c:31158 msgid "use -mcpu=arm9" msgstr "" -#: config/tc-arm.c:30618 config/tc-arm.c:30619 +#: config/tc-arm.c:31159 config/tc-arm.c:31160 msgid "use -mcpu=arm9tdmi" msgstr "" -#: config/tc-arm.c:30620 config/tc-arm.c:30621 +#: config/tc-arm.c:31161 config/tc-arm.c:31162 msgid "use -mcpu=arm920" msgstr "" -#: config/tc-arm.c:30622 config/tc-arm.c:30623 +#: config/tc-arm.c:31163 config/tc-arm.c:31164 msgid "use -mcpu=arm940" msgstr "" -#: config/tc-arm.c:30624 +#: config/tc-arm.c:31165 msgid "use -mcpu=strongarm" msgstr "" -#: config/tc-arm.c:30626 +#: config/tc-arm.c:31167 msgid "use -mcpu=strongarm110" msgstr "" -#: config/tc-arm.c:30628 +#: config/tc-arm.c:31169 msgid "use -mcpu=strongarm1100" msgstr "" -#: config/tc-arm.c:30630 +#: config/tc-arm.c:31171 msgid "use -mcpu=strongarm1110" msgstr "" -#: config/tc-arm.c:30631 +#: config/tc-arm.c:31172 msgid "use -mcpu=xscale" msgstr "" -#: config/tc-arm.c:30632 +#: config/tc-arm.c:31173 msgid "use -mcpu=iwmmxt" msgstr "" -#: config/tc-arm.c:30633 +#: config/tc-arm.c:31174 msgid "use -mcpu=all" msgstr "" #. Architecture variants -- don't add any more to this list either. -#: config/tc-arm.c:30636 config/tc-arm.c:30637 +#: config/tc-arm.c:31177 config/tc-arm.c:31178 msgid "use -march=armv2" msgstr "" -#: config/tc-arm.c:30638 config/tc-arm.c:30639 +#: config/tc-arm.c:31179 config/tc-arm.c:31180 msgid "use -march=armv2a" msgstr "" -#: config/tc-arm.c:30640 config/tc-arm.c:30641 +#: config/tc-arm.c:31181 config/tc-arm.c:31182 msgid "use -march=armv3" msgstr "" -#: config/tc-arm.c:30642 config/tc-arm.c:30643 +#: config/tc-arm.c:31183 config/tc-arm.c:31184 msgid "use -march=armv3m" msgstr "" -#: config/tc-arm.c:30644 config/tc-arm.c:30645 +#: config/tc-arm.c:31185 config/tc-arm.c:31186 msgid "use -march=armv4" msgstr "" -#: config/tc-arm.c:30646 config/tc-arm.c:30647 +#: config/tc-arm.c:31187 config/tc-arm.c:31188 msgid "use -march=armv4t" msgstr "" -#: config/tc-arm.c:30648 config/tc-arm.c:30649 +#: config/tc-arm.c:31189 config/tc-arm.c:31190 msgid "use -march=armv5" msgstr "" -#: config/tc-arm.c:30650 config/tc-arm.c:30651 +#: config/tc-arm.c:31191 config/tc-arm.c:31192 msgid "use -march=armv5t" msgstr "" -#: config/tc-arm.c:30652 config/tc-arm.c:30653 +#: config/tc-arm.c:31193 config/tc-arm.c:31194 msgid "use -march=armv5te" msgstr "" #. Floating point variants -- don't add any more to this list either. -#: config/tc-arm.c:30656 +#: config/tc-arm.c:31197 msgid "use -mfpu=fpe" msgstr "" -#: config/tc-arm.c:30657 +#: config/tc-arm.c:31198 msgid "use -mfpu=fpa10" msgstr "" -#: config/tc-arm.c:30658 +#: config/tc-arm.c:31199 msgid "use -mfpu=fpa11" msgstr "" -#: config/tc-arm.c:30660 +#: config/tc-arm.c:31201 msgid "use either -mfpu=softfpa or -mfpu=softvfp" msgstr "" -#: config/tc-arm.c:31706 +#: config/tc-arm.c:32263 msgid "extension does not apply to the base architecture" msgstr "" -#: config/tc-arm.c:31735 +#: config/tc-arm.c:32292 msgid "architectural extensions must be specified in alphabetical order" msgstr "" -#: config/tc-arm.c:31874 config/tc-arm.c:32815 +#: config/tc-arm.c:32431 config/tc-arm.c:33374 #, c-format msgid "unknown floating point format `%s'\n" msgstr "" -#: config/tc-arm.c:31890 +#: config/tc-arm.c:32447 #, c-format msgid "unknown floating point abi `%s'\n" msgstr "" -#: config/tc-arm.c:31906 +#: config/tc-arm.c:32463 #, c-format msgid "unknown EABI `%s'\n" msgstr "" -#: config/tc-arm.c:31926 +#: config/tc-arm.c:32483 #, c-format msgid "unknown implicit IT mode `%s', should be arm, thumb, always, or never." msgstr "" -#: config/tc-arm.c:31949 config/tc-metag.c:5913 +#: config/tc-arm.c:32506 config/tc-metag.c:5913 msgid "\t assemble for FPU architecture " msgstr "" -#: config/tc-arm.c:31951 +#: config/tc-arm.c:32508 msgid "\t assemble for floating point ABI " msgstr "" -#: config/tc-arm.c:31954 +#: config/tc-arm.c:32511 msgid "\t\t assemble for eabi version " msgstr "" -#: config/tc-arm.c:31957 +#: config/tc-arm.c:32514 msgid "\t controls implicit insertion of IT instructions" msgstr "" -#: config/tc-arm.c:31959 +#: config/tc-arm.c:32516 msgid "\t\t\t TI CodeComposer Studio syntax compatibility mode" msgstr "" -#: config/tc-arm.c:31962 +#: config/tc-arm.c:32519 msgid "" "[ieee|alternative]\n" " set the encoding for half precision floating point " @@ -5317,32 +5432,32 @@ msgid "" " or Arm alternative format." msgstr "" -#: config/tc-arm.c:32073 +#: config/tc-arm.c:32630 #, c-format msgid " ARM-specific assembler options:\n" msgstr "" -#: config/tc-arm.c:32093 +#: config/tc-arm.c:32650 #, c-format msgid " --fix-v4bx Allow BX in ARMv4 code\n" msgstr "" -#: config/tc-arm.c:32097 +#: config/tc-arm.c:32654 #, c-format msgid " --fdpic generate an FDPIC object file\n" msgstr "" -#: config/tc-arm.c:32403 +#: config/tc-arm.c:32962 msgid "no architecture contains all the instructions used\n" msgstr "" -#: config/tc-arm.c:32755 +#: config/tc-arm.c:33314 #, c-format msgid "" "architectural extension `%s' is not allowed for the current base architecture" msgstr "" -#: config/tc-arm.c:32778 +#: config/tc-arm.c:33337 #, c-format msgid "unknown architecture extension `%s'\n" msgstr "" @@ -5418,7 +5533,7 @@ msgstr "" msgid "constant out of 8-bit range: %d" msgstr "" -#: config/tc-avr.c:954 config/tc-score.c:1198 read.c:3798 +#: config/tc-avr.c:954 config/tc-score.c:1198 read.c:3799 msgid "illegal expression" msgstr "" @@ -5527,16 +5642,16 @@ msgstr "" #. xgettext:c-format. #: config/tc-avr.c:1853 config/tc-bfin.c:824 config/tc-d10v.c:1462 #: config/tc-d30v.c:1771 config/tc-metag.c:7019 config/tc-mn10200.c:779 -#: config/tc-mn10300.c:2177 config/tc-msp430.c:4644 config/tc-ppc.c:7949 +#: config/tc-mn10300.c:2177 config/tc-msp430.c:4644 config/tc-ppc.c:7962 #: config/tc-spu.c:894 config/tc-spu.c:1105 config/tc-v850.c:3367 -#: config/tc-z80.c:3452 +#: config/tc-z80.c:3811 #, c-format msgid "reloc %d not supported by object file format" msgstr "" #: config/tc-avr.c:1875 config/tc-ft32.c:232 config/tc-h8300.c:1930 -#: config/tc-mcore.c:880 config/tc-microblaze.c:941 config/tc-moxie.c:182 -#: config/tc-pj.c:253 config/tc-sh.c:2196 config/tc-wasm32.c:747 +#: config/tc-mcore.c:880 config/tc-microblaze.c:941 config/tc-moxie.c:180 +#: config/tc-pj.c:253 config/tc-sh.c:2197 config/tc-wasm32.c:747 #: config/tc-z8k.c:1223 msgid "can't find opcode " msgstr "" @@ -5672,7 +5787,7 @@ msgstr "" msgid "convert_frag called" msgstr "" -#: config/tc-bpf.c:286 config/tc-sparc.h:68 config/tc-z80.h:56 +#: config/tc-bpf.c:286 config/tc-sparc.h:68 config/tc-z80.h:55 msgid "estimate_size_before_relax called" msgstr "" @@ -5707,7 +5822,7 @@ msgstr "" msgid "internal error: reloc %d (`%s') not supported by object file format" msgstr "" -#: config/tc-cr16.c:696 config/tc-i386.c:12966 config/tc-s390.c:2121 +#: config/tc-cr16.c:696 config/tc-i386.c:13591 config/tc-s390.c:2121 msgid "GOT already in symbol table" msgstr "" @@ -6120,13 +6235,13 @@ msgstr "" msgid "invalid in --march=: %s" msgstr "" -#: config/tc-cris.c:3958 config/tc-ft32.c:689 config/tc-moxie.c:778 +#: config/tc-cris.c:3958 config/tc-ft32.c:689 config/tc-moxie.c:776 msgid "" "Semantics error. This type of operand can not be relocated, it must be an " "assembly-time constant" msgstr "" -#: config/tc-cris.c:4007 config/tc-ft32.c:710 config/tc-moxie.c:826 +#: config/tc-cris.c:4007 config/tc-ft32.c:710 config/tc-moxie.c:824 #, c-format msgid "Cannot generate relocation type for symbol %s, code %s" msgstr "" @@ -6526,7 +6641,7 @@ msgstr "" msgid "more than 65K literal pools" msgstr "" -#: config/tc-csky.c:1804 read.c:3558 read.c:4867 +#: config/tc-csky.c:1804 read.c:3559 read.c:4868 #, c-format msgid "bad floating literal: %s" msgstr "" @@ -6535,8 +6650,8 @@ msgstr "" msgid "missing ']'" msgstr "" -#: config/tc-csky.c:1951 config/tc-mips.c:14328 config/tc-mips.c:14392 -#: config/tc-mips.c:14403 config/tc-score.c:2690 config/tc-score.c:2736 +#: config/tc-csky.c:1951 config/tc-mips.c:14367 config/tc-mips.c:14431 +#: config/tc-mips.c:14442 config/tc-score.c:2690 config/tc-score.c:2736 msgid "unrecognized opcode" msgstr "" @@ -6557,7 +6672,7 @@ msgstr "" msgid "second operand must be 1" msgstr "" -#: config/tc-csky.c:5505 config/tc-xtensa.c:1974 +#: config/tc-csky.c:5505 config/tc-xtensa.c:1980 msgid "register number out of range" msgstr "" @@ -6849,9 +6964,10 @@ msgstr "" msgid ".endfunc missing for previous .proc" msgstr "" -#: config/tc-dlx.c:295 config/tc-mips.c:3703 config/tc-nios2.c:3637 +#: config/tc-dlx.c:295 config/tc-mips.c:3706 config/tc-nios2.c:3637 #: config/tc-nios2.c:3651 config/tc-nios2.c:3666 config/tc-pru.c:1574 -#: config/tc-pru.c:1588 config/tc-riscv.c:726 +#: config/tc-pru.c:1588 config/tc-riscv.c:279 config/tc-riscv.c:707 +#: config/tc-riscv.c:1055 #, c-format msgid "internal error: can't hash `%s': %s\n" msgstr "" @@ -6859,8 +6975,9 @@ msgstr "" #. Probably a memory allocation problem? Give up now. #: config/tc-dlx.c:302 config/tc-hppa.c:8269 config/tc-nios2.c:1438 #: config/tc-nios2.c:3640 config/tc-nios2.c:3654 config/tc-nios2.c:3669 -#: config/tc-pru.c:1577 config/tc-pru.c:1591 config/tc-riscv.c:729 -#: config/tc-riscv.c:741 config/tc-sparc.c:1008 +#: config/tc-pru.c:1577 config/tc-pru.c:1591 config/tc-riscv.c:282 +#: config/tc-riscv.c:710 config/tc-riscv.c:1058 config/tc-riscv.c:1070 +#: config/tc-sparc.c:1008 msgid "Broken assembler. No assembly attempted." msgstr "" @@ -6930,7 +7047,7 @@ msgstr "" msgid "Invalid expression after # number\n" msgstr "" -#: config/tc-dlx.c:1189 config/tc-m32r.c:2273 config/tc-nds32.c:7879 +#: config/tc-dlx.c:1189 config/tc-m32r.c:2275 config/tc-nds32.c:7879 #: config/tc-sparc.c:4020 #, c-format msgid "internal error: can't export reloc type %d (`%s')" @@ -6966,7 +7083,7 @@ msgstr "" msgid "ldrd/strd requires even:odd register pair" msgstr "" -#: config/tc-epiphany.c:820 config/tc-m32r.c:1784 +#: config/tc-epiphany.c:820 config/tc-m32r.c:1786 msgid "Addend to unresolved symbol not on word boundary." msgstr "" @@ -7125,16 +7242,16 @@ msgstr "" msgid "Relocation %s is not safe for %s" msgstr "" -#: config/tc-ft32.c:146 config/tc-moxie.c:104 +#: config/tc-ft32.c:146 config/tc-moxie.c:102 msgid "expecting register" msgstr "" -#: config/tc-ft32.c:167 config/tc-ft32.c:183 config/tc-moxie.c:123 -#: config/tc-moxie.c:139 +#: config/tc-ft32.c:167 config/tc-ft32.c:183 config/tc-moxie.c:121 +#: config/tc-moxie.c:137 msgid "illegal register number" msgstr "" -#: config/tc-ft32.c:239 config/tc-moxie.c:188 config/tc-pj.c:260 +#: config/tc-ft32.c:239 config/tc-moxie.c:186 config/tc-pj.c:260 #, c-format msgid "unknown opcode %s" msgstr "" @@ -7152,15 +7269,15 @@ msgstr "" msgid "expected comma separator" msgstr "" -#: config/tc-ft32.c:412 config/tc-moxie.c:232 config/tc-moxie.c:292 -#: config/tc-moxie.c:304 config/tc-moxie.c:337 config/tc-moxie.c:369 -#: config/tc-moxie.c:402 config/tc-moxie.c:456 config/tc-moxie.c:510 -#: config/tc-moxie.c:520 config/tc-moxie.c:543 config/tc-moxie.c:556 +#: config/tc-ft32.c:412 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-pj.c:308 msgid "extra stuff on line ignored" msgstr "" -#: config/tc-ft32.c:472 config/tc-lm32.c:236 config/tc-moxie.c:587 +#: config/tc-ft32.c:472 config/tc-lm32.c:236 config/tc-moxie.c:585 #: config/tc-nios2.c:284 msgid "bad call to md_atof" msgstr "" @@ -7314,7 +7431,7 @@ 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:1816 config/tc-mips.c:14344 config/tc-mips.c:14412 +#: config/tc-h8300.c:1816 config/tc-mips.c:14383 config/tc-mips.c:14451 #: config/tc-mmix.c:479 config/tc-mmix.c:491 config/tc-mmix.c:2532 #: config/tc-mmix.c:2556 config/tc-mmix.c:2829 msgid "invalid operands" @@ -7324,7 +7441,7 @@ msgstr "" msgid "operand/size mis-match" msgstr "" -#: config/tc-h8300.c:1947 config/tc-sh.c:2551 config/tc-z8k.c:1233 +#: config/tc-h8300.c:1947 config/tc-sh.c:2552 config/tc-z8k.c:1233 msgid "unknown opcode" msgstr "" @@ -7383,7 +7500,7 @@ msgid "Difference of symbols in different sections is not supported" msgstr "" #: config/tc-h8300.c:2325 config/tc-mcore.c:2204 config/tc-microblaze.c:2481 -#: config/tc-pj.c:491 config/tc-sh.c:3900 config/tc-tic6x.c:4520 +#: config/tc-pj.c:491 config/tc-sh.c:3901 config/tc-tic6x.c:4520 #: config/tc-xc16x.c:315 #, c-format msgid "Cannot represent relocation type %s" @@ -7805,811 +7922,854 @@ msgstr "" msgid "internal error: losing opcode: `%s' \"%s\"\n" msgstr "" -#: config/tc-i386.c:1388 +#: config/tc-i386.c:1446 #, c-format msgid "i386_output_nops called to generate nops of at most %d bytes!" msgstr "" -#: config/tc-i386.c:1597 +#: config/tc-i386.c:1655 #, c-format msgid "invalid single nop size: %d (expect within [0, %d])" msgstr "" -#: config/tc-i386.c:1638 +#: config/tc-i386.c:1696 msgid "jump over nop padding out of range" msgstr "" -#: config/tc-i386.c:2472 +#: config/tc-i386.c:2533 #, c-format msgid "%s shortened to %s" msgstr "" -#: config/tc-i386.c:2563 +#: config/tc-i386.c:2624 msgid "same type of prefix used twice" msgstr "" -#: config/tc-i386.c:2590 +#: config/tc-i386.c:2651 #, c-format msgid "64bit mode not supported on `%s'." msgstr "" -#: config/tc-i386.c:2599 +#: config/tc-i386.c:2660 #, c-format msgid "32bit mode not supported on `%s'." msgstr "" -#: config/tc-i386.c:2639 +#: config/tc-i386.c:2700 msgid "bad argument to syntax directive." msgstr "" -#: config/tc-i386.c:2702 +#: config/tc-i386.c:2763 #, c-format msgid "bad argument to %s_check directive." msgstr "" -#: config/tc-i386.c:2706 +#: config/tc-i386.c:2767 #, c-format msgid "missing argument for %s_check directive" msgstr "" -#: config/tc-i386.c:2746 +#: config/tc-i386.c:2807 #, c-format msgid "`%s' is not supported on `%s'" msgstr "" -#: config/tc-i386.c:2852 +#: config/tc-i386.c:2913 #, c-format msgid "no such architecture: `%s'" msgstr "" -#: config/tc-i386.c:2857 +#: config/tc-i386.c:2918 msgid "missing cpu architecture" msgstr "" -#: config/tc-i386.c:2874 +#: config/tc-i386.c:2935 #, c-format msgid "no such architecture modifier: `%s'" msgstr "" -#: config/tc-i386.c:2889 config/tc-i386.c:2919 +#: config/tc-i386.c:2950 config/tc-i386.c:2980 msgid "Intel L1OM is 64bit ELF only" msgstr "" -#: config/tc-i386.c:2896 config/tc-i386.c:2926 +#: config/tc-i386.c:2957 config/tc-i386.c:2987 msgid "Intel K1OM is 64bit ELF only" msgstr "" -#: config/tc-i386.c:2903 config/tc-i386.c:2940 +#: config/tc-i386.c:2964 config/tc-i386.c:3001 msgid "Intel MCU is 32bit ELF only" msgstr "" -#: config/tc-i386.c:2947 config/tc-i386.c:12855 +#: config/tc-i386.c:3008 config/tc-i386.c:13480 msgid "unknown architecture" msgstr "" -#: config/tc-i386.c:2984 config/tc-i386.c:3006 +#: config/tc-i386.c:3045 config/tc-i386.c:3067 #, c-format msgid "can't hash %s: %s" msgstr "" -#: config/tc-i386.c:3303 +#: config/tc-i386.c:3364 msgid "there are no pc-relative size relocations" msgstr "" -#: config/tc-i386.c:3315 +#: config/tc-i386.c:3376 #, c-format msgid "unknown relocation (%u)" msgstr "" -#: config/tc-i386.c:3317 +#: config/tc-i386.c:3378 #, c-format msgid "%u-byte relocation cannot be applied to %u-byte field" msgstr "" -#: config/tc-i386.c:3321 +#: config/tc-i386.c:3382 msgid "non-pc-relative relocation for pc-relative field" msgstr "" -#: config/tc-i386.c:3326 +#: config/tc-i386.c:3387 msgid "relocated field and relocation type differ in signedness" msgstr "" -#: config/tc-i386.c:3335 +#: config/tc-i386.c:3396 msgid "there are no unsigned pc-relative relocations" msgstr "" -#: config/tc-i386.c:3343 +#: config/tc-i386.c:3404 #, c-format msgid "cannot do %u byte pc-relative relocation" msgstr "" -#: config/tc-i386.c:3360 +#: config/tc-i386.c:3421 #, c-format msgid "cannot do %s %u byte relocation" msgstr "" -#: config/tc-i386.c:3958 config/tc-i386.c:4404 +#: config/tc-i386.c:4017 config/tc-i386.c:4767 #, c-format msgid "invalid instruction `%s' after `%s'" msgstr "" -#: config/tc-i386.c:3964 +#: config/tc-i386.c:4023 #, c-format msgid "missing `lock' with `%s'" msgstr "" -#: config/tc-i386.c:3971 +#: config/tc-i386.c:4030 #, c-format msgid "instruction `%s' after `xacquire' not allowed" msgstr "" -#: config/tc-i386.c:3977 +#: config/tc-i386.c:4036 #, c-format msgid "memory destination needed for instruction `%s' after `xrelease'" msgstr "" -#: config/tc-i386.c:4378 +#: config/tc-i386.c:4529 #, c-format -msgid "SSE instruction `%s' is used" +msgid "`%s` changes flags which would affect control flow behavior" msgstr "" -#: config/tc-i386.c:4392 config/tc-i386.c:6482 +#: config/tc-i386.c:4571 #, c-format -msgid "ambiguous operand size for `%s'" +msgid "indirect `%s` with memory operand should be avoided" msgstr "" -#: config/tc-i386.c:4417 +#: config/tc-i386.c:4582 +#, c-format +msgid "`%s` skips -mlfence-before-indirect-branch on `%s`" +msgstr "" + +#: config/tc-i386.c:4603 +#, c-format +msgid "`%s` skips -mlfence-before-ret on `%s`" +msgstr "" + +#: config/tc-i386.c:4757 +#, c-format +msgid "SSE instruction `%s' is used" +msgstr "" + +#: config/tc-i386.c:4780 msgid "expecting lockable instruction after `lock'" msgstr "" -#: config/tc-i386.c:4424 +#: config/tc-i386.c:4787 #, c-format msgid "data size prefix invalid with `%s'" msgstr "" -#: config/tc-i386.c:4434 +#: config/tc-i386.c:4797 msgid "expecting valid branch instruction after `bnd'" msgstr "" -#: config/tc-i386.c:4438 +#: config/tc-i386.c:4801 msgid "expecting indirect branch instruction after `notrack'" msgstr "" -#: config/tc-i386.c:4443 +#: config/tc-i386.c:4806 msgid "32-bit address isn't allowed in 64-bit MPX instructions." msgstr "" -#: config/tc-i386.c:4447 +#: config/tc-i386.c:4810 msgid "16-bit address isn't allowed in MPX instructions" msgstr "" -#: config/tc-i386.c:4457 +#: config/tc-i386.c:4820 msgid "replacing `rep'/`repe' prefix by `bnd'" msgstr "" #. UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. -#: config/tc-i386.c:4511 +#: config/tc-i386.c:4874 #, c-format msgid "translating to `%sp'" msgstr "" -#: config/tc-i386.c:4518 +#: config/tc-i386.c:4881 #, c-format msgid "instruction `%s' isn't supported outside of protected mode." msgstr "" -#: config/tc-i386.c:4579 +#: config/tc-i386.c:4939 #, c-format msgid "can't encode register '%s%s' in an instruction requiring REX prefix." msgstr "" -#: config/tc-i386.c:4651 config/tc-i386.c:4850 +#: config/tc-i386.c:5015 config/tc-i386.c:5214 #, c-format msgid "no such instruction: `%s'" msgstr "" -#: config/tc-i386.c:4662 config/tc-i386.c:4883 +#: config/tc-i386.c:5026 config/tc-i386.c:5247 #, c-format msgid "invalid character %s in mnemonic" msgstr "" -#: config/tc-i386.c:4669 +#: config/tc-i386.c:5033 msgid "expecting prefix; got nothing" msgstr "" -#: config/tc-i386.c:4671 +#: config/tc-i386.c:5035 msgid "expecting mnemonic; got nothing" msgstr "" -#: config/tc-i386.c:4686 config/tc-i386.c:4905 +#: config/tc-i386.c:5050 config/tc-i386.c:5269 #, c-format msgid "`%s' is only supported in 64-bit mode" msgstr "" -#: config/tc-i386.c:4687 config/tc-i386.c:4904 +#: config/tc-i386.c:5051 config/tc-i386.c:5268 #, c-format msgid "`%s' is not supported in 64-bit mode" msgstr "" -#: config/tc-i386.c:4699 +#: config/tc-i386.c:5063 #, c-format msgid "redundant %s prefix" msgstr "" -#: config/tc-i386.c:4896 +#: config/tc-i386.c:5260 msgid "use .code16 to ensure correct addressing mode" msgstr "" -#: config/tc-i386.c:4908 +#: config/tc-i386.c:5272 #, c-format msgid "`%s' is not supported on `%s%s'" msgstr "" -#: config/tc-i386.c:4934 +#: config/tc-i386.c:5298 #, c-format msgid "invalid character %s before operand %d" msgstr "" -#: config/tc-i386.c:4948 +#: config/tc-i386.c:5312 #, c-format msgid "unbalanced parenthesis in operand %d." msgstr "" -#: config/tc-i386.c:4951 +#: config/tc-i386.c:5315 #, c-format msgid "unbalanced brackets in operand %d." msgstr "" -#: config/tc-i386.c:4960 +#: config/tc-i386.c:5324 #, c-format msgid "invalid character %s in operand %d" msgstr "" -#: config/tc-i386.c:4987 +#: config/tc-i386.c:5351 #, c-format msgid "spurious operands; (%d operands/instruction max)" msgstr "" -#: config/tc-i386.c:4997 config/tc-i386.c:10624 +#: config/tc-i386.c:5361 config/tc-i386.c:11153 #, c-format msgid "too many memory references for `%s'" msgstr "" -#: config/tc-i386.c:5018 +#: config/tc-i386.c:5382 msgid "expecting operand after ','; got nothing" msgstr "" -#: config/tc-i386.c:5023 +#: config/tc-i386.c:5387 msgid "expecting operand before ','; got nothing" msgstr "" -#: config/tc-i386.c:5453 +#: config/tc-i386.c:5816 msgid "mask, index, and destination registers should be distinct" msgstr "" -#: config/tc-i386.c:5470 +#: config/tc-i386.c:5833 msgid "index and destination registers should be distinct" msgstr "" -#: config/tc-i386.c:6144 +#: config/tc-i386.c:6526 msgid "operand size mismatch" msgstr "" -#: config/tc-i386.c:6147 +#: config/tc-i386.c:6529 msgid "operand type mismatch" msgstr "" -#: config/tc-i386.c:6150 +#: config/tc-i386.c:6532 msgid "register type mismatch" msgstr "" -#: config/tc-i386.c:6153 +#: config/tc-i386.c:6535 msgid "number of operands mismatch" msgstr "" -#: config/tc-i386.c:6156 +#: config/tc-i386.c:6538 msgid "invalid instruction suffix" msgstr "" -#: config/tc-i386.c:6159 +#: config/tc-i386.c:6541 msgid "constant doesn't fit in 4 bits" msgstr "" -#: config/tc-i386.c:6162 +#: config/tc-i386.c:6544 msgid "unsupported with Intel mnemonic" msgstr "" -#: config/tc-i386.c:6165 +#: config/tc-i386.c:6547 msgid "unsupported syntax" msgstr "" -#: config/tc-i386.c:6168 +#: config/tc-i386.c:6550 #, c-format msgid "unsupported instruction `%s'" msgstr "" -#: config/tc-i386.c:6172 +#: config/tc-i386.c:6554 msgid "invalid VSIB address" msgstr "" -#: config/tc-i386.c:6175 +#: config/tc-i386.c:6557 msgid "mask, index, and destination registers must be distinct" msgstr "" -#: config/tc-i386.c:6178 +#: config/tc-i386.c:6560 msgid "unsupported vector index register" msgstr "" -#: config/tc-i386.c:6181 +#: config/tc-i386.c:6563 msgid "unsupported broadcast" msgstr "" -#: config/tc-i386.c:6184 +#: config/tc-i386.c:6566 msgid "broadcast is needed for operand of such type" msgstr "" -#: config/tc-i386.c:6187 +#: config/tc-i386.c:6569 msgid "unsupported masking" msgstr "" -#: config/tc-i386.c:6190 +#: config/tc-i386.c:6572 msgid "mask not on destination operand" msgstr "" -#: config/tc-i386.c:6193 +#: config/tc-i386.c:6575 msgid "default mask isn't allowed" msgstr "" -#: config/tc-i386.c:6196 +#: config/tc-i386.c:6578 msgid "unsupported static rounding/sae" msgstr "" -#: config/tc-i386.c:6200 +#: config/tc-i386.c:6582 msgid "RC/SAE operand must precede immediate operands" msgstr "" -#: config/tc-i386.c:6202 +#: config/tc-i386.c:6584 msgid "RC/SAE operand must follow immediate operands" msgstr "" -#: config/tc-i386.c:6205 config/tc-metag.c:4789 config/tc-metag.c:5530 +#: config/tc-i386.c:6587 config/tc-metag.c:4789 config/tc-metag.c:5530 #: config/tc-metag.c:5552 msgid "invalid register operand" msgstr "" -#: config/tc-i386.c:6208 +#: config/tc-i386.c:6590 #, c-format msgid "%s for `%s'" msgstr "" -#: config/tc-i386.c:6217 +#: config/tc-i386.c:6599 #, 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:6224 +#: config/tc-i386.c:6606 #, c-format msgid "stand-alone `%s' prefix" msgstr "" -#: config/tc-i386.c:6266 +#: config/tc-i386.c:6648 #, c-format msgid "`%s' operand %u must use `%ses' segment" msgstr "" -#. We have to know the operand size for crc32. -#: config/tc-i386.c:6324 -#, c-format -msgid "ambiguous memory operand size for `%s`" -msgstr "" - -#: config/tc-i386.c:6413 +#: config/tc-i386.c:6792 msgid "generating 16-bit `iret' for .code16gcc directive" msgstr "" -#: config/tc-i386.c:6417 +#: config/tc-i386.c:6796 #, c-format msgid "generating 32-bit `%s', unlike earlier gas versions" msgstr "" -#: config/tc-i386.c:6455 +#: config/tc-i386.c:6909 +#, c-format +msgid "ambiguous operand size for `%s'" +msgstr "" + +#: config/tc-i386.c:6914 +#, c-format msgid "" -"no instruction mnemonic suffix given and no register operands; can't size " -"instruction" +"no instruction mnemonic suffix given and no register operands; can't size `" +"%s'" msgstr "" -#: config/tc-i386.c:6593 +#: config/tc-i386.c:6919 #, c-format -msgid "invalid register operand size for `%s'" +msgid "%s; using default for `%s'" +msgstr "" + +#: config/tc-i386.c:6921 +msgid "ambiguous operand size" +msgstr "" + +#: config/tc-i386.c:6922 +msgid "no instruction mnemonic suffix given and no register operands" msgstr "" -#: config/tc-i386.c:6638 config/tc-i386.c:6710 config/tc-i386.c:6832 +#: config/tc-i386.c:7048 #, c-format -msgid "using `%s%s' instead of `%s%s' due to `%c' suffix" +msgid "16-bit addressing unavailable for `%s'" +msgstr "" + +#: config/tc-i386.c:7094 +#, c-format +msgid "invalid register operand size for `%s'" msgstr "" -#: config/tc-i386.c:6658 config/tc-i386.c:6686 config/tc-i386.c:6757 -#: config/tc-i386.c:6807 +#: config/tc-i386.c:7139 config/tc-i386.c:7167 config/tc-i386.c:7226 +#: config/tc-i386.c:7276 #, c-format msgid "`%s%s' not allowed with `%s%c'" msgstr "" -#: config/tc-i386.c:6704 config/tc-i386.c:6731 config/tc-i386.c:6782 -#: config/tc-i386.c:6826 +#: config/tc-i386.c:7180 config/tc-i386.c:7200 config/tc-i386.c:7251 +#: config/tc-i386.c:7290 #, c-format msgid "incorrect register `%s%s' used with `%c' suffix" msgstr "" -#: config/tc-i386.c:6895 +#: config/tc-i386.c:7352 msgid "no instruction mnemonic suffix given; can't determine immediate size" msgstr "" -#: config/tc-i386.c:7047 +#: config/tc-i386.c:7504 #, c-format msgid "" "source register `%s%s' implicitly denotes `%s%.3s%u' to `%s%.3s%u' source " "group in `%s'" msgstr "" -#: config/tc-i386.c:7091 +#: config/tc-i386.c:7548 #, c-format msgid "you can't `%s %s%s'" msgstr "" #. Reversed arguments on faddp, fsubp, etc. -#: config/tc-i386.c:7129 +#: config/tc-i386.c:7586 #, c-format msgid "translating to `%s %s%s,%s%s'" msgstr "" #. Extraneous `l' suffix on fp insn. -#: config/tc-i386.c:7136 +#: config/tc-i386.c:7593 #, c-format msgid "translating to `%s %s%s'" msgstr "" -#: config/tc-i386.c:7145 +#: config/tc-i386.c:7604 #, c-format msgid "segment override on `%s' is ineffectual" msgstr "" -#: config/tc-i386.c:7912 config/tc-i386.c:8055 config/tc-i386.c:8116 +#: config/tc-i386.c:8379 config/tc-i386.c:8522 config/tc-i386.c:8583 #, c-format msgid "skipping prefixes on `%s'" msgstr "" -#: config/tc-i386.c:8136 +#: config/tc-i386.c:8603 msgid "16-bit jump out of range" msgstr "" -#: config/tc-i386.c:8145 +#: config/tc-i386.c:8612 #, c-format msgid "can't handle non absolute segment in `%s'" msgstr "" -#: config/tc-i386.c:8357 config/tc-i386.c:8389 config/tc-i386.c:8475 +#: config/tc-i386.c:8854 config/tc-i386.c:8886 config/tc-i386.c:8976 #, c-format msgid "`%s` skips -malign-branch-boundary on `%s`" msgstr "" -#: config/tc-i386.c:8707 +#: config/tc-i386.c:9217 msgid "pseudo prefix without instruction" msgstr "" -#: config/tc-i386.c:8823 +#: config/tc-i386.c:9336 #, c-format msgid "instruction length of %u bytes exceeds the limit of 15" msgstr "" -#: config/tc-i386.c:9404 config/tc-i386.c:9506 +#: config/tc-i386.c:9918 config/tc-i386.c:10020 #, c-format msgid "@%s reloc is not supported with %d-bit output format" msgstr "" -#: config/tc-i386.c:9557 +#: config/tc-i386.c:10071 #, c-format msgid "missing or invalid expression `%s'" msgstr "" -#: config/tc-i386.c:9566 +#: config/tc-i386.c:10080 #, c-format msgid "invalid PLT expression `%s'" msgstr "" -#: config/tc-i386.c:9652 +#: config/tc-i386.c:10166 #, c-format msgid "Unsupported broadcast: `%s'" msgstr "" -#: config/tc-i386.c:9668 +#: config/tc-i386.c:10182 #, c-format msgid "`%s%s' can't be used for write mask" msgstr "" -#: config/tc-i386.c:9691 +#: config/tc-i386.c:10205 #, c-format msgid "invalid write mask `%s'" msgstr "" -#: config/tc-i386.c:9713 config/tc-i386.c:10403 +#: config/tc-i386.c:10227 config/tc-i386.c:10932 #, c-format msgid "duplicated `%s'" msgstr "" -#: config/tc-i386.c:9723 +#: config/tc-i386.c:10237 #, c-format msgid "invalid zeroing-masking `%s'" msgstr "" -#: config/tc-i386.c:9736 +#: config/tc-i386.c:10250 #, c-format msgid "missing `}' in `%s'" msgstr "" #. We don't know this one. -#: config/tc-i386.c:9750 +#: config/tc-i386.c:10264 #, c-format msgid "unknown vector operation: `%s'" msgstr "" -#: config/tc-i386.c:9756 +#: config/tc-i386.c:10270 msgid "zeroing-masking only allowed with write mask" msgstr "" -#: config/tc-i386.c:9776 +#: config/tc-i386.c:10290 #, c-format msgid "at most %d immediate operands are allowed" msgstr "" -#: config/tc-i386.c:9808 config/tc-i386.c:10076 +#: config/tc-i386.c:10322 config/tc-i386.c:10590 #, c-format msgid "junk `%s' after expression" msgstr "" -#: config/tc-i386.c:9829 +#: config/tc-i386.c:10343 #, c-format msgid "missing or invalid immediate expression `%s'" msgstr "" -#: config/tc-i386.c:9852 config/tc-i386.c:10166 +#: config/tc-i386.c:10366 config/tc-i386.c:10680 #, c-format msgid "unimplemented segment %s in operand" msgstr "" -#: config/tc-i386.c:9859 +#: config/tc-i386.c:10373 #, c-format msgid "illegal immediate register operand %s" msgstr "" -#: config/tc-i386.c:9907 +#: config/tc-i386.c:10421 #, c-format msgid "expecting scale factor of 1, 2, 4, or 8: got `%s'" msgstr "" -#: config/tc-i386.c:9916 +#: config/tc-i386.c:10430 #, c-format msgid "scale factor of %d without an index register" msgstr "" -#: config/tc-i386.c:9938 +#: config/tc-i386.c:10452 #, c-format msgid "at most %d displacement operands are allowed" msgstr "" -#: config/tc-i386.c:10132 +#: config/tc-i386.c:10646 #, c-format msgid "missing or invalid displacement expression `%s'" msgstr "" -#: config/tc-i386.c:10149 +#: config/tc-i386.c:10663 #, c-format msgid "0x%lx out range of signed 32bit displacement" msgstr "" -#: config/tc-i386.c:10304 +#: config/tc-i386.c:10833 #, c-format msgid "`%s' is not valid here (expected `%c%s%s%c')" msgstr "" -#: config/tc-i386.c:10316 +#: config/tc-i386.c:10845 #, c-format msgid "`%s' is not a valid %s expression" msgstr "" -#: config/tc-i386.c:10348 +#: config/tc-i386.c:10877 #, c-format msgid "`%s' cannot be used here" msgstr "" -#: config/tc-i386.c:10355 +#: config/tc-i386.c:10884 msgid "register scaling is being ignored here" msgstr "" -#: config/tc-i386.c:10416 +#: config/tc-i386.c:10945 #, c-format msgid "Missing '}': '%s'" msgstr "" -#: config/tc-i386.c:10422 +#: config/tc-i386.c:10951 #, c-format msgid "Junk after '}': '%s'" msgstr "" -#: config/tc-i386.c:10548 +#: config/tc-i386.c:11077 #, c-format msgid "bad memory operand `%s'" msgstr "" -#: config/tc-i386.c:10572 +#: config/tc-i386.c:11101 #, c-format msgid "junk `%s' after register" msgstr "" -#: config/tc-i386.c:10585 config/tc-i386.c:10722 config/tc-i386.c:10766 +#: config/tc-i386.c:11114 config/tc-i386.c:11251 config/tc-i386.c:11295 #, c-format msgid "bad register name `%s'" msgstr "" -#: config/tc-i386.c:10593 +#: config/tc-i386.c:11122 msgid "immediate operand illegal with absolute jump" msgstr "" -#: config/tc-i386.c:10711 +#: config/tc-i386.c:11240 #, c-format msgid "expecting `,' or `)' after index register in `%s'" msgstr "" -#: config/tc-i386.c:10739 +#: config/tc-i386.c:11268 #, c-format msgid "expecting `)' after scale factor in `%s'" msgstr "" -#: config/tc-i386.c:10747 +#: config/tc-i386.c:11276 #, c-format msgid "expecting index register or scale factor after `,'; got '%c'" msgstr "" -#: config/tc-i386.c:10755 +#: config/tc-i386.c:11284 #, c-format msgid "expecting `,' or `)' after base register in `%s'" msgstr "" #. It's not a memory operand; argh! -#: config/tc-i386.c:10804 +#: config/tc-i386.c:11333 #, c-format msgid "invalid char %s beginning operand %d `%s'" msgstr "" -#: config/tc-i386.c:11418 +#: config/tc-i386.c:11986 #, c-format msgid "%s:%u: add %d%s at 0x%llx to align %s within %d-byte boundary\n" msgstr "" -#: config/tc-i386.c:11421 +#: config/tc-i386.c:11989 #, 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:11427 +#: config/tc-i386.c:11995 #, 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:11494 +#: config/tc-i386.c:12062 msgid "long jump required" msgstr "" -#: config/tc-i386.c:11549 +#: config/tc-i386.c:12117 msgid "jump target out of range" msgstr "" -#: config/tc-i386.c:12127 +#: config/tc-i386.c:12702 #, c-format msgid "invalid -mx86-used-note= option: `%s'" msgstr "" -#: config/tc-i386.c:12150 +#: config/tc-i386.c:12725 msgid "no compiled in support for x86_64" msgstr "" -#: config/tc-i386.c:12170 +#: config/tc-i386.c:12745 msgid "no compiled in support for 32bit x86_64" msgstr "" -#: config/tc-i386.c:12174 +#: config/tc-i386.c:12749 msgid "32bit x86_64 is only supported for ELF" msgstr "" -#: config/tc-i386.c:12208 config/tc-i386.c:12296 +#: config/tc-i386.c:12783 config/tc-i386.c:12871 #, c-format msgid "invalid -march= option: `%s'" msgstr "" -#: config/tc-i386.c:12306 config/tc-i386.c:12318 +#: config/tc-i386.c:12881 config/tc-i386.c:12893 #, c-format msgid "invalid -mtune= option: `%s'" msgstr "" -#: config/tc-i386.c:12327 +#: config/tc-i386.c:12902 #, c-format msgid "invalid -mmnemonic= option: `%s'" msgstr "" -#: config/tc-i386.c:12336 +#: config/tc-i386.c:12911 #, c-format msgid "invalid -msyntax= option: `%s'" msgstr "" -#: config/tc-i386.c:12359 +#: config/tc-i386.c:12934 #, c-format msgid "invalid -msse-check= option: `%s'" msgstr "" -#: config/tc-i386.c:12370 +#: config/tc-i386.c:12945 #, c-format msgid "invalid -moperand-check= option: `%s'" msgstr "" -#: config/tc-i386.c:12379 +#: config/tc-i386.c:12954 #, c-format msgid "invalid -mavxscalar= option: `%s'" msgstr "" -#: config/tc-i386.c:12388 +#: config/tc-i386.c:12963 #, c-format msgid "invalid -mvexwig= option: `%s'" msgstr "" -#: config/tc-i386.c:12403 +#: config/tc-i386.c:12978 #, c-format msgid "invalid -mevexlig= option: `%s'" msgstr "" -#: config/tc-i386.c:12416 +#: config/tc-i386.c:12991 #, c-format msgid "invalid -mevexrcig= option: `%s'" msgstr "" -#: config/tc-i386.c:12425 +#: config/tc-i386.c:13000 #, c-format msgid "invalid -mevexwig= option: `%s'" msgstr "" -#: config/tc-i386.c:12440 +#: config/tc-i386.c:13015 #, c-format msgid "invalid -momit-lock-prefix= option: `%s'" msgstr "" -#: config/tc-i386.c:12449 +#: config/tc-i386.c:13024 #, c-format msgid "invalid -mfence-as-lock-add= option: `%s'" msgstr "" -#: config/tc-i386.c:12458 +#: config/tc-i386.c:13033 +#, c-format +msgid "invalid -mlfence-after-load= option: `%s'" +msgstr "" + +#: config/tc-i386.c:13050 +#, c-format +msgid "invalid -mlfence-before-indirect-branch= option: `%s'" +msgstr "" + +#: config/tc-i386.c:13064 +#, c-format +msgid "invalid -mlfence-before-ret= option: `%s'" +msgstr "" + +#: config/tc-i386.c:13074 #, c-format msgid "invalid -mrelax-relocations= option: `%s'" msgstr "" -#: config/tc-i386.c:12487 +#: config/tc-i386.c:13103 #, c-format msgid "invalid -malign-branch-boundary= value: %s" msgstr "" -#: config/tc-i386.c:12501 +#: config/tc-i386.c:13117 #, c-format msgid "invalid -malign-branch-prefix-size= value: %s" msgstr "" -#: config/tc-i386.c:12528 +#: config/tc-i386.c:13144 #, c-format msgid "invalid -malign-branch= option: `%s'" msgstr "" -#: config/tc-i386.c:12684 +#: config/tc-i386.c:13300 #, c-format msgid "" " -Qy, -Qn ignored\n" @@ -8617,34 +8777,34 @@ msgid "" " -k ignored\n" msgstr "" -#: config/tc-i386.c:12689 +#: config/tc-i386.c:13305 #, c-format msgid "" " -n Do not optimize code alignment\n" " -q quieten some warnings\n" msgstr "" -#: config/tc-i386.c:12693 +#: config/tc-i386.c:13309 #, c-format msgid " -s ignored\n" msgstr "" -#: config/tc-i386.c:12698 +#: config/tc-i386.c:13314 #, c-format msgid " --32/--64/--x32 generate 32bit/64bit/x32 code\n" msgstr "" -#: config/tc-i386.c:12702 +#: config/tc-i386.c:13318 #, c-format msgid " --divide do not treat `/' as a comment character\n" msgstr "" -#: config/tc-i386.c:12705 +#: config/tc-i386.c:13321 #, c-format msgid " --divide ignored\n" msgstr "" -#: config/tc-i386.c:12708 +#: config/tc-i386.c:13324 #, c-format msgid "" " -march=CPU[,+EXTENSION...]\n" @@ -8652,36 +8812,36 @@ msgid "" "of:\n" msgstr "" -#: config/tc-i386.c:12712 +#: config/tc-i386.c:13328 #, c-format msgid " EXTENSION is combination of:\n" msgstr "" -#: config/tc-i386.c:12715 +#: config/tc-i386.c:13331 #, c-format msgid " -mtune=CPU optimize for CPU, CPU is one of:\n" msgstr "" -#: config/tc-i386.c:12718 +#: config/tc-i386.c:13334 #, c-format msgid " -msse2avx encode SSE instructions with VEX prefix\n" msgstr "" -#: config/tc-i386.c:12720 +#: config/tc-i386.c:13336 #, c-format msgid "" " -msse-check=[none|error|warning] (default: warning)\n" " check SSE instructions\n" msgstr "" -#: config/tc-i386.c:12723 +#: config/tc-i386.c:13339 #, c-format msgid "" " -moperand-check=[none|error|warning] (default: warning)\n" " check operand combinations for validity\n" msgstr "" -#: config/tc-i386.c:12726 +#: config/tc-i386.c:13342 #, c-format msgid "" " -mavxscalar=[128|256] (default: 128)\n" @@ -8690,7 +8850,7 @@ msgid "" " length\n" msgstr "" -#: config/tc-i386.c:12730 +#: config/tc-i386.c:13346 #, c-format msgid "" " -mvexwig=[0|1] (default: 0)\n" @@ -8698,7 +8858,7 @@ msgid "" " for VEX.W bit ignored instructions\n" msgstr "" -#: config/tc-i386.c:12734 +#: config/tc-i386.c:13350 #, c-format msgid "" " -mevexlig=[128|256|512] (default: 128)\n" @@ -8707,7 +8867,7 @@ msgid "" " length\n" msgstr "" -#: config/tc-i386.c:12738 +#: config/tc-i386.c:13354 #, c-format msgid "" " -mevexwig=[0|1] (default: 0)\n" @@ -8716,7 +8876,7 @@ msgid "" " for EVEX.W bit ignored instructions\n" msgstr "" -#: config/tc-i386.c:12742 +#: config/tc-i386.c:13358 #, c-format msgid "" " -mevexrcig=[rne|rd|ru|rz] (default: rne)\n" @@ -8725,77 +8885,77 @@ msgid "" " for SAE-only ignored instructions\n" msgstr "" -#: config/tc-i386.c:12746 +#: config/tc-i386.c:13362 #, c-format msgid " -mmnemonic=[att|intel] " msgstr "" -#: config/tc-i386.c:12749 +#: config/tc-i386.c:13365 #, c-format msgid "(default: att)\n" msgstr "" -#: config/tc-i386.c:12751 +#: config/tc-i386.c:13367 #, c-format msgid "(default: intel)\n" msgstr "" -#: config/tc-i386.c:12752 +#: config/tc-i386.c:13368 #, c-format msgid " use AT&T/Intel mnemonic\n" msgstr "" -#: config/tc-i386.c:12754 +#: config/tc-i386.c:13370 #, c-format msgid "" " -msyntax=[att|intel] (default: att)\n" " use AT&T/Intel syntax\n" msgstr "" -#: config/tc-i386.c:12757 +#: config/tc-i386.c:13373 #, c-format msgid " -mindex-reg support pseudo index registers\n" msgstr "" -#: config/tc-i386.c:12759 +#: config/tc-i386.c:13375 #, c-format msgid " -mnaked-reg don't require `%%' prefix for registers\n" msgstr "" -#: config/tc-i386.c:12761 +#: config/tc-i386.c:13377 #, c-format msgid " -madd-bnd-prefix add BND prefix for all valid branches\n" msgstr "" -#: config/tc-i386.c:12764 +#: config/tc-i386.c:13380 #, c-format msgid " -mshared disable branch optimization for shared code\n" msgstr "" -#: config/tc-i386.c:12766 +#: config/tc-i386.c:13382 #, c-format msgid " -mx86-used-note=[no|yes] " msgstr "" -#: config/tc-i386.c:12772 +#: config/tc-i386.c:13388 #, c-format msgid "" " generate x86 used ISA and feature properties\n" msgstr "" -#: config/tc-i386.c:12776 +#: config/tc-i386.c:13392 #, c-format msgid " -mbig-obj generate big object files\n" msgstr "" -#: config/tc-i386.c:12779 +#: config/tc-i386.c:13395 #, c-format msgid "" " -momit-lock-prefix=[no|yes] (default: no)\n" " strip all lock prefixes\n" msgstr "" -#: config/tc-i386.c:12782 +#: config/tc-i386.c:13398 #, c-format msgid "" " -mfence-as-lock-add=[no|yes] (default: no)\n" @@ -8803,24 +8963,24 @@ msgid "" " lock addl $0x0, (%%{re}sp)\n" msgstr "" -#: config/tc-i386.c:12786 +#: config/tc-i386.c:13402 #, c-format msgid " -mrelax-relocations=[no|yes] " msgstr "" -#: config/tc-i386.c:12792 +#: config/tc-i386.c:13408 #, c-format msgid " generate relax relocations\n" msgstr "" -#: config/tc-i386.c:12794 +#: config/tc-i386.c:13410 #, c-format msgid "" " -malign-branch-boundary=NUM (default: 0)\n" " align branches within NUM byte boundary\n" msgstr "" -#: config/tc-i386.c:12797 +#: config/tc-i386.c:13413 #, c-format msgid "" " -malign-branch=TYPE[+TYPE...] (default: jcc+fused+jmp)\n" @@ -8830,80 +8990,116 @@ msgid "" " specify types of branches to align\n" msgstr "" -#: config/tc-i386.c:12802 +#: config/tc-i386.c:13418 #, c-format msgid "" " -malign-branch-prefix-size=NUM (default: 5)\n" " align branches with NUM prefixes per instruction\n" msgstr "" -#: config/tc-i386.c:12805 +#: config/tc-i386.c:13421 #, c-format msgid "" " -mbranches-within-32B-boundaries\n" " align branches within 32 byte boundary\n" msgstr "" -#: config/tc-i386.c:12808 +#: config/tc-i386.c:13424 +#, c-format +msgid "" +" -mlfence-after-load=[no|yes] (default: no)\n" +" generate lfence after load\n" +msgstr "" + +#: config/tc-i386.c:13427 +#, c-format +msgid "" +" -mlfence-before-indirect-branch=[none|all|register|memory] (default: " +"none)\n" +" generate lfence before indirect near branch\n" +msgstr "" + +#: config/tc-i386.c:13430 +#, c-format +msgid "" +" -mlfence-before-ret=[none|or|not|shl|yes] (default: none)\n" +" generate lfence before ret\n" +msgstr "" + +#: config/tc-i386.c:13433 #, c-format msgid " -mamd64 accept only AMD64 ISA [default]\n" msgstr "" -#: config/tc-i386.c:12810 +#: config/tc-i386.c:13435 #, c-format msgid " -mintel64 accept only Intel64 ISA\n" msgstr "" -#: config/tc-i386.c:12851 +#: config/tc-i386.c:13476 #, c-format msgid "Intel MCU doesn't support `%s' architecture" msgstr "" -#: config/tc-i386.c:12917 +#: config/tc-i386.c:13542 msgid "Intel L1OM is 64bit only" msgstr "" -#: config/tc-i386.c:12923 +#: config/tc-i386.c:13548 msgid "Intel K1OM is 64bit only" msgstr "" -#: config/tc-i386.c:12929 +#: config/tc-i386.c:13554 msgid "Intel MCU is 32bit only" msgstr "" -#: config/tc-i386.c:13101 +#: config/tc-i386.c:13666 +msgid "" +"constant directive skips -mlfence-before-ret and -mlfence-before-indirect-" +"branch" +msgstr "" + +#: config/tc-i386.c:13669 +msgid "constant directive skips -mlfence-before-ret" +msgstr "" + +#: config/tc-i386.c:13672 +msgid "constant directive skips -mlfence-before-indirect-branch" +msgstr "" + +#: config/tc-i386.c:13736 msgid "symbol size computation overflow" msgstr "" -#: config/tc-i386.c:13169 config/tc-sparc.c:3861 +#: config/tc-i386.c:13804 config/tc-sparc.c:3861 #, c-format msgid "can not do %d byte pc-relative relocation" msgstr "" -#: config/tc-i386.c:13187 +#: config/tc-i386.c:13822 #, c-format msgid "can not do %d byte relocation" msgstr "" -#: config/tc-i386.c:13255 +#: config/tc-i386.c:13890 #, c-format msgid "cannot represent relocation type %s in x32 mode" msgstr "" -#: config/tc-i386.c:13292 config/tc-s390.c:2613 +#: config/tc-i386.c:13927 config/tc-s390.c:2613 #, c-format msgid "cannot represent relocation type %s" msgstr "" -#: config/tc-i386.c:13409 +#: config/tc-i386.c:14044 msgid "bad .section directive: want a,l,w,x,M,S,G,T in string" msgstr "" -#: config/tc-i386.c:13412 +#: config/tc-i386.c:14047 msgid "bad .section directive: want a,w,x,M,S,G,T in string" msgstr "" -#: config/tc-i386.c:13431 +#: config/tc-i386.c:14066 msgid ".largecomm supported only in 64bit mode, producing .comm" msgstr "" @@ -9610,8 +9806,8 @@ msgstr "" msgid "Expected '('" msgstr "" -#: config/tc-ia64.c:7917 config/tc-pdp11.c:446 config/tc-pdp11.c:510 -#: config/tc-pdp11.c:544 config/tc-tilegx.c:1048 config/tc-tilepro.c:939 +#: config/tc-ia64.c:7917 config/tc-pdp11.c:450 config/tc-pdp11.c:514 +#: config/tc-pdp11.c:548 config/tc-tilegx.c:1048 config/tc-tilepro.c:939 #: config/tc-xstormy16.c:154 msgid "Missing ')'" msgstr "" @@ -9732,7 +9928,7 @@ msgstr "" msgid "Can't add stop bit to mark end of instruction group" msgstr "" -#: config/tc-ia64.c:11775 read.c:2600 read.c:3239 read.c:3643 stabs.c:469 +#: config/tc-ia64.c:11775 read.c:2601 read.c:3240 read.c:3644 stabs.c:469 #, c-format msgid "expected comma after \"%s\"" msgstr "" @@ -9810,19 +10006,19 @@ msgstr "" msgid "Unmatched high relocation" msgstr "" -#: config/tc-iq2000.c:826 config/tc-mips.c:19761 config/tc-score.c:5810 +#: config/tc-iq2000.c:826 config/tc-mips.c:19800 config/tc-score.c:5798 msgid ".end not in text section" msgstr "" -#: config/tc-iq2000.c:830 config/tc-score.c:5813 +#: config/tc-iq2000.c:830 config/tc-score.c:5801 msgid ".end directive without a preceding .ent directive." msgstr "" -#: config/tc-iq2000.c:839 config/tc-score.c:5821 +#: config/tc-iq2000.c:839 config/tc-score.c:5809 msgid ".end symbol does not match .ent symbol." msgstr "" -#: config/tc-iq2000.c:842 config/tc-mips.c:19781 config/tc-score.c:5826 +#: config/tc-iq2000.c:842 config/tc-mips.c:19820 config/tc-score.c:5814 msgid ".end directive missing or unknown symbol" msgstr "" @@ -9830,7 +10026,7 @@ msgstr "" msgid "Expected simple number." msgstr "" -#: config/tc-iq2000.c:889 config/tc-mips.c:19686 config/tc-score.c:5662 +#: config/tc-iq2000.c:889 config/tc-mips.c:19725 config/tc-score.c:5664 #, c-format msgid " *input_line_pointer == '%c' 0x%02x\n" msgstr "" @@ -9839,7 +10035,7 @@ msgstr "" msgid "Invalid number" msgstr "" -#: config/tc-iq2000.c:925 config/tc-score.c:5700 +#: config/tc-iq2000.c:925 config/tc-score.c:5695 msgid ".ent or .aent not in text section." msgstr "" @@ -10008,100 +10204,100 @@ msgstr "" msgid " -KPIC generate PIC\n" msgstr "" -#: config/tc-m32r.c:846 +#: config/tc-m32r.c:848 msgid "instructions write to the same destination register." msgstr "" -#: config/tc-m32r.c:854 +#: config/tc-m32r.c:856 msgid "Instructions do not use parallel execution pipelines." msgstr "" -#: config/tc-m32r.c:862 +#: config/tc-m32r.c:864 msgid "Instructions share the same execution pipeline" msgstr "" -#: config/tc-m32r.c:927 config/tc-m32r.c:1041 +#: config/tc-m32r.c:929 config/tc-m32r.c:1043 #, c-format msgid "not a 16 bit instruction '%s'" msgstr "" -#: config/tc-m32r.c:939 config/tc-m32r.c:1053 config/tc-m32r.c:1237 +#: config/tc-m32r.c:941 config/tc-m32r.c:1055 config/tc-m32r.c:1239 #, c-format msgid "instruction '%s' is for the M32R2 only" msgstr "" -#: config/tc-m32r.c:952 config/tc-m32r.c:1066 config/tc-m32r.c:1250 +#: config/tc-m32r.c:954 config/tc-m32r.c:1068 config/tc-m32r.c:1252 #, c-format msgid "unknown instruction '%s'" msgstr "" -#: config/tc-m32r.c:961 config/tc-m32r.c:1073 config/tc-m32r.c:1257 +#: config/tc-m32r.c:963 config/tc-m32r.c:1075 config/tc-m32r.c:1259 #, c-format msgid "instruction '%s' is for the M32RX only" msgstr "" -#: config/tc-m32r.c:970 config/tc-m32r.c:1082 +#: config/tc-m32r.c:972 config/tc-m32r.c:1084 #, c-format msgid "instruction '%s' cannot be executed in parallel." msgstr "" -#: config/tc-m32r.c:1025 config/tc-m32r.c:1107 config/tc-m32r.c:1314 +#: config/tc-m32r.c:1027 config/tc-m32r.c:1109 config/tc-m32r.c:1316 msgid "internal error: lookup/get operands failed" msgstr "" -#: config/tc-m32r.c:1092 +#: config/tc-m32r.c:1094 #, c-format msgid "'%s': only the NOP instruction can be issued in parallel on the m32r" msgstr "" -#: config/tc-m32r.c:1121 +#: config/tc-m32r.c:1123 #, c-format msgid "" "%s: output of 1st instruction is the same as an input to 2nd instruction - " "is this intentional ?" msgstr "" -#: config/tc-m32r.c:1125 +#: config/tc-m32r.c:1127 #, c-format msgid "" "%s: output of 2nd instruction is the same as an input to 1st instruction - " "is this intentional ?" msgstr "" -#: config/tc-m32r.c:1488 config/tc-microblaze.c:196 +#: config/tc-m32r.c:1490 config/tc-microblaze.c:196 msgid "Expected comma after symbol-name: rest of line ignored." msgstr "" -#: config/tc-m32r.c:1498 +#: config/tc-m32r.c:1500 #, c-format msgid ".SCOMMon length (%ld.) <0! Ignored." msgstr "" -#: config/tc-m32r.c:1512 config/tc-microblaze.c:218 config/tc-ppc.c:2428 -#: config/tc-ppc.c:4423 config/tc-ppc.c:4465 config/tc-ppc.c:6022 +#: config/tc-m32r.c:1514 config/tc-microblaze.c:218 config/tc-ppc.c:2438 +#: config/tc-ppc.c:4436 config/tc-ppc.c:4478 config/tc-ppc.c:6035 msgid "ignoring bad alignment" msgstr "" -#: config/tc-m32r.c:1524 config/tc-microblaze.c:253 config/tc-v850.c:383 +#: config/tc-m32r.c:1526 config/tc-microblaze.c:253 config/tc-v850.c:383 msgid "Common alignment not a power of 2" msgstr "" -#: config/tc-m32r.c:1539 config/tc-microblaze.c:229 +#: config/tc-m32r.c:1541 config/tc-microblaze.c:229 #, c-format msgid "Ignoring attempt to re-define symbol `%s'." msgstr "" -#: config/tc-m32r.c:1548 +#: config/tc-m32r.c:1550 #, c-format msgid "Length of .scomm \"%s\" is already %ld. Not changed to %ld." msgstr "" -#: config/tc-m32r.c:1925 config/tc-m32r.c:1978 config/tc-nds32.c:4797 +#: config/tc-m32r.c:1927 config/tc-m32r.c:1980 config/tc-nds32.c:4797 #: config/tc-nds32.c:4841 config/tc-sh.c:391 config/tc-sh.c:2062 msgid "Invalid PIC expression." msgstr "" -#: config/tc-m32r.c:2069 +#: config/tc-m32r.c:2071 msgid "Unmatched high/shigh reloc" msgstr "" @@ -10490,7 +10686,7 @@ msgstr "" msgid "Line %d: unknown relocation type: 0x%x." msgstr "" -#: config/tc-m68hc11.c:4494 config/tc-z80.c:3086 config/tc-z80.c:3106 +#: config/tc-m68hc11.c:4494 config/tc-z80.c:3402 config/tc-z80.c:3422 msgid "Invalid directive" msgstr "" @@ -10907,7 +11103,7 @@ msgstr "" msgid "Processor variants are: " msgstr "" -#: config/tc-m68k.c:7638 config/tc-xtensa.c:6380 +#: config/tc-m68k.c:7638 config/tc-xtensa.c:6406 #, c-format msgid "\n" msgstr "" @@ -10926,7 +11122,7 @@ msgstr "" msgid "Not a defined coldfire architecture" msgstr "" -#: config/tc-m68k.c:7927 read.c:4549 +#: config/tc-m68k.c:7927 read.c:4550 #, c-format msgid "%s relocations do not fit in %u byte" msgid_plural "%s relocations do not fit in %u bytes" @@ -11757,724 +11953,724 @@ msgstr "" msgid "Absolute value in relaxation code. Assembler error....." msgstr "" -#: config/tc-mips.c:2175 +#: config/tc-mips.c:2178 #, c-format msgid "the %d-bit %s architecture does not support the `%s' extension" msgstr "" -#: config/tc-mips.c:2178 +#: config/tc-mips.c:2181 #, c-format msgid "the `%s' extension requires %s%d revision %d or greater" msgstr "" -#: config/tc-mips.c:2187 +#: config/tc-mips.c:2190 #, c-format msgid "the `%s' extension was removed in %s%d revision %d" msgstr "" -#: config/tc-mips.c:2196 +#: config/tc-mips.c:2199 #, c-format msgid "the `%s' extension requires 64-bit FPRs" msgstr "" -#: config/tc-mips.c:3048 config/tc-mips.c:16618 +#: config/tc-mips.c:3051 config/tc-mips.c:16657 #, c-format msgid "unrecognized register name `%s'" msgstr "" -#: config/tc-mips.c:3275 +#: config/tc-mips.c:3278 msgid "invalid register range" msgstr "" -#: config/tc-mips.c:3303 +#: config/tc-mips.c:3306 msgid "vector element must be constant" msgstr "" -#: config/tc-mips.c:3313 +#: config/tc-mips.c:3316 msgid "missing `]'" msgstr "" -#: config/tc-mips.c:3536 +#: config/tc-mips.c:3539 #, c-format msgid "internal: bad mips opcode (mask error): %s %s" msgstr "" -#: config/tc-mips.c:3563 +#: config/tc-mips.c:3566 #, c-format msgid "internal: unknown operand type: %s %s" msgstr "" -#: config/tc-mips.c:3596 +#: config/tc-mips.c:3599 #, c-format msgid "internal: bad mips opcode (bits 0x%08lx doubly defined): %s %s" msgstr "" -#: config/tc-mips.c:3604 +#: config/tc-mips.c:3607 #, c-format msgid "internal: bad mips opcode (bits 0x%08lx undefined): %s %s" msgstr "" -#: config/tc-mips.c:3611 +#: config/tc-mips.c:3614 #, c-format msgid "internal: bad mips opcode (bits 0x%08lx defined): %s %s" msgstr "" -#: config/tc-mips.c:3646 +#: config/tc-mips.c:3649 #, c-format msgid "internal error: bad microMIPS opcode (incorrect length: %u): %s %s" msgstr "" -#: config/tc-mips.c:3654 +#: config/tc-mips.c:3657 #, c-format msgid "internal error: bad microMIPS opcode (opcode/length mismatch): %s %s" msgstr "" -#: config/tc-mips.c:3680 +#: config/tc-mips.c:3683 msgid "-G may not be used in position-independent code" msgstr "" -#: config/tc-mips.c:3686 +#: config/tc-mips.c:3689 msgid "-G may not be used with abicalls" msgstr "" #. Probably a memory allocation problem? Give up now. -#: config/tc-mips.c:3706 config/tc-mips.c:3802 +#: config/tc-mips.c:3709 config/tc-mips.c:3805 msgid "broken assembler, no assembly attempted" msgstr "" -#: config/tc-mips.c:3741 config/tc-mips.c:3770 +#: config/tc-mips.c:3744 config/tc-mips.c:3773 #, c-format msgid "internal: can't hash `%s': %s" msgstr "" -#: config/tc-mips.c:3950 +#: config/tc-mips.c:3953 #, c-format msgid ".gnu_attribute %d,%d is incompatible with `%s'" msgstr "" -#: config/tc-mips.c:3957 +#: config/tc-mips.c:3960 #, c-format msgid ".gnu_attribute %d,%d requires `%s'" msgstr "" -#: config/tc-mips.c:4018 +#: config/tc-mips.c:4021 #, c-format msgid ".gnu_attribute %d,%d is no longer supported" msgstr "" -#: config/tc-mips.c:4027 +#: config/tc-mips.c:4030 #, c-format msgid ".gnu_attribute %d,%d is not a recognized floating-point ABI" msgstr "" -#: config/tc-mips.c:4040 +#: config/tc-mips.c:4043 msgid "`gp=64' used with a 32-bit processor" msgstr "" -#: config/tc-mips.c:4043 +#: config/tc-mips.c:4046 msgid "`gp=32' used with a 64-bit ABI" msgstr "" -#: config/tc-mips.c:4046 +#: config/tc-mips.c:4049 msgid "`gp=64' used with a 32-bit ABI" msgstr "" -#: config/tc-mips.c:4053 +#: config/tc-mips.c:4056 msgid "`fp=xx' used with a cpu lacking ldc1/sdc1 instructions" msgstr "" -#: config/tc-mips.c:4055 +#: config/tc-mips.c:4058 msgid "`fp=xx' cannot be used with `singlefloat'" msgstr "" -#: config/tc-mips.c:4059 +#: config/tc-mips.c:4062 msgid "`fp=64' used with a 32-bit fpu" msgstr "" -#: config/tc-mips.c:4063 +#: config/tc-mips.c:4066 msgid "`fp=64' used with a 32-bit ABI" msgstr "" -#: config/tc-mips.c:4068 +#: config/tc-mips.c:4071 msgid "`fp=32' used with a 64-bit ABI" msgstr "" -#: config/tc-mips.c:4070 +#: config/tc-mips.c:4073 msgid "`fp=32' used with a MIPS R6 cpu" msgstr "" -#: config/tc-mips.c:4073 +#: config/tc-mips.c:4076 msgid "Unknown size of floating point registers" msgstr "" -#: config/tc-mips.c:4078 +#: config/tc-mips.c:4081 msgid "`nooddspreg` cannot be used with a 64-bit ABI" msgstr "" -#: config/tc-mips.c:4081 config/tc-mips.c:4085 +#: config/tc-mips.c:4084 config/tc-mips.c:4088 #, c-format msgid "`%s' cannot be used with `%s'" msgstr "" -#: config/tc-mips.c:4090 +#: config/tc-mips.c:4093 #, c-format msgid "branch relaxation is not supported in `%s'" msgstr "" -#: config/tc-mips.c:4166 +#: config/tc-mips.c:4169 msgid "trap exception not supported at ISA 1" msgstr "" -#: config/tc-mips.c:4179 config/tc-mips.c:17501 +#: config/tc-mips.c:4182 config/tc-mips.c:17540 #, c-format msgid "`%s' does not support legacy NaN" msgstr "" -#: config/tc-mips.c:4226 +#: config/tc-mips.c:4229 #, c-format msgid "returned from mips_ip(%s) insn_opcode = 0x%x\n" msgstr "" -#: config/tc-mips.c:4932 +#: config/tc-mips.c:4935 #, c-format msgid "operand %d out of range" msgstr "" -#: config/tc-mips.c:4940 +#: config/tc-mips.c:4943 #, c-format msgid "operand %d must be constant" msgstr "" -#: config/tc-mips.c:4984 read.c:4317 read.c:5163 write.c:263 write.c:1024 +#: config/tc-mips.c:4987 read.c:4318 read.c:5164 write.c:263 write.c:1024 msgid "register value used as expression" msgstr "" -#: config/tc-mips.c:4997 +#: config/tc-mips.c:5000 #, c-format msgid "operand %d must be an immediate expression" msgstr "" -#: config/tc-mips.c:5118 config/tc-mips.c:5120 +#: config/tc-mips.c:5121 config/tc-mips.c:5123 #, c-format msgid "float register should be even, was %d" msgstr "" -#: config/tc-mips.c:5133 +#: config/tc-mips.c:5136 #, c-format msgid "condition code register should be even for %s, was %d" msgstr "" -#: config/tc-mips.c:5138 +#: config/tc-mips.c:5141 #, c-format msgid "condition code register should be 0 or 4 for %s, was %d" msgstr "" -#: config/tc-mips.c:5459 +#: config/tc-mips.c:5462 msgid "invalid performance register" msgstr "" -#: config/tc-mips.c:5555 config/tc-mips.c:6026 +#: config/tc-mips.c:5558 config/tc-mips.c:6029 msgid "the source register must not be $0" msgstr "" -#: config/tc-mips.c:5831 +#: config/tc-mips.c:5834 msgid "missing frame size" msgstr "" -#: config/tc-mips.c:5836 +#: config/tc-mips.c:5839 msgid "frame size specified twice" msgstr "" -#: config/tc-mips.c:5841 +#: config/tc-mips.c:5844 msgid "invalid frame size" msgstr "" -#: config/tc-mips.c:5881 +#: config/tc-mips.c:5884 #, c-format msgid "operand %d must be an immediate" msgstr "" -#: config/tc-mips.c:5896 +#: config/tc-mips.c:5899 msgid "invalid element selector" msgstr "" -#: config/tc-mips.c:5909 +#: config/tc-mips.c:5912 #, c-format msgid "operand %d must be scalar" msgstr "" -#: config/tc-mips.c:6089 +#: config/tc-mips.c:6092 msgid "floating-point expression required" msgstr "" -#: config/tc-mips.c:6189 +#: config/tc-mips.c:6192 #, c-format msgid "cannot use `%s' in this section" msgstr "" -#: config/tc-mips.c:6336 +#: config/tc-mips.c:6339 msgid "used $at without \".set noat\"" msgstr "" -#: config/tc-mips.c:6338 +#: config/tc-mips.c:6341 #, c-format msgid "used $%u with \".set at=$%u\"" msgstr "" -#: config/tc-mips.c:7485 +#: config/tc-mips.c:7524 #, c-format msgid "wrong size instruction in a %u-bit branch delay slot" msgstr "" -#: config/tc-mips.c:7505 config/tc-mips.c:7515 config/tc-mips.c:15916 +#: config/tc-mips.c:7544 config/tc-mips.c:7554 config/tc-mips.c:15955 #, c-format msgid "jump to misaligned address (0x%lx)" msgstr "" -#: config/tc-mips.c:7530 config/tc-mips.c:7550 config/tc-mips.c:7567 -#: config/tc-mips.c:9117 config/tc-mips.c:15770 config/tc-mips.c:15777 -#: config/tc-mips.c:16170 config/tc-mips.c:19016 +#: config/tc-mips.c:7569 config/tc-mips.c:7589 config/tc-mips.c:7606 +#: config/tc-mips.c:9156 config/tc-mips.c:15809 config/tc-mips.c:15816 +#: config/tc-mips.c:16209 config/tc-mips.c:19055 #, c-format msgid "branch to misaligned address (0x%lx)" msgstr "" -#: config/tc-mips.c:7536 config/tc-mips.c:7554 config/tc-mips.c:7571 -#: config/tc-mips.c:9120 +#: config/tc-mips.c:7575 config/tc-mips.c:7593 config/tc-mips.c:7610 +#: config/tc-mips.c:9159 #, c-format msgid "branch address range overflow (0x%lx)" msgstr "" -#: config/tc-mips.c:7816 +#: config/tc-mips.c:7855 msgid "extended instruction in delay slot" msgstr "" -#: config/tc-mips.c:8280 +#: config/tc-mips.c:8319 msgid "source and destination must be different" msgstr "" -#: config/tc-mips.c:8283 +#: config/tc-mips.c:8322 msgid "a destination register must be supplied" msgstr "" -#: config/tc-mips.c:8288 +#: config/tc-mips.c:8327 msgid "the source register must not be $31" msgstr "" -#: config/tc-mips.c:8536 config/tc-mips.c:14506 config/tc-mips.c:19163 +#: config/tc-mips.c:8575 config/tc-mips.c:14545 config/tc-mips.c:19202 msgid "invalid unextended operand value" msgstr "" -#: config/tc-mips.c:8654 +#: config/tc-mips.c:8693 #, c-format msgid "opcode not supported on this processor: %s (%s)" msgstr "" -#: config/tc-mips.c:8733 +#: config/tc-mips.c:8772 msgid "opcode not supported in the `insn32' mode" msgstr "" -#: config/tc-mips.c:8736 +#: config/tc-mips.c:8775 #, c-format msgid "unrecognized %d-bit version of microMIPS opcode" msgstr "" -#: config/tc-mips.c:8792 +#: config/tc-mips.c:8831 msgid "unrecognized unextended version of MIPS16 opcode" msgstr "" -#: config/tc-mips.c:8795 +#: config/tc-mips.c:8834 msgid "unrecognized extended version of MIPS16 opcode" msgstr "" -#: config/tc-mips.c:8845 config/tc-mips.c:19034 +#: config/tc-mips.c:8884 config/tc-mips.c:19073 msgid "" "macro instruction expanded into multiple instructions in a branch delay slot" msgstr "" -#: config/tc-mips.c:8848 config/tc-mips.c:19042 +#: config/tc-mips.c:8887 config/tc-mips.c:19081 msgid "macro instruction expanded into multiple instructions" msgstr "" -#: config/tc-mips.c:8852 +#: config/tc-mips.c:8891 msgid "" "macro instruction expanded into a wrong size instruction in a 16-bit branch " "delay slot" msgstr "" -#: config/tc-mips.c:8854 +#: config/tc-mips.c:8893 msgid "" "macro instruction expanded into a wrong size instruction in a 32-bit branch " "delay slot" msgstr "" -#: config/tc-mips.c:9317 +#: config/tc-mips.c:9356 msgid "operand overflow" msgstr "" -#: config/tc-mips.c:9336 config/tc-mips.c:9920 config/tc-mips.c:13987 +#: config/tc-mips.c:9375 config/tc-mips.c:9959 config/tc-mips.c:14026 msgid "macro used $at after \".set noat\"" msgstr "" -#: config/tc-mips.c:9484 config/tc-mips.c:12298 config/tc-mips.c:12981 +#: config/tc-mips.c:9523 config/tc-mips.c:12337 config/tc-mips.c:13020 #, c-format msgid "number (0x%s) larger than 32 bits" msgstr "" -#: config/tc-mips.c:9504 +#: config/tc-mips.c:9543 msgid "number larger than 64 bits" msgstr "" -#: config/tc-mips.c:9798 config/tc-mips.c:9826 config/tc-mips.c:9864 -#: config/tc-mips.c:9909 config/tc-mips.c:12541 config/tc-mips.c:12580 -#: config/tc-mips.c:12619 config/tc-mips.c:13077 config/tc-mips.c:13129 +#: config/tc-mips.c:9837 config/tc-mips.c:9865 config/tc-mips.c:9903 +#: config/tc-mips.c:9948 config/tc-mips.c:12580 config/tc-mips.c:12619 +#: config/tc-mips.c:12658 config/tc-mips.c:13116 config/tc-mips.c:13168 msgid "PIC code offset overflow (max 16 signed bits)" msgstr "" -#: config/tc-mips.c:10442 +#: config/tc-mips.c:10481 #, c-format msgid "BALIGN immediate not 0, 1, 2 or 3 (%lu)" msgstr "" #. Result is always true. -#: config/tc-mips.c:10538 +#: config/tc-mips.c:10577 #, c-format msgid "branch %s is always true" msgstr "" -#: config/tc-mips.c:10766 config/tc-mips.c:10876 +#: config/tc-mips.c:10805 config/tc-mips.c:10915 msgid "divide by zero" msgstr "" -#: config/tc-mips.c:10966 +#: config/tc-mips.c:11005 msgid "dla used to load 32-bit register; recommend using la instead" msgstr "" -#: config/tc-mips.c:10970 +#: config/tc-mips.c:11009 msgid "la used to load 64-bit address; recommend using dla instead" msgstr "" -#: config/tc-mips.c:11079 config/tc-riscv.c:1111 config/tc-z80.c:1150 +#: config/tc-mips.c:11118 config/tc-riscv.c:1443 msgid "offset too large" msgstr "" -#: config/tc-mips.c:11253 config/tc-mips.c:11531 +#: config/tc-mips.c:11292 config/tc-mips.c:11570 msgid "PIC code offset overflow (max 32 signed bits)" msgstr "" -#: config/tc-mips.c:11601 config/tc-mips.c:11677 +#: config/tc-mips.c:11640 config/tc-mips.c:11716 #, c-format msgid "opcode not supported in the `insn32' mode `%s'" msgstr "" -#: config/tc-mips.c:11629 +#: config/tc-mips.c:11668 msgid "MIPS PIC call to register other than $25" msgstr "" -#: config/tc-mips.c:11645 config/tc-mips.c:11656 config/tc-mips.c:11789 -#: config/tc-mips.c:11800 +#: config/tc-mips.c:11684 config/tc-mips.c:11695 config/tc-mips.c:11828 +#: config/tc-mips.c:11839 msgid "no .cprestore pseudo-op used in PIC code" msgstr "" -#: config/tc-mips.c:11650 config/tc-mips.c:11794 +#: config/tc-mips.c:11689 config/tc-mips.c:11833 msgid "no .frame pseudo-op used in PIC code" msgstr "" -#: config/tc-mips.c:11815 +#: config/tc-mips.c:11854 msgid "non-PIC jump used in PIC library" msgstr "" -#: config/tc-mips.c:12798 +#: config/tc-mips.c:12837 #, c-format msgid "Unable to generate `%s' compliant code without mthc1" msgstr "" -#: config/tc-mips.c:13541 +#: config/tc-mips.c:13580 #, c-format msgid "instruction %s: result is always false" msgstr "" -#: config/tc-mips.c:13694 +#: config/tc-mips.c:13733 #, 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:13983 +#: config/tc-mips.c:14022 #, c-format msgid "macro %s not implemented yet" msgstr "" -#: config/tc-mips.c:14516 +#: config/tc-mips.c:14555 msgid "extended operand requested but not required" msgstr "" -#: config/tc-mips.c:14525 +#: config/tc-mips.c:14564 msgid "operand value out of range for instruction" msgstr "" -#: config/tc-mips.c:14624 +#: config/tc-mips.c:14663 #, c-format msgid "relocation %s isn't supported by the current ABI" msgstr "" -#: config/tc-mips.c:14680 +#: config/tc-mips.c:14719 msgid "unclosed '('" msgstr "" -#: config/tc-mips.c:14746 +#: config/tc-mips.c:14785 #, c-format msgid "a different %s was already specified, is now %s" msgstr "" -#: config/tc-mips.c:14913 +#: config/tc-mips.c:14952 msgid "-mmicromips cannot be used with -mips16" msgstr "" -#: config/tc-mips.c:14928 +#: config/tc-mips.c:14967 msgid "-mips16 cannot be used with -micromips" msgstr "" -#: config/tc-mips.c:15097 config/tc-mips.c:15155 +#: config/tc-mips.c:15136 config/tc-mips.c:15194 msgid "no compiled in support for 64 bit object file format" msgstr "" -#: config/tc-mips.c:15162 +#: config/tc-mips.c:15201 #, c-format msgid "invalid abi -mabi=%s" msgstr "" -#: config/tc-mips.c:15202 +#: config/tc-mips.c:15241 #, c-format msgid "invalid NaN setting -mnan=%s" msgstr "" -#: config/tc-mips.c:15236 +#: config/tc-mips.c:15275 msgid "-G not supported in this configuration" msgstr "" -#: config/tc-mips.c:15262 +#: config/tc-mips.c:15301 #, c-format msgid "-%s conflicts with the other architecture options, which imply -%s" msgstr "" -#: config/tc-mips.c:15278 +#: config/tc-mips.c:15317 #, c-format msgid "-march=%s is not compatible with the selected ABI" msgstr "" -#: config/tc-mips.c:15774 config/tc-mips.c:16164 config/tc-mips.c:19013 +#: config/tc-mips.c:15813 config/tc-mips.c:16203 config/tc-mips.c:19052 msgid "branch to a symbol in another ISA mode" msgstr "" -#: config/tc-mips.c:15781 config/tc-mips.c:15921 config/tc-mips.c:16174 +#: config/tc-mips.c:15820 config/tc-mips.c:15960 config/tc-mips.c:16213 #, c-format msgid "cannot encode misaligned addend in the relocatable field (0x%lx)" msgstr "" -#: config/tc-mips.c:15818 +#: config/tc-mips.c:15857 msgid "PC-relative reference to a different section" msgstr "" -#: config/tc-mips.c:15890 config/tc-riscv.c:2412 +#: config/tc-mips.c:15929 config/tc-riscv.c:2865 msgid "TLS relocation against a constant" msgstr "" -#: config/tc-mips.c:15910 +#: config/tc-mips.c:15949 msgid "jump to a symbol in another ISA mode" msgstr "" -#: config/tc-mips.c:15913 +#: config/tc-mips.c:15952 msgid "JALX to a symbol in the same ISA mode" msgstr "" -#: config/tc-mips.c:15997 +#: config/tc-mips.c:16036 msgid "unsupported constant in relocation" msgstr "" -#: config/tc-mips.c:16069 +#: config/tc-mips.c:16108 #, c-format msgid "PC-relative access using misaligned symbol (%lx)" msgstr "" -#: config/tc-mips.c:16073 +#: config/tc-mips.c:16112 #, c-format msgid "PC-relative access using misaligned offset (%lx)" msgstr "" -#: config/tc-mips.c:16086 config/tc-mips.c:16105 +#: config/tc-mips.c:16125 config/tc-mips.c:16144 msgid "PC-relative access out of range" msgstr "" -#: config/tc-mips.c:16092 +#: config/tc-mips.c:16131 #, c-format msgid "PC-relative access to misaligned address (%lx)" msgstr "" -#: config/tc-mips.c:16259 +#: config/tc-mips.c:16298 #, c-format msgid "alignment too large, %d assumed" msgstr "" -#: config/tc-mips.c:16262 +#: config/tc-mips.c:16301 msgid "alignment negative, 0 assumed" msgstr "" -#: config/tc-mips.c:16498 +#: config/tc-mips.c:16537 #, c-format msgid "%s: no such section" msgstr "" -#: config/tc-mips.c:16554 +#: config/tc-mips.c:16593 #, c-format msgid ".option pic%d not supported" msgstr "" -#: config/tc-mips.c:16556 +#: config/tc-mips.c:16595 #, c-format msgid ".option pic%d not supported in VxWorks PIC mode" msgstr "" -#: config/tc-mips.c:16568 config/tc-mips.c:16908 +#: config/tc-mips.c:16607 config/tc-mips.c:16947 msgid "-G may not be used with SVR4 PIC code" msgstr "" -#: config/tc-mips.c:16574 +#: config/tc-mips.c:16613 #, c-format msgid "unrecognized option \"%s\"" msgstr "" -#: config/tc-mips.c:16680 +#: config/tc-mips.c:16719 #, c-format msgid "unknown architecture %s" msgstr "" -#: config/tc-mips.c:16695 config/tc-mips.c:16859 +#: config/tc-mips.c:16734 config/tc-mips.c:16898 #, c-format msgid "unknown ISA level %s" msgstr "" -#: config/tc-mips.c:16705 +#: config/tc-mips.c:16744 #, c-format msgid "unknown ISA or architecture %s" msgstr "" -#: config/tc-mips.c:16764 +#: config/tc-mips.c:16803 msgid "`noreorder' must be set before `nomacro'" msgstr "" -#: config/tc-mips.c:16794 +#: config/tc-mips.c:16833 msgid ".set pop with no .set push" msgstr "" -#: config/tc-mips.c:16813 +#: config/tc-mips.c:16852 #, c-format msgid "tried to set unrecognized symbol: %s\n" msgstr "" -#: config/tc-mips.c:16886 +#: config/tc-mips.c:16925 #, c-format msgid ".module used with unrecognized symbol: %s\n" msgstr "" -#: config/tc-mips.c:16892 +#: config/tc-mips.c:16931 msgid ".module is not permitted after generating code" msgstr "" -#: config/tc-mips.c:16952 config/tc-mips.c:17031 config/tc-mips.c:17135 -#: config/tc-mips.c:17165 config/tc-mips.c:17214 +#: config/tc-mips.c:16991 config/tc-mips.c:17070 config/tc-mips.c:17174 +#: config/tc-mips.c:17204 config/tc-mips.c:17253 #, c-format msgid "%s not supported in MIPS16 mode" msgstr "" -#: config/tc-mips.c:16959 +#: config/tc-mips.c:16998 msgid ".cpload not in noreorder section" msgstr "" -#: config/tc-mips.c:17040 config/tc-mips.c:17059 +#: config/tc-mips.c:17079 config/tc-mips.c:17098 msgid "missing argument separator ',' for .cpsetup" msgstr "" -#: config/tc-mips.c:17257 +#: config/tc-mips.c:17296 #, c-format msgid "unsupported use of %s" msgstr "" -#: config/tc-mips.c:17348 +#: config/tc-mips.c:17387 msgid "unsupported use of .gpword" msgstr "" -#: config/tc-mips.c:17386 +#: config/tc-mips.c:17425 msgid "unsupported use of .gpdword" msgstr "" -#: config/tc-mips.c:17418 +#: config/tc-mips.c:17457 msgid "unsupported use of .ehword" msgstr "" -#: config/tc-mips.c:17505 +#: config/tc-mips.c:17544 msgid "bad .nan directive" msgstr "" -#: config/tc-mips.c:17554 +#: config/tc-mips.c:17593 #, c-format msgid "ignoring attempt to redefine symbol %s" msgstr "" -#: config/tc-mips.c:17569 ecoff.c:3372 +#: config/tc-mips.c:17608 ecoff.c:3372 msgid "bad .weakext directive" msgstr "" -#: config/tc-mips.c:18538 config/tc-mips.c:18815 +#: config/tc-mips.c:18577 config/tc-mips.c:18854 msgid "relaxed out-of-range branch into a jump" msgstr "" -#: config/tc-mips.c:19038 +#: config/tc-mips.c:19077 msgid "extended instruction in a branch delay slot" msgstr "" -#: config/tc-mips.c:19152 config/tc-xtensa.c:1676 config/tc-xtensa.c:1954 +#: config/tc-mips.c:19191 config/tc-xtensa.c:1682 config/tc-xtensa.c:1960 msgid "unsupported relocation" msgstr "" -#: config/tc-mips.c:19660 config/tc-score.c:5636 +#: config/tc-mips.c:19699 config/tc-score.c:5638 msgid "expected simple number" msgstr "" -#: config/tc-mips.c:19688 config/tc-score.c:5663 +#: config/tc-mips.c:19727 config/tc-score.c:5665 msgid "invalid number" msgstr "" -#: config/tc-mips.c:19765 ecoff.c:2999 +#: config/tc-mips.c:19804 ecoff.c:2999 msgid ".end directive without a preceding .ent directive" msgstr "" -#: config/tc-mips.c:19774 +#: config/tc-mips.c:19813 msgid ".end symbol does not match .ent symbol" msgstr "" -#: config/tc-mips.c:19851 +#: config/tc-mips.c:19890 msgid ".ent or .aent not in text section" msgstr "" -#: config/tc-mips.c:19854 config/tc-score.c:5702 +#: config/tc-mips.c:19893 config/tc-score.c:5697 msgid "missing .end" msgstr "" -#: config/tc-mips.c:19937 +#: config/tc-mips.c:19976 msgid ".mask/.fmask outside of .ent" msgstr "" -#: config/tc-mips.c:19944 +#: config/tc-mips.c:19983 msgid "bad .mask/.fmask directive" msgstr "" -#: config/tc-mips.c:20247 +#: config/tc-mips.c:20286 #, c-format msgid "bad value (%s) for %s" msgstr "" -#: config/tc-mips.c:20311 +#: config/tc-mips.c:20350 #, c-format msgid "" "MIPS options:\n" @@ -12485,7 +12681,7 @@ msgid "" "\t\t\timplicitly with the gp register [default 8]\n" msgstr "" -#: config/tc-mips.c:20318 +#: config/tc-mips.c:20357 #, c-format msgid "" "-mips1\t\t\tgenerate MIPS ISA I instructions\n" @@ -12506,7 +12702,7 @@ msgid "" "-march=CPU/-mtune=CPU\tgenerate code/schedule for CPU, where CPU is one of:\n" msgstr "" -#: config/tc-mips.c:20343 +#: config/tc-mips.c:20382 #, c-format msgid "" "-mCPU\t\t\tequivalent to -march=CPU -mtune=CPU. Deprecated.\n" @@ -12514,105 +12710,105 @@ msgid "" "\t\t\tFor -mCPU and -no-mCPU, CPU must be one of:\n" msgstr "" -#: config/tc-mips.c:20356 +#: config/tc-mips.c:20395 #, c-format msgid "" "-mips16\t\t\tgenerate mips16 instructions\n" "-no-mips16\t\tdo not generate mips16 instructions\n" msgstr "" -#: config/tc-mips.c:20359 +#: config/tc-mips.c:20398 #, c-format msgid "" "-mmips16e2\t\tgenerate MIPS16e2 instructions\n" "-mno-mips16e2\t\tdo not generate MIPS16e2 instructions\n" msgstr "" -#: config/tc-mips.c:20362 +#: config/tc-mips.c:20401 #, c-format msgid "" "-mmicromips\t\tgenerate microMIPS instructions\n" "-mno-micromips\t\tdo not generate microMIPS instructions\n" msgstr "" -#: config/tc-mips.c:20365 +#: config/tc-mips.c:20404 #, c-format msgid "" "-msmartmips\t\tgenerate smartmips instructions\n" "-mno-smartmips\t\tdo not generate smartmips instructions\n" msgstr "" -#: config/tc-mips.c:20368 +#: config/tc-mips.c:20407 #, c-format msgid "" "-mdsp\t\t\tgenerate DSP instructions\n" "-mno-dsp\t\tdo not generate DSP instructions\n" msgstr "" -#: config/tc-mips.c:20371 +#: config/tc-mips.c:20410 #, 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:20374 +#: config/tc-mips.c:20413 #, 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:20377 +#: config/tc-mips.c:20416 #, 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:20380 +#: config/tc-mips.c:20419 #, c-format msgid "" "-mmcu\t\t\tgenerate MCU instructions\n" "-mno-mcu\t\tdo not generate MCU instructions\n" msgstr "" -#: config/tc-mips.c:20383 +#: config/tc-mips.c:20422 #, c-format msgid "" "-mmsa\t\t\tgenerate MSA instructions\n" "-mno-msa\t\tdo not generate MSA instructions\n" msgstr "" -#: config/tc-mips.c:20386 +#: config/tc-mips.c:20425 #, 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:20389 +#: config/tc-mips.c:20428 #, c-format msgid "" "-mvirt\t\t\tgenerate Virtualization instructions\n" "-mno-virt\t\tdo not generate Virtualization instructions\n" msgstr "" -#: config/tc-mips.c:20392 +#: config/tc-mips.c:20431 #, c-format msgid "" "-mcrc\t\t\tgenerate CRC instructions\n" "-mno-crc\t\tdo not generate CRC instructions\n" msgstr "" -#: config/tc-mips.c:20395 +#: config/tc-mips.c:20434 #, 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:20398 +#: config/tc-mips.c:20437 #, c-format msgid "" "-mloongson-mmi\t\tgenerate Loongson MultiMedia extensions Instructions (MMI) " @@ -12621,7 +12817,7 @@ msgid "" "Instructions\n" msgstr "" -#: config/tc-mips.c:20401 +#: config/tc-mips.c:20440 #, c-format msgid "" "-mloongson-cam\t\tgenerate Loongson Content Address Memory (CAM) " @@ -12630,35 +12826,35 @@ msgid "" "Instructions\n" msgstr "" -#: config/tc-mips.c:20404 +#: config/tc-mips.c:20443 #, 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:20407 +#: config/tc-mips.c:20446 #, 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:20410 +#: config/tc-mips.c:20449 #, 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:20414 +#: config/tc-mips.c:20453 #, 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:20418 +#: config/tc-mips.c:20457 #, c-format msgid "" "-mfix-loongson3-llsc\twork around Loongson3 LL/SC errata\n" @@ -12666,7 +12862,7 @@ msgid "" "default\n" msgstr "" -#: config/tc-mips.c:20422 +#: config/tc-mips.c:20461 #, c-format msgid "" "-mfix-loongson2f-jump\twork around Loongson2F JUMP instructions\n" @@ -12688,7 +12884,7 @@ msgid "" "--break, --no-trap\tbreak exception on div by 0 and mult overflow\n" msgstr "" -#: config/tc-mips.c:20440 +#: config/tc-mips.c:20479 #, c-format msgid "" "-mhard-float\t\tallow floating-point instructions\n" @@ -12703,7 +12899,7 @@ msgid "" "-mnan=ENCODING\t\tselect an IEEE 754 NaN encoding convention, either of:\n" msgstr "" -#: config/tc-mips.c:20458 +#: config/tc-mips.c:20497 #, c-format msgid "" "-KPIC, -call_shared\tgenerate SVR4 position independent code\n" @@ -12717,26 +12913,26 @@ msgid "" "-mabi=ABI\t\tcreate ABI conformant object file for:\n" msgstr "" -#: config/tc-mips.c:20479 +#: config/tc-mips.c:20518 #, c-format msgid "-32\t\t\tcreate o32 ABI object file%s\n" msgstr "" -#: config/tc-mips.c:20481 config/tc-mips.c:20484 config/tc-mips.c:20487 +#: config/tc-mips.c:20520 config/tc-mips.c:20523 config/tc-mips.c:20526 msgid " (default)" msgstr "" -#: config/tc-mips.c:20482 +#: config/tc-mips.c:20521 #, c-format msgid "-n32\t\t\tcreate n32 ABI object file%s\n" msgstr "" -#: config/tc-mips.c:20485 +#: config/tc-mips.c:20524 #, c-format msgid "-64\t\t\tcreate 64 ABI object file%s\n" msgstr "" -#: config/tc-mips.c:20567 +#: config/tc-mips.c:20606 msgid "missing .end at end of assembly" msgstr "" @@ -12967,7 +13163,7 @@ 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:4136 config/tc-mmix.c:4294 config/tc-z80.c:2836 +#: config/tc-mmix.c:4136 config/tc-mmix.c:4294 config/tc-z80.c:3152 msgid "unterminated string" msgstr "" @@ -13005,7 +13201,7 @@ msgid "Unrecognized opcode: `%s'" msgstr "" #. xgettext:c-format. -#: config/tc-mn10200.c:1139 config/tc-mn10300.c:1821 config/tc-ppc.c:4069 +#: config/tc-mn10200.c:1139 config/tc-mn10300.c:1821 config/tc-ppc.c:4082 #: config/tc-s390.c:1612 config/tc-v850.c:3043 #, c-format msgid "junk at end of line: `%s'" @@ -13031,41 +13227,41 @@ msgstr "" msgid "Bad relocation fixup type (%d)" msgstr "" -#: config/tc-moxie.c:206 config/tc-moxie.c:225 config/tc-moxie.c:316 -#: config/tc-moxie.c:362 +#: config/tc-moxie.c:204 config/tc-moxie.c:223 config/tc-moxie.c:314 +#: config/tc-moxie.c:360 msgid "expecting comma delimited register operands" msgstr "" -#: config/tc-moxie.c:252 config/tc-moxie.c:392 config/tc-moxie.c:422 -#: config/tc-moxie.c:497 +#: config/tc-moxie.c:250 config/tc-moxie.c:390 config/tc-moxie.c:420 +#: config/tc-moxie.c:495 msgid "expecting comma delimited operands" msgstr "" -#: config/tc-moxie.c:320 config/tc-moxie.c:348 +#: config/tc-moxie.c:318 config/tc-moxie.c:346 msgid "expecting indirect register `($rA)'" msgstr "" -#: config/tc-moxie.c:328 config/tc-moxie.c:356 config/tc-moxie.c:447 -#: config/tc-moxie.c:489 +#: config/tc-moxie.c:326 config/tc-moxie.c:354 config/tc-moxie.c:445 +#: config/tc-moxie.c:487 msgid "missing closing parenthesis" msgstr "" -#: config/tc-moxie.c:439 config/tc-moxie.c:481 +#: config/tc-moxie.c:437 config/tc-moxie.c:479 msgid "expecting indirect register `($rX)'" msgstr "" -#: config/tc-moxie.c:559 config/tc-pj.c:313 +#: config/tc-moxie.c:557 config/tc-pj.c:313 msgid "Something forgot to clean up\n" msgstr "" -#: config/tc-moxie.c:643 +#: config/tc-moxie.c:641 #, 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:703 +#: config/tc-moxie.c:701 msgid "pcrel too far BFD_RELOC_MOXIE_10" msgstr "" @@ -14144,7 +14340,7 @@ msgid "badly formed expression near %s" msgstr "" #: config/tc-nios2.c:3108 config/tc-nios2.c:3135 config/tc-pru.c:1413 -#: config/tc-pru.c:1438 config/tc-xtensa.c:2128 +#: config/tc-pru.c:1438 config/tc-xtensa.c:2134 msgid "too many arguments" msgstr "" @@ -14183,19 +14379,24 @@ msgstr "" msgid "Bad .section directive: want a,s,w,x,M,S,G,T in string" msgstr "" -#: config/tc-nios2.c:4026 +#: config/tc-nios2.c:4029 #, c-format msgid "Illegal operands: %%tls_ldo in %d-byte data field" msgstr "" -#: config/tc-nios2.c:4038 config/tc-nios2.c:4056 config/tc-nios2.c:4063 +#: config/tc-nios2.c:4041 #, c-format -msgid "Illegal operands: %%tls_ldo requires arguments in ()" +msgid "Illegal operands: %%gotoff in %d-byte data field" msgstr "" -#: config/tc-nios2.c:4070 +#: config/tc-nios2.c:4054 config/tc-nios2.c:4073 config/tc-nios2.c:4081 #, c-format -msgid "Illegal operands: garbage after %%tls_ldo()" +msgid "Illegal operands: %s requires arguments in ()" +msgstr "" + +#: config/tc-nios2.c:4089 +#, c-format +msgid "Illegal operands: garbage after %s()" msgstr "" #: config/tc-ns32k.c:437 @@ -14376,81 +14577,81 @@ msgstr "" msgid "Cannot find relocation type for symbol %s, code %d" msgstr "" -#: config/tc-pdp11.c:340 config/tc-pdp11.c:357 config/tc-pdp11.c:380 -#: config/tc-pdp11.c:386 config/tc-pdp11.c:399 +#: config/tc-pdp11.c:344 config/tc-pdp11.c:361 config/tc-pdp11.c:384 +#: config/tc-pdp11.c:390 config/tc-pdp11.c:403 msgid "Bad register name" msgstr "" -#: config/tc-pdp11.c:418 config/tc-pdp11.c:482 config/tc-pdp11.c:493 +#: config/tc-pdp11.c:422 config/tc-pdp11.c:486 config/tc-pdp11.c:497 msgid "Error in expression" msgstr "" -#: config/tc-pdp11.c:490 +#: config/tc-pdp11.c:494 msgid "Low order bits truncated in immediate float operand" msgstr "" -#: config/tc-pdp11.c:634 +#: config/tc-pdp11.c:638 msgid "Float AC not legal as integer operand" msgstr "" -#: config/tc-pdp11.c:654 +#: config/tc-pdp11.c:658 msgid "General register not legal as float operand" msgstr "" -#: config/tc-pdp11.c:687 +#: config/tc-pdp11.c:691 msgid "No instruction found" msgstr "" -#: config/tc-pdp11.c:697 config/tc-z80.c:3277 config/tc-z80.c:3298 +#: config/tc-pdp11.c:701 config/tc-z80.c:3617 #, c-format msgid "Unknown instruction '%s'" msgstr "" -#: config/tc-pdp11.c:703 +#: config/tc-pdp11.c:707 #, c-format msgid "Unsupported instruction set extension: %s" msgstr "" -#: config/tc-pdp11.c:737 +#: config/tc-pdp11.c:741 msgid "operand is not an absolute constant" msgstr "" -#: config/tc-pdp11.c:745 +#: config/tc-pdp11.c:749 msgid "3-bit immediate out of range" msgstr "" -#: config/tc-pdp11.c:752 +#: config/tc-pdp11.c:756 msgid "6-bit immediate out of range" msgstr "" -#: config/tc-pdp11.c:759 +#: config/tc-pdp11.c:763 msgid "8-bit immediate out of range" msgstr "" -#: config/tc-pdp11.c:776 config/tc-pdp11.c:969 +#: config/tc-pdp11.c:780 config/tc-pdp11.c:973 msgid "Symbol expected" msgstr "" -#: config/tc-pdp11.c:781 +#: config/tc-pdp11.c:785 msgid "8-bit displacement out of range" msgstr "" -#: config/tc-pdp11.c:823 config/tc-pdp11.c:844 config/tc-pdp11.c:861 -#: config/tc-pdp11.c:882 config/tc-pdp11.c:899 config/tc-pdp11.c:920 -#: config/tc-pdp11.c:939 config/tc-pdp11.c:960 +#: config/tc-pdp11.c:827 config/tc-pdp11.c:848 config/tc-pdp11.c:865 +#: config/tc-pdp11.c:886 config/tc-pdp11.c:903 config/tc-pdp11.c:924 +#: config/tc-pdp11.c:943 config/tc-pdp11.c:964 msgid "Missing ','" msgstr "" -#: config/tc-pdp11.c:974 +#: config/tc-pdp11.c:978 msgid "6-bit displacement out of range" msgstr "" -#: config/tc-pdp11.c:995 config/tc-tilegx.c:1216 config/tc-tilepro.c:1102 +#: config/tc-pdp11.c:999 config/tc-tilegx.c:1216 config/tc-tilepro.c:1102 #: config/tc-vax.c:1950 msgid "Too many operands" msgstr "" -#: config/tc-pdp11.c:1445 +#: config/tc-pdp11.c:1449 #, c-format msgid "Can not represent %s relocation in this object file format" msgstr "" @@ -14475,704 +14676,704 @@ msgid "" "-big\t\t\tgenerate big endian code\n" msgstr "" -#: config/tc-pj.c:380 config/tc-sh.c:3594 config/tc-sh.c:3601 -#: config/tc-sh.c:3608 config/tc-sh.c:3615 +#: config/tc-pj.c:380 config/tc-sh.c:3595 config/tc-sh.c:3602 +#: config/tc-sh.c:3609 config/tc-sh.c:3616 msgid "pcrel too far" msgstr "" -#: config/tc-ppc.c:977 config/tc-ppc.c:985 config/tc-ppc.c:3573 +#: config/tc-ppc.c:987 config/tc-ppc.c:995 config/tc-ppc.c:3586 msgid "invalid register expression" msgstr "" -#: config/tc-ppc.c:1145 config/tc-ppc.c:1203 config/tc-ppc.c:1251 +#: config/tc-ppc.c:1155 config/tc-ppc.c:1213 config/tc-ppc.c:1261 msgid "the use of -mvle requires big endian." msgstr "" -#: config/tc-ppc.c:1183 config/tc-ppc.c:1205 +#: config/tc-ppc.c:1193 config/tc-ppc.c:1215 msgid "the use of -mvle requires -a32." msgstr "" -#: config/tc-ppc.c:1185 +#: config/tc-ppc.c:1195 #, c-format msgid "%s unsupported" msgstr "" -#: config/tc-ppc.c:1278 config/tc-s390.c:433 config/tc-s390.c:440 +#: config/tc-ppc.c:1288 config/tc-s390.c:433 config/tc-s390.c:440 #, c-format msgid "invalid switch -m%s" msgstr "" -#: config/tc-ppc.c:1309 +#: config/tc-ppc.c:1319 msgid "--nops needs a numeric argument" msgstr "" -#: config/tc-ppc.c:1345 +#: config/tc-ppc.c:1355 #, c-format msgid "PowerPC options:\n" msgstr "" -#: config/tc-ppc.c:1347 +#: config/tc-ppc.c:1357 #, c-format msgid "-a32 generate ELF32/XCOFF32\n" msgstr "" -#: config/tc-ppc.c:1350 +#: config/tc-ppc.c:1360 #, c-format msgid "-a64 generate ELF64/XCOFF64\n" msgstr "" -#: config/tc-ppc.c:1352 +#: config/tc-ppc.c:1362 #, c-format msgid "-u ignored\n" msgstr "" -#: config/tc-ppc.c:1354 +#: config/tc-ppc.c:1364 #, c-format msgid "-mpwrx, -mpwr2 generate code for POWER/2 (RIOS2)\n" msgstr "" -#: config/tc-ppc.c:1356 +#: config/tc-ppc.c:1366 #, c-format msgid "-mpwr generate code for POWER (RIOS1)\n" msgstr "" -#: config/tc-ppc.c:1358 +#: config/tc-ppc.c:1368 #, c-format msgid "-m601 generate code for PowerPC 601\n" msgstr "" -#: config/tc-ppc.c:1360 +#: config/tc-ppc.c:1370 #, c-format msgid "" "-mppc, -mppc32, -m603, -m604\n" " generate code for PowerPC 603/604\n" msgstr "" -#: config/tc-ppc.c:1363 +#: config/tc-ppc.c:1373 #, c-format msgid "-m403 generate code for PowerPC 403\n" msgstr "" -#: config/tc-ppc.c:1365 +#: config/tc-ppc.c:1375 #, c-format msgid "-m405 generate code for PowerPC 405\n" msgstr "" -#: config/tc-ppc.c:1367 +#: config/tc-ppc.c:1377 #, c-format msgid "-m440 generate code for PowerPC 440\n" msgstr "" -#: config/tc-ppc.c:1369 +#: config/tc-ppc.c:1379 #, c-format msgid "-m464 generate code for PowerPC 464\n" msgstr "" -#: config/tc-ppc.c:1371 +#: config/tc-ppc.c:1381 #, c-format msgid "-m476 generate code for PowerPC 476\n" msgstr "" -#: config/tc-ppc.c:1373 +#: config/tc-ppc.c:1383 #, c-format msgid "" "-m7400, -m7410, -m7450, -m7455\n" " generate code for PowerPC 7400/7410/7450/7455\n" msgstr "" -#: config/tc-ppc.c:1376 +#: config/tc-ppc.c:1386 #, c-format msgid "" "-m750cl, -mgekko, -mbroadway\n" " generate code for PowerPC 750cl/Gekko/Broadway\n" msgstr "" -#: config/tc-ppc.c:1379 +#: config/tc-ppc.c:1389 #, c-format msgid "-m821, -m850, -m860 generate code for PowerPC 821/850/860\n" msgstr "" -#: config/tc-ppc.c:1381 +#: config/tc-ppc.c:1391 #, c-format msgid "-mppc64, -m620 generate code for PowerPC 620/625/630\n" msgstr "" -#: config/tc-ppc.c:1383 +#: config/tc-ppc.c:1393 #, c-format msgid "" "-mppc64bridge generate code for PowerPC 64, including bridge " "insns\n" msgstr "" -#: config/tc-ppc.c:1385 +#: config/tc-ppc.c:1395 #, c-format msgid "-mbooke generate code for 32-bit PowerPC BookE\n" msgstr "" -#: config/tc-ppc.c:1387 +#: config/tc-ppc.c:1397 #, c-format msgid "-ma2 generate code for A2 architecture\n" msgstr "" -#: config/tc-ppc.c:1389 +#: config/tc-ppc.c:1399 #, c-format msgid "-mpower4, -mpwr4 generate code for Power4 architecture\n" msgstr "" -#: config/tc-ppc.c:1391 +#: config/tc-ppc.c:1401 #, c-format msgid "" "-mpower5, -mpwr5, -mpwr5x\n" " generate code for Power5 architecture\n" msgstr "" -#: config/tc-ppc.c:1394 +#: config/tc-ppc.c:1404 #, c-format msgid "-mpower6, -mpwr6 generate code for Power6 architecture\n" msgstr "" -#: config/tc-ppc.c:1396 +#: config/tc-ppc.c:1406 #, c-format msgid "-mpower7, -mpwr7 generate code for Power7 architecture\n" msgstr "" -#: config/tc-ppc.c:1398 +#: config/tc-ppc.c:1408 #, c-format msgid "-mpower8, -mpwr8 generate code for Power8 architecture\n" msgstr "" -#: config/tc-ppc.c:1400 +#: config/tc-ppc.c:1410 #, c-format msgid "-mpower9, -mpwr9 generate code for Power9 architecture\n" msgstr "" -#: config/tc-ppc.c:1402 +#: config/tc-ppc.c:1412 #, c-format msgid "" "-mcell generate code for Cell Broadband Engine " "architecture\n" msgstr "" -#: config/tc-ppc.c:1404 +#: config/tc-ppc.c:1414 #, c-format msgid "" "-mcom generate code for Power/PowerPC common instructions\n" msgstr "" -#: config/tc-ppc.c:1406 +#: config/tc-ppc.c:1416 #, c-format msgid "" "-many generate code for any architecture (PWR/PWRX/PPC)\n" msgstr "" -#: config/tc-ppc.c:1408 +#: config/tc-ppc.c:1418 #, c-format msgid "-maltivec generate code for AltiVec\n" msgstr "" -#: config/tc-ppc.c:1410 +#: config/tc-ppc.c:1420 #, c-format msgid "" "-mvsx generate code for Vector-Scalar (VSX) instructions\n" msgstr "" -#: config/tc-ppc.c:1412 +#: config/tc-ppc.c:1422 #, c-format msgid "-me300 generate code for PowerPC e300 family\n" msgstr "" -#: config/tc-ppc.c:1414 +#: config/tc-ppc.c:1424 #, c-format msgid "-me500, -me500x2 generate code for Motorola e500 core complex\n" msgstr "" -#: config/tc-ppc.c:1416 +#: config/tc-ppc.c:1426 #, c-format msgid "" "-me500mc, generate code for Freescale e500mc core complex\n" msgstr "" -#: config/tc-ppc.c:1418 +#: config/tc-ppc.c:1428 #, c-format msgid "" "-me500mc64, generate code for Freescale e500mc64 core complex\n" msgstr "" -#: config/tc-ppc.c:1420 +#: config/tc-ppc.c:1430 #, c-format msgid "" "-me5500, generate code for Freescale e5500 core complex\n" msgstr "" -#: config/tc-ppc.c:1422 +#: config/tc-ppc.c:1432 #, c-format msgid "" "-me6500, generate code for Freescale e6500 core complex\n" msgstr "" -#: config/tc-ppc.c:1424 +#: config/tc-ppc.c:1434 #, c-format msgid "-mspe generate code for Motorola SPE instructions\n" msgstr "" -#: config/tc-ppc.c:1426 +#: config/tc-ppc.c:1436 #, c-format msgid "-mspe2 generate code for Freescale SPE2 instructions\n" msgstr "" -#: config/tc-ppc.c:1428 +#: config/tc-ppc.c:1438 #, c-format msgid "-mvle generate code for Freescale VLE instructions\n" msgstr "" -#: config/tc-ppc.c:1430 +#: config/tc-ppc.c:1440 #, c-format msgid "" "-mtitan generate code for AppliedMicro Titan core complex\n" msgstr "" -#: config/tc-ppc.c:1432 +#: config/tc-ppc.c:1442 #, c-format msgid "-mregnames Allow symbolic names for registers\n" msgstr "" -#: config/tc-ppc.c:1434 +#: config/tc-ppc.c:1444 #, c-format msgid "-mno-regnames Do not allow symbolic names for registers\n" msgstr "" -#: config/tc-ppc.c:1437 +#: config/tc-ppc.c:1447 #, c-format msgid "-mrelocatable support for GCC's -mrelocatble option\n" msgstr "" -#: config/tc-ppc.c:1439 +#: config/tc-ppc.c:1449 #, c-format msgid "-mrelocatable-lib support for GCC's -mrelocatble-lib option\n" msgstr "" -#: config/tc-ppc.c:1441 +#: config/tc-ppc.c:1451 #, c-format msgid "-memb set PPC_EMB bit in ELF flags\n" msgstr "" -#: config/tc-ppc.c:1443 +#: config/tc-ppc.c:1453 #, c-format msgid "" "-mlittle, -mlittle-endian, -le\n" " generate code for a little endian machine\n" msgstr "" -#: config/tc-ppc.c:1446 +#: config/tc-ppc.c:1456 #, c-format msgid "" "-mbig, -mbig-endian, -be\n" " generate code for a big endian machine\n" msgstr "" -#: config/tc-ppc.c:1449 +#: config/tc-ppc.c:1459 #, c-format msgid "-msolaris generate code for Solaris\n" msgstr "" -#: config/tc-ppc.c:1451 +#: config/tc-ppc.c:1461 #, c-format msgid "-mno-solaris do not generate code for Solaris\n" msgstr "" -#: config/tc-ppc.c:1453 +#: config/tc-ppc.c:1463 #, c-format msgid "-K PIC set EF_PPC_RELOCATABLE_LIB in ELF flags\n" msgstr "" -#: config/tc-ppc.c:1455 +#: config/tc-ppc.c:1465 #, c-format msgid "-V print assembler version number\n" msgstr "" -#: config/tc-ppc.c:1457 +#: config/tc-ppc.c:1467 #, c-format msgid "-Qy, -Qn ignored\n" msgstr "" -#: config/tc-ppc.c:1460 +#: config/tc-ppc.c:1470 #, c-format msgid "" "-nops=count when aligning, more than COUNT nops uses a branch\n" msgstr "" -#: config/tc-ppc.c:1462 +#: config/tc-ppc.c:1472 #, c-format msgid "-ppc476-workaround warn if emitting data to code sections\n" msgstr "" -#: config/tc-ppc.c:1492 +#: config/tc-ppc.c:1502 #, c-format msgid "unknown default cpu = %s, os = %s" msgstr "" -#: config/tc-ppc.c:1520 +#: config/tc-ppc.c:1530 msgid "neither Power nor PowerPC opcodes were selected." msgstr "" -#: config/tc-ppc.c:1580 +#: config/tc-ppc.c:1590 #, c-format msgid "mask trims opcode bits for %s" msgstr "" -#: config/tc-ppc.c:1590 +#: config/tc-ppc.c:1600 #, c-format msgid "operand index error for %s" msgstr "" -#: config/tc-ppc.c:1616 +#: config/tc-ppc.c:1626 #, c-format msgid "operand %d overlap in %s" msgstr "" -#: config/tc-ppc.c:1625 +#: config/tc-ppc.c:1635 #, c-format msgid "non-optional operand %d follows optional operand in %s" msgstr "" -#: config/tc-ppc.c:1675 +#: config/tc-ppc.c:1685 #, c-format msgid "powerpc_operands[%d].bitm invalid" msgstr "" -#: config/tc-ppc.c:1682 +#: config/tc-ppc.c:1692 #, c-format msgid "powerpc_operands[%d] duplicates powerpc_operands[%d]" msgstr "" -#: config/tc-ppc.c:1708 config/tc-ppc.c:1765 config/tc-ppc.c:1809 -#: config/tc-ppc.c:1853 +#: config/tc-ppc.c:1718 config/tc-ppc.c:1775 config/tc-ppc.c:1819 +#: config/tc-ppc.c:1863 #, c-format msgid "major opcode is not sorted for %s" msgstr "" -#: config/tc-ppc.c:1714 +#: config/tc-ppc.c:1724 #, c-format msgid "%s is enabled by vle flag" msgstr "" -#: config/tc-ppc.c:1721 +#: config/tc-ppc.c:1731 #, c-format msgid "%s not disabled by vle flag" msgstr "" -#: config/tc-ppc.c:1735 config/tc-ppc.c:1779 config/tc-ppc.c:1824 -#: config/tc-ppc.c:1868 +#: config/tc-ppc.c:1745 config/tc-ppc.c:1789 config/tc-ppc.c:1834 +#: config/tc-ppc.c:1878 #, c-format msgid "duplicate instruction %s" msgstr "" -#: config/tc-ppc.c:1892 +#: config/tc-ppc.c:1902 #, c-format msgid "duplicate macro %s" msgstr "" -#: config/tc-ppc.c:2268 +#: config/tc-ppc.c:2278 #, c-format msgid "symbol+offset@%s means symbol@%s+offset" msgstr "" -#: config/tc-ppc.c:2288 +#: config/tc-ppc.c:2298 #, c-format msgid "symbol+offset@%s not supported" msgstr "" -#: config/tc-ppc.c:2365 config/tc-ppc.c:4361 config/tc-ppc.c:7888 +#: config/tc-ppc.c:2375 config/tc-ppc.c:4374 config/tc-ppc.c:7901 msgid "data in executable section" msgstr "" -#: config/tc-ppc.c:2406 config/tc-ppc.c:5998 +#: config/tc-ppc.c:2416 config/tc-ppc.c:6011 msgid "expected comma after symbol-name: rest of line ignored." msgstr "" -#: config/tc-ppc.c:2439 config/tc-ppc.c:6034 +#: config/tc-ppc.c:2449 config/tc-ppc.c:6047 #, c-format msgid "ignoring attempt to re-define symbol `%s'." msgstr "" -#: config/tc-ppc.c:2447 +#: config/tc-ppc.c:2457 #, c-format msgid "length of .lcomm \"%s\" is already %ld. Not changed to %ld." msgstr "" -#: config/tc-ppc.c:2465 +#: config/tc-ppc.c:2475 msgid "common alignment not a power of 2" msgstr "" -#: config/tc-ppc.c:2507 +#: config/tc-ppc.c:2517 #, c-format msgid "expected comma after name `%s' in .localentry directive" msgstr "" -#: config/tc-ppc.c:2517 +#: config/tc-ppc.c:2527 msgid "missing expression in .localentry directive" msgstr "" -#: config/tc-ppc.c:2538 +#: config/tc-ppc.c:2548 #, c-format msgid ".localentry expression for `%s' is not a valid power of 2" msgstr "" -#: config/tc-ppc.c:2555 +#: config/tc-ppc.c:2565 #, c-format msgid ".localentry expression for `%s' does not evaluate to a constant" msgstr "" -#: config/tc-ppc.c:2570 +#: config/tc-ppc.c:2580 msgid "missing expression in .abiversion directive" msgstr "" -#: config/tc-ppc.c:2579 +#: config/tc-ppc.c:2589 msgid ".abiversion expression does not evaluate to a constant" msgstr "" -#: config/tc-ppc.c:2601 +#: config/tc-ppc.c:2611 msgid "unknown .gnu_attribute value" msgstr "" -#: config/tc-ppc.c:2659 +#: config/tc-ppc.c:2669 msgid "relocation cannot be done when using -mrelocatable" msgstr "" -#: config/tc-ppc.c:2705 +#: config/tc-ppc.c:2715 msgid "TOC section size exceeds 64k" msgstr "" -#: config/tc-ppc.c:2800 +#: config/tc-ppc.c:2810 #, c-format msgid "syntax error: invalid toc specifier `%s'" msgstr "" -#: config/tc-ppc.c:2814 +#: config/tc-ppc.c:2824 #, c-format msgid "syntax error: expected `]', found `%c'" msgstr "" -#: config/tc-ppc.c:3234 +#: config/tc-ppc.c:3244 #, c-format msgid "%s howto doesn't match size/pcrel in gas" msgstr "" -#: config/tc-ppc.c:3314 +#: config/tc-ppc.c:3327 #, c-format msgid "unrecognized opcode: `%s'" msgstr "" -#: config/tc-ppc.c:3490 +#: config/tc-ppc.c:3503 msgid "[tocv] symbol is not a toc symbol" msgstr "" -#: config/tc-ppc.c:3501 +#: config/tc-ppc.c:3514 msgid "unimplemented toc32 expression modifier" msgstr "" -#: config/tc-ppc.c:3506 +#: config/tc-ppc.c:3519 msgid "unimplemented toc64 expression modifier" msgstr "" -#: config/tc-ppc.c:3510 +#: config/tc-ppc.c:3523 #, c-format msgid "Unexpected return value [%d] from parse_toc_entry!\n" msgstr "" -#: config/tc-ppc.c:3759 +#: config/tc-ppc.c:3772 #, c-format msgid "@tls may not be used with \"%s\" operands" msgstr "" -#: config/tc-ppc.c:3762 +#: config/tc-ppc.c:3775 msgid "@tls may only be used in last operand" msgstr "" -#: config/tc-ppc.c:3800 config/tc-ppc.c:3810 config/tc-ppc.c:3820 -#: config/tc-ppc.c:3835 +#: config/tc-ppc.c:3813 config/tc-ppc.c:3823 config/tc-ppc.c:3833 +#: config/tc-ppc.c:3848 #, c-format msgid "%s unsupported on this instruction" msgstr "" -#: config/tc-ppc.c:3879 +#: config/tc-ppc.c:3892 #, c-format msgid "assuming %s on symbol" msgstr "" -#: config/tc-ppc.c:4002 +#: config/tc-ppc.c:4015 msgid "unsupported relocation for DS offset field" msgstr "" -#: config/tc-ppc.c:4055 +#: config/tc-ppc.c:4068 #, c-format msgid "syntax error; found `%c', expected `%c'" msgstr "" -#: config/tc-ppc.c:4060 +#: config/tc-ppc.c:4073 #, c-format msgid "syntax error; end of line, expected `%c'" msgstr "" -#: config/tc-ppc.c:4125 config/tc-ppc.c:7097 +#: config/tc-ppc.c:4138 config/tc-ppc.c:7110 #, c-format msgid "instruction address is not a multiple of %d" msgstr "" -#: config/tc-ppc.c:4245 +#: config/tc-ppc.c:4258 msgid "wrong number of operands" msgstr "" -#: config/tc-ppc.c:4318 +#: config/tc-ppc.c:4331 msgid "bad .section directive: want a,e,v,w,x,M,S,G,T in string" msgstr "" -#: config/tc-ppc.c:4398 +#: config/tc-ppc.c:4411 msgid "missing size" msgstr "" -#: config/tc-ppc.c:4407 +#: config/tc-ppc.c:4420 msgid "negative size" msgstr "" -#: config/tc-ppc.c:4439 +#: config/tc-ppc.c:4452 msgid "missing real symbol name" msgstr "" -#: config/tc-ppc.c:4478 +#: config/tc-ppc.c:4491 msgid "attempt to redefine symbol" msgstr "" -#: config/tc-ppc.c:4741 +#: config/tc-ppc.c:4754 #, c-format msgid "no known dwarf XCOFF section for flag 0x%08x\n" msgstr "" -#: config/tc-ppc.c:4754 +#: config/tc-ppc.c:4767 #, c-format msgid "label %s was not defined in this dwarf section" msgstr "" -#: config/tc-ppc.c:4868 +#: config/tc-ppc.c:4881 msgid "the XCOFF file format does not support arbitrary sections" msgstr "" -#: config/tc-ppc.c:4939 +#: config/tc-ppc.c:4952 msgid ".ref outside .csect" msgstr "" -#: config/tc-ppc.c:4960 config/tc-ppc.c:5160 +#: config/tc-ppc.c:4973 config/tc-ppc.c:5173 msgid "missing symbol name" msgstr "" -#: config/tc-ppc.c:4990 +#: config/tc-ppc.c:5003 msgid "missing rename string" msgstr "" -#: config/tc-ppc.c:5020 config/tc-ppc.c:5559 read.c:3519 +#: config/tc-ppc.c:5033 config/tc-ppc.c:5572 read.c:3520 msgid "missing value" msgstr "" -#: config/tc-ppc.c:5038 +#: config/tc-ppc.c:5051 msgid "illegal .stabx expression; zero assumed" msgstr "" -#: config/tc-ppc.c:5070 +#: config/tc-ppc.c:5083 msgid "missing class" msgstr "" -#: config/tc-ppc.c:5079 +#: config/tc-ppc.c:5092 msgid "missing type" msgstr "" -#: config/tc-ppc.c:5106 +#: config/tc-ppc.c:5119 msgid ".stabx of storage class stsym must be within .bs/.es" msgstr "" -#: config/tc-ppc.c:5347 +#: config/tc-ppc.c:5360 msgid "nested .bs blocks" msgstr "" -#: config/tc-ppc.c:5378 +#: config/tc-ppc.c:5391 msgid ".es without preceding .bs" msgstr "" -#: config/tc-ppc.c:5551 +#: config/tc-ppc.c:5564 msgid "non-constant byte count" msgstr "" -#: config/tc-ppc.c:5626 +#: config/tc-ppc.c:5639 msgid ".tc not in .toc section" msgstr "" -#: config/tc-ppc.c:5644 +#: config/tc-ppc.c:5657 msgid ".tc with no label" msgstr "" -#: config/tc-ppc.c:5728 config/tc-s390.c:1968 +#: config/tc-ppc.c:5741 config/tc-s390.c:1968 msgid ".machine stack overflow" msgstr "" -#: config/tc-ppc.c:5735 config/tc-s390.c:1979 +#: config/tc-ppc.c:5748 config/tc-s390.c:1979 msgid ".machine stack underflow" msgstr "" -#: config/tc-ppc.c:5742 config/tc-s390.c:1991 +#: config/tc-ppc.c:5755 config/tc-s390.c:1991 #, c-format msgid "invalid machine `%s'" msgstr "" -#: config/tc-ppc.c:5774 +#: config/tc-ppc.c:5787 msgid "no previous section to return to, ignored." msgstr "" -#: config/tc-ppc.c:6043 +#: config/tc-ppc.c:6056 #, c-format msgid "length of .comm \"%s\" is already %ld. Not changed to %ld." msgstr "" #. Section Contents #. unknown -#: config/tc-ppc.c:6171 +#: config/tc-ppc.c:6184 msgid "unsupported section attribute -- 'a'" msgstr "" -#: config/tc-ppc.c:6353 +#: config/tc-ppc.c:6366 msgid "bad symbol suffix" msgstr "" -#: config/tc-ppc.c:6446 +#: config/tc-ppc.c:6459 msgid "unrecognized symbol suffix" msgstr "" -#: config/tc-ppc.c:6509 +#: config/tc-ppc.c:6522 msgid "two .function pseudo-ops with no intervening .ef" msgstr "" -#: config/tc-ppc.c:6522 +#: config/tc-ppc.c:6535 msgid ".ef with no preceding .function" msgstr "" -#: config/tc-ppc.c:6649 +#: config/tc-ppc.c:6662 #, c-format msgid "warning: symbol %s has no csect" msgstr "" -#: config/tc-ppc.c:6911 +#: config/tc-ppc.c:6924 msgid "symbol in .toc does not match any .tc" msgstr "" -#: config/tc-ppc.c:7626 +#: config/tc-ppc.c:7639 #, c-format msgid "%s unsupported as instruction fixup" msgstr "" -#: config/tc-ppc.c:7725 +#: config/tc-ppc.c:7738 #, c-format msgid "unsupported relocation against %s" msgstr "" -#: config/tc-ppc.c:7871 +#: config/tc-ppc.c:7884 #, c-format msgid "Gas failure, reloc value %d\n" msgstr "" @@ -15274,212 +15475,258 @@ msgstr "" msgid "Label \"%s\" matches a CPU register name" msgstr "" -#: config/tc-riscv.c:412 config/tc-riscv.c:471 +#: config/tc-riscv.c:141 +#, c-format +msgid "" +"Unknown default privilege spec `%s' set by -mpriv-spec or --with-priv-spec" +msgstr "" + +#. Still can not find the priv spec class. +#: config/tc-riscv.c:183 +#, c-format +msgid "Unknown default privilege spec `%d.%d.%d' set by privilege attributes" +msgstr "" + +#: config/tc-riscv.c:591 config/tc-riscv.c:652 #, c-format msgid "internal error: can't hash `%s': %s" msgstr "" -#: config/tc-riscv.c:568 +#: config/tc-riscv.c:741 +#, c-format +msgid "internal: bad RISC-V CSR class (0x%x)" +msgstr "" + +#: config/tc-riscv.c:745 +#, c-format +msgid "Invalid CSR `%s' for the current ISA" +msgstr "" + +#: config/tc-riscv.c:777 +#, c-format +msgid "Invalid CSR `%s' for the privilege spec `%s'" +msgstr "" + +#: config/tc-riscv.c:897 #, c-format msgid "internal: bad RISC-V opcode (mask error): %s %s" msgstr "" -#: config/tc-riscv.c:617 +#: config/tc-riscv.c:946 #, c-format msgid "internal: bad RISC-V opcode (unknown operand type `CF%c'): %s %s" msgstr "" -#: config/tc-riscv.c:624 +#: config/tc-riscv.c:953 #, c-format msgid "internal: bad RISC-V opcode (unknown operand type `C%c'): %s %s" msgstr "" -#: config/tc-riscv.c:668 config/tc-riscv.c:680 +#: config/tc-riscv.c:997 config/tc-riscv.c:1009 #, c-format msgid "internal: bad RISC-V opcode (unknown operand type `F%c'): %s %s" msgstr "" -#: config/tc-riscv.c:687 +#: config/tc-riscv.c:1016 #, c-format msgid "internal: bad RISC-V opcode (unknown operand type `%c'): %s %s" msgstr "" -#: config/tc-riscv.c:695 +#: config/tc-riscv.c:1024 #, c-format msgid "internal: bad RISC-V opcode (bits 0x%lx undefined): %s %s" msgstr "" -#: config/tc-riscv.c:841 +#: config/tc-riscv.c:1173 #, c-format msgid "Unsupported RISC-V relocation number %d" msgstr "" -#: config/tc-riscv.c:928 +#: config/tc-riscv.c:1260 msgid "internal error: invalid macro" msgstr "" -#: config/tc-riscv.c:953 +#: config/tc-riscv.c:1285 msgid "internal error: vasprintf failed" msgstr "" -#: config/tc-riscv.c:982 config/tc-riscv.c:1053 +#: config/tc-riscv.c:1314 config/tc-riscv.c:1385 msgid "unsupported large constant" msgstr "" -#: config/tc-riscv.c:984 +#: config/tc-riscv.c:1316 #, c-format msgid "unknown CSR `%s'" msgstr "" -#: config/tc-riscv.c:987 +#: config/tc-riscv.c:1319 #, c-format msgid "Instruction %s requires absolute expression" msgstr "" -#: config/tc-riscv.c:1213 +#: config/tc-riscv.c:1545 #, c-format msgid "Macro %s not implemented" msgstr "" -#: config/tc-riscv.c:1700 +#: config/tc-riscv.c:1860 +#, c-format +msgid "Read-only CSR is written `%s'" +msgstr "" + +#: config/tc-riscv.c:2100 msgid "bad value for funct6 field, value must be 0...64" msgstr "" -#: config/tc-riscv.c:1715 +#: config/tc-riscv.c:2115 msgid "bad value for funct4 field, value must be 0...15" msgstr "" -#: config/tc-riscv.c:1730 config/tc-riscv.c:2087 +#: config/tc-riscv.c:2130 config/tc-riscv.c:2488 msgid "bad value for funct3 field, value must be 0...7" msgstr "" -#: config/tc-riscv.c:1744 config/tc-riscv.c:2102 +#: config/tc-riscv.c:2144 config/tc-riscv.c:2503 msgid "bad value for funct2 field, value must be 0...3" msgstr "" -#: config/tc-riscv.c:1753 +#: config/tc-riscv.c:2153 #, c-format msgid "bad compressed FUNCT field specifier 'CF%c'\n" msgstr "" -#: config/tc-riscv.c:1760 +#: config/tc-riscv.c:2160 #, c-format msgid "bad RVC field specifier 'C%c'\n" msgstr "" -#: config/tc-riscv.c:1783 config/tc-riscv.c:1794 +#: config/tc-riscv.c:2183 config/tc-riscv.c:2194 #, c-format msgid "Improper shift amount (%lu)" msgstr "" -#: config/tc-riscv.c:1805 +#: config/tc-riscv.c:2205 #, c-format msgid "Improper CSRxI immediate (%lu)" msgstr "" -#: config/tc-riscv.c:1820 +#: config/tc-riscv.c:2221 #, c-format msgid "Improper CSR address (%lu)" msgstr "" -#: config/tc-riscv.c:1997 +#: config/tc-riscv.c:2398 msgid "lui expression not in range 0..1048575" msgstr "" -#: config/tc-riscv.c:2033 +#: config/tc-riscv.c:2434 msgid "" "bad value for opcode field, value must be 0...127 and lower 2 bits must be " "0x3" msgstr "" -#: config/tc-riscv.c:2049 +#: config/tc-riscv.c:2450 msgid "bad value for opcode field, value must be 0...2" msgstr "" -#: config/tc-riscv.c:2059 +#: config/tc-riscv.c:2460 #, c-format msgid "bad Opcode field specifier 'O%c'\n" msgstr "" -#: config/tc-riscv.c:2072 +#: config/tc-riscv.c:2473 msgid "bad value for funct7 field, value must be 0...127" msgstr "" -#: config/tc-riscv.c:2113 +#: config/tc-riscv.c:2514 #, c-format msgid "bad FUNCT field specifier 'F%c'\n" msgstr "" -#: config/tc-riscv.c:2127 +#: config/tc-riscv.c:2528 #, c-format msgid "internal error: bad argument type %c" msgstr "" -#: config/tc-riscv.c:2132 +#: config/tc-riscv.c:2533 msgid "illegal operands" msgstr "" -#: config/tc-riscv.c:2508 +#: config/tc-riscv.c:2961 #, c-format msgid "internal error: bad CFA value #%d" msgstr "" -#: config/tc-riscv.c:2589 +#: config/tc-riscv.c:3042 #, c-format msgid "internal error: bad relocation #%d" msgstr "" -#: config/tc-riscv.c:2594 +#: config/tc-riscv.c:3047 msgid "unsupported symbol subtraction" msgstr "" -#: config/tc-riscv.c:2689 +#: config/tc-riscv.c:3146 msgid ".option pop with no .option push" msgstr "" -#: config/tc-riscv.c:2699 +#: config/tc-riscv.c:3156 #, c-format msgid "Unrecognized .option directive: %s\n" msgstr "" -#: config/tc-riscv.c:2719 +#: config/tc-riscv.c:3176 #, c-format msgid "Unsupported use of %s" msgstr "" -#: config/tc-riscv.c:2874 +#: config/tc-riscv.c:3331 #, c-format msgid "cannot represent %s relocation in object file" msgstr "" -#: config/tc-riscv.c:3015 +#: config/tc-riscv.c:3472 #, c-format msgid "" "RISC-V options:\n" -" -fpic generate position-independent code\n" -" -fno-pic don't generate position-independent code (default)\n" -" -march=ISA set the RISC-V architecture\n" -" -mabi=ABI set the RISC-V ABI\n" -" -mrelax enable relax (default)\n" -" -mno-relax disable relax\n" -" -march-attr generate RISC-V arch attribute\n" -" -mno-arch-attr don't generate RISC-V arch attribute\n" +" -fpic generate position-independent code\n" +" -fno-pic don't generate position-independent code " +"(default)\n" +" -march=ISA set the RISC-V architecture\n" +" -misa-spec=ISAspec set the RISC-V ISA spec (2.2, 20190608, " +"20191213)\n" +" -mpriv-spec=PRIVspec set the RISC-V privilege spec (1.9, 1.9.1, " +"1.10, 1.11)\n" +" -mabi=ABI set the RISC-V ABI\n" +" -mrelax enable relax (default)\n" +" -mno-relax disable relax\n" +" -march-attr generate RISC-V arch attribute\n" +" -mno-arch-attr don't generate RISC-V arch attribute\n" msgstr "" -#: config/tc-riscv.c:3050 +#: config/tc-riscv.c:3509 #, c-format msgid "unknown register `%s'" msgstr "" -#: config/tc-riscv.c:3071 +#: config/tc-riscv.c:3530 #, c-format msgid "non-constant .%cleb128 is not supported" msgstr "" -#: config/tc-riscv.c:3196 +#: config/tc-riscv.c:3610 +#, c-format +msgid "internal: bad RISC-V priv spec string (%s)" +msgstr "" + +#: config/tc-riscv.c:3696 msgid ".attribute arch must set before any instructions" msgstr "" +#: config/tc-riscv.c:3713 +msgid ".attribute priv spec must set before any instructions" +msgstr "" + #: config/tc-rl78.c:213 msgid "16-bit relocation used in 8-bit operand" msgstr "" @@ -15488,12 +15735,12 @@ msgstr "" msgid "8-bit relocation used in 16-bit operand" msgstr "" -#: config/tc-rl78.c:243 config/tc-rx.c:889 +#: config/tc-rl78.c:243 config/tc-rx.c:888 #, c-format msgid "Value %d doesn't fit in unsigned %d-bit field" msgstr "" -#: config/tc-rl78.c:249 config/tc-rx.c:895 +#: config/tc-rl78.c:249 config/tc-rx.c:894 #, c-format msgid "Value %d doesn't fit in signed %d-bit field" msgstr "" @@ -15543,7 +15790,7 @@ msgstr "" msgid "%%%s() must be outermost term in expression" msgstr "" -#: config/tc-rl78.c:678 config/tc-rx.c:2256 +#: config/tc-rl78.c:678 config/tc-rx.c:2255 #, c-format msgid "unsupported constant size %d\n" msgstr "" @@ -15558,11 +15805,11 @@ msgstr "" msgid "%%hi8 only applies to .byte" msgstr "" -#: config/tc-rl78.c:716 config/tc-rx.c:2263 +#: config/tc-rl78.c:716 config/tc-rx.c:2262 msgid "difference of two symbols only supported with .long, .short, or .byte" msgstr "" -#: config/tc-rl78.c:1237 config/tc-rx.c:2190 +#: config/tc-rl78.c:1237 config/tc-rx.c:2189 #, c-format msgid "bad frag at %p : fix %ld addr %ld %ld \n" msgstr "" @@ -15577,140 +15824,140 @@ msgstr "" msgid "value of %ld too large for 16-bit branch" msgstr "" -#: config/tc-rl78.c:1513 config/tc-rx.c:2455 +#: config/tc-rl78.c:1513 config/tc-rx.c:2454 #, c-format msgid "Unknown reloc in md_apply_fix: %s" msgstr "" -#: config/tc-rx.c:195 +#: config/tc-rx.c:194 #, c-format msgid "unrecognised RX CPU type %s" msgstr "" -#: config/tc-rx.c:210 +#: config/tc-rx.c:209 #, c-format msgid " RX specific command line options:\n" msgstr "" -#: config/tc-rx.c:211 +#: config/tc-rx.c:210 #, c-format msgid " --mbig-endian-data\n" msgstr "" -#: config/tc-rx.c:212 +#: config/tc-rx.c:211 #, c-format msgid " --mlittle-endian-data [default]\n" msgstr "" -#: config/tc-rx.c:213 +#: config/tc-rx.c:212 #, c-format msgid " --m32bit-doubles [default]\n" msgstr "" -#: config/tc-rx.c:214 +#: config/tc-rx.c:213 #, c-format msgid " --m64bit-doubles\n" msgstr "" -#: config/tc-rx.c:215 +#: config/tc-rx.c:214 #, c-format msgid " --muse-conventional-section-names\n" msgstr "" -#: config/tc-rx.c:216 +#: config/tc-rx.c:215 #, c-format msgid " --muse-renesas-section-names [default]\n" msgstr "" -#: config/tc-rx.c:217 +#: config/tc-rx.c:216 #, c-format msgid " --msmall-data-limit\n" msgstr "" -#: config/tc-rx.c:218 +#: config/tc-rx.c:217 #, c-format msgid " --mrelax\n" msgstr "" -#: config/tc-rx.c:219 +#: config/tc-rx.c:218 #, c-format msgid " --mpid\n" msgstr "" -#: config/tc-rx.c:220 +#: config/tc-rx.c:219 #, c-format msgid " --mint-register=\n" msgstr "" -#: config/tc-rx.c:221 +#: config/tc-rx.c:220 #, c-format msgid " --mcpu=\n" msgstr "" -#: config/tc-rx.c:222 +#: config/tc-rx.c:221 #, c-format msgid " --mno-allow-string-insns" msgstr "" -#: config/tc-rx.c:302 +#: config/tc-rx.c:301 msgid "no filename following .INCLUDE pseudo-op" msgstr "" -#: config/tc-rx.c:405 +#: config/tc-rx.c:404 #, c-format msgid "unable to locate include file: %s" msgstr "" -#: config/tc-rx.c:456 +#: config/tc-rx.c:455 #, c-format msgid "unrecognised alignment value in .SECTION directive: %s" msgstr "" -#: config/tc-rx.c:473 +#: config/tc-rx.c:472 #, c-format msgid "unknown parameter following .SECTION directive: %s" msgstr "" -#: config/tc-rx.c:559 +#: config/tc-rx.c:558 msgid "expecting either ON or OFF after .list" msgstr "" -#: config/tc-rx.c:595 +#: config/tc-rx.c:594 #, c-format msgid "The \".%s\" pseudo-op is not implemented\n" msgstr "" -#: config/tc-rx.c:968 config/tc-rx.c:970 +#: config/tc-rx.c:967 config/tc-rx.c:969 #, c-format msgid "Value %d and %d out of range" msgstr "" -#: config/tc-rx.c:1125 +#: config/tc-rx.c:1124 msgid "The .DEFINE pseudo-op is not implemented" msgstr "" -#: config/tc-rx.c:1127 +#: config/tc-rx.c:1126 msgid "The .MACRO pseudo-op is not implemented" msgstr "" -#: config/tc-rx.c:1129 +#: config/tc-rx.c:1128 msgid "The .BTEQU pseudo-op is not implemented." msgstr "" -#: config/tc-rx.c:2121 +#: config/tc-rx.c:2120 msgid "invalid immediate size" msgstr "" -#: config/tc-rx.c:2140 +#: config/tc-rx.c:2139 msgid "invalid immediate field position" msgstr "" -#: config/tc-rx.c:2307 +#: config/tc-rx.c:2306 #, c-format msgid "jump not 3..10 bytes away (is %d)" msgstr "" -#: config/tc-rx.c:2698 +#: config/tc-rx.c:2697 msgid "" "Use of an RX string instruction detected in a file being assembled without " "string instruction support" @@ -16231,148 +16478,148 @@ msgstr "" msgid "score3d instruction." msgstr "" -#: config/tc-score.c:6026 +#: config/tc-score.c:6014 msgid "Unsupported use of .gpword" msgstr "" -#: config/tc-score.c:6122 +#: config/tc-score.c:6110 #, c-format msgid "BSS length (%d) < 0 ignored" msgstr "" -#: config/tc-score.c:6137 read.c:2468 +#: config/tc-score.c:6124 read.c:2469 #, c-format msgid "error setting flags for \".sbss\": %s" msgstr "" -#: config/tc-score.c:6152 config/tc-sparc.c:4170 +#: config/tc-score.c:6138 config/tc-sparc.c:4170 msgid "missing alignment" msgstr "" -#: config/tc-score.c:6189 +#: config/tc-score.c:6175 #, c-format msgid "alignment too large; %d assumed" msgstr "" -#: config/tc-score.c:6194 read.c:2529 +#: config/tc-score.c:6180 read.c:2530 msgid "alignment negative; 0 assumed" msgstr "" #. Error routine. -#: config/tc-score.c:6603 config/tc-score.c:6627 +#: config/tc-score.c:6585 config/tc-score.c:6609 msgid "size is not 4 or 6" msgstr "" -#: config/tc-score.c:6686 +#: config/tc-score.c:6668 msgid "bad call to MD_ATOF()" msgstr "" -#: config/tc-score.c:7185 config/tc-score.c:7251 +#: config/tc-score.c:7167 config/tc-score.c:7233 #, c-format msgid " branch relocation truncate (0x%x) [-2^9 ~ 2^9-1]" msgstr "" -#: config/tc-score.c:7200 config/tc-score.c:7229 config/tc-score.c:7281 +#: config/tc-score.c:7182 config/tc-score.c:7211 config/tc-score.c:7263 #, c-format msgid " branch relocation truncate (0x%x) [-2^19 ~ 2^19-1]" msgstr "" -#: config/tc-score.c:7306 +#: config/tc-score.c:7288 #, c-format msgid " branch relocation truncate (0x%x) [-2^9 ~ 2^9-1]" msgstr "" -#: config/tc-score.c:7476 +#: config/tc-score.c:7458 #, c-format msgid "cannot represent %s relocation in this object file format1" msgstr "" -#: config/tc-score.c:7767 +#: config/tc-score.c:7749 #, c-format msgid "Sunplus-v2-0-0-20060510\n" msgstr "" -#: config/tc-score.c:7787 +#: config/tc-score.c:7769 #, c-format msgid " Score-specific assembler options:\n" msgstr "" -#: config/tc-score.c:7789 +#: config/tc-score.c:7771 #, c-format msgid " -EB\t\tassemble code for a big-endian cpu\n" msgstr "" -#: config/tc-score.c:7794 +#: config/tc-score.c:7776 #, c-format msgid " -EL\t\tassemble code for a little-endian cpu\n" msgstr "" -#: config/tc-score.c:7798 +#: config/tc-score.c:7780 #, c-format msgid " -FIXDD\t\tfix data dependencies\n" msgstr "" -#: config/tc-score.c:7800 +#: config/tc-score.c:7782 #, c-format msgid "" " -NWARN\t\tdo not print warning message when fixing data " "dependencies\n" msgstr "" -#: config/tc-score.c:7802 +#: config/tc-score.c:7784 #, c-format msgid " -SCORE5\t\tassemble code for target SCORE5\n" msgstr "" -#: config/tc-score.c:7804 +#: config/tc-score.c:7786 #, c-format msgid " -SCORE5U\tassemble code for target SCORE5U\n" msgstr "" -#: config/tc-score.c:7806 +#: config/tc-score.c:7788 #, c-format msgid " -SCORE7\t\tassemble code for target SCORE7 [default]\n" msgstr "" -#: config/tc-score.c:7808 +#: config/tc-score.c:7790 #, c-format msgid " -SCORE3\t\tassemble code for target SCORE3\n" msgstr "" -#: config/tc-score.c:7810 +#: config/tc-score.c:7792 #, c-format msgid " -march=score7\tassemble code for target SCORE7 [default]\n" msgstr "" -#: config/tc-score.c:7812 +#: config/tc-score.c:7794 #, c-format msgid " -march=score3\tassemble code for target SCORE3\n" msgstr "" -#: config/tc-score.c:7814 +#: config/tc-score.c:7796 #, c-format msgid "" " -USE_R1\t\tassemble code for no warning message when using temp " "register r1\n" msgstr "" -#: config/tc-score.c:7816 +#: config/tc-score.c:7798 #, c-format msgid " -KPIC\t\tgenerate PIC\n" msgstr "" -#: config/tc-score.c:7818 +#: config/tc-score.c:7800 #, c-format msgid " -O0\t\tdo not perform any optimizations\n" msgstr "" -#: config/tc-score.c:7820 +#: config/tc-score.c:7802 #, c-format msgid "" " -G gpnum\tassemble code for setting gpsize, default is 8 bytes\n" msgstr "" -#: config/tc-score.c:7822 +#: config/tc-score.c:7804 #, c-format msgid " -V \t\tSunplus release version\n" msgstr "" @@ -16431,122 +16678,122 @@ msgstr "" msgid "Invalid register: 'r%d'" msgstr "" -#: config/tc-sh.c:2120 +#: config/tc-sh.c:2121 #, c-format msgid "failed for %d\n" msgstr "" -#: config/tc-sh.c:2126 +#: config/tc-sh.c:2127 msgid "misplaced PIC operand" msgstr "" -#: config/tc-sh.c:2237 config/tc-sh.c:2610 +#: config/tc-sh.c:2238 config/tc-sh.c:2611 msgid "invalid operands for opcode" msgstr "" -#: config/tc-sh.c:2242 +#: config/tc-sh.c:2243 msgid "insn can't be combined with parallel processing insn" msgstr "" -#: config/tc-sh.c:2249 config/tc-sh.c:2260 config/tc-sh.c:2292 +#: config/tc-sh.c:2250 config/tc-sh.c:2261 config/tc-sh.c:2293 msgid "multiple movx specifications" msgstr "" -#: config/tc-sh.c:2254 config/tc-sh.c:2276 config/tc-sh.c:2315 +#: config/tc-sh.c:2255 config/tc-sh.c:2277 config/tc-sh.c:2316 msgid "multiple movy specifications" msgstr "" -#: config/tc-sh.c:2263 config/tc-sh.c:2296 +#: config/tc-sh.c:2264 config/tc-sh.c:2297 msgid "invalid movx address register" msgstr "" -#: config/tc-sh.c:2265 +#: config/tc-sh.c:2266 msgid "insn cannot be combined with non-nopy" msgstr "" -#: config/tc-sh.c:2279 config/tc-sh.c:2335 +#: config/tc-sh.c:2280 config/tc-sh.c:2336 msgid "invalid movy address register" msgstr "" -#: config/tc-sh.c:2281 +#: config/tc-sh.c:2282 msgid "insn cannot be combined with non-nopx" msgstr "" -#: config/tc-sh.c:2294 +#: config/tc-sh.c:2295 msgid "previous movy requires nopx" msgstr "" -#: config/tc-sh.c:2302 config/tc-sh.c:2307 +#: config/tc-sh.c:2303 config/tc-sh.c:2308 msgid "invalid movx dsp register" msgstr "" -#: config/tc-sh.c:2317 +#: config/tc-sh.c:2318 msgid "previous movx requires nopy" msgstr "" -#: config/tc-sh.c:2326 config/tc-sh.c:2331 +#: config/tc-sh.c:2327 config/tc-sh.c:2332 msgid "invalid movy dsp register" msgstr "" -#: config/tc-sh.c:2341 +#: config/tc-sh.c:2342 msgid "dsp immediate shift value not constant" msgstr "" -#: config/tc-sh.c:2355 config/tc-sh.c:2381 +#: config/tc-sh.c:2356 config/tc-sh.c:2382 msgid "multiple parallel processing specifications" msgstr "" -#: config/tc-sh.c:2374 +#: config/tc-sh.c:2375 msgid "multiple condition specifications" msgstr "" -#: config/tc-sh.c:2412 +#: config/tc-sh.c:2413 msgid "insn cannot be combined with pmuls" msgstr "" -#: config/tc-sh.c:2428 +#: config/tc-sh.c:2429 msgid "bad combined pmuls output operand" msgstr "" -#: config/tc-sh.c:2438 +#: config/tc-sh.c:2439 msgid "destination register is same for parallel insns" msgstr "" -#: config/tc-sh.c:2447 +#: config/tc-sh.c:2448 msgid "condition not followed by conditionalizable insn" msgstr "" -#: config/tc-sh.c:2457 +#: config/tc-sh.c:2458 msgid "unrecognized characters at end of parallel processing insn" msgstr "" -#: config/tc-sh.c:2549 +#: config/tc-sh.c:2550 msgid "opcode not valid for this cpu variant" msgstr "" -#: config/tc-sh.c:2580 +#: config/tc-sh.c:2581 msgid "Delayed branches not available on SH1" msgstr "" -#: config/tc-sh.c:2615 +#: config/tc-sh.c:2616 #, c-format msgid "excess operands: '%s'" msgstr "" -#: config/tc-sh.c:2692 +#: config/tc-sh.c:2693 msgid ".uses pseudo-op seen when not relaxing" msgstr "" -#: config/tc-sh.c:2698 +#: config/tc-sh.c:2699 msgid "bad .uses format" msgstr "" -#: config/tc-sh.c:2816 +#: config/tc-sh.c:2817 #, c-format msgid "Invalid argument to --isa option: %s" msgstr "" -#: config/tc-sh.c:2840 +#: config/tc-sh.c:2841 #, c-format msgid "" "SH options:\n" @@ -16563,70 +16810,70 @@ msgid "" " | fp" msgstr "" -#: config/tc-sh.c:2865 +#: config/tc-sh.c:2866 #, c-format msgid "--fdpic\t\t\tgenerate an FDPIC object file\n" msgstr "" -#: config/tc-sh.c:2941 +#: config/tc-sh.c:2942 msgid ".uses does not refer to a local symbol in the same section" msgstr "" -#: config/tc-sh.c:2960 +#: config/tc-sh.c:2961 msgid "can't find fixup pointed to by .uses" msgstr "" -#: config/tc-sh.c:2980 +#: config/tc-sh.c:2981 msgid ".uses target does not refer to a local symbol in the same section" msgstr "" -#: config/tc-sh.c:3053 +#: config/tc-sh.c:3054 msgid "displacement overflows 12-bit field" msgstr "" -#: config/tc-sh.c:3056 +#: config/tc-sh.c:3057 #, c-format msgid "displacement to defined symbol %s overflows 12-bit field" msgstr "" -#: config/tc-sh.c:3060 +#: config/tc-sh.c:3061 #, c-format msgid "displacement to undefined symbol %s overflows 12-bit field" msgstr "" -#: config/tc-sh.c:3133 +#: config/tc-sh.c:3134 msgid "displacement overflows 8-bit field" msgstr "" -#: config/tc-sh.c:3136 +#: config/tc-sh.c:3137 #, c-format msgid "displacement to defined symbol %s overflows 8-bit field" msgstr "" -#: config/tc-sh.c:3140 +#: config/tc-sh.c:3141 #, c-format msgid "displacement to undefined symbol %s overflows 8-bit field " msgstr "" -#: config/tc-sh.c:3153 +#: config/tc-sh.c:3154 #, c-format msgid "overflow in branch to %s; converted into longer instruction sequence" msgstr "" -#: config/tc-sh.c:3218 config/tc-sh.c:3265 config/tc-sparc.c:4634 +#: config/tc-sh.c:3219 config/tc-sh.c:3266 config/tc-sparc.c:4634 #: config/tc-sparc.c:4658 msgid "misaligned data" msgstr "" -#: config/tc-sh.c:3571 +#: config/tc-sh.c:3572 msgid "offset to unaligned destination" msgstr "" -#: config/tc-sh.c:3576 +#: config/tc-sh.c:3577 msgid "negative offset" msgstr "" -#: config/tc-sh.c:3716 +#: config/tc-sh.c:3717 msgid "misaligned offset" msgstr "" @@ -16980,7 +17227,7 @@ msgstr "" msgid "negative alignment" msgstr "" -#: config/tc-sparc.c:4189 config/tc-sparc.c:4327 read.c:1523 read.c:2541 +#: config/tc-sparc.c:4189 config/tc-sparc.c:4327 read.c:1524 read.c:2542 msgid "alignment not a power of 2" msgstr "" @@ -18963,7 +19210,7 @@ msgstr "" msgid "displacement is too large" msgstr "" -#: config/tc-v850.c:2975 config/tc-xtensa.c:13030 +#: config/tc-v850.c:2975 config/tc-xtensa.c:13056 msgid "invalid operand" msgstr "" @@ -19282,7 +19529,7 @@ msgstr "" msgid "missing table index" msgstr "" -#: config/tc-wasm32.c:726 config/tc-z80.c:3306 read.c:3738 +#: config/tc-wasm32.c:726 config/tc-z80.c:3646 read.c:3739 #, c-format msgid "junk at end of line, first unrecognized character is `%c'" msgstr "" @@ -19401,555 +19648,555 @@ msgstr "" msgid "unsupported fptr fixup" msgstr "" -#: config/tc-xtensa.c:649 +#: config/tc-xtensa.c:655 msgid "illegal range of target hardware versions" msgstr "" -#: config/tc-xtensa.c:825 +#: config/tc-xtensa.c:831 msgid "--density option is ignored" msgstr "" -#: config/tc-xtensa.c:828 +#: config/tc-xtensa.c:834 msgid "--no-density option is ignored" msgstr "" -#: config/tc-xtensa.c:846 +#: config/tc-xtensa.c:852 msgid "--generics is deprecated; use --transform instead" msgstr "" -#: config/tc-xtensa.c:849 +#: config/tc-xtensa.c:855 msgid "--no-generics is deprecated; use --no-transform instead" msgstr "" -#: config/tc-xtensa.c:852 +#: config/tc-xtensa.c:858 msgid "--relax is deprecated; use --transform instead" msgstr "" -#: config/tc-xtensa.c:855 +#: config/tc-xtensa.c:861 msgid "--no-relax is deprecated; use --no-transform instead" msgstr "" -#: config/tc-xtensa.c:872 +#: config/tc-xtensa.c:878 msgid "--absolute-literals option not supported in this Xtensa configuration" msgstr "" -#: config/tc-xtensa.c:945 +#: config/tc-xtensa.c:951 msgid "prefer-l32r conflicts with prefer-const16" msgstr "" -#: config/tc-xtensa.c:951 +#: config/tc-xtensa.c:957 msgid "prefer-const16 conflicts with prefer-l32r" msgstr "" -#: config/tc-xtensa.c:960 config/tc-xtensa.c:969 config/tc-xtensa.c:973 +#: config/tc-xtensa.c:966 config/tc-xtensa.c:975 config/tc-xtensa.c:979 msgid "invalid target hardware version" msgstr "" -#: config/tc-xtensa.c:1019 +#: config/tc-xtensa.c:1025 msgid "no-auto-litpools is incompatible with auto-litpool-limit" msgstr "" -#: config/tc-xtensa.c:1021 config/tc-xtensa.c:1024 +#: config/tc-xtensa.c:1027 config/tc-xtensa.c:1030 msgid "invalid auto-litpool-limit argument" msgstr "" -#: config/tc-xtensa.c:1026 +#: config/tc-xtensa.c:1032 msgid "invalid auto-litpool-limit argument (range is 100-10000)" msgstr "" -#: config/tc-xtensa.c:1215 +#: config/tc-xtensa.c:1221 msgid "unmatched .end directive" msgstr "" -#: config/tc-xtensa.c:1244 +#: config/tc-xtensa.c:1250 msgid ".begin directive with no matching .end directive" msgstr "" -#: config/tc-xtensa.c:1285 +#: config/tc-xtensa.c:1291 msgid "[no-]generics is deprecated; use [no-]transform instead" msgstr "" -#: config/tc-xtensa.c:1290 +#: config/tc-xtensa.c:1296 msgid "[no-]relax is deprecated; use [no-]transform instead" msgstr "" -#: config/tc-xtensa.c:1303 +#: config/tc-xtensa.c:1309 #, c-format msgid "directive %s cannot be negated" msgstr "" -#: config/tc-xtensa.c:1309 +#: config/tc-xtensa.c:1315 msgid "unknown directive" msgstr "" -#: config/tc-xtensa.c:1330 config/tc-xtensa.c:1426 config/tc-xtensa.c:1656 -#: config/tc-xtensa.c:5903 +#: config/tc-xtensa.c:1336 config/tc-xtensa.c:1432 config/tc-xtensa.c:1662 +#: config/tc-xtensa.c:5923 msgid "directives are not valid inside bundles" msgstr "" -#: config/tc-xtensa.c:1342 +#: config/tc-xtensa.c:1348 msgid ".begin literal is deprecated; use .literal instead" msgstr "" -#: config/tc-xtensa.c:1356 +#: config/tc-xtensa.c:1362 msgid "cannot set literal_prefix inside literal fragment" msgstr "" -#: config/tc-xtensa.c:1389 +#: config/tc-xtensa.c:1395 msgid ".begin [no-]density is ignored" msgstr "" -#: config/tc-xtensa.c:1396 config/tc-xtensa.c:1446 +#: config/tc-xtensa.c:1402 config/tc-xtensa.c:1452 msgid "Xtensa absolute literals option not supported; ignored" msgstr "" -#: config/tc-xtensa.c:1439 +#: config/tc-xtensa.c:1445 msgid ".end [no-]density is ignored" msgstr "" -#: config/tc-xtensa.c:1464 +#: config/tc-xtensa.c:1470 #, c-format msgid "does not match begin %s%s at %s:%d" msgstr "" -#: config/tc-xtensa.c:1519 +#: config/tc-xtensa.c:1525 msgid ".literal_position inside literal directive; ignoring" msgstr "" -#: config/tc-xtensa.c:1538 +#: config/tc-xtensa.c:1544 msgid ".literal not allowed inside .begin literal region" msgstr "" -#: config/tc-xtensa.c:1566 +#: config/tc-xtensa.c:1572 msgid "expected comma or colon after symbol name; rest of line ignored" msgstr "" -#: config/tc-xtensa.c:1625 +#: config/tc-xtensa.c:1631 msgid "fall through frequency must be greater than 0" msgstr "" -#: config/tc-xtensa.c:1633 +#: config/tc-xtensa.c:1639 msgid "branch target frequency must be greater than 0" msgstr "" -#: config/tc-xtensa.c:1681 +#: config/tc-xtensa.c:1687 #, c-format msgid "opcode-specific %s relocation used outside an instruction" msgstr "" -#: config/tc-xtensa.c:1691 +#: config/tc-xtensa.c:1697 #, c-format msgid "invalid use of %s relocation" msgstr "" -#: config/tc-xtensa.c:1887 config/tc-xtensa.c:1904 +#: config/tc-xtensa.c:1893 config/tc-xtensa.c:1910 #, c-format msgid "bad register name: %s" msgstr "" -#: config/tc-xtensa.c:1893 +#: config/tc-xtensa.c:1899 #, c-format msgid "bad register number: %s" msgstr "" -#: config/tc-xtensa.c:1957 +#: config/tc-xtensa.c:1963 msgid "pcrel relocation not allowed in an instruction" msgstr "" -#: config/tc-xtensa.c:2060 +#: config/tc-xtensa.c:2066 msgid "extra colon" msgstr "" -#: config/tc-xtensa.c:2121 +#: config/tc-xtensa.c:2127 msgid "incorrect register number, ignoring" msgstr "" -#: config/tc-xtensa.c:2202 +#: config/tc-xtensa.c:2208 #, c-format msgid "cannot encode opcode \"%s\"" msgstr "" -#: config/tc-xtensa.c:2294 +#: config/tc-xtensa.c:2300 #, c-format msgid "not enough operands (%d) for '%s'; expected %d" msgstr "" -#: config/tc-xtensa.c:2301 +#: config/tc-xtensa.c:2307 #, c-format msgid "too many operands (%d) for '%s'; expected %d" msgstr "" -#: config/tc-xtensa.c:2352 +#: config/tc-xtensa.c:2358 #, c-format msgid "invalid register '%s' for '%s' instruction" msgstr "" -#: config/tc-xtensa.c:2359 +#: config/tc-xtensa.c:2365 #, c-format msgid "invalid register number (%ld) for '%s' instruction" msgstr "" -#: config/tc-xtensa.c:2426 +#: config/tc-xtensa.c:2432 #, c-format msgid "invalid register number (%ld) for '%s'" msgstr "" -#: config/tc-xtensa.c:2813 +#: config/tc-xtensa.c:2831 #, c-format msgid "operand %d of '%s' has out of range value '%u'" msgstr "" -#: config/tc-xtensa.c:2819 +#: config/tc-xtensa.c:2837 #, c-format msgid "operand %d of '%s' has invalid value '%u'" msgstr "" -#: config/tc-xtensa.c:2866 +#: config/tc-xtensa.c:2884 #, c-format msgid "internal error: unknown option name '%s'" msgstr "" -#: config/tc-xtensa.c:3975 +#: config/tc-xtensa.c:3993 msgid "can't handle generation of literal/labels yet" msgstr "" -#: config/tc-xtensa.c:3979 +#: config/tc-xtensa.c:3997 msgid "can't handle undefined OP TYPE" msgstr "" -#: config/tc-xtensa.c:4040 config/tc-xtensa.c:4049 +#: config/tc-xtensa.c:4058 config/tc-xtensa.c:4067 #, 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:4072 +#: config/tc-xtensa.c:4090 msgid "immediate operands sum to greater than 32" msgstr "" -#: config/tc-xtensa.c:4324 +#: config/tc-xtensa.c:4342 #, c-format msgid "invalid relocation for operand %i of '%s'" msgstr "" -#: config/tc-xtensa.c:4334 +#: config/tc-xtensa.c:4352 #, c-format msgid "invalid expression for operand %i of '%s'" msgstr "" -#: config/tc-xtensa.c:4344 +#: config/tc-xtensa.c:4362 #, c-format msgid "invalid relocation in instruction slot %i" msgstr "" -#: config/tc-xtensa.c:4351 +#: config/tc-xtensa.c:4369 #, c-format msgid "undefined symbol for opcode \"%s\"" msgstr "" -#: config/tc-xtensa.c:4826 +#: config/tc-xtensa.c:4844 msgid "opcode 'NOP.N' unavailable in this configuration" msgstr "" -#: config/tc-xtensa.c:4886 +#: config/tc-xtensa.c:4904 msgid "get_expanded_loop_offset: invalid opcode" msgstr "" -#: config/tc-xtensa.c:5047 +#: config/tc-xtensa.c:5065 #, c-format msgid "assembly state not set for first frag in section %s" msgstr "" -#: config/tc-xtensa.c:5100 +#: config/tc-xtensa.c:5118 #, c-format msgid "unaligned branch target: %d bytes at 0x%lx" msgstr "" -#: config/tc-xtensa.c:5144 +#: config/tc-xtensa.c:5162 #, c-format msgid "unaligned loop: %d bytes at 0x%lx" msgstr "" -#: config/tc-xtensa.c:5169 +#: config/tc-xtensa.c:5187 msgid "unexpected fix" msgstr "" -#: config/tc-xtensa.c:5180 config/tc-xtensa.c:5184 +#: config/tc-xtensa.c:5198 config/tc-xtensa.c:5202 msgid "undecodable fix" msgstr "" -#: config/tc-xtensa.c:5343 +#: config/tc-xtensa.c:5363 msgid "labels are not valid inside bundles" msgstr "" -#: config/tc-xtensa.c:5363 +#: config/tc-xtensa.c:5383 msgid "invalid last instruction for a zero-overhead loop" msgstr "" -#: config/tc-xtensa.c:5430 +#: config/tc-xtensa.c:5450 msgid "extra opening brace" msgstr "" -#: config/tc-xtensa.c:5440 +#: config/tc-xtensa.c:5460 msgid "extra closing brace" msgstr "" -#: config/tc-xtensa.c:5467 +#: config/tc-xtensa.c:5487 msgid "missing closing brace" msgstr "" -#: config/tc-xtensa.c:5565 config/tc-xtensa.c:5594 +#: config/tc-xtensa.c:5585 config/tc-xtensa.c:5614 #, c-format msgid "wrong number of operands for '%s'" msgstr "" -#: config/tc-xtensa.c:5581 +#: config/tc-xtensa.c:5601 #, c-format msgid "bad relocation expression for '%s'" msgstr "" -#: config/tc-xtensa.c:5616 +#: config/tc-xtensa.c:5636 #, c-format msgid "unknown opcode or format name '%s'" msgstr "" -#: config/tc-xtensa.c:5622 +#: config/tc-xtensa.c:5642 msgid "format names only valid inside bundles" msgstr "" -#: config/tc-xtensa.c:5627 +#: config/tc-xtensa.c:5647 #, c-format msgid "multiple formats specified for one bundle; using '%s'" msgstr "" -#: config/tc-xtensa.c:5677 +#: config/tc-xtensa.c:5697 msgid "entry instruction with stack decrement < 16" msgstr "" -#: config/tc-xtensa.c:5731 +#: config/tc-xtensa.c:5751 msgid "unaligned entry instruction" msgstr "" -#: config/tc-xtensa.c:5796 +#: config/tc-xtensa.c:5816 msgid "bad instruction format" msgstr "" -#: config/tc-xtensa.c:5799 +#: config/tc-xtensa.c:5819 msgid "invalid relocation" msgstr "" -#: config/tc-xtensa.c:5810 +#: config/tc-xtensa.c:5830 #, c-format msgid "invalid relocation for '%s' instruction" msgstr "" -#: config/tc-xtensa.c:5822 +#: config/tc-xtensa.c:5842 #, c-format msgid "invalid relocation for operand %d of '%s'" msgstr "" -#: config/tc-xtensa.c:6099 +#: config/tc-xtensa.c:6125 #, c-format msgid "unhandled local relocation fix %s" msgstr "" -#: config/tc-xtensa.c:6150 +#: config/tc-xtensa.c:6176 #, c-format msgid "internal error; cannot generate `%s' relocation" msgstr "" -#: config/tc-xtensa.c:6367 +#: config/tc-xtensa.c:6393 msgid "The option \"--no-allow-flix\" prohibits multi-slot flix." msgstr "" -#: config/tc-xtensa.c:6374 +#: config/tc-xtensa.c:6400 msgid "couldn't find a valid instruction format" msgstr "" -#: config/tc-xtensa.c:6375 +#: config/tc-xtensa.c:6401 #, c-format msgid " ops were: " msgstr "" -#: config/tc-xtensa.c:6377 +#: config/tc-xtensa.c:6403 #, c-format msgid " %s;" msgstr "" -#: config/tc-xtensa.c:6387 +#: config/tc-xtensa.c:6413 #, c-format msgid "mismatch for format '%s': #slots = %d, #opcodes = %d" msgstr "" -#: config/tc-xtensa.c:6396 config/tc-xtensa.c:6493 +#: config/tc-xtensa.c:6422 config/tc-xtensa.c:6519 msgid "illegal resource usage in bundle" msgstr "" -#: config/tc-xtensa.c:6582 +#: config/tc-xtensa.c:6608 #, c-format msgid "opcodes '%s' (slot %d) and '%s' (slot %d) write the same register" msgstr "" -#: config/tc-xtensa.c:6587 +#: config/tc-xtensa.c:6613 #, c-format msgid "opcodes '%s' (slot %d) and '%s' (slot %d) write the same state" msgstr "" -#: config/tc-xtensa.c:6592 +#: config/tc-xtensa.c:6618 #, c-format msgid "opcodes '%s' (slot %d) and '%s' (slot %d) write the same port" msgstr "" -#: config/tc-xtensa.c:6597 +#: config/tc-xtensa.c:6623 #, c-format msgid "" "opcodes '%s' (slot %d) and '%s' (slot %d) both have volatile port accesses" msgstr "" -#: config/tc-xtensa.c:6613 +#: config/tc-xtensa.c:6639 msgid "multiple branches or jumps in the same bundle" msgstr "" -#: config/tc-xtensa.c:7065 +#: config/tc-xtensa.c:7091 msgid "cannot assemble into a literal fragment" msgstr "" -#: config/tc-xtensa.c:7067 +#: config/tc-xtensa.c:7093 msgid "..." msgstr "" -#: config/tc-xtensa.c:8283 +#: config/tc-xtensa.c:8309 msgid "" "instruction sequence (write a0, branch, retw) may trigger hardware errata" msgstr "" -#: config/tc-xtensa.c:8395 +#: config/tc-xtensa.c:8421 msgid "branching or jumping to a loop end may trigger hardware errata" msgstr "" -#: config/tc-xtensa.c:8477 +#: config/tc-xtensa.c:8503 msgid "loop end too close to another loop end may trigger hardware errata" msgstr "" -#: config/tc-xtensa.c:8486 +#: config/tc-xtensa.c:8512 #, c-format msgid "fr_var %lu < length %d" msgstr "" -#: config/tc-xtensa.c:8643 +#: config/tc-xtensa.c:8669 msgid "" "loop containing less than three instructions may trigger hardware errata" msgstr "" -#: config/tc-xtensa.c:8715 +#: config/tc-xtensa.c:8741 msgid "undecodable instruction in instruction frag" msgstr "" -#: config/tc-xtensa.c:8825 +#: config/tc-xtensa.c:8851 msgid "invalid empty loop" msgstr "" -#: config/tc-xtensa.c:8830 +#: config/tc-xtensa.c:8856 msgid "loop target does not follow loop instruction in section" msgstr "" -#: config/tc-xtensa.c:9401 +#: config/tc-xtensa.c:9427 msgid "cannot find suitable trampoline" msgstr "" -#: config/tc-xtensa.c:9656 +#: config/tc-xtensa.c:9682 msgid "bad relaxation state" msgstr "" -#: config/tc-xtensa.c:9714 +#: config/tc-xtensa.c:9740 #, c-format msgid "fr_var (%ld) < length (%d)" msgstr "" -#: config/tc-xtensa.c:10414 +#: config/tc-xtensa.c:10440 msgid "jump target out of range; no usable trampoline found" msgstr "" -#: config/tc-xtensa.c:10538 +#: config/tc-xtensa.c:10564 msgid "invalid relaxation fragment result" msgstr "" -#: config/tc-xtensa.c:10620 +#: config/tc-xtensa.c:10646 msgid "unable to widen instruction" msgstr "" -#: config/tc-xtensa.c:10758 +#: config/tc-xtensa.c:10784 msgid "multiple literals in expansion" msgstr "" -#: config/tc-xtensa.c:10762 +#: config/tc-xtensa.c:10788 msgid "no registered fragment for literal" msgstr "" -#: config/tc-xtensa.c:10764 +#: config/tc-xtensa.c:10790 msgid "number of literal tokens != 1" msgstr "" -#: config/tc-xtensa.c:10893 config/tc-xtensa.c:10899 +#: config/tc-xtensa.c:10919 config/tc-xtensa.c:10925 #, c-format msgid "unresolved loop target symbol: %s" msgstr "" -#: config/tc-xtensa.c:11388 +#: config/tc-xtensa.c:11414 #, c-format msgid "fixes not all moved from %s" msgstr "" -#: config/tc-xtensa.c:11516 +#: config/tc-xtensa.c:11542 msgid "" "literal pool location required for text-section-literals; specify with ." "literal_position" msgstr "" -#: config/tc-xtensa.c:12344 +#: config/tc-xtensa.c:12370 msgid "too many operands in instruction" msgstr "" -#: config/tc-xtensa.c:12554 +#: config/tc-xtensa.c:12580 msgid "invalid symbolic operand" msgstr "" -#: config/tc-xtensa.c:12615 +#: config/tc-xtensa.c:12641 msgid "operand number mismatch" msgstr "" -#: config/tc-xtensa.c:12619 +#: config/tc-xtensa.c:12645 #, c-format msgid "cannot encode opcode \"%s\" in the given format \"%s\"" msgstr "" -#: config/tc-xtensa.c:12644 +#: config/tc-xtensa.c:12670 #, c-format msgid "xtensa-isa failure: %s" msgstr "" -#: config/tc-xtensa.c:12721 +#: config/tc-xtensa.c:12747 msgid "invalid opcode" msgstr "" -#: config/tc-xtensa.c:12727 +#: config/tc-xtensa.c:12753 msgid "too few operands" msgstr "" -#: config/tc-xtensa.c:12733 +#: config/tc-xtensa.c:12759 msgid "too many operands" msgstr "" -#: config/tc-xtensa.c:12777 +#: config/tc-xtensa.c:12803 msgid "multiple writes to the same register" msgstr "" -#: config/tc-xtensa.c:12891 config/tc-xtensa.c:12897 +#: config/tc-xtensa.c:12917 config/tc-xtensa.c:12923 msgid "out of memory" msgstr "" -#: config/tc-xtensa.c:12986 +#: config/tc-xtensa.c:13012 msgid "TLS relocation not allowed in FLIX bundle" msgstr "" @@ -19957,89 +20204,142 @@ 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:12992 +#: config/tc-xtensa.c:13018 msgid "unexpected TLS relocation" msgstr "" -#: config/tc-xtensa.c:13036 +#: config/tc-xtensa.c:13062 msgid "symbolic operand not allowed" msgstr "" -#: config/tc-xtensa.c:13073 +#: config/tc-xtensa.c:13099 msgid "cannot decode instruction format" msgstr "" -#: config/tc-xtensa.c:13217 +#: config/tc-xtensa.c:13243 msgid "ignoring extra '-rename-section' delimiter ':'" msgstr "" -#: config/tc-xtensa.c:13222 +#: config/tc-xtensa.c:13248 #, c-format msgid "ignoring invalid '-rename-section' specification: '%s'" msgstr "" -#: config/tc-xtensa.c:13233 +#: config/tc-xtensa.c:13259 #, c-format msgid "section %s renamed multiple times" msgstr "" -#: config/tc-xtensa.c:13235 +#: config/tc-xtensa.c:13261 #, c-format msgid "multiple sections remapped to output section %s" msgstr "" #: config/tc-z80.c:194 #, c-format +msgid "Invalid CPU is specified: %s" +msgstr "" + +#: config/tc-z80.c:219 +#, c-format +msgid "Invalid EXTENTION is specified: %s" +msgstr "" + +#: config/tc-z80.c:274 +#, c-format msgid "invalid floating point numbers type `%s'" msgstr "" -#: config/tc-z80.c:215 config/tc-z80.c:224 +#: config/tc-z80.c:295 config/tc-z80.c:304 #, c-format msgid "invalid INST in command line: %s" msgstr "" -#: config/tc-z80.c:583 +#: config/tc-z80.c:398 +#, c-format +msgid "" +"\n" +"CPU model options:\n" +" -march=CPU[+EXT...][-EXT...]\n" +"\t\t\t generate code for CPU, where CPU is one of:\n" +msgstr "" + +#: config/tc-z80.c:404 +#, c-format +msgid "And EXT is combination (+EXT - add, -EXT - remove) of:\n" +msgstr "" + +#: config/tc-z80.c:407 +#, c-format +msgid "" +"\n" +"Compatibility options:\n" +" -local-prefix=TEXT\t treat labels prefixed by TEXT as local\n" +" -colonless\t\t permit colonless labels\n" +" -sdcc\t\t\t accept SDCC specific instruction syntax\n" +" -fp-s=FORMAT\t\t set single precission FP numbers format\n" +" -fp-d=FORMAT\t\t set double precission FP numbers format\n" +"Where FORMAT one of:\n" +" ieee754\t\t IEEE754 compatible (depends on directive)\n" +" half\t\t\t IEEE754 half precision (16 bit)\n" +" single\t\t IEEE754 single precision (32 bit)\n" +" double\t\t IEEE754 double precision (64 bit)\n" +" zeda32\t\t Zeda z80float library 32 bit format\n" +" math48\t\t 48 bit format from Math48 library\n" +"\n" +"Default: -march=z80+xyhl+infc\n" +msgstr "" + +#: config/tc-z80.c:610 msgid "-- unterminated string" msgstr "" -#: config/tc-z80.c:750 +#: config/tc-z80.c:779 msgid "undocumented instruction" msgstr "" -#: config/tc-z80.c:794 config/tc-z80.c:800 +#: config/tc-z80.c:823 config/tc-z80.c:829 msgid "mismatched parentheses" msgstr "" -#: config/tc-z80.c:854 +#: config/tc-z80.c:915 msgid "bad expression syntax" msgstr "" -#: config/tc-z80.c:1071 +#: config/tc-z80.c:1132 #, c-format msgid "invalid data size %d" msgstr "" -#: config/tc-z80.c:1140 +#: config/tc-z80.c:1200 msgid "cannot make a relative jump to an absolute location" msgstr "" -#: config/tc-z80.c:1152 config/tc-z80.c:3386 config/tc-z80.c:3689 -msgid "overflow" +#: config/tc-z80.c:1207 +#, c-format +msgid "index overflow (%+ld)" +msgstr "" + +#: config/tc-z80.c:1209 +#, c-format +msgid "offset overflow (%+ld)" msgstr "" -#: config/tc-z80.c:1524 config/tc-z80.c:1567 config/tc-z80.c:1611 -#: config/tc-z80.c:1679 config/tc-z80.c:1731 config/tc-z80.c:1784 -#: config/tc-z80.c:1817 config/tc-z80.c:1873 config/tc-z80.c:2475 -#: config/tc-z80.c:2524 config/tc-z80.c:2562 config/tc-z80.c:2653 +#: config/tc-z80.c:1411 config/tc-z80.c:1658 config/tc-z80.c:1701 +#: config/tc-z80.c:1782 config/tc-z80.c:1812 config/tc-z80.c:1871 +#: config/tc-z80.c:1931 config/tc-z80.c:1984 config/tc-z80.c:2017 +#: config/tc-z80.c:2074 config/tc-z80.c:2691 config/tc-z80.c:2740 +#: config/tc-z80.c:2778 config/tc-z80.c:2838 config/tc-z80.c:2898 +#: config/tc-z80.c:2974 config/tc-z80.c:2997 msgid "bad instruction syntax" msgstr "" -#: config/tc-z80.c:1657 +#: config/tc-z80.c:1849 msgid "condition code invalid for jr" msgstr "" -#: config/tc-z80.c:2221 config/tc-z80.c:2232 config/tc-z80.c:2248 -#: config/tc-z80.c:2281 +#: config/tc-z80.c:2437 config/tc-z80.c:2448 config/tc-z80.c:2464 +#: config/tc-z80.c:2497 msgid "ADL mode instruction" msgstr "" @@ -20047,39 +20347,65 @@ msgstr "" #. LIS prefix, in Z80 it is LD C,C #. SIL prefix, in Z80 it is LD D,D #. LIL prefix, in Z80 it is LD E,E -#: config/tc-z80.c:2356 +#: config/tc-z80.c:2572 msgid "unsupported instruction, assembled as NOP" msgstr "" -#: config/tc-z80.c:2849 config/tc-z80.c:2880 +#: config/tc-z80.c:3165 config/tc-z80.c:3196 msgid "parentheses ignored" msgstr "" -#: config/tc-z80.c:2897 +#: config/tc-z80.c:3213 msgid "CPU mode is unsupported by target" msgstr "" -#: config/tc-z80.c:2919 +#: config/tc-z80.c:3235 msgid "assignment expected" msgstr "" -#: config/tc-z80.c:3333 config/tc-z8k.c:1467 config/tc-z8k.c:1530 -msgid "relative jump out of range" +#: config/tc-z80.c:3639 +#, c-format +msgid "Unknown instruction `%s'" msgstr "" -#: config/tc-z80.c:3350 -msgid "index offset out of range" +#: config/tc-z80.c:3706 +#, c-format +msgid "8-bit signed offset out of range (%+ld)" msgstr "" -#: config/tc-z80.c:3429 config/tc-z8k.c:1538 +#: config/tc-z80.c:3729 #, c-format -msgid "md_apply_fix: unknown r_type 0x%x\n" +msgid "8-bit overflow (%+ld)" +msgstr "" + +#: config/tc-z80.c:3746 +#, c-format +msgid "16-bit overflow (%+ld)" msgstr "" -#: config/tc-z80.c:3611 config/tc-z80.c:3670 +#: config/tc-z80.c:3754 +#, c-format +msgid "24-bit overflow (%+ld)" +msgstr "" + +#: config/tc-z80.c:3763 +#, c-format +msgid "32-bit overflow (%+ld)" +msgstr "" + +#: config/tc-z80.c:3776 +#, c-format +msgid "md_apply_fix: unknown reloc type 0x%x\n" +msgstr "" + +#: config/tc-z80.c:3973 config/tc-z80.c:4032 msgid "invalid syntax" msgstr "" +#: config/tc-z80.c:4051 +msgid "overflow" +msgstr "" + #: config/tc-z8k.c:281 #, c-format msgid "register rr%d out of range" @@ -20201,6 +20527,10 @@ msgstr "" msgid "cannot branch to odd address" msgstr "" +#: config/tc-z8k.c:1467 config/tc-z8k.c:1530 +msgid "relative jump out of range" +msgstr "" + #: config/tc-z8k.c:1485 msgid "relative address out of range" msgstr "" @@ -20209,6 +20539,11 @@ msgstr "" msgid "relative call out of range" msgstr "" +#: config/tc-z8k.c:1538 +#, c-format +msgid "md_apply_fix: unknown r_type 0x%x\n" +msgstr "" + #: config/tc-z8k.c:1550 #, c-format msgid "call to md_estimate_size_before_relax\n" @@ -20294,7 +20629,7 @@ msgstr "" msgid "can't close `%s'" msgstr "" -#: dw2gencfi.c:319 read.c:2442 +#: dw2gencfi.c:319 read.c:2443 #, c-format msgid "bfd_set_section_flags: %s" msgstr "" @@ -20415,51 +20750,56 @@ msgstr "" msgid "CFI is not supported for this target" msgstr "" -#: dwarf2dbg.c:372 dwarf2dbg.c:2340 +#: dwarf2dbg.c:379 dwarf2dbg.c:2747 msgid "view number mismatch" msgstr "" -#: dwarf2dbg.c:757 dwarf2dbg.c:815 +#: dwarf2dbg.c:635 dwarf2dbg.c:1084 #, c-format msgid "file number %lu is too big" msgstr "" -#: dwarf2dbg.c:804 dwarf2dbg.c:854 +#: dwarf2dbg.c:798 +#, c-format +msgid "" +"file table slot %u is already occupied by a different file (%s%s%s vs %s%s%s)" +msgstr "" + +#: dwarf2dbg.c:1035 dwarf2dbg.c:1122 msgid "file number less than one" msgstr "" -#: dwarf2dbg.c:820 -#, c-format -msgid "file number %u already allocated" +#: dwarf2dbg.c:1069 +msgid "md5 value too small or not a constant" msgstr "" -#: dwarf2dbg.c:859 dwarf2dbg.c:1727 +#: dwarf2dbg.c:1129 dwarf2dbg.c:2096 #, c-format msgid "unassigned file number %ld" msgstr "" -#: dwarf2dbg.c:928 +#: dwarf2dbg.c:1198 msgid "is_stmt value not 0 or 1" msgstr "" -#: dwarf2dbg.c:940 +#: dwarf2dbg.c:1210 msgid "isa number less than zero" msgstr "" -#: dwarf2dbg.c:952 +#: dwarf2dbg.c:1222 msgid "discriminator less than zero" msgstr "" -#: dwarf2dbg.c:971 +#: dwarf2dbg.c:1241 msgid "numeric view can only be asserted to zero" msgstr "" -#: dwarf2dbg.c:1009 +#: dwarf2dbg.c:1279 #, c-format msgid "unknown .loc sub-directive `%s'" msgstr "" -#: dwarf2dbg.c:1804 +#: dwarf2dbg.c:2200 msgid "internal error: unknown dwarf2 format" msgstr "" @@ -20650,11 +20990,11 @@ msgstr "" msgid "GP prologue size exceeds field size, using 0 instead" msgstr "" -#: expr.c:84 read.c:3804 +#: expr.c:84 read.c:3805 msgid "bignum invalid" msgstr "" -#: expr.c:86 read.c:3806 read.c:4311 read.c:5157 +#: expr.c:86 read.c:3807 read.c:4312 read.c:5158 msgid "floating point number invalid" msgstr "" @@ -20698,7 +21038,7 @@ msgstr "" msgid "missing '%c'" msgstr "" -#: expr.c:978 read.c:4608 +#: expr.c:978 read.c:4609 msgid "EBCDIC constants are not supported" msgstr "" @@ -20736,7 +21076,7 @@ msgstr "" msgid "right operand is a float; integer 0 assumed" msgstr "" -#: expr.c:1919 symbols.c:1561 +#: expr.c:1919 symbols.c:1574 msgid "division by zero" msgstr "" @@ -21073,52 +21413,52 @@ msgid "" "single instruction is %u bytes long, but .bundle_align_mode limit is %u bytes" msgstr "" -#: read.c:769 read.c:2812 read.c:3383 +#: read.c:769 read.c:2813 read.c:3384 msgid "ignoring fill value in absolute section" msgstr "" -#: read.c:771 read.c:2827 read.c:3422 +#: read.c:771 read.c:2828 read.c:3423 #, c-format msgid "ignoring fill value in section `%s'" msgstr "" -#: read.c:1131 +#: read.c:1132 #, c-format msgid "unknown pseudo-op: `%s'" msgstr "" -#: read.c:1184 +#: read.c:1185 msgid "unable to continue with assembly." msgstr "" -#: read.c:1226 +#: read.c:1227 #, c-format msgid "label \"%d$\" redefined" msgstr "" -#: read.c:1373 +#: read.c:1374 msgid ".bundle_lock with no matching .bundle_unlock" msgstr "" -#: read.c:1470 +#: read.c:1471 msgid ".abort detected. Abandoning ship." msgstr "" -#: read.c:1532 +#: read.c:1533 #, c-format msgid "alignment too large: %u assumed" msgstr "" -#: read.c:1564 +#: read.c:1565 msgid "expected fill pattern missing" msgstr "" -#: read.c:1589 +#: read.c:1590 #, c-format msgid "fill pattern too long, truncating to %u" msgstr "" -#: read.c:1687 +#: read.c:1688 msgid "symbol name not recognised in the current locale" msgstr "" @@ -21131,360 +21471,360 @@ 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:2029 +#: read.c:2030 #, c-format msgid "line numbers must be positive; line number %d rejected" msgstr "" -#: read.c:2066 +#: read.c:2067 #, c-format msgid "incompatible flag %i in line directive" msgstr "" -#: read.c:2078 +#: read.c:2079 #, c-format msgid "unsupported flag %i in line directive" msgstr "" -#: read.c:2117 +#: read.c:2118 msgid "start address not supported" msgstr "" -#: read.c:2126 +#: read.c:2127 msgid ".err encountered" msgstr "" -#: read.c:2142 +#: read.c:2143 msgid ".error directive invoked in source file" msgstr "" -#: read.c:2143 +#: read.c:2144 msgid ".warning directive invoked in source file" msgstr "" -#: read.c:2149 +#: read.c:2150 #, c-format msgid "%s argument must be a string" msgstr "" -#: read.c:2181 read.c:2183 +#: read.c:2182 read.c:2184 #, c-format msgid ".fail %ld encountered" msgstr "" -#: read.c:2223 +#: read.c:2224 #, c-format msgid ".fill size clamped to %d" msgstr "" -#: read.c:2228 +#: read.c:2229 msgid "size negative; .fill ignored" msgstr "" -#: read.c:2234 +#: read.c:2235 msgid "repeat < 0; .fill ignored" msgstr "" -#: read.c:2243 +#: read.c:2244 msgid "non-constant fill count for absolute section" msgstr "" -#: read.c:2245 +#: read.c:2246 msgid "attempt to fill absolute section with non-zero value" msgstr "" -#: read.c:2251 +#: read.c:2252 #, c-format msgid "attempt to fill section `%s' with non-zero value" msgstr "" -#: read.c:2408 +#: read.c:2409 #, c-format msgid "unrecognized .linkonce type `%s'" msgstr "" -#: read.c:2420 +#: read.c:2421 msgid ".linkonce is not supported for this object file format" msgstr "" -#: read.c:2515 +#: read.c:2516 msgid "expected alignment after size" msgstr "" -#: read.c:2734 +#: read.c:2735 #, c-format msgid "attempt to redefine pseudo-op `%s' ignored" msgstr "" -#: read.c:2753 +#: read.c:2754 msgid "ignoring macro exit outside a macro definition." msgstr "" -#: read.c:2807 +#: read.c:2808 #, c-format msgid "invalid segment \"%s\"" msgstr "" -#: read.c:2815 +#: read.c:2816 msgid "only constant offsets supported in absolute section" msgstr "" -#: read.c:2858 +#: read.c:2859 msgid "MRI style ORG pseudo-op not supported" msgstr "" -#: read.c:3029 +#: read.c:3030 #, c-format msgid ".end%c encountered without preceding %s" msgstr "" -#: read.c:3058 read.c:3094 +#: read.c:3059 read.c:3095 #, c-format msgid "negative count for %s - ignored" msgstr "" -#: read.c:3065 read.c:3101 +#: read.c:3066 read.c:3102 #, c-format msgid "%s without %s" msgstr "" -#: read.c:3336 +#: read.c:3337 msgid "unsupported variable size or fill value" msgstr "" -#: read.c:3344 +#: read.c:3345 #, c-format msgid "size value for space directive too large: %lx" msgstr "" -#: read.c:3373 +#: read.c:3374 msgid ".space repeat count is zero, ignored" msgstr "" -#: read.c:3375 +#: read.c:3376 msgid ".space repeat count is negative, ignored" msgstr "" -#: read.c:3406 +#: read.c:3407 msgid "space allocation too complex in absolute section" msgstr "" -#: read.c:3412 +#: read.c:3413 msgid "space allocation too complex in common section" msgstr "" -#: read.c:3473 +#: read.c:3474 msgid "negative nop control byte, ignored" msgstr "" -#: read.c:3489 +#: read.c:3490 msgid "unsupported variable nop control in .nops directive" msgstr "" -#: read.c:3691 +#: read.c:3692 #, c-format msgid "%s: would close weakref loop: %s" msgstr "" -#: read.c:3741 +#: read.c:3742 #, c-format msgid "junk at end of line, first unrecognized character valued 0x%x" msgstr "" -#: read.c:3870 write.c:2354 +#: read.c:3871 write.c:2358 #, c-format msgid "`%s' can't be equated to common symbol `%s'" msgstr "" -#: read.c:4000 +#: read.c:4001 msgid "unexpected `\"' in expression" msgstr "" -#: read.c:4013 +#: read.c:4014 msgid "rva without symbol" msgstr "" -#: read.c:4082 +#: read.c:4083 msgid "missing or bad offset expression" msgstr "" -#: read.c:4103 +#: read.c:4104 msgid "missing reloc type" msgstr "" -#: read.c:4127 +#: read.c:4128 msgid "unrecognized reloc type" msgstr "" -#: read.c:4143 +#: read.c:4144 msgid "bad reloc expression" msgstr "" -#: read.c:4305 read.c:5151 +#: read.c:4306 read.c:5152 msgid "zero assumed for missing expression" msgstr "" -#: read.c:4325 read.c:5180 +#: read.c:4326 read.c:5181 msgid "attempt to store value in absolute section" msgstr "" -#: read.c:4332 read.c:5186 +#: read.c:4333 read.c:5187 #, c-format msgid "attempt to store non-zero value in section `%s'" msgstr "" -#: read.c:4418 +#: read.c:4419 #, c-format msgid "value 0x%llx truncated to 0x%llx" msgstr "" -#: read.c:4421 +#: read.c:4422 msgid "value 0x%I64x truncated to 0x%I64x" msgstr "" -#: read.c:4425 +#: read.c:4426 #, c-format msgid "value 0x%lx truncated to 0x%lx" msgstr "" -#: read.c:4470 +#: read.c:4471 #, c-format msgid "bignum truncated to %d byte" msgid_plural "bignum truncated to %d bytes" msgstr[0] "" msgstr[1] "" -#: read.c:4679 read.c:4889 +#: read.c:4680 read.c:4890 msgid "unresolvable or nonpositive repeat count; using 1" msgstr "" -#: read.c:4728 +#: read.c:4729 #, c-format msgid "unknown floating type type '%c'" msgstr "" -#: read.c:4750 +#: read.c:4751 msgid "floating point constant too large" msgstr "" -#: read.c:4814 +#: read.c:4815 msgid "attempt to store float in absolute section" msgstr "" -#: read.c:4821 +#: read.c:4822 #, c-format msgid "attempt to store float in section `%s'" msgstr "" -#: read.c:5269 +#: read.c:5270 #, c-format msgid "attempt to store non-empty string in section `%s'" msgstr "" -#: read.c:5331 +#: read.c:5332 msgid "strings must be placed into a section" msgstr "" -#: read.c:5393 +#: read.c:5394 msgid "expected " msgstr "" #. To be compatible with BSD 4.2 as: give the luser a linefeed!! -#: read.c:5434 read.c:5521 +#: read.c:5435 read.c:5522 msgid "unterminated string; newline inserted" msgstr "" -#: read.c:5535 +#: read.c:5536 msgid "bad escaped character in string" msgstr "" -#: read.c:5559 +#: read.c:5560 msgid "expected address expression" msgstr "" -#: read.c:5578 +#: read.c:5579 #, c-format msgid "symbol \"%s\" undefined; zero assumed" msgstr "" -#: read.c:5581 +#: read.c:5582 msgid "some symbol undefined; zero assumed" msgstr "" -#: read.c:5616 +#: read.c:5617 msgid "this string may not contain '\\0'" msgstr "" -#: read.c:5652 +#: read.c:5653 msgid "missing string" msgstr "" -#: read.c:5743 +#: read.c:5744 #, c-format msgid ".incbin count zero, ignoring `%s'" msgstr "" -#: read.c:5769 +#: read.c:5770 #, c-format msgid "file not found: %s" msgstr "" -#: read.c:5783 +#: read.c:5784 #, c-format msgid "seek to end of .incbin file failed `%s'" msgstr "" -#: read.c:5794 +#: read.c:5795 #, c-format msgid "skip (%ld) or count (%ld) invalid for file size (%ld)" msgstr "" -#: read.c:5801 +#: read.c:5802 #, c-format msgid "could not skip to %ld in file `%s'" msgstr "" -#: read.c:5810 +#: read.c:5811 #, c-format msgid "truncated file `%s', %ld of %ld bytes read" msgstr "" -#: read.c:5968 +#: read.c:5969 msgid "missing .func" msgstr "" -#: read.c:5985 +#: read.c:5986 msgid ".endfunc missing for previous .func" msgstr "" -#: read.c:6044 +#: read.c:6045 #, c-format msgid ".bundle_align_mode alignment too large (maximum %u)" msgstr "" -#: read.c:6049 +#: read.c:6050 msgid "cannot change .bundle_align_mode inside .bundle_lock" msgstr "" -#: read.c:6063 +#: read.c:6064 msgid ".bundle_lock is meaningless without .bundle_align_mode" msgstr "" -#: read.c:6084 +#: read.c:6085 msgid ".bundle_unlock without preceding .bundle_lock" msgstr "" -#: read.c:6097 +#: read.c:6098 #, c-format msgid ".bundle_lock sequence is %u bytes, but bundle size is only %u bytes" msgstr "" -#: read.c:6196 +#: read.c:6197 #, c-format msgid "missing closing `%c'" msgstr "" -#: read.c:6198 +#: read.c:6199 msgid "stray `\\'" msgstr "" @@ -21550,52 +21890,52 @@ msgstr "" msgid "invalid operand (%s section) for `%s' when setting `%s'" msgstr "" -#: symbols.c:1259 +#: symbols.c:1266 #, c-format msgid "symbol definition loop encountered at `%s'" msgstr "" -#: symbols.c:1286 +#: symbols.c:1293 #, c-format msgid "cannot convert expression symbol %s to complex relocation" msgstr "" -#: symbols.c:1563 +#: symbols.c:1576 #, c-format msgid "division by zero when setting `%s'" msgstr "" #. See PR 20895 for a reproducer. -#: symbols.c:1603 +#: symbols.c:1616 msgid "Invalid operation on symbol" msgstr "" -#: symbols.c:1653 write.c:2403 +#: symbols.c:1666 write.c:2407 #, c-format msgid "can't resolve value for symbol `%s'" msgstr "" -#: symbols.c:2112 +#: symbols.c:2125 #, c-format msgid "\"%d\" (instance number %d of a %s label)" msgstr "" -#: symbols.c:2141 +#: symbols.c:2154 #, c-format msgid "attempt to get value of unresolved symbol `%s'" msgstr "" #. Do not reassign section symbols. -#: symbols.c:2429 +#: symbols.c:2442 msgid "section symbols are already global" msgstr "" -#: symbols.c:2542 +#: symbols.c:2555 #, c-format msgid "Accessing function `%s' as thread-local object" msgstr "" -#: symbols.c:2546 +#: symbols.c:2559 #, c-format msgid "Accessing `%s' as thread-local object" msgstr "" @@ -21671,65 +22011,65 @@ msgid_plural "can't write %ld bytes to section %s of %s: '%s'" msgstr[0] "" msgstr[1] "" -#: write.c:1648 write.c:1675 write.c:1711 +#: write.c:1648 write.c:1677 write.c:1714 #, 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:1914 +#: write.c:1918 msgid "unable to create reloc for build note" msgstr "" -#: write.c:1918 +#: write.c:1922 msgid "" msgstr "" -#: write.c:2319 +#: write.c:2323 #, c-format msgid "%s: global symbols not supported in common sections" msgstr "" -#: write.c:2333 +#: write.c:2337 #, c-format msgid "local label `%s' is not defined" msgstr "" -#: write.c:2361 +#: write.c:2365 #, c-format msgid "can't make global register symbol `%s'" msgstr "" -#: write.c:2670 +#: write.c:2674 #, 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:2837 +#: write.c:2841 #, c-format msgid ".word %s-%s+%s didn't fit" msgstr "" -#: write.c:2931 +#: write.c:2935 msgid "padding added" msgstr "" -#: write.c:2982 +#: write.c:2986 msgid "attempt to move .org backwards" msgstr "" -#: write.c:3007 +#: write.c:3011 msgid ".space specifies non-absolute value" msgstr "" -#: write.c:3022 +#: write.c:3026 msgid ".space, .nops or .fill with negative value, ignored" msgstr "" -#: write.c:3094 +#: write.c:3098 #, c-format msgid "" "Infinite loop encountered whilst attempting to compute the addresses of " -- cgit v1.1