Home | History | Annotate | Download | only in arm-neon-tests
      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 #if defined(__arm__) || defined(__aarch64__)
     27 #include <arm_neon.h>
     28 #else
     29 #include "stm-arm-neon.h"
     30 #endif
     31 
     32 #include "stm-arm-neon-ref.h"
     33 
     34 #define INSN vqdmulh
     35 #define TEST_MSG "VQDMULH_LANE"
     36 #define FNNAME1(NAME) void exec_ ## NAME ## _lane (void)
     37 #define FNNAME(NAME) FNNAME1(NAME)
     38 
     39 FNNAME (INSN)
     40 {
     41   /* vector_res = vqdmulh_lane(vector,vector2,lane), then store the result.  */
     42 #define TEST_VQDMULH_LANE2(INSN, Q, T1, T2, W, N, N2, L)		\
     43   Set_Neon_Cumulative_Sat(0, VECT_VAR(vector_res, T1, W, N));		\
     44   VECT_VAR(vector_res, T1, W, N) =					\
     45     INSN##Q##_lane_##T2##W(VECT_VAR(vector, T1, W, N),			\
     46 			   VECT_VAR(vector2, T1, W, N2),		\
     47 			   L);						\
     48   vst1##Q##_##T2##W(VECT_VAR(result, T1, W, N),				\
     49 		    VECT_VAR(vector_res, T1, W, N));			\
     50   dump_neon_cumulative_sat(TEST_MSG, xSTR(INSN##Q##_lane_##T2##W),	\
     51 			   xSTR(T1), W, N)
     52 
     53   /* Two auxliary macros are necessary to expand INSN */
     54 #define TEST_VQDMULH_LANE1(INSN, Q, T1, T2, W, N, N2, L)	\
     55   TEST_VQDMULH_LANE2(INSN, Q, T1, T2, W, N, N2, L)
     56 
     57 #define TEST_VQDMULH_LANE(Q, T1, T2, W, N, N2, L)	\
     58   TEST_VQDMULH_LANE1(INSN, Q, T1, T2, W, N, N2, L)
     59 
     60   /* With ARM RVCT, we need to declare variables before any executable
     61      statement */
     62   DECL_VARIABLE(vector, int, 16, 4);
     63   DECL_VARIABLE(vector, int, 32, 2);
     64   DECL_VARIABLE(vector, int, 16, 8);
     65   DECL_VARIABLE(vector, int, 32, 4);
     66 
     67   DECL_VARIABLE(vector_res, int, 16, 4);
     68   DECL_VARIABLE(vector_res, int, 32, 2);
     69   DECL_VARIABLE(vector_res, int, 16, 8);
     70   DECL_VARIABLE(vector_res, int, 32, 4);
     71 
     72   /* vector2: vqdmulh_lane and vqdmulhq_lane have a 2nd argument with
     73      the same number of elements, so we need only one variable of each
     74      type.  */
     75   DECL_VARIABLE(vector2, int, 16, 4);
     76   DECL_VARIABLE(vector2, int, 32, 2);
     77 
     78   clean_results ();
     79 
     80   VLOAD(vector, buffer, , int, s, 16, 4);
     81   VLOAD(vector, buffer, , int, s, 32, 2);
     82 
     83   VLOAD(vector, buffer, q, int, s, 16, 8);
     84   VLOAD(vector, buffer, q, int, s, 32, 4);
     85 
     86   /* Initialize vector2 */
     87   VDUP(vector2, , int, s, 16, 4, 0x55);
     88   VDUP(vector2, , int, s, 32, 2, 0xBB);
     89 
     90   /* Choose lane arbitrarily */
     91   fprintf(ref_file, "\n%s cumulative saturation output:\n", TEST_MSG);
     92   TEST_VQDMULH_LANE(, int, s, 16, 4, 4, 2);
     93   TEST_VQDMULH_LANE(, int, s, 32, 2, 2, 1);
     94   TEST_VQDMULH_LANE(q, int, s, 16, 8, 4, 3);
     95   TEST_VQDMULH_LANE(q, int, s, 32, 4, 2, 0);
     96 
     97   /* FIXME: only a subset of the result buffers are used, but we
     98      output all of them */
     99   dump_results_hex (TEST_MSG);
    100 
    101 
    102   VDUP(vector, , int, s, 16, 4, 0x8000);
    103   VDUP(vector, , int, s, 32, 2, 0x80000000);
    104   VDUP(vector, q, int, s, 16, 8, 0x8000);
    105   VDUP(vector, q, int, s, 32, 4, 0x80000000);
    106   VDUP(vector2, , int, s, 16, 4, 0x8000);
    107   VDUP(vector2, , int, s, 32, 2, 0x80000000);
    108 
    109   fprintf(ref_file, "\n%s cumulative saturation output:\n",
    110 	  TEST_MSG " (check mul cumulative saturation)");
    111   TEST_VQDMULH_LANE(, int, s, 16, 4, 4, 3);
    112   TEST_VQDMULH_LANE(, int, s, 32, 2, 2, 1);
    113   TEST_VQDMULH_LANE(q, int, s, 16, 8, 4, 2);
    114   TEST_VQDMULH_LANE(q, int, s, 32, 4, 2, 1);
    115   dump_results_hex2 (TEST_MSG, " (check mul cumulative saturation)");
    116 }
    117