C++程序  |  399行  |  18.13 KB

/*

Copyright (c) 2009, 2010, 2011, 2013 STMicroelectronics
Written by Christophe Lyon

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

*/

#if defined(__arm__) || defined(__aarch64__)
#include <arm_neon.h>
#else
#include "stm-arm-neon.h"
#endif

#include "stm-arm-neon-ref.h"

#define TEST_MSG "VREINTERPRET/VREINTERPRETQ"

void exec_vreinterpret (void)
{
  int i;

  /* Basic test: y=vreinterpret(x), then store the result.  */
#define TEST_VREINTERPRET(Q, T1, T2, W, N, TS1, TS2, WS, NS)		\
  VECT_VAR(vector_res, T1, W, N) =					\
    vreinterpret##Q##_##T2##W##_##TS2##WS(VECT_VAR(vector, TS1, WS, NS)); \
  vst1##Q##_##T2##W(VECT_VAR(result, T1, W, N),				\
		    VECT_VAR(vector_res, T1, W, N));			\
  DUMP(TEST_MSG, T1, W, N, PRIx##W);

#define TEST_VREINTERPRET_POLY(Q, T1, T2, W, N, TS1, TS2, WS, NS)	\
  VECT_VAR(vector_res, T1, W, N) =					\
    vreinterpret##Q##_##T2##W##_##TS2##WS(VECT_VAR(vector, TS1, WS, NS)); \
  vst1##Q##_##T2##W(VECT_VAR(result, T1, W, N),				\
		    VECT_VAR(vector_res, T1, W, N));			\
  DUMP_POLY(TEST_MSG, T1, W, N, PRIx##W);

#define TEST_VREINTERPRET_FP(Q, T1, T2, W, N, TS1, TS2, WS, NS)		\
  VECT_VAR(vector_res, T1, W, N) =					\
    vreinterpret##Q##_##T2##W##_##TS2##WS(VECT_VAR(vector, TS1, WS, NS)); \
  vst1##Q##_##T2##W(VECT_VAR(result, T1, W, N),				\
		    VECT_VAR(vector_res, T1, W, N));			\
  DUMP_FP(TEST_MSG, T1, W, N, PRIx##W);

#if defined(__ARM_FP16_FORMAT_IEEE) && ( ((__ARM_FP & 0x2) != 0) || ((__ARM_NEON_FP16_INTRINSICS & 1) != 0) )
#define TEST_VREINTERPRET_FP16(Q, T1, T2, W, N, TS1, TS2, WS, NS)	\
  VECT_VAR(vector_res, T1, W, N) =					\
    vreinterpret##Q##_##T2##W##_##TS2##WS(VECT_VAR(vector, TS1, WS, NS)); \
  vst1##Q##_##T2##W(VECT_VAR(result, T1, W, N),				\
		    VECT_VAR(vector_res, T1, W, N));			\
  DUMP_FP16(TEST_MSG, T1, W, N, PRIx##W);
#endif

  /* With ARM RVCT, we need to declare variables before any executable
     statement */
  DECL_VARIABLE_ALL_VARIANTS(vector);
  DECL_VARIABLE_ALL_VARIANTS(vector_res);
#if defined(__ARM_FP16_FORMAT_IEEE) && ( ((__ARM_FP & 0x2) != 0) || ((__ARM_NEON_FP16_INTRINSICS & 1) != 0) )
  DECL_VARIABLE(vector, float, 16, 4);
  DECL_VARIABLE(vector_res, float, 16, 4);
  DECL_VARIABLE(vector, float, 16, 8);
  DECL_VARIABLE(vector_res, float, 16, 8);
#endif

  clean_results ();


  /* Initialize input "vector" from "buffer"  */
  TEST_MACRO_ALL_VARIANTS_2_5(VLOAD, vector, buffer);
  VLOAD(vector, buffer, , float, f, 32, 2);
  VLOAD(vector, buffer, q, float, f, 32, 4);
#if defined(__ARM_FP16_FORMAT_IEEE) && ( ((__ARM_FP & 0x2) != 0) || ((__ARM_NEON_FP16_INTRINSICS & 1) != 0) )
  VLOAD(vector, buffer, , float, f, 16, 4);
  VLOAD(vector, buffer, q, float, f, 16, 8);
#endif

  /* The same result buffers are used multiple times, so output them
     before overwriting them  */
  fprintf(ref_file, "\n%s output:\n", TEST_MSG);
  fprintf(gcc_tests_file, "\n%s output:\n", TEST_MSG);

  /* vreinterpret_s8_xx */
  TEST_VREINTERPRET(, int, s, 8, 8, int, s, 16, 4);
  TEST_VREINTERPRET(, int, s, 8, 8, int, s, 32, 2);
  TEST_VREINTERPRET(, int, s, 8, 8, int, s, 64, 1);
  TEST_VREINTERPRET(, int, s, 8, 8, uint, u, 8, 8);
  TEST_VREINTERPRET(, int, s, 8, 8, uint, u, 16, 4);
  TEST_VREINTERPRET(, int, s, 8, 8, uint, u, 32, 2);
  TEST_VREINTERPRET(, int, s, 8, 8, uint, u, 64, 1);
  TEST_VREINTERPRET(, int, s, 8, 8, poly, p, 8, 8);
  TEST_VREINTERPRET(, int, s, 8, 8, poly, p, 16, 4);

  /* vreinterpret_s16_xx */
  TEST_VREINTERPRET(, int, s, 16, 4, int, s, 8, 8);
  TEST_VREINTERPRET(, int, s, 16, 4, int, s, 32, 2);
  TEST_VREINTERPRET(, int, s, 16, 4, int, s, 64, 1);
  TEST_VREINTERPRET(, int, s, 16, 4, uint, u, 8, 8);
  TEST_VREINTERPRET(, int, s, 16, 4, uint, u, 16, 4);
  TEST_VREINTERPRET(, int, s, 16, 4, uint, u, 32, 2);
  TEST_VREINTERPRET(, int, s, 16, 4, uint, u, 64, 1);
  TEST_VREINTERPRET(, int, s, 16, 4, poly, p, 8, 8);
  TEST_VREINTERPRET(, int, s, 16, 4, poly, p, 16, 4);

  /* vreinterpret_s32_xx */
  TEST_VREINTERPRET(, int, s, 32, 2, int, s, 8, 8);
  TEST_VREINTERPRET(, int, s, 32, 2, int, s, 16, 4);
  TEST_VREINTERPRET(, int, s, 32, 2, int, s, 64, 1);
  TEST_VREINTERPRET(, int, s, 32, 2, uint, u, 8, 8);
  TEST_VREINTERPRET(, int, s, 32, 2, uint, u, 16, 4);
  TEST_VREINTERPRET(, int, s, 32, 2, uint, u, 32, 2);
  TEST_VREINTERPRET(, int, s, 32, 2, uint, u, 64, 1);
  TEST_VREINTERPRET(, int, s, 32, 2, poly, p, 8, 8);
  TEST_VREINTERPRET(, int, s, 32, 2, poly, p, 16, 4);

  /* vreinterpret_s64_xx */
  TEST_VREINTERPRET(, int, s, 64, 1, int, s, 8, 8);
  TEST_VREINTERPRET(, int, s, 64, 1, int, s, 16, 4);
  TEST_VREINTERPRET(, int, s, 64, 1, int, s, 32, 2);
  TEST_VREINTERPRET(, int, s, 64, 1, uint, u, 8, 8);
  TEST_VREINTERPRET(, int, s, 64, 1, uint, u, 16, 4);
  TEST_VREINTERPRET(, int, s, 64, 1, uint, u, 32, 2);
  TEST_VREINTERPRET(, int, s, 64, 1, uint, u, 64, 1);
  TEST_VREINTERPRET(, int, s, 64, 1, poly, p, 8, 8);
  TEST_VREINTERPRET(, int, s, 64, 1, poly, p, 16, 4);

  /* vreinterpret_u8_xx */
  TEST_VREINTERPRET(, uint, u, 8, 8, int, s, 8, 8);
  TEST_VREINTERPRET(, uint, u, 8, 8, int, s, 16, 4);
  TEST_VREINTERPRET(, uint, u, 8, 8, int, s, 32, 2);
  TEST_VREINTERPRET(, uint, u, 8, 8, int, s, 64, 1);
  TEST_VREINTERPRET(, uint, u, 8, 8, uint, u, 16, 4);
  TEST_VREINTERPRET(, uint, u, 8, 8, uint, u, 32, 2);
  TEST_VREINTERPRET(, uint, u, 8, 8, uint, u, 64, 1);
  TEST_VREINTERPRET(, uint, u, 8, 8, poly, p, 8, 8);
  TEST_VREINTERPRET(, uint, u, 8, 8, poly, p, 16, 4);

  /* vreinterpret_u16_xx */
  TEST_VREINTERPRET(, uint, u, 16, 4, int, s, 8, 8);
  TEST_VREINTERPRET(, uint, u, 16, 4, int, s, 16, 4);
  TEST_VREINTERPRET(, uint, u, 16, 4, int, s, 32, 2);
  TEST_VREINTERPRET(, uint, u, 16, 4, int, s, 64, 1);
  TEST_VREINTERPRET(, uint, u, 16, 4, uint, u, 8, 8);
  TEST_VREINTERPRET(, uint, u, 16, 4, uint, u, 32, 2);
  TEST_VREINTERPRET(, uint, u, 16, 4, uint, u, 64, 1);
  TEST_VREINTERPRET(, uint, u, 16, 4, poly, p, 8, 8);
  TEST_VREINTERPRET(, uint, u, 16, 4, poly, p, 16, 4);

  /* vreinterpret_u32_xx */
  TEST_VREINTERPRET(, uint, u, 32, 2, int, s, 8, 8);
  TEST_VREINTERPRET(, uint, u, 32, 2, int, s, 16, 4);
  TEST_VREINTERPRET(, uint, u, 32, 2, int, s, 32, 2);
  TEST_VREINTERPRET(, uint, u, 32, 2, int, s, 64, 1);
  TEST_VREINTERPRET(, uint, u, 32, 2, uint, u, 8, 8);
  TEST_VREINTERPRET(, uint, u, 32, 2, uint, u, 16, 4);
  TEST_VREINTERPRET(, uint, u, 32, 2, uint, u, 64, 1);
  TEST_VREINTERPRET(, uint, u, 32, 2, poly, p, 8, 8);
  TEST_VREINTERPRET(, uint, u, 32, 2, poly, p, 16, 4);

  /* vreinterpret_u64_xx */
  TEST_VREINTERPRET(, uint, u, 64, 1, int, s, 8, 8);
  TEST_VREINTERPRET(, uint, u, 64, 1, int, s, 16, 4);
  TEST_VREINTERPRET(, uint, u, 64, 1, int, s, 32, 2);
  TEST_VREINTERPRET(, uint, u, 64, 1, int, s, 64, 1);
  TEST_VREINTERPRET(, uint, u, 64, 1, uint, u, 8, 8);
  TEST_VREINTERPRET(, uint, u, 64, 1, uint, u, 16, 4);
  TEST_VREINTERPRET(, uint, u, 64, 1, uint, u, 32, 2);
  TEST_VREINTERPRET(, uint, u, 64, 1, poly, p, 8, 8);
  TEST_VREINTERPRET(, uint, u, 64, 1, poly, p, 16, 4);

  /* vreinterpret_p8_xx */
  TEST_VREINTERPRET_POLY(, poly, p, 8, 8, int, s, 8, 8);
  TEST_VREINTERPRET_POLY(, poly, p, 8, 8, int, s, 16, 4);
  TEST_VREINTERPRET_POLY(, poly, p, 8, 8, int, s, 32, 2);
  TEST_VREINTERPRET_POLY(, poly, p, 8, 8, int, s, 64, 1);
  TEST_VREINTERPRET_POLY(, poly, p, 8, 8, uint, u, 8, 8);
  TEST_VREINTERPRET_POLY(, poly, p, 8, 8, uint, u, 16, 4);
  TEST_VREINTERPRET_POLY(, poly, p, 8, 8, uint, u, 32, 2);
  TEST_VREINTERPRET_POLY(, poly, p, 8, 8, uint, u, 64, 1);
  TEST_VREINTERPRET_POLY(, poly, p, 8, 8, poly, p, 16, 4);

  /* vreinterpret_p16_xx */
  TEST_VREINTERPRET_POLY(, poly, p, 16, 4, int, s, 8, 8);
  TEST_VREINTERPRET_POLY(, poly, p, 16, 4, int, s, 16, 4);
  TEST_VREINTERPRET_POLY(, poly, p, 16, 4, int, s, 32, 2);
  TEST_VREINTERPRET_POLY(, poly, p, 16, 4, int, s, 64, 1);
  TEST_VREINTERPRET_POLY(, poly, p, 16, 4, uint, u, 8, 8);
  TEST_VREINTERPRET_POLY(, poly, p, 16, 4, uint, u, 16, 4);
  TEST_VREINTERPRET_POLY(, poly, p, 16, 4, uint, u, 32, 2);
  TEST_VREINTERPRET_POLY(, poly, p, 16, 4, uint, u, 64, 1);
  TEST_VREINTERPRET_POLY(, poly, p, 16, 4, poly, p, 8, 8);

  /* vreinterpretq_s8_xx */
  TEST_VREINTERPRET(q, int, s, 8, 16, int, s, 16, 8);
  TEST_VREINTERPRET(q, int, s, 8, 16, int, s, 32, 4);
  TEST_VREINTERPRET(q, int, s, 8, 16, int, s, 64, 2);
  TEST_VREINTERPRET(q, int, s, 8, 16, uint, u, 8, 16);
  TEST_VREINTERPRET(q, int, s, 8, 16, uint, u, 16, 8);
  TEST_VREINTERPRET(q, int, s, 8, 16, uint, u, 32, 4);
  TEST_VREINTERPRET(q, int, s, 8, 16, uint, u, 64, 2);
  TEST_VREINTERPRET(q, int, s, 8, 16, poly, p, 8, 16);
  TEST_VREINTERPRET(q, int, s, 8, 16, poly, p, 16, 8);

  /* vreinterpretq_s16_xx */
  TEST_VREINTERPRET(q, int, s, 16, 8, int, s, 8, 16);
  TEST_VREINTERPRET(q, int, s, 16, 8, int, s, 32, 4);
  TEST_VREINTERPRET(q, int, s, 16, 8, int, s, 64, 2);
  TEST_VREINTERPRET(q, int, s, 16, 8, uint, u, 8, 16);
  TEST_VREINTERPRET(q, int, s, 16, 8, uint, u, 16, 8);
  TEST_VREINTERPRET(q, int, s, 16, 8, uint, u, 32, 4);
  TEST_VREINTERPRET(q, int, s, 16, 8, uint, u, 64, 2);
  TEST_VREINTERPRET(q, int, s, 16, 8, poly, p, 8, 16);
  TEST_VREINTERPRET(q, int, s, 16, 8, poly, p, 16, 8);

  /* vreinterpretq_s32_xx */
  TEST_VREINTERPRET(q, int, s, 32, 4, int, s, 8, 16);
  TEST_VREINTERPRET(q, int, s, 32, 4, int, s, 16, 8);
  TEST_VREINTERPRET(q, int, s, 32, 4, int, s, 64, 2);
  TEST_VREINTERPRET(q, int, s, 32, 4, uint, u, 8, 16);
  TEST_VREINTERPRET(q, int, s, 32, 4, uint, u, 16, 8);
  TEST_VREINTERPRET(q, int, s, 32, 4, uint, u, 32, 4);
  TEST_VREINTERPRET(q, int, s, 32, 4, uint, u, 64, 2);
  TEST_VREINTERPRET(q, int, s, 32, 4, poly, p, 8, 16);
  TEST_VREINTERPRET(q, int, s, 32, 4, poly, p, 16, 8);

  /* vreinterpretq_s64_xx */
  TEST_VREINTERPRET(q, int, s, 64, 2, int, s, 8, 16);
  TEST_VREINTERPRET(q, int, s, 64, 2, int, s, 16, 8);
  TEST_VREINTERPRET(q, int, s, 64, 2, int, s, 32, 4);
  TEST_VREINTERPRET(q, int, s, 64, 2, uint, u, 8, 16);
  TEST_VREINTERPRET(q, int, s, 64, 2, uint, u, 16, 8);
  TEST_VREINTERPRET(q, int, s, 64, 2, uint, u, 32, 4);
  TEST_VREINTERPRET(q, int, s, 64, 2, uint, u, 64, 2);
  TEST_VREINTERPRET(q, int, s, 64, 2, poly, p, 8, 16);
  TEST_VREINTERPRET(q, int, s, 64, 2, poly, p, 16, 8);

  /* vreinterpretq_u16_xx */
  TEST_VREINTERPRET(q, uint, u, 16, 8, int, s, 8, 16);
  TEST_VREINTERPRET(q, uint, u, 16, 8, int, s, 16, 8);
  TEST_VREINTERPRET(q, uint, u, 16, 8, int, s, 32, 4);
  TEST_VREINTERPRET(q, uint, u, 16, 8, int, s, 64, 2);
  TEST_VREINTERPRET(q, uint, u, 16, 8, uint, u, 8, 16);
  TEST_VREINTERPRET(q, uint, u, 16, 8, uint, u, 32, 4);
  TEST_VREINTERPRET(q, uint, u, 16, 8, uint, u, 64, 2);
  TEST_VREINTERPRET(q, uint, u, 16, 8, poly, p, 8, 16);
  TEST_VREINTERPRET(q, uint, u, 16, 8, poly, p, 16, 8);

  /* vreinterpretq_u32_xx */
  TEST_VREINTERPRET(q, uint, u, 32, 4, int, s, 8, 16);
  TEST_VREINTERPRET(q, uint, u, 32, 4, int, s, 16, 8);
  TEST_VREINTERPRET(q, uint, u, 32, 4, int, s, 32, 4);
  TEST_VREINTERPRET(q, uint, u, 32, 4, int, s, 64, 2);
  TEST_VREINTERPRET(q, uint, u, 32, 4, uint, u, 8, 16);
  TEST_VREINTERPRET(q, uint, u, 32, 4, uint, u, 16, 8);
  TEST_VREINTERPRET(q, uint, u, 32, 4, uint, u, 64, 2);
  TEST_VREINTERPRET(q, uint, u, 32, 4, poly, p, 8, 16);
  TEST_VREINTERPRET(q, uint, u, 32, 4, poly, p, 16, 8);

  /* vreinterpretq_u64_xx */
  TEST_VREINTERPRET(q, uint, u, 64, 2, int, s, 8, 16);
  TEST_VREINTERPRET(q, uint, u, 64, 2, int, s, 16, 8);
  TEST_VREINTERPRET(q, uint, u, 64, 2, int, s, 32, 4);
  TEST_VREINTERPRET(q, uint, u, 64, 2, int, s, 64, 2);
  TEST_VREINTERPRET(q, uint, u, 64, 2, uint, u, 8, 16);
  TEST_VREINTERPRET(q, uint, u, 64, 2, uint, u, 16, 8);
  TEST_VREINTERPRET(q, uint, u, 64, 2, uint, u, 32, 4);
  TEST_VREINTERPRET(q, uint, u, 64, 2, poly, p, 8, 16);
  TEST_VREINTERPRET(q, uint, u, 64, 2, poly, p, 16, 8);

  /* vreinterpretq_u8_xx */
  TEST_VREINTERPRET(q, uint, u, 8, 16, int, s, 8, 16);
  TEST_VREINTERPRET(q, uint, u, 8, 16, int, s, 16, 8);
  TEST_VREINTERPRET(q, uint, u, 8, 16, int, s, 32, 4);
  TEST_VREINTERPRET(q, uint, u, 8, 16, int, s, 64, 2);
  TEST_VREINTERPRET(q, uint, u, 8, 16, uint, u, 16, 8);
  TEST_VREINTERPRET(q, uint, u, 8, 16, uint, u, 32, 4);
  TEST_VREINTERPRET(q, uint, u, 8, 16, uint, u, 64, 2);
  TEST_VREINTERPRET(q, uint, u, 8, 16, poly, p, 8, 16);
  TEST_VREINTERPRET(q, uint, u, 8, 16, poly, p, 16, 8);

  /* vreinterpret_f32_xx */
  TEST_VREINTERPRET_FP(, float, f, 32, 2, int, s, 8, 8);
  TEST_VREINTERPRET_FP(, float, f, 32, 2, int, s, 16, 4);
  TEST_VREINTERPRET_FP(, float, f, 32, 2, int, s, 32, 2);
  TEST_VREINTERPRET_FP(, float, f, 32, 2, int, s, 64, 1);
  TEST_VREINTERPRET_FP(, float, f, 32, 2, uint, u, 8, 8);
  TEST_VREINTERPRET_FP(, float, f, 32, 2, uint, u, 16, 4);
  TEST_VREINTERPRET_FP(, float, f, 32, 2, uint, u, 32, 2);
  TEST_VREINTERPRET_FP(, float, f, 32, 2, uint, u, 64, 1);
  TEST_VREINTERPRET_FP(, float, f, 32, 2, poly, p, 8, 8);
  TEST_VREINTERPRET_FP(, float, f, 32, 2, poly, p, 16, 4);

  /* vreinterpretq_f32_xx */
  TEST_VREINTERPRET_FP(q, float, f, 32, 4, int, s, 8, 16);
  TEST_VREINTERPRET_FP(q, float, f, 32, 4, int, s, 16, 8);
  TEST_VREINTERPRET_FP(q, float, f, 32, 4, int, s, 32, 4);
  TEST_VREINTERPRET_FP(q, float, f, 32, 4, int, s, 64, 2);
  TEST_VREINTERPRET_FP(q, float, f, 32, 4, uint, u, 8, 16);
  TEST_VREINTERPRET_FP(q, float, f, 32, 4, uint, u, 16, 8);
  TEST_VREINTERPRET_FP(q, float, f, 32, 4, uint, u, 32, 4);
  TEST_VREINTERPRET_FP(q, float, f, 32, 4, uint, u, 64, 2);
  TEST_VREINTERPRET_FP(q, float, f, 32, 4, poly, p, 8, 16);
  TEST_VREINTERPRET_FP(q, float, f, 32, 4, poly, p, 16, 8);

  /* vreinterpret_xx_f32 */
  TEST_VREINTERPRET(, int, s, 8, 8, float, f, 32, 2);
  TEST_VREINTERPRET(, int, s, 16, 4, float, f, 32, 2);
  TEST_VREINTERPRET(, int, s, 32, 2, float, f, 32, 2);
  TEST_VREINTERPRET(, int, s, 64, 1, float, f, 32, 2);
  TEST_VREINTERPRET(, uint, u, 8, 8, float, f, 32, 2);
  TEST_VREINTERPRET(, uint, u, 16, 4, float, f, 32, 2);
  TEST_VREINTERPRET(, uint, u, 32, 2, float, f, 32, 2);
  TEST_VREINTERPRET(, uint, u, 64, 1, float, f, 32, 2);
  TEST_VREINTERPRET_POLY(, poly, p, 8, 8, float, f, 32, 2);
  TEST_VREINTERPRET_POLY(, poly, p, 16, 4, float, f, 32, 2);

  /* vreinterpretq_xx_f32 */
  TEST_VREINTERPRET(q, int, s, 8, 16, float, f, 32, 4);
  TEST_VREINTERPRET(q, int, s, 16, 8, float, f, 32, 4);
  TEST_VREINTERPRET(q, int, s, 32, 4, float, f, 32, 4);
  TEST_VREINTERPRET(q, int, s, 64, 2, float, f, 32, 4);
  TEST_VREINTERPRET(q, uint, u, 8, 16, float, f, 32, 4);
  TEST_VREINTERPRET(q, uint, u, 16, 8, float, f, 32, 4);
  TEST_VREINTERPRET(q, uint, u, 32, 4, float, f, 32, 4);
  TEST_VREINTERPRET(q, uint, u, 64, 2, float, f, 32, 4);
  TEST_VREINTERPRET_POLY(q, poly, p, 8, 16, float, f, 32, 4);
  TEST_VREINTERPRET_POLY(q, poly, p, 16, 8, float, f, 32, 4);

#if defined(__ARM_FP16_FORMAT_IEEE) && ( ((__ARM_FP & 0x2) != 0) || ((__ARM_NEON_FP16_INTRINSICS & 1) != 0) )
  /* vreinterpret_f16_xx */
  TEST_VREINTERPRET_FP16(, float, f, 16, 4, int, s, 8, 8);
  TEST_VREINTERPRET_FP16(, float, f, 16, 4, int, s, 16, 4);
  TEST_VREINTERPRET_FP16(, float, f, 16, 4, int, s, 32, 2);
  TEST_VREINTERPRET_FP16(, float, f, 16, 4, int, s, 64, 1);
  TEST_VREINTERPRET_FP16(, float, f, 16, 4, uint, u, 8, 8);
  TEST_VREINTERPRET_FP16(, float, f, 16, 4, uint, u, 16, 4);
  TEST_VREINTERPRET_FP16(, float, f, 16, 4, uint, u, 32, 2);
  TEST_VREINTERPRET_FP16(, float, f, 16, 4, uint, u, 64, 1);
  TEST_VREINTERPRET_FP16(, float, f, 16, 4, poly, p, 8, 8);
  TEST_VREINTERPRET_FP16(, float, f, 16, 4, poly, p, 16, 4);
  TEST_VREINTERPRET_FP16(, float, f, 16, 4, float, f, 32, 2);

  /* vreinterpretq_f16_xx */
  TEST_VREINTERPRET_FP16(q, float, f, 16, 8, int, s, 8, 16);
  TEST_VREINTERPRET_FP16(q, float, f, 16, 8, int, s, 16, 8);
  TEST_VREINTERPRET_FP16(q, float, f, 16, 8, int, s, 32, 4);
  TEST_VREINTERPRET_FP16(q, float, f, 16, 8, int, s, 64, 2);
  TEST_VREINTERPRET_FP16(q, float, f, 16, 8, uint, u, 8, 16);
  TEST_VREINTERPRET_FP16(q, float, f, 16, 8, uint, u, 16, 8);
  TEST_VREINTERPRET_FP16(q, float, f, 16, 8, uint, u, 32, 4);
  TEST_VREINTERPRET_FP16(q, float, f, 16, 8, uint, u, 64, 2);
  TEST_VREINTERPRET_FP16(q, float, f, 16, 8, poly, p, 8, 16);
  TEST_VREINTERPRET_FP16(q, float, f, 16, 8, poly, p, 16, 8);
  TEST_VREINTERPRET_FP16(q, float, f, 16, 8, float, f, 32, 4);

  /* vreinterpret_xx_f16 */
  TEST_VREINTERPRET(, int, s, 8, 8, float, f, 16, 4);
  TEST_VREINTERPRET(, int, s, 16, 4, float, f, 16, 4);
  TEST_VREINTERPRET(, int, s, 32, 2, float, f, 16, 4);
  TEST_VREINTERPRET(, int, s, 64, 1, float, f, 16, 4);
  TEST_VREINTERPRET(, uint, u, 8, 8, float, f, 16, 4);
  TEST_VREINTERPRET(, uint, u, 16, 4, float, f, 16, 4);
  TEST_VREINTERPRET(, uint, u, 32, 2, float, f, 16, 4);
  TEST_VREINTERPRET(, uint, u, 64, 1, float, f, 16, 4);
  TEST_VREINTERPRET_POLY(, poly, p, 8, 8, float, f, 16, 4);
  TEST_VREINTERPRET_POLY(, poly, p, 16, 4, float, f, 16, 4);
  TEST_VREINTERPRET_FP(, float, f, 32, 2, float, f, 16, 4);

  /* vreinterpretq_xx_f16 */
  TEST_VREINTERPRET(q, int, s, 8, 16, float, f, 16, 8);
  TEST_VREINTERPRET(q, int, s, 16, 8, float, f, 16, 8);
  TEST_VREINTERPRET(q, int, s, 32, 4, float, f, 16, 8);
  TEST_VREINTERPRET(q, int, s, 64, 2, float, f, 16, 8);
  TEST_VREINTERPRET(q, uint, u, 8, 16, float, f, 16, 8);
  TEST_VREINTERPRET(q, uint, u, 16, 8, float, f, 16, 8);
  TEST_VREINTERPRET(q, uint, u, 32, 4, float, f, 16, 8);
  TEST_VREINTERPRET(q, uint, u, 64, 2, float, f, 16, 8);
  TEST_VREINTERPRET_POLY(q, poly, p, 8, 16, float, f, 16, 8);
  TEST_VREINTERPRET_POLY(q, poly, p, 16, 8, float, f, 16, 8);
  TEST_VREINTERPRET_FP(q, float, f, 32, 4, float, f, 16, 8);
#endif
}