diff options
author | Jim Wilson <jim.wilson@linaro.org> | 2017-07-21 21:56:57 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 2017-07-21 14:56:57 -0700 |
commit | 43f84f6c0b347bbe857aabc8ff795a5e859c690b (patch) | |
tree | d61ecd9d9e44195ed05cab7b4db246c9c226b755 /gcc/doc/invoke.texi | |
parent | 0901429d474107af56cef0a72da6cedf9d42fcfc (diff) | |
download | gcc-43f84f6c0b347bbe857aabc8ff795a5e859c690b.zip gcc-43f84f6c0b347bbe857aabc8ff795a5e859c690b.tar.gz gcc-43f84f6c0b347bbe857aabc8ff795a5e859c690b.tar.bz2 |
Add RDMA support to falkor port.
gcc/
* config/aarch64/aarch64-cores.def (falkor): Add AARCH64_FL_RDMA.
(qdf24xx): Likewise.
* config/aarch64/aarch64-options-extensions.def (rdma); New.
* config/aarch64/aarch64.h (AARCH64_FL_RDMA): New.
(AARCH64_FL_V8_1): Renumber.
(AARCH64_FL_FOR_ARCH8_1): Add AARCH64_FL_RDMA.
(AARCH64_ISA_RDMA): Use AARCH64_FL_RDMA.
* config/aarch64/arm_neon.h: Use +rdma instead of arch=armv8.1-a.
* doc/invoke.texi (AArch64 Options): Mention +rmda in -march docs. Add
rdma to feature modifiers list.
gcc/testsuite/
* lib/target-supports.exp (add_options_for_arm_v8_1a_neon): Delete
redundant -march option.
(check_effective_target_arm_v8_1a_neon_ok_nocache): Try armv8-a+rdma
in addition to armv8.1-a.
From-SVN: r250444
Diffstat (limited to 'gcc/doc/invoke.texi')
-rw-r--r-- | gcc/doc/invoke.texi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index dfde403..2bab550 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -14084,7 +14084,7 @@ support for the ARMv8.2-A architecture extensions. The value @samp{armv8.1-a} implies @samp{armv8-a} and enables compiler support for the ARMv8.1-A architecture extension. In particular, it -enables the @samp{+crc} and @samp{+lse} features. +enables the @samp{+crc}, @samp{+lse}, and @samp{+rdma} features. The value @samp{native} is available on native AArch64 GNU/Linux and causes the compiler to pick the architecture of the host system. This @@ -14202,6 +14202,9 @@ instructions. This is on by default for all possible values for options @item lse Enable Large System Extension instructions. This is on by default for @option{-march=armv8.1-a}. +@item rdma +Enable Round Double Multiply Accumulate instructions. This is on by default +for @option{-march=armv8.1-a}. @item fp16 Enable FP16 extension. This also enables floating-point instructions. @item rcpc |