view gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/bfcvt-compile.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
line wrap: on
line source

/* { dg-do assemble { target { aarch64*-*-* } } } */
/* { dg-require-effective-target arm_v8_2a_bf16_neon_ok } */
/* { dg-add-options arm_v8_2a_bf16_neon } */
/* { dg-additional-options "-save-temps" } */
/* { dg-final { check-function-bodies "**" "" {-O[^0]} } } */
/* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */

#include <arm_neon.h>

/*
**test_bfcvtn:
**     bfcvtn	v0.4h, v0.4s
**     ret
*/
bfloat16x4_t test_bfcvtn (float32x4_t a)
{
  return vcvt_bf16_f32 (a);
}

/*
**test_bfcvtnq:
**     bfcvtn	v0.4h, v0.4s
**     ret
*/
bfloat16x8_t test_bfcvtnq (float32x4_t a)
{
  return vcvtq_low_bf16_f32 (a);
}

/*
**test_bfcvtnq2:
**     bfcvtn2	v0.8h, v1.4s
**     ret
*/
bfloat16x8_t test_bfcvtnq2 (bfloat16x8_t inactive, float32x4_t a)
{
  return vcvtq_high_bf16_f32 (inactive, a);
}

/*
**test_bfcvt:
**     bfcvt	h0, s0
**     ret
*/
bfloat16_t test_bfcvt (float32_t a)
{
  return vcvth_bf16_f32 (a);
}