1 /* 2 3 Copyright (c) 2009, 2010, 2011, 2012 STMicroelectronics 4 Written by Christophe Lyon 5 6 Permission is hereby granted, free of charge, to any person obtaining a copy 7 of this software and associated documentation files (the "Software"), to deal 8 in the Software without restriction, including without limitation the rights 9 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 copies of the Software, and to permit persons to whom the Software is 11 furnished to do so, subject to the following conditions: 12 13 The above copyright notice and this permission notice shall be included in 14 all copies or substantial portions of the Software. 15 16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 THE SOFTWARE. 23 24 */ 25 26 /* Template file for unary saturating operator validation */ 27 28 #if defined(__arm__) || defined(__aarch64__) 29 #include <arm_neon.h> 30 #else 31 #include "stm-arm-neon.h" 32 #endif 33 34 #include "stm-arm-neon-ref.h" 35 36 #define FNNAME1(NAME) void exec_ ## NAME (void) 37 #define FNNAME(NAME) FNNAME1(NAME) 38 39 FNNAME (INSN_NAME) 40 { 41 /* Basic test: y=OP(x), then store the result. */ 42 #define TEST_UNARY_SAT_OP1(INSN, Q, T1, T2, W, N) \ 43 Set_Neon_Cumulative_Sat(0, VECT_VAR(vector_res, T1, W, N)); \ 44 VECT_VAR(vector_res, T1, W, N) = \ 45 INSN##Q##_##T2##W(VECT_VAR(vector, T1, W, N)); \ 46 vst1##Q##_##T2##W(VECT_VAR(result, T1, W, N), \ 47 VECT_VAR(vector_res, T1, W, N)); \ 48 dump_neon_cumulative_sat(TEST_MSG, xSTR(INSN##Q##_##T2##W), \ 49 xSTR(T1), W, N) 50 51 #define TEST_UNARY_SAT_OP(INSN, Q, T1, T2, W, N) \ 52 TEST_UNARY_SAT_OP1(INSN, Q, T1, T2, W, N) 53 54 /* With ARM RVCT, we need to declare variables before any executable 55 statement */ 56 57 /* No need for 64 bits variants */ 58 DECL_VARIABLE(vector, int, 8, 8); 59 DECL_VARIABLE(vector, int, 16, 4); 60 DECL_VARIABLE(vector, int, 32, 2); 61 DECL_VARIABLE(vector, int, 8, 16); 62 DECL_VARIABLE(vector, int, 16, 8); 63 DECL_VARIABLE(vector, int, 32, 4); 64 65 DECL_VARIABLE(vector_res, int, 8, 8); 66 DECL_VARIABLE(vector_res, int, 16, 4); 67 DECL_VARIABLE(vector_res, int, 32, 2); 68 DECL_VARIABLE(vector_res, int, 8, 16); 69 DECL_VARIABLE(vector_res, int, 16, 8); 70 DECL_VARIABLE(vector_res, int, 32, 4); 71 72 clean_results (); 73 74 /* Initialize input "vector" from "buffer" */ 75 VLOAD(vector, buffer, , int, s, 8, 8); 76 VLOAD(vector, buffer, , int, s, 16, 4); 77 VLOAD(vector, buffer, , int, s, 32, 2); 78 VLOAD(vector, buffer, q, int, s, 8, 16); 79 VLOAD(vector, buffer, q, int, s, 16, 8); 80 VLOAD(vector, buffer, q, int, s, 32, 4); 81 82 /* Apply a unary operator named INSN_NAME */ 83 fprintf(ref_file, "\n%s cumulative saturation output:\n", TEST_MSG); 84 TEST_UNARY_SAT_OP(INSN_NAME, , int, s, 8, 8); 85 TEST_UNARY_SAT_OP(INSN_NAME, , int, s, 16, 4); 86 TEST_UNARY_SAT_OP(INSN_NAME, , int, s, 32, 2); 87 TEST_UNARY_SAT_OP(INSN_NAME, q, int, s, 8, 16); 88 TEST_UNARY_SAT_OP(INSN_NAME, q, int, s, 16, 8); 89 TEST_UNARY_SAT_OP(INSN_NAME, q, int, s, 32, 4); 90 91 dump_results_hex (TEST_MSG); 92 93 #ifdef EXTRA_TESTS 94 EXTRA_TESTS(); 95 #endif 96 } 97