[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / AArch64 / bf16-convert-intrinsics.ll
blob9d4e79d38d5d1a3be0249a4e3cdc2025c5ab13d8
1 ; RUN: llc < %s -verify-machineinstrs -mtriple=aarch64 -mattr=+neon -mattr=+bf16 | FileCheck %s
3 declare bfloat @llvm.aarch64.neon.bfcvt(float)
4 declare <8 x bfloat> @llvm.aarch64.neon.bfcvtn(<4 x float>)
5 declare <8 x bfloat> @llvm.aarch64.neon.bfcvtn2(<8 x bfloat>, <4 x float>)
7 ; CHECK-LABEL: test_vcvth_bf16_f32
8 ; CHECK:      bfcvt h0, s0
9 ; CHECK-NEXT: ret
10 define bfloat @test_vcvth_bf16_f32(float %a) {
11 entry:
12   %vcvth_bf16_f32 = call bfloat @llvm.aarch64.neon.bfcvt(float %a)
13   ret bfloat %vcvth_bf16_f32
16 ; CHECK-LABEL: test_vcvtq_low_bf16_f32
17 ; CHECK:      bfcvtn v0.4h, v0.4s
18 ; CHECK-NEXT: ret
19 define <8 x bfloat> @test_vcvtq_low_bf16_f32(<4 x float> %a) {
20 entry:
21   %cvt = call <8 x bfloat> @llvm.aarch64.neon.bfcvtn(<4 x float> %a)
22   ret <8 x bfloat> %cvt
25 ; CHECK-LABEL: test_vcvtq_high_bf16_f32
26 ; CHECK:      bfcvtn2 v1.8h, v0.4s
27 ; CHECK-NEXT: mov v0.16b, v1.16b
28 ; CHECK-NEXT: ret
29 define <8 x bfloat> @test_vcvtq_high_bf16_f32(<4 x float> %a, <8 x bfloat> %inactive) {
30 entry:
31   %cvt = call <8 x bfloat> @llvm.aarch64.neon.bfcvtn2(<8 x bfloat> %inactive, <4 x float> %a)
32   ret <8 x bfloat> %cvt