cmp_fp_op.inc: New file.
2014-10-24 Christophe Lyon <christophe.lyon@linaro.org> * gcc.target/aarch64/advsimd-intrinsics/cmp_fp_op.inc: New file. * gcc.target/aarch64/advsimd-intrinsics/vcage.c: Likewise. * gcc.target/aarch64/advsimd-intrinsics/vcagt.c: Likewise. * gcc.target/aarch64/advsimd-intrinsics/vcale.c: Likewise. * gcc.target/aarch64/advsimd-intrinsics/vcalt.c: Likewise. From-SVN: r216645
This commit is contained in:
parent
ed9f6694fa
commit
c91f3ac1ff
@ -1,3 +1,11 @@
|
||||
2014-10-24 Christophe Lyon <christophe.lyon@linaro.org>
|
||||
|
||||
* gcc.target/aarch64/advsimd-intrinsics/cmp_fp_op.inc: New file.
|
||||
* gcc.target/aarch64/advsimd-intrinsics/vcage.c: Likewise.
|
||||
* gcc.target/aarch64/advsimd-intrinsics/vcagt.c: Likewise.
|
||||
* gcc.target/aarch64/advsimd-intrinsics/vcale.c: Likewise.
|
||||
* gcc.target/aarch64/advsimd-intrinsics/vcalt.c: Likewise.
|
||||
|
||||
2014-10-24 Christophe Lyon <christophe.lyon@linaro.org>
|
||||
|
||||
* gcc.target/aarch64/advsimd-intrinsics/cmp_op.inc: New file.
|
||||
|
@ -0,0 +1,75 @@
|
||||
/* Template file for the validation of comparison operator with
|
||||
floating-point support.
|
||||
|
||||
This file is meant to be included by the relevant test files, which
|
||||
have to define the intrinsic family to test. If a given intrinsic
|
||||
supports variants which are not supported by all the other
|
||||
operators, these can be tested by providing a definition for
|
||||
EXTRA_TESTS. */
|
||||
|
||||
#include <arm_neon.h>
|
||||
#include "arm-neon-ref.h"
|
||||
#include "compute-ref-data.h"
|
||||
|
||||
/* Additional expected results declaration, they are initialized in
|
||||
each test file. */
|
||||
extern ARRAY(expected2, uint, 32, 2);
|
||||
extern ARRAY(expected2, uint, 32, 4);
|
||||
|
||||
#define FNNAME1(NAME) exec_ ## NAME
|
||||
#define FNNAME(NAME) FNNAME1(NAME)
|
||||
|
||||
void FNNAME (INSN_NAME) (void)
|
||||
{
|
||||
/* Basic test: y=vcomp(x1,x2), then store the result. */
|
||||
#define TEST_VCOMP1(INSN, Q, T1, T2, T3, W, N) \
|
||||
VECT_VAR(vector_res, T3, W, N) = \
|
||||
INSN##Q##_##T2##W(VECT_VAR(vector, T1, W, N), \
|
||||
VECT_VAR(vector2, T1, W, N)); \
|
||||
vst1##Q##_u##W(VECT_VAR(result, T3, W, N), VECT_VAR(vector_res, T3, W, N))
|
||||
|
||||
#define TEST_VCOMP(INSN, Q, T1, T2, T3, W, N) \
|
||||
TEST_VCOMP1(INSN, Q, T1, T2, T3, W, N)
|
||||
|
||||
DECL_VARIABLE(vector, float, 32, 2);
|
||||
DECL_VARIABLE(vector, float, 32, 4);
|
||||
DECL_VARIABLE(vector2, float, 32, 2);
|
||||
DECL_VARIABLE(vector2, float, 32, 4);
|
||||
DECL_VARIABLE(vector_res, uint, 32, 2);
|
||||
DECL_VARIABLE(vector_res, uint, 32, 4);
|
||||
|
||||
clean_results ();
|
||||
|
||||
/* Initialize input "vector" from "buffer". */
|
||||
VLOAD(vector, buffer, , float, f, 32, 2);
|
||||
VLOAD(vector, buffer, q, float, f, 32, 4);
|
||||
|
||||
/* Choose init value arbitrarily, will be used for vector
|
||||
comparison. */
|
||||
VDUP(vector2, , float, f, 32, 2, -16.0f);
|
||||
VDUP(vector2, q, float, f, 32, 4, -14.0f);
|
||||
|
||||
/* Apply operator named INSN_NAME. */
|
||||
TEST_VCOMP(INSN_NAME, , float, f, uint, 32, 2);
|
||||
CHECK(TEST_MSG, uint, 32, 2, PRIx32, expected, "");
|
||||
|
||||
TEST_VCOMP(INSN_NAME, q, float, f, uint, 32, 4);
|
||||
CHECK(TEST_MSG, uint, 32, 4, PRIx32, expected, "");
|
||||
|
||||
/* Test again, with different input values. */
|
||||
VDUP(vector2, , float, f, 32, 2, -10.0f);
|
||||
VDUP(vector2, q, float, f, 32, 4, 10.0f);
|
||||
|
||||
TEST_VCOMP(INSN_NAME, , float, f, uint, 32, 2);
|
||||
CHECK(TEST_MSG, uint, 32, 2, PRIx32, expected2, "");
|
||||
|
||||
TEST_VCOMP(INSN_NAME, q, float, f, uint, 32, 4);
|
||||
CHECK(TEST_MSG, uint, 32, 4, PRIx32, expected2,"");
|
||||
}
|
||||
|
||||
int main (void)
|
||||
{
|
||||
FNNAME (INSN_NAME) ();
|
||||
|
||||
return 0;
|
||||
}
|
52
gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vcage.c
Normal file
52
gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vcage.c
Normal file
@ -0,0 +1,52 @@
|
||||
#define INSN_NAME vcage
|
||||
#define TEST_MSG "VCAGE/VCAGEQ"
|
||||
|
||||
#include "cmp_fp_op.inc"
|
||||
|
||||
/* Expected results. */
|
||||
VECT_VAR_DECL(expected,int,8,8) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,int,16,4) [] = { 0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,int,32,2) [] = { 0x33333333, 0x33333333 };
|
||||
VECT_VAR_DECL(expected,int,64,1) [] = { 0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,uint,8,8) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,uint,16,4) [] = { 0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,uint,32,2) [] = { 0xffffffff, 0x0 };
|
||||
VECT_VAR_DECL(expected,uint,64,1) [] = { 0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,poly,8,8) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,poly,16,4) [] = { 0x3333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,hfloat,32,2) [] = { 0x33333333, 0x33333333 };
|
||||
VECT_VAR_DECL(expected,int,8,16) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,int,16,8) [] = { 0x333, 0x3333, 0x3333, 0x3333,
|
||||
0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,int,32,4) [] = { 0x33333333, 0x33333333,
|
||||
0x33333333, 0x33333333 };
|
||||
VECT_VAR_DECL(expected,int,64,2) [] = { 0x3333333333333333,
|
||||
0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,uint,8,16) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,uint,16,8) [] = { 0x333, 0x3333, 0x3333, 0x3333,
|
||||
0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,uint,32,4) [] = { 0xffffffff, 0xffffffff,
|
||||
0xffffffff, 0x0 };
|
||||
VECT_VAR_DECL(expected,uint,64,2) [] = { 0x3333333333333333,
|
||||
0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,poly,8,16) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,poly,16,8) [] = { 0x3333, 0x3333, 0x3333, 0x3333,
|
||||
0x3333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,hfloat,32,4) [] = { 0x33333333, 0x33333333,
|
||||
0x33333333, 0x33333333 };
|
||||
|
||||
VECT_VAR_DECL(expected2,uint,32,2) [] = { 0xffffffff, 0xffffffff };
|
||||
VECT_VAR_DECL(expected2,uint,32,4) [] = { 0xffffffff, 0xffffffff,
|
||||
0xffffffff, 0xffffffff };
|
51
gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vcagt.c
Normal file
51
gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vcagt.c
Normal file
@ -0,0 +1,51 @@
|
||||
#define INSN_NAME vcagt
|
||||
#define TEST_MSG "VCAGT/VCAGTQ"
|
||||
|
||||
#include "cmp_fp_op.inc"
|
||||
|
||||
/* Expected results. */
|
||||
VECT_VAR_DECL(expected,int,8,8) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,int,16,4) [] = { 0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,int,32,2) [] = { 0x33333333, 0x33333333 };
|
||||
VECT_VAR_DECL(expected,int,64,1) [] = { 0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,uint,8,8) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,uint,16,4) [] = { 0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,uint,32,2) [] = { 0x0, 0x0 };
|
||||
VECT_VAR_DECL(expected,uint,64,1) [] = { 0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,poly,8,8) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,poly,16,4) [] = { 0x3333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,hfloat,32,2) [] = { 0x33333333, 0x33333333 };
|
||||
VECT_VAR_DECL(expected,int,8,16) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,int,16,8) [] = { 0x333, 0x3333, 0x3333, 0x3333,
|
||||
0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,int,32,4) [] = { 0xffffffff, 0xffffffff, 0x0, 0x0 };
|
||||
VECT_VAR_DECL(expected,int,64,2) [] = { 0x3333333333333333,
|
||||
0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,uint,8,16) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,uint,16,8) [] = { 0x333, 0x3333, 0x3333, 0x3333,
|
||||
0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,uint,32,4) [] = { 0xffffffff, 0xffffffff,
|
||||
0x0, 0x0 };
|
||||
VECT_VAR_DECL(expected,uint,64,2) [] = { 0x3333333333333333,
|
||||
0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,poly,8,16) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,poly,16,8) [] = { 0x3333, 0x3333, 0x3333, 0x3333,
|
||||
0x3333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,hfloat,32,4) [] = { 0x33333333, 0x33333333,
|
||||
0x33333333, 0x33333333 };
|
||||
|
||||
VECT_VAR_DECL(expected2,uint,32,2) [] = { 0xffffffff, 0xffffffff };
|
||||
VECT_VAR_DECL(expected2,uint,32,4) [] = { 0xffffffff, 0xffffffff,
|
||||
0xffffffff, 0xffffffff };
|
49
gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vcale.c
Normal file
49
gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vcale.c
Normal file
@ -0,0 +1,49 @@
|
||||
#define INSN_NAME vcale
|
||||
#define TEST_MSG "VCALE/VCALEQ"
|
||||
|
||||
#include "cmp_fp_op.inc"
|
||||
|
||||
/* Expected results. */
|
||||
VECT_VAR_DECL(expected,int,8,8) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,int,16,4) [] = { 0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,int,32,2) [] = { 0x33333333, 0x33333333 };
|
||||
VECT_VAR_DECL(expected,int,64,1) [] = { 0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,uint,8,8) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,uint,16,4) [] = { 0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,uint,32,2) [] = { 0xffffffff, 0xffffffff };
|
||||
VECT_VAR_DECL(expected,uint,64,1) [] = { 0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,poly,8,8) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,poly,16,4) [] = { 0x3333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,hfloat,32,2) [] = { 0x33333333, 0x33333333 };
|
||||
VECT_VAR_DECL(expected,int,8,16) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,int,16,8) [] = { 0x333, 0x3333, 0x3333, 0x3333,
|
||||
0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,int,32,4) [] = { 0xffffffff, 0xffffffff, 0x0, 0x0 };
|
||||
VECT_VAR_DECL(expected,int,64,2) [] = { 0x3333333333333333,
|
||||
0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,uint,8,16) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,uint,16,8) [] = { 0x333, 0x3333, 0x3333, 0x3333,
|
||||
0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,uint,32,4) [] = { 0x0, 0x0, 0xffffffff, 0xffffffff };
|
||||
VECT_VAR_DECL(expected,uint,64,2) [] = { 0x3333333333333333,
|
||||
0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,poly,8,16) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,poly,16,8) [] = { 0x3333, 0x3333, 0x3333, 0x3333,
|
||||
0x3333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,hfloat,32,4) [] = { 0x33333333, 0x33333333,
|
||||
0x33333333, 0x33333333 };
|
||||
|
||||
VECT_VAR_DECL(expected2,uint,32,2) [] = { 0x0, 0x0 };
|
||||
VECT_VAR_DECL(expected2,uint,32,4) [] = { 0x0, 0x0, 0x0, 0x0 };
|
49
gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vcalt.c
Normal file
49
gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vcalt.c
Normal file
@ -0,0 +1,49 @@
|
||||
#define INSN_NAME vcalt
|
||||
#define TEST_MSG "VCALT/VCALTQ"
|
||||
|
||||
#include "cmp_fp_op.inc"
|
||||
|
||||
/* Expected results. */
|
||||
VECT_VAR_DECL(expected,int,8,8) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,int,16,4) [] = { 0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,int,32,2) [] = { 0x33333333, 0x33333333 };
|
||||
VECT_VAR_DECL(expected,int,64,1) [] = { 0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,uint,8,8) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,uint,16,4) [] = { 0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,uint,32,2) [] = { 0x0, 0xffffffff };
|
||||
VECT_VAR_DECL(expected,uint,64,1) [] = { 0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,poly,8,8) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,poly,16,4) [] = { 0x3333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,hfloat,32,2) [] = { 0x33333333, 0x33333333 };
|
||||
VECT_VAR_DECL(expected,int,8,16) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,int,16,8) [] = { 0x333, 0x3333, 0x3333, 0x3333,
|
||||
0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,int,32,4) [] = { 0xffffffff, 0xffffffff, 0x0, 0x0 };
|
||||
VECT_VAR_DECL(expected,int,64,2) [] = { 0x3333333333333333,
|
||||
0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,uint,8,16) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,uint,16,8) [] = { 0x333, 0x3333, 0x3333, 0x3333,
|
||||
0x333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,uint,32,4) [] = { 0x0, 0x0, 0x0, 0xffffffff };
|
||||
VECT_VAR_DECL(expected,uint,64,2) [] = { 0x3333333333333333,
|
||||
0x3333333333333333 };
|
||||
VECT_VAR_DECL(expected,poly,8,16) [] = { 0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33,
|
||||
0x33, 0x33, 0x33, 0x33 };
|
||||
VECT_VAR_DECL(expected,poly,16,8) [] = { 0x3333, 0x3333, 0x3333, 0x3333,
|
||||
0x3333, 0x3333, 0x3333, 0x3333 };
|
||||
VECT_VAR_DECL(expected,hfloat,32,4) [] = { 0x33333333, 0x33333333,
|
||||
0x33333333, 0x33333333 };
|
||||
|
||||
VECT_VAR_DECL(expected2,uint,32,2) [] = { 0x0, 0x0 };
|
||||
VECT_VAR_DECL(expected2,uint,32,4) [] = { 0x0, 0x0, 0x0, 0x0 };
|
Loading…
Reference in New Issue
Block a user