Home | History | Annotate | Download | only in arm-neon-tests
      1 /*
      2 
      3 Copyright (c) 2009, 2010, 2011, 2013 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 TEST_MSG "VST1_LANE/VST1_LANEQ"
     35 void exec_vst1_lane (void)
     36 {
     37 #define TEST_VST1_LANE(Q, T1, T2, W, N, L)				\
     38   VECT_VAR(vector, T1, W, N) =						\
     39     vld1##Q##_##T2##W(VECT_VAR(buffer, T1, W, N));			\
     40   vst1##Q##_lane_##T2##W(VECT_VAR(result, T1, W, N),			\
     41 			 VECT_VAR(vector, T1, W, N), L)
     42 
     43   /* With ARM RVCT, we need to declare variables before any executable
     44      statement */
     45   DECL_VARIABLE_ALL_VARIANTS(vector);
     46 #if defined(__ARM_FP16_FORMAT_IEEE) && ( ((__ARM_FP & 0x2) != 0) || ((__ARM_NEON_FP16_INTRINSICS & 1) != 0) )
     47   DECL_VARIABLE(vector, float, 16, 4);
     48   DECL_VARIABLE(vector, float, 16, 8);
     49 #endif
     50 
     51   clean_results ();
     52 
     53   /* Choose lane arbitrarily  */
     54   TEST_VST1_LANE(, int, s, 8, 8, 7);
     55   TEST_VST1_LANE(, int, s, 16, 4, 3);
     56   TEST_VST1_LANE(, int, s, 32, 2, 1);
     57   TEST_VST1_LANE(, int, s, 64, 1, 0);
     58   TEST_VST1_LANE(, uint, u, 8, 8, 6);
     59   TEST_VST1_LANE(, uint, u, 16, 4, 2);
     60   TEST_VST1_LANE(, uint, u, 32, 2, 0);
     61   TEST_VST1_LANE(, uint, u, 64, 1, 0);
     62   TEST_VST1_LANE(, poly, p, 8, 8, 6);
     63   TEST_VST1_LANE(, poly, p, 16, 4, 2);
     64   TEST_VST1_LANE(, float, f, 32, 2, 1);
     65 #if defined(__ARM_FP16_FORMAT_IEEE) && ( ((__ARM_FP & 0x2) != 0) || ((__ARM_NEON_FP16_INTRINSICS & 1) != 0) )
     66   TEST_VST1_LANE(, float, f, 16, 4, 2);
     67 #endif
     68 
     69   TEST_VST1_LANE(q, int, s, 8, 16, 15);
     70   TEST_VST1_LANE(q, int, s, 16, 8, 5);
     71   TEST_VST1_LANE(q, int, s, 32, 4, 1);
     72   TEST_VST1_LANE(q, int, s, 64, 2, 1);
     73   TEST_VST1_LANE(q, uint, u, 8, 16, 10);
     74   TEST_VST1_LANE(q, uint, u, 16, 8, 4);
     75   TEST_VST1_LANE(q, uint, u, 32, 4, 3);
     76   TEST_VST1_LANE(q, uint, u, 64, 2, 0);
     77   TEST_VST1_LANE(q, poly, p, 8, 16, 10);
     78   TEST_VST1_LANE(q, poly, p, 16, 8, 4);
     79   TEST_VST1_LANE(q, float, f, 32, 4, 1);
     80 #if defined(__ARM_FP16_FORMAT_IEEE) && ( ((__ARM_FP & 0x2) != 0) || ((__ARM_NEON_FP16_INTRINSICS & 1) != 0) )
     81   TEST_VST1_LANE(q, float, f, 16, 8, 5);
     82 #endif
     83 
     84   dump_results_hex (TEST_MSG);
     85 }
     86