aboutsummaryrefslogtreecommitdiffstats
path: root/ref_vqdmlal_lane.c
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2014-06-03 22:47:52 +0200
committerChristophe Lyon <christophe.lyon@linaro.org>2014-06-03 22:47:52 +0200
commit4a6e5cc95176769664bc9e56d4e7c92b7a2fc816 (patch)
tree614baf4a3939bd6a255da33aebf5cd12a43e8021 /ref_vqdmlal_lane.c
parentfad316adcad1edd1cbb1e01769768abcffcb1070 (diff)
downloadplatform_external_arm-neon-tests-4a6e5cc95176769664bc9e56d4e7c92b7a2fc816.tar.gz
platform_external_arm-neon-tests-4a6e5cc95176769664bc9e56d4e7c92b7a2fc816.tar.bz2
platform_external_arm-neon-tests-4a6e5cc95176769664bc9e56d4e7c92b7a2fc816.zip
Renamed Neon overflow to Neon cumulative saturation, since it's the real name.
Diffstat (limited to 'ref_vqdmlal_lane.c')
-rw-r--r--ref_vqdmlal_lane.c33
1 files changed, 17 insertions, 16 deletions
diff --git a/ref_vqdmlal_lane.c b/ref_vqdmlal_lane.c
index 903b822..b0a44c2 100644
--- a/ref_vqdmlal_lane.c
+++ b/ref_vqdmlal_lane.c
@@ -43,17 +43,17 @@ FNNAME (INSN_NAME)
{
/* vector_res = vqdmlxl_lane(vector, vector3, vector4, lane),
then store the result. */
-#define TEST_VQDMLXL_LANE1(INSN, T1, T2, W, W2, N, V) \
- Set_Neon_Overflow(0); \
- VECT_VAR(vector_res, T1, W, N) = \
- INSN##_##T2##W2(VECT_VAR(vector, T1, W, N), \
- VECT_VAR(vector3, T1, W2, N), \
- VECT_VAR(vector4, T1, W2, N), \
- V); \
- vst1q_##T2##W(VECT_VAR(result, T1, W, N), \
- VECT_VAR(vector_res, T1, W, N)); \
- dump_neon_overflow(TEST_MSG, xSTR(INSN##_##T2##W2), \
- xSTR(T1), W, N)
+#define TEST_VQDMLXL_LANE1(INSN, T1, T2, W, W2, N, V) \
+ Set_Neon_Cumulative_Sat(0); \
+ VECT_VAR(vector_res, T1, W, N) = \
+ INSN##_##T2##W2(VECT_VAR(vector, T1, W, N), \
+ VECT_VAR(vector3, T1, W2, N), \
+ VECT_VAR(vector4, T1, W2, N), \
+ V); \
+ vst1q_##T2##W(VECT_VAR(result, T1, W, N), \
+ VECT_VAR(vector_res, T1, W, N)); \
+ dump_neon_cumulative_sat(TEST_MSG, xSTR(INSN##_##T2##W2), \
+ xSTR(T1), W, N)
#define TEST_VQDMLXL_LANE(INSN, T1, T2, W, W2, N, V) \
TEST_VQDMLXL_LANE1(INSN, T1, T2, W, W2, N, V)
@@ -80,14 +80,15 @@ FNNAME (INSN_NAME)
TEST_VDUP(vector3, , int, s, 32, 2, 0x55);
TEST_VDUP(vector4, , int, s, 32, 2, 0xBB);
- fprintf(ref_file, "\n%s overflow output:\n", TEST_MSG);
+ fprintf(ref_file, "\n%s cumulative saturation output:\n", TEST_MSG);
TEST_VQDMLXL_LANE(INSN_NAME, int, s, 32, 16, 4, 0);
TEST_VQDMLXL_LANE(INSN_NAME, int, s, 64, 32, 2, 0);
dump_results_hex (TEST_MSG);
TEST_VDUP(vector3, , int, s, 16, 4, 0);
TEST_VDUP(vector3, , int, s, 32, 2, 0);
- fprintf(ref_file, "\n%s overflow output:\n", TEST_MSG " (mul with input=0)");
+ fprintf(ref_file, "\n%s cumulative saturation output:\n",
+ TEST_MSG " (mul with input=0)");
TEST_VQDMLXL_LANE(INSN_NAME, int, s, 32, 16, 4, 0);
TEST_VQDMLXL_LANE(INSN_NAME, int, s, 64, 32, 2, 0);
dump_results_hex2 (TEST_MSG, " (mul with input=0)");
@@ -96,9 +97,9 @@ FNNAME (INSN_NAME)
TEST_VDUP(vector3, , int, s, 32, 2, 0x80000000);
TEST_VDUP(vector4, , int, s, 16, 4, 0x8000);
TEST_VDUP(vector4, , int, s, 32, 2, 0x80000000);
- fprintf(ref_file, "\n%s overflow output:\n",
- TEST_MSG " (check mul overflow)");
+ fprintf(ref_file, "\n%s cumulative saturation output:\n",
+ TEST_MSG " (check mul cumulative saturation)");
TEST_VQDMLXL_LANE(INSN_NAME, int, s, 32, 16, 4, 0);
TEST_VQDMLXL_LANE(INSN_NAME, int, s, 64, 32, 2, 0);
- dump_results_hex2 (TEST_MSG, " (check mul overflow)");
+ dump_results_hex2 (TEST_MSG, " (check mul cumulative saturation)");
}