forked from iains/gcc-14-branch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AArch64] Improve arm_neon.h vml<as>_lane handling.
gcc/ * config/aarch64/aarch64-simd-builtins.def (fma): New. * config/aarch64/aarch64-simd.md (aarch64_mla_elt<mode>): New. (aarch64_mla_elt_<vswap_width_name><mode>): Likewise. (aarch64_mls_elt<mode>): Likewise. (aarch64_mls_elt_<vswap_width_name><mode>): Likewise. (aarch64_fma4_elt<mode>): Likewise. (aarch64_fma4_elt_<vswap_width_name><mode>): Likewise. (aarch64_fma4_elt_to_128v2df): Likewise. (aarch64_fma4_elt_to_64df): Likewise. (fnma<mode>4): Likewise. (aarch64_fnma4_elt<mode>): Likewise. (aarch64_fnma4_elt_<vswap_width_name><mode>): Likewise. (aarch64_fnma4_elt_to_128v2df): Likewise. (aarch64_fnma4_elt_to_64df): Likewise. * config/aarch64/iterators.md (VDQSF): New. * config/aarch64/arm_neon.h (vfm<as><sdq>_lane<q>_f<32, 64>): Convert to C implementation. (vml<sa><q>_lane<q>_<fsu><16, 32, 64>): Likewise. gcc/testsuite/ * gcc.target/aarch64/fmla-intrinsic.c: New. * gcc.target/aarch64/mla-intrinsic.c: Likewise. * gcc.target/aarch64/fmls-intrinsic.c: Likewise. * gcc.target/aarch64/mls-intrinsic.c: Likewise. From-SVN: r202625
- Loading branch information
1 parent
779aea4
commit 828e70c
Showing
10 changed files
with
1,231 additions
and
655 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
2013-09-16 James Greenhalgh <[email protected]> | ||
|
||
* config/aarch64/aarch64-simd-builtins.def (fma): New. | ||
* config/aarch64/aarch64-simd.md | ||
(aarch64_mla_elt<mode>): New. | ||
(aarch64_mla_elt_<vswap_width_name><mode>): Likewise. | ||
(aarch64_mls_elt<mode>): Likewise. | ||
(aarch64_mls_elt_<vswap_width_name><mode>): Likewise. | ||
(aarch64_fma4_elt<mode>): Likewise. | ||
(aarch64_fma4_elt_<vswap_width_name><mode>): Likewise. | ||
(aarch64_fma4_elt_to_128v2df): Likewise. | ||
(aarch64_fma4_elt_to_64df): Likewise. | ||
(fnma<mode>4): Likewise. | ||
(aarch64_fnma4_elt<mode>): Likewise. | ||
(aarch64_fnma4_elt_<vswap_width_name><mode>): Likewise. | ||
(aarch64_fnma4_elt_to_128v2df): Likewise. | ||
(aarch64_fnma4_elt_to_64df): Likewise. | ||
* config/aarch64/iterators.md (VDQSF): New. | ||
* config/aarch64/arm_neon.h | ||
(vfm<as><sdq>_lane<q>_f<32, 64>): Convert to C implementation. | ||
(vml<sa><q>_lane<q>_<fsu><16, 32, 64>): Likewise. | ||
|
||
2013-09-16 James Greenhalgh <[email protected]> | ||
|
||
* config/aarch64/aarch64-simd.md (aarch64_mul3_elt<mode>): New. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.