From 4a6e5cc95176769664bc9e56d4e7c92b7a2fc816 Mon Sep 17 00:00:00 2001 From: Christophe Lyon Date: Tue, 3 Jun 2014 22:47:52 +0200 Subject: Renamed Neon overflow to Neon cumulative saturation, since it's the real name. --- ref_vqdmulh_n.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'ref_vqdmulh_n.c') diff --git a/ref_vqdmulh_n.c b/ref_vqdmulh_n.c index 847edba..761c7c0 100644 --- a/ref_vqdmulh_n.c +++ b/ref_vqdmulh_n.c @@ -42,14 +42,14 @@ FNNAME (INSN) /* vector_res = vqdmulh_n(vector,val), then store the result. */ #define TEST_VQDMULH_N2(INSN, Q, T1, T2, W, N, L) \ - Set_Neon_Overflow(0); \ + Set_Neon_Cumulative_Sat(0); \ VECT_VAR(vector_res, T1, W, N) = \ INSN##Q##_n_##T2##W(VECT_VAR(vector, T1, W, N), \ L); \ vst1##Q##_##T2##W(VECT_VAR(result, T1, W, N), \ VECT_VAR(vector_res, T1, W, N)); \ - dump_neon_overflow(TEST_MSG, xSTR(INSN##Q##_n_##T2##W), \ - xSTR(T1), W, N) + dump_neon_cumulative_sat(TEST_MSG, xSTR(INSN##Q##_n_##T2##W), \ + xSTR(T1), W, N) /* Two auxliary macros are necessary to expand INSN */ #define TEST_VQDMULH_N1(INSN, Q, T1, T2, W, N, L) \ @@ -81,7 +81,7 @@ FNNAME (INSN) TEST_VDUP(vector, q, int, s, 32, 4, 0x100045); /* Choose multiplier arbitrarily */ - fprintf(ref_file, "\n%s overflow output:\n", TEST_MSG); + fprintf(ref_file, "\n%s cumulative saturation output:\n", TEST_MSG); TEST_VQDMULH_N(, int, s, 16, 4, 0xCF); TEST_VQDMULH_N(, int, s, 32, 2, 0x2344); TEST_VQDMULH_N(q, int, s, 16, 8, 0x80); @@ -99,11 +99,11 @@ FNNAME (INSN) TEST_VDUP(vector, , int, s, 32, 2, 0x80000000); TEST_VDUP(vector, q, int, s, 16, 8, 0x8000); TEST_VDUP(vector, q, int, s, 32, 4, 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_VQDMULH_N(, int, s, 16, 4, 0x8000); TEST_VQDMULH_N(, int, s, 32, 2, 0x80000000); TEST_VQDMULH_N(q, int, s, 16, 8, 0x8000); TEST_VQDMULH_N(q, int, s, 32, 4, 0x80000000); - dump_results_hex2 (TEST_MSG, " (check mul overflow)"); + dump_results_hex2 (TEST_MSG, " (check mul cumulative saturation)"); } -- cgit v1.2.3