This is an automated email from the git hooks/post-receive script.
adhemerval.zanella pushed a change to branch linaro_binutils-2_25-branch in repository toolchain/binutils-gdb.
from bf3a9db gas: section name substitution sequence new 6314c00 [AArch64][libopcode] Add support for PAN architecture extension new 6dfa045 arm: fix extension feature disabling new c6b48c9 aarch64: allow adding/removing just feature flags via .arch_e [...] new da8064e [AARCH64] Document .arch and .arch_extension directive new 2282a41 [AArch64][GAS] Add support for PAN architecture extension new 5e67c66 [AArch64] Support for ARMv8.1a Limited Ordering Regions extension new ab65920 [AArch64] Support for ARMv8.1a Adv.SIMD instructions new 2ae8a4e Extend arm_feature_set struct to provide more bits new a14ddf4 [ARM] Rework CPU feature selection in the disassembler new fd815bd [ARM] Add support for ARMv8.1 PAN extension new 7b07b5b [ARM] Support for ARMv8.1 Adv.SIMD extension new e602582 [ARM] Support for ARMv8.1 command line option new 80a0378 [AArch64] Revert local changes included in Matthew's commit new 517be18 [ARM] Commit approaved testcases missed in previous commit new a7fc1a1 [AArch64] Add support for ARMv8.1 command line option new 8b485c9 [ARM] Add crypto-neon-fp-armv8.1 as an fpu option new 9061e6f Fix broken -Bsymbolic-functions new 9ae30f6 [AArch64] Fix function pointer variable with -Bsymbolic-functions new 0e48a04 bfd/version.h: Update VERSION for 2.25 2015.10 release
The 19 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: bfd/ChangeLog | 19 + bfd/ChangeLog.linaro | 6 + bfd/elf32-arm.c | 2 +- bfd/elf32-hppa.c | 8 +- bfd/elf32-m68k.c | 4 +- bfd/elf32-nios2.c | 6 +- bfd/elf32-tic6x.c | 4 +- bfd/elfnn-aarch64.c | 2 +- bfd/version.h | 4 +- gas/ChangeLog | 67 + gas/NEWS | 8 + gas/config/tc-aarch64.c | 77 +- gas/config/tc-arm.c | 276 +- gas/doc/c-aarch64.texi | 27 +- gas/doc/c-arm.texi | 8 +- gas/testsuite/ChangeLog | 35 + gas/testsuite/gas/aarch64/crc32-directive.d | 17 + gas/testsuite/gas/aarch64/crc32.s | 6 + gas/testsuite/gas/aarch64/crypto-directive.d | 27 + gas/testsuite/gas/aarch64/crypto.s | 6 + gas/testsuite/gas/aarch64/lor-directive.d | 25 + gas/testsuite/gas/aarch64/lor.d | 23 + gas/testsuite/gas/aarch64/{crc32.s => lor.s} | 36 +- gas/testsuite/gas/aarch64/pan-directive.d | 13 + gas/testsuite/gas/aarch64/pan.d | 12 + gas/testsuite/gas/aarch64/{crc32.s => pan.s} | 25 +- gas/testsuite/gas/aarch64/rdma-directive.d | 70 + gas/testsuite/gas/aarch64/rdma.d | 69 + gas/testsuite/gas/aarch64/rdma.s | 78 + gas/testsuite/gas/arm/armv8-a+pan.d | 11 + gas/testsuite/gas/arm/armv8-a+pan.s | 14 + gas/testsuite/gas/arm/armv8-a+rdma.d | 77 + gas/testsuite/gas/arm/armv8-a+rdma.s | 60 + include/opcode/ChangeLog | 44 + include/opcode/aarch64.h | 16 + include/opcode/arm.h | 227 +- ld/testsuite/ChangeLog | 12 + ld/testsuite/ld-aarch64/aarch64-elf.exp | 1 + ld/testsuite/ld-aarch64/emit-relocs-28.d | 19 + ld/testsuite/ld-aarch64/relocs-257-symbolic-func.d | 5 + ld/testsuite/ld-aarch64/relocs-257-symbolic-func.s | 11 + ld/testsuite/ld-elf/elf.exp | 10 +- ld/testsuite/ld-elf/symbolic-func.r | 18 + ld/testsuite/ld-elf/symbolic-func.s | 13 + opcodes/ChangeLog | 50 + opcodes/aarch64-asm-2.c | 380 +- opcodes/aarch64-dis-2.c | 2185 +++++------ opcodes/aarch64-opc-2.c | 108 +- opcodes/aarch64-opc.c | 38 + opcodes/aarch64-tbl.h | 23 + opcodes/arm-dis.c | 3873 +++++++++++++------- 51 files changed, 5341 insertions(+), 2814 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/crc32-directive.d create mode 100644 gas/testsuite/gas/aarch64/crypto-directive.d create mode 100644 gas/testsuite/gas/aarch64/lor-directive.d create mode 100644 gas/testsuite/gas/aarch64/lor.d copy gas/testsuite/gas/aarch64/{crc32.s => lor.s} (58%) create mode 100644 gas/testsuite/gas/aarch64/pan-directive.d create mode 100644 gas/testsuite/gas/aarch64/pan.d copy gas/testsuite/gas/aarch64/{crc32.s => pan.s} (65%) create mode 100644 gas/testsuite/gas/aarch64/rdma-directive.d create mode 100644 gas/testsuite/gas/aarch64/rdma.d create mode 100644 gas/testsuite/gas/aarch64/rdma.s create mode 100644 gas/testsuite/gas/arm/armv8-a+pan.d create mode 100644 gas/testsuite/gas/arm/armv8-a+pan.s create mode 100644 gas/testsuite/gas/arm/armv8-a+rdma.d create mode 100644 gas/testsuite/gas/arm/armv8-a+rdma.s create mode 100644 ld/testsuite/ld-aarch64/emit-relocs-28.d create mode 100644 ld/testsuite/ld-aarch64/relocs-257-symbolic-func.d create mode 100644 ld/testsuite/ld-aarch64/relocs-257-symbolic-func.s create mode 100644 ld/testsuite/ld-elf/symbolic-func.r create mode 100644 ld/testsuite/ld-elf/symbolic-func.s