diff options
author | Richard Earnshaw <rearnsha@arm.com> | 2023-12-08 16:04:17 +0000 |
---|---|---|
committer | Richard Earnshaw <rearnsha@arm.com> | 2023-12-08 16:06:45 +0000 |
commit | f6d303dbb581af2d1d92a4df6ac9a4d57cb92942 (patch) | |
tree | 2bb1eed059ca1fe73b098a1c3733e364ee5cc14b /gcc/testsuite/gcc.target/arm | |
parent | 0a80a35df3446c936205a768ed0cd93bf8e0f43b (diff) | |
download | gcc-f6d303dbb581af2d1d92a4df6ac9a4d57cb92942.zip gcc-f6d303dbb581af2d1d92a4df6ac9a4d57cb92942.tar.gz gcc-f6d303dbb581af2d1d92a4df6ac9a4d57cb92942.tar.bz2 |
Revert "arm: vld1_types_x2 ACLE intrinsics"
This reverts commit 8fff3f065277f13176c320f22c4ed766a82c5d8e.
Diffstat (limited to 'gcc/testsuite/gcc.target/arm')
-rw-r--r-- | gcc/testsuite/gcc.target/arm/simd/vld1_base_xN_1.c | 66 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/arm/simd/vld1_bf16_xN_1.c | 13 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/arm/simd/vld1_fp16_xN_1.c | 13 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/arm/simd/vld1_p64_xN_1.c | 13 |
4 files changed, 0 insertions, 105 deletions
diff --git a/gcc/testsuite/gcc.target/arm/simd/vld1_base_xN_1.c b/gcc/testsuite/gcc.target/arm/simd/vld1_base_xN_1.c deleted file mode 100644 index 6b0e78d..0000000 --- a/gcc/testsuite/gcc.target/arm/simd/vld1_base_xN_1.c +++ /dev/null @@ -1,66 +0,0 @@ -/* { dg-do assemble } */ -/* { dg-require-effective-target arm_neon_ok } */ -/* { dg-options "-save-temps -O2" } */ -/* { dg-add-options arm_neon } */ - -#include "arm_neon.h" - -uint8x8x2_t test_vld1_u8_x2 (uint8_t * a) -{ - return vld1_u8_x2 (a); -} - -uint16x4x2_t test_vld1_u16_x2 (uint16_t * a) -{ - return vld1_u16_x2 (a); -} - -uint32x2x2_t test_vld1_u32_x2 (uint32_t * a) -{ - return vld1_u32_x2 (a); -} - -uint64x1x2_t test_vld1_u64_x2 (uint64_t * a) -{ - return vld1_u64_x2 (a); -} - -int8x8x2_t test_vld1_s8_x2 (int8_t * a) -{ - return vld1_s8_x2 (a); -} - -int16x4x2_t test_vld1_s16_x2 (int16_t * a) -{ - return vld1_s16_x2 (a); -} - -int32x2x2_t test_vld1_s32_x2 (int32_t * a) -{ - return vld1_s32_x2 (a); -} - -int64x1x2_t test_vld1_s64_x2 (int64_t * a) -{ - return vld1_s64_x2 (a); -} - -float32x2x2_t test_vld1_f32_x2 (float32_t * a) -{ - return vld1_f32_x2 (a); -} - -poly8x8x2_t test_vld1_p8_x2 (poly8_t * a) -{ - return vld1_p8_x2 (a); -} - -poly16x4x2_t test_vld1_p16_x2 (poly16_t * a) -{ - return vld1_p16_x2 (a); -} - -/* { dg-final { scan-assembler-times {vld1.8\t\{d[0-9]+-d[0-9]+\}, \[r[0-9]+\]\n} 3 } } */ -/* { dg-final { scan-assembler-times {vld1.16\t\{d[0-9]+-d[0-9]+\}, \[r[0-9]+\]\n} 3 } } */ -/* { dg-final { scan-assembler-times {vld1.32\t\{d[0-9]+-d[0-9]+\}, \[r[0-9]+\]\n} 3 } } */ -/* { dg-final { scan-assembler-times {vld1.64\t\{d[0-9]+-d[0-9]+\}, \[r[0-9]+:64\]\n} 2 } } */
\ No newline at end of file diff --git a/gcc/testsuite/gcc.target/arm/simd/vld1_bf16_xN_1.c b/gcc/testsuite/gcc.target/arm/simd/vld1_bf16_xN_1.c deleted file mode 100644 index 3ec7a5e..0000000 --- a/gcc/testsuite/gcc.target/arm/simd/vld1_bf16_xN_1.c +++ /dev/null @@ -1,13 +0,0 @@ -/* { dg-do assemble } */ -/* { dg-require-effective-target arm_v8_2a_bf16_neon_ok } */ -/* { dg-options "-save-temps -O2" } */ -/* { dg-add-options arm_v8_2a_bf16_neon } */ - -#include "arm_neon.h" - -bfloat16x4x2_t test_vld1_bf16_x2 (bfloat16_t * a) -{ - return vld1_bf16_x2 (a); -} - -/* { dg-final { scan-assembler-times {vld1.16\t\{d[0-9]+-d[0-9]+\}, \[r[0-9]+\]\n} 1 } } */
\ No newline at end of file diff --git a/gcc/testsuite/gcc.target/arm/simd/vld1_fp16_xN_1.c b/gcc/testsuite/gcc.target/arm/simd/vld1_fp16_xN_1.c deleted file mode 100644 index c0e5ea4..0000000 --- a/gcc/testsuite/gcc.target/arm/simd/vld1_fp16_xN_1.c +++ /dev/null @@ -1,13 +0,0 @@ -/* { dg-do assemble } */ -/* { dg-require-effective-target arm_neon_fp16_ok } */ -/* { dg-options "-save-temps -O2" } */ -/* { dg-add-options arm_neon_fp16 } */ - -#include "arm_neon.h" - -float16x4x2_t test_vld1_f16_x2 (float16_t * a) -{ - return vld1_f16_x2 (a); -} - -/* { dg-final { scan-assembler-times {vld1.16\t\{d[0-9]+-d[0-9]+\}, \[r[0-9]+\]\n} 1 } } */ diff --git a/gcc/testsuite/gcc.target/arm/simd/vld1_p64_xN_1.c b/gcc/testsuite/gcc.target/arm/simd/vld1_p64_xN_1.c deleted file mode 100644 index 3ccea52..0000000 --- a/gcc/testsuite/gcc.target/arm/simd/vld1_p64_xN_1.c +++ /dev/null @@ -1,13 +0,0 @@ -/* { dg-do assemble } */ -/* { dg-require-effective-target arm_crypto_ok } */ -/* { dg-options "-save-temps -O2" } */ -/* { dg-add-options arm_crypto } */ - -#include "arm_neon.h" - -poly64x1x2_t test_vld1_p64_x2 (poly64_t * a) -{ - return vld1_p64_x2 (a); -} - -/* { dg-final { scan-assembler-times {vld1.64\t\{d[0-9]+-d[0-9]+\}, \[r[0-9]+:64\]\n} 1 } } */ |