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 e793c052f9 Simplify the psymbol hash function new f42f1a1d6c Adds the new Fields and Operand types for the new instructio [...] new 1a7ed57c84 Add the operand encoding types for the new Armv8.2-a back-po [...] new 793a194839 Add assembler and disassembler support for the new Armv8.4-a [...] new 981b557a48 Enable the Dot Product extension by default for Armv8.4-a.
The 4 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 | 22 +++ gas/config/tc-aarch64.c | 8 + .../gas/aarch64/armv8_4-a-registers-illegal.d | 3 + .../gas/aarch64/armv8_4-a-registers-illegal.l | 178 +++++++++++++++++++ .../gas/aarch64/armv8_4-a-registers-illegal.s | 80 +++++++++ gas/testsuite/gas/aarch64/armv8_4-a-registers.d | 192 +++++++++++++++++++++ gas/testsuite/gas/aarch64/armv8_4-a-registers.s | 94 ++++++++++ gas/testsuite/gas/aarch64/dotproduct_armv8_4.d | 10 ++ gas/testsuite/gas/aarch64/dotproduct_armv8_4.s | 2 + include/ChangeLog | 13 ++ include/opcode/aarch64.h | 10 +- opcodes/ChangeLog | 45 +++++ opcodes/aarch64-asm-2.c | 182 +++++++++---------- opcodes/aarch64-asm.c | 30 ++++ opcodes/aarch64-asm.h | 1 + opcodes/aarch64-dis-2.c | 184 ++++++++++---------- opcodes/aarch64-dis.c | 27 +++ opcodes/aarch64-dis.h | 1 + opcodes/aarch64-opc-2.c | 5 + opcodes/aarch64-opc.c | 157 ++++++++++++++++- opcodes/aarch64-opc.h | 3 + opcodes/aarch64-tbl.h | 102 ++++++++++- 22 files changed, 1168 insertions(+), 181 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/armv8_4-a-registers-illegal.d create mode 100644 gas/testsuite/gas/aarch64/armv8_4-a-registers-illegal.l create mode 100644 gas/testsuite/gas/aarch64/armv8_4-a-registers-illegal.s create mode 100644 gas/testsuite/gas/aarch64/armv8_4-a-registers.d create mode 100644 gas/testsuite/gas/aarch64/armv8_4-a-registers.s create mode 100644 gas/testsuite/gas/aarch64/dotproduct_armv8_4.d create mode 100644 gas/testsuite/gas/aarch64/dotproduct_armv8_4.s