diff options
author | Matthew Wahab <matthew.wahab@arm.com> | 2015-06-02 12:20:00 +0100 |
---|---|---|
committer | Jiong Wang <jiong.wang@arm.com> | 2015-06-02 12:20:00 +0100 |
commit | 9e1f0fa7f3f7aef95d27e197562906bc648849bb (patch) | |
tree | aaf920b04ede209de80db749d9facbdb3b4c822b /include | |
parent | 290806fd94099361f28e012cebca058c8c4f0e45 (diff) | |
download | fsf-binutils-gdb-9e1f0fa7f3f7aef95d27e197562906bc648849bb.zip fsf-binutils-gdb-9e1f0fa7f3f7aef95d27e197562906bc648849bb.tar.gz fsf-binutils-gdb-9e1f0fa7f3f7aef95d27e197562906bc648849bb.tar.bz2 |
[AArch64] Support for ARMv8.1a Adv.SIMD instructions
2015-06-02 Matthew Wahab <matthew.wahab@arm.com>
gas/
* config/tc-aarch64.c (aarch64_features): Add "rdma".
* doc/c-aarch64.texi (AArch64 Extensions): Add "rdma".
gas/testsuite/
* rdma-directive.d: New.
* rdma.d: New.
* rdma.s: New.
include/opcode/
* aarch64.h (AARCH64_FEATURE_RDMA): New.
opcode/
* aarch64-tbl.h (aarch64_feature_rdma): New.
(RDMA): New.
(aarch64_opcode_table): Add "sqrmlah" and "sqrdmlsh" instructions.
* aarch64-asm-2.c: Regenerate.
* aarch64-dis-2.c: Regenerate.
* aarch64-opc-2.c: Regenerate.
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/ChangeLog | 4 | ||||
-rw-r--r-- | include/opcode/aarch64.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 0154b89..febe24f 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,5 +1,9 @@ 2015-06-02 Matthew Wahab <matthew.wahab@arm.com> + * aarch64.h (AARCH64_FEATURE_RDMA): New. + +2015-06-02 Matthew Wahab <matthew.wahab@arm.com> + * aarch64.h (AARCH64_FEATURE_LOR): New. 2015-06-01 Matthew Wahab <matthew.wahab@arm.com> diff --git a/include/opcode/aarch64.h b/include/opcode/aarch64.h index 764c6ec..c47f9dd 100644 --- a/include/opcode/aarch64.h +++ b/include/opcode/aarch64.h @@ -41,6 +41,7 @@ typedef uint32_t aarch64_insn; #define AARCH64_FEATURE_LSE 0x00100000 /* LSE instructions. */ #define AARCH64_FEATURE_PAN 0x00200000 /* PAN instructions. */ #define AARCH64_FEATURE_LOR 0x00400000 /* LOR instructions. */ +#define AARCH64_FEATURE_RDMA 0x00800000 /* v8.1 SIMD instructions. */ /* Architectures are the sum of the base and extensions. */ #define AARCH64_ARCH_V8 AARCH64_FEATURE (AARCH64_FEATURE_V8, \ |