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 435ad222b3d sim: warnings: compile build tools with -Werror too new 7b08cc32165 aarch64: Add +d128 architectural feature support new 2ec6065a4f3 aarch64: Expand maximum number of operands from 5 to 6 new d30eb38d5b4 aarch64: Add support for xzr register in register pair operands new f89c290e23c aarch64: Add support for optional operand pairs new 3521a28f109 aarch64: Add support for the SYSP 128-bit system instruction new 5517af82988 aarch64: Apply narrowing of allowed immediate values for SYSP new 92d89466705 aarch64: Create QL_SRC_X2 and QL_DEST_X2 qualifier macros new a9e2cefdf00 aarch64: Implement TLBIP 128-bit instruction new c0fbed64079 aarch64: Add xs variants of tlbip operands new 33ccb0e0dbd aarch64: Add TLBIP tests new 9af8f671183 aarch64: Add support for 128-bit system register mrrs and m [...] new e3a478523ea arch64: Add optional operand register pair support tests new e244fa1a6be aarch64: Regenerate aarch64-*-2.c files
The 13 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/config/tc-aarch64.c | 54 +- gas/doc/c-aarch64.texi | 2 + gas/testsuite/gas/aarch64/illegal-sys128.d | 3 + gas/testsuite/gas/aarch64/illegal-sys128.l | 4 + gas/testsuite/gas/aarch64/illegal-sys128.s | 5 + .../gas/aarch64/illegal-sysp-tlbip-optional.d | 4 + .../gas/aarch64/illegal-sysp-tlbip-optional.l | 4 + .../gas/aarch64/illegal-sysp-tlbip-optional.s | 10 + gas/testsuite/gas/aarch64/illegal-sysreg128.d | 2 + gas/testsuite/gas/aarch64/illegal-sysreg128.l | 11 + gas/testsuite/gas/aarch64/illegal-sysreg128.s | 8 + gas/testsuite/gas/aarch64/sysp-tlbip-optional.d | 17 + gas/testsuite/gas/aarch64/sysp-tlbip-optional.s | 22 + gas/testsuite/gas/aarch64/sysp.d | 10 + gas/testsuite/gas/aarch64/sysp.s | 4 + gas/testsuite/gas/aarch64/sysreg128.d | 28 + gas/testsuite/gas/aarch64/sysreg128.s | 17 + gas/testsuite/gas/aarch64/tlbip.d | 127 + gas/testsuite/gas/aarch64/tlbip.s | 132 + include/opcode/aarch64.h | 26 +- opcodes/aarch64-asm-2.c | 498 +-- opcodes/aarch64-dis-2.c | 4342 ++++++++++---------- opcodes/aarch64-dis.c | 9 +- opcodes/aarch64-opc-2.c | 21 +- opcodes/aarch64-opc.c | 152 +- opcodes/aarch64-opc.h | 1 + opcodes/aarch64-tbl.h | 34 + 27 files changed, 3126 insertions(+), 2421 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/illegal-sys128.d create mode 100644 gas/testsuite/gas/aarch64/illegal-sys128.l create mode 100644 gas/testsuite/gas/aarch64/illegal-sys128.s create mode 100644 gas/testsuite/gas/aarch64/illegal-sysp-tlbip-optional.d create mode 100644 gas/testsuite/gas/aarch64/illegal-sysp-tlbip-optional.l create mode 100644 gas/testsuite/gas/aarch64/illegal-sysp-tlbip-optional.s create mode 100644 gas/testsuite/gas/aarch64/illegal-sysreg128.d create mode 100644 gas/testsuite/gas/aarch64/illegal-sysreg128.l create mode 100644 gas/testsuite/gas/aarch64/illegal-sysreg128.s create mode 100644 gas/testsuite/gas/aarch64/sysp-tlbip-optional.d create mode 100644 gas/testsuite/gas/aarch64/sysp-tlbip-optional.s create mode 100644 gas/testsuite/gas/aarch64/sysp.d create mode 100644 gas/testsuite/gas/aarch64/sysp.s create mode 100644 gas/testsuite/gas/aarch64/sysreg128.d create mode 100644 gas/testsuite/gas/aarch64/sysreg128.s create mode 100644 gas/testsuite/gas/aarch64/tlbip.d create mode 100644 gas/testsuite/gas/aarch64/tlbip.s