1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00
llvm-mirror/test/CodeGen/AArch64/v8.5a-neon-frint3264-intrinsic.ll
2021-03-05 11:26:12 +00:00

84 lines
2.7 KiB
LLVM

; RUN: llc < %s -mtriple=aarch64-eabi -mattr=+v8.5a | FileCheck %s
declare <2 x float> @llvm.aarch64.neon.frint32x.v2f32(<2 x float>)
declare <4 x float> @llvm.aarch64.neon.frint32x.v4f32(<4 x float>)
declare <2 x float> @llvm.aarch64.neon.frint32z.v2f32(<2 x float>)
declare <4 x float> @llvm.aarch64.neon.frint32z.v4f32(<4 x float>)
define dso_local <2 x float> @t_vrnd32x_f32(<2 x float> %a) {
; CHECK-LABEL: t_vrnd32x_f32:
; CHECK: frint32x v0.2s, v0.2s
; CHECK-NEXT: ret
entry:
%val = tail call <2 x float> @llvm.aarch64.neon.frint32x.v2f32(<2 x float> %a)
ret <2 x float> %val
}
define dso_local <4 x float> @t_vrnd32xq_f32(<4 x float> %a) {
; CHECK-LABEL: t_vrnd32xq_f32:
; CHECK: frint32x v0.4s, v0.4s
; CHECK-NEXT: ret
entry:
%val = tail call <4 x float> @llvm.aarch64.neon.frint32x.v4f32(<4 x float> %a)
ret <4 x float> %val
}
define dso_local <2 x float> @t_vrnd32z_f32(<2 x float> %a) {
; CHECK-LABEL: t_vrnd32z_f32:
; CHECK: frint32z v0.2s, v0.2s
; CHECK-NEXT: ret
entry:
%val = tail call <2 x float> @llvm.aarch64.neon.frint32z.v2f32(<2 x float> %a)
ret <2 x float> %val
}
define dso_local <4 x float> @t_vrnd32zq_f32(<4 x float> %a) {
; CHECK-LABEL: t_vrnd32zq_f32:
; CHECK: frint32z v0.4s, v0.4s
; CHECK-NEXT: ret
entry:
%val = tail call <4 x float> @llvm.aarch64.neon.frint32z.v4f32(<4 x float> %a)
ret <4 x float> %val
}
declare <2 x float> @llvm.aarch64.neon.frint64x.v2f32(<2 x float>)
declare <4 x float> @llvm.aarch64.neon.frint64x.v4f32(<4 x float>)
declare <2 x float> @llvm.aarch64.neon.frint64z.v2f32(<2 x float>)
declare <4 x float> @llvm.aarch64.neon.frint64z.v4f32(<4 x float>)
define dso_local <2 x float> @t_vrnd64x_f32(<2 x float> %a) {
; CHECK-LABEL: t_vrnd64x_f32:
; CHECK: frint64x v0.2s, v0.2s
; CHECK-NEXT: ret
entry:
%val = tail call <2 x float> @llvm.aarch64.neon.frint64x.v2f32(<2 x float> %a)
ret <2 x float> %val
}
define dso_local <4 x float> @t_vrnd64xq_f32(<4 x float> %a) {
; CHECK-LABEL: t_vrnd64xq_f32:
; CHECK: frint64x v0.4s, v0.4s
; CHECK-NEXT: ret
entry:
%val = tail call <4 x float> @llvm.aarch64.neon.frint64x.v4f32(<4 x float> %a)
ret <4 x float> %val
}
define dso_local <2 x float> @t_vrnd64z_f32(<2 x float> %a) {
; CHECK-LABEL: t_vrnd64z_f32:
; CHECK: frint64z v0.2s, v0.2s
; CHECK-NEXT: ret
entry:
%val = tail call <2 x float> @llvm.aarch64.neon.frint64z.v2f32(<2 x float> %a)
ret <2 x float> %val
}
define dso_local <4 x float> @t_vrnd64zq_f32(<4 x float> %a) {
; CHECK-LABEL: t_vrnd64zq_f32:
; CHECK: frint64z v0.4s, v0.4s
; CHECK-NEXT: ret
entry:
%val = tail call <4 x float> @llvm.aarch64.neon.frint64z.v4f32(<4 x float> %a)
ret <4 x float> %val
}