This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 3d0ec88 MIPS/testsuite: mips16-thunks: Use `standard_output_file' new a235d3a [AArch64][SVE 01/32] Remove parse_neon_operand_type new bd11d5d [AArch64][SVE 02/32] Avoid hard-coded limit in indented_print new f06935a [AArch64][SVE 03/32] Rename neon_el_type to vector_el_type new 8f9a77a [AArch64][SVE 04/32] Rename neon_type_el to vector_type_el new 53021dd [AArch64][SVE 05/32] Rename parse_neon_type_for_operand new 10d7665 [AArch64][SVE 06/32] Generalise parse_neon_reg_list new 1799c0d [AArch64][SVE 07/32] Replace hard-coded uses of REG_TYPE_R_Z_BHSDQ_V new 04a3379 [AArch64][SVE 08/32] Generalise aarch64_double_precision_fmovable new 6a9deab [AArch64][SVE 09/32] Improve error messages for invalid floats new 874d7e6 [AArch64][SVE 10/32] Move range check out of parse_aarch64_imm_float new e1b988b [AArch64][SVE 11/32] Tweak aarch64_reg_parse_32_64 interface new 7386605 [AArch64][SVE 12/32] Remove boolean parameters from parse_add [...] new 4989ada [AArch64][SVE 13/32] Add an F_STRICT flag new 4240834 [AArch64][SVE 14/32] Make aarch64_logical_immediate_p take an [...] new b5464a6 [AArch64][SVE 15/32] Add {insert,extract}_all_fields helpers new aa2aa4c [AArch64][SVE 16/32] Use specific insert/extract methods for fpimm new 8a7f0c1 [AArch64][SVE 17/32] Add a prefix parameter to print_register_list new 72e9f31 [AArch64][SVE 18/32] Tidy definition of aarch64-opc.c:int_reg new 01dbfe4 [AArch64][SVE 19/32] Refactor address-printing code new 0c608d6 [AArch64][SVE 20/32] Add support for tied operands new f11ad6b [AArch64][SVE 21/32] Add Zn and Pn registers new d50c751 [AArch64][SVE 22/32] Add qualifiers for merging and zeroing p [...] new 245d2e3 [AArch64][SVE 23/32] Add SVE pattern and prfop operands new 2442d84 [AArch64][SVE 24/32] Add AARCH64_OPND_SVE_PATTERN_SCALED new 4df068d [AArch64][SVE 25/32] Add support for SVE addressing modes new 98907a7 [AArch64][SVE 26/32] Add SVE MUL VL addressing modes new e950b34 [AArch64][SVE 27/32] Add SVE integer immediate operands new 165d495 [AArch64][SVE 28/32] Add SVE FP immediate operands new 047cd30 [AArch64][SVE 29/32] Add new SVE core & FP register operands new 116b601 [AArch64][SVE 30/32] Add SVE instruction classes new c0890d2 [AArch64][SVE 31/32] Add SVE instructions new bc33f5f [AArch64][SVE 32/32] Add SVE tests new f2a5c4f Fix misplaced ChangeLog
The 33 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gas/ChangeLog | 232 + gas/config/tc-aarch64.c | 1125 +- gas/doc/c-aarch64.texi | 2 + gas/testsuite/gas/aarch64/diagnostic.l | 38 +- gas/testsuite/gas/aarch64/diagnostic.s | 37 + gas/testsuite/gas/aarch64/illegal-lse.l | 456 +- gas/testsuite/gas/aarch64/sve-add.d | 151 + gas/testsuite/gas/aarch64/sve-add.s | 149 + gas/testsuite/gas/aarch64/sve-dup.d | 161 + gas/testsuite/gas/aarch64/sve-dup.s | 159 + gas/testsuite/gas/aarch64/sve-invalid.d | 4 + gas/testsuite/gas/aarch64/sve-invalid.l | 944 + gas/testsuite/gas/aarch64/sve-invalid.s | 1163 + gas/testsuite/gas/aarch64/sve-reg-diagnostic.d | 3 + gas/testsuite/gas/aarch64/sve-reg-diagnostic.l | 24 + gas/testsuite/gas/aarch64/sve-reg-diagnostic.s | 143 + gas/testsuite/gas/aarch64/sve.d | 38238 ++++++++++++++++++++++ gas/testsuite/gas/aarch64/sve.s | 38247 +++++++++++++++++++++++ include/ChangeLog | 110 + include/opcode/aarch64.h | 148 +- opcodes/ChangeLog | 319 + opcodes/aarch64-asm-2.c | 266 +- opcodes/aarch64-asm.c | 509 +- opcodes/aarch64-asm.h | 23 + opcodes/aarch64-dis-2.c | 8285 ++++- opcodes/aarch64-dis.c | 654 +- opcodes/aarch64-dis.h | 23 + opcodes/aarch64-gen.c | 6 +- opcodes/aarch64-opc-2.c | 97 + opcodes/aarch64-opc.c | 969 +- opcodes/aarch64-opc.h | 58 + opcodes/aarch64-tbl.h | 1511 +- 32 files changed, 93370 insertions(+), 884 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/sve-add.d create mode 100644 gas/testsuite/gas/aarch64/sve-add.s create mode 100644 gas/testsuite/gas/aarch64/sve-dup.d create mode 100644 gas/testsuite/gas/aarch64/sve-dup.s create mode 100644 gas/testsuite/gas/aarch64/sve-invalid.d create mode 100644 gas/testsuite/gas/aarch64/sve-invalid.l create mode 100644 gas/testsuite/gas/aarch64/sve-invalid.s create mode 100644 gas/testsuite/gas/aarch64/sve-reg-diagnostic.d create mode 100644 gas/testsuite/gas/aarch64/sve-reg-diagnostic.l create mode 100644 gas/testsuite/gas/aarch64/sve-reg-diagnostic.s create mode 100644 gas/testsuite/gas/aarch64/sve.d create mode 100644 gas/testsuite/gas/aarch64/sve.s