1706 lines
54 KiB
LLVM
1706 lines
54 KiB
LLVM
; RUN: llc -mtriple=riscv32 -mattr=+experimental-v,+f,+experimental-zfh -verify-machineinstrs \
|
|
; RUN: --riscv-no-aliases < %s | FileCheck %s
|
|
declare <vscale x 1 x i8> @llvm.riscv.vslideup.nxv1i8(
|
|
<vscale x 1 x i8>,
|
|
<vscale x 1 x i8>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 1 x i8> @intrinsic_vslideup_vx_nxv1i8_nxv1i8(<vscale x 1 x i8> %0, <vscale x 1 x i8> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv1i8_nxv1i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,mf8,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 1 x i8> @llvm.riscv.vslideup.nxv1i8(
|
|
<vscale x 1 x i8> %0,
|
|
<vscale x 1 x i8> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 1 x i8> %a
|
|
}
|
|
|
|
declare <vscale x 1 x i8> @llvm.riscv.vslideup.mask.nxv1i8(
|
|
<vscale x 1 x i8>,
|
|
<vscale x 1 x i8>,
|
|
i32,
|
|
<vscale x 1 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 1 x i8> @intrinsic_vslideup_mask_vx_nxv1i8_nxv1i8(<vscale x 1 x i8> %0, <vscale x 1 x i8> %1, i32 %2, <vscale x 1 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv1i8_nxv1i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,mf8,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 1 x i8> @llvm.riscv.vslideup.mask.nxv1i8(
|
|
<vscale x 1 x i8> %0,
|
|
<vscale x 1 x i8> %1,
|
|
i32 %2,
|
|
<vscale x 1 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 1 x i8> %a
|
|
}
|
|
|
|
define <vscale x 1 x i8> @intrinsic_vslideup_vi_nxv1i8_nxv1i8(<vscale x 1 x i8> %0, <vscale x 1 x i8> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv1i8_nxv1i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,mf8,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 1 x i8> @llvm.riscv.vslideup.nxv1i8(
|
|
<vscale x 1 x i8> %0,
|
|
<vscale x 1 x i8> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 1 x i8> %a
|
|
}
|
|
|
|
define <vscale x 1 x i8> @intrinsic_vslideup_mask_vi_nxv1i8_nxv1i8(<vscale x 1 x i8> %0, <vscale x 1 x i8> %1, <vscale x 1 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv1i8_nxv1i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,mf8,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 1 x i8> @llvm.riscv.vslideup.mask.nxv1i8(
|
|
<vscale x 1 x i8> %0,
|
|
<vscale x 1 x i8> %1,
|
|
i32 9,
|
|
<vscale x 1 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 1 x i8> %a
|
|
}
|
|
|
|
declare <vscale x 2 x i8> @llvm.riscv.vslideup.nxv2i8(
|
|
<vscale x 2 x i8>,
|
|
<vscale x 2 x i8>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 2 x i8> @intrinsic_vslideup_vx_nxv2i8_nxv2i8(<vscale x 2 x i8> %0, <vscale x 2 x i8> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv2i8_nxv2i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,mf4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 2 x i8> @llvm.riscv.vslideup.nxv2i8(
|
|
<vscale x 2 x i8> %0,
|
|
<vscale x 2 x i8> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 2 x i8> %a
|
|
}
|
|
|
|
declare <vscale x 2 x i8> @llvm.riscv.vslideup.mask.nxv2i8(
|
|
<vscale x 2 x i8>,
|
|
<vscale x 2 x i8>,
|
|
i32,
|
|
<vscale x 2 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 2 x i8> @intrinsic_vslideup_mask_vx_nxv2i8_nxv2i8(<vscale x 2 x i8> %0, <vscale x 2 x i8> %1, i32 %2, <vscale x 2 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv2i8_nxv2i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,mf4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 2 x i8> @llvm.riscv.vslideup.mask.nxv2i8(
|
|
<vscale x 2 x i8> %0,
|
|
<vscale x 2 x i8> %1,
|
|
i32 %2,
|
|
<vscale x 2 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 2 x i8> %a
|
|
}
|
|
|
|
define <vscale x 2 x i8> @intrinsic_vslideup_vi_nxv2i8_nxv2i8(<vscale x 2 x i8> %0, <vscale x 2 x i8> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv2i8_nxv2i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,mf4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 2 x i8> @llvm.riscv.vslideup.nxv2i8(
|
|
<vscale x 2 x i8> %0,
|
|
<vscale x 2 x i8> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 2 x i8> %a
|
|
}
|
|
|
|
define <vscale x 2 x i8> @intrinsic_vslideup_mask_vi_nxv2i8_nxv2i8(<vscale x 2 x i8> %0, <vscale x 2 x i8> %1, <vscale x 2 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv2i8_nxv2i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,mf4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 2 x i8> @llvm.riscv.vslideup.mask.nxv2i8(
|
|
<vscale x 2 x i8> %0,
|
|
<vscale x 2 x i8> %1,
|
|
i32 9,
|
|
<vscale x 2 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 2 x i8> %a
|
|
}
|
|
|
|
declare <vscale x 4 x i8> @llvm.riscv.vslideup.nxv4i8(
|
|
<vscale x 4 x i8>,
|
|
<vscale x 4 x i8>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 4 x i8> @intrinsic_vslideup_vx_nxv4i8_nxv4i8(<vscale x 4 x i8> %0, <vscale x 4 x i8> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv4i8_nxv4i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,mf2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 4 x i8> @llvm.riscv.vslideup.nxv4i8(
|
|
<vscale x 4 x i8> %0,
|
|
<vscale x 4 x i8> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 4 x i8> %a
|
|
}
|
|
|
|
declare <vscale x 4 x i8> @llvm.riscv.vslideup.mask.nxv4i8(
|
|
<vscale x 4 x i8>,
|
|
<vscale x 4 x i8>,
|
|
i32,
|
|
<vscale x 4 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 4 x i8> @intrinsic_vslideup_mask_vx_nxv4i8_nxv4i8(<vscale x 4 x i8> %0, <vscale x 4 x i8> %1, i32 %2, <vscale x 4 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv4i8_nxv4i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,mf2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 4 x i8> @llvm.riscv.vslideup.mask.nxv4i8(
|
|
<vscale x 4 x i8> %0,
|
|
<vscale x 4 x i8> %1,
|
|
i32 %2,
|
|
<vscale x 4 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 4 x i8> %a
|
|
}
|
|
|
|
define <vscale x 4 x i8> @intrinsic_vslideup_vi_nxv4i8_nxv4i8(<vscale x 4 x i8> %0, <vscale x 4 x i8> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv4i8_nxv4i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,mf2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 4 x i8> @llvm.riscv.vslideup.nxv4i8(
|
|
<vscale x 4 x i8> %0,
|
|
<vscale x 4 x i8> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 4 x i8> %a
|
|
}
|
|
|
|
define <vscale x 4 x i8> @intrinsic_vslideup_mask_vi_nxv4i8_nxv4i8(<vscale x 4 x i8> %0, <vscale x 4 x i8> %1, <vscale x 4 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv4i8_nxv4i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,mf2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 4 x i8> @llvm.riscv.vslideup.mask.nxv4i8(
|
|
<vscale x 4 x i8> %0,
|
|
<vscale x 4 x i8> %1,
|
|
i32 9,
|
|
<vscale x 4 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 4 x i8> %a
|
|
}
|
|
|
|
declare <vscale x 8 x i8> @llvm.riscv.vslideup.nxv8i8(
|
|
<vscale x 8 x i8>,
|
|
<vscale x 8 x i8>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 8 x i8> @intrinsic_vslideup_vx_nxv8i8_nxv8i8(<vscale x 8 x i8> %0, <vscale x 8 x i8> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv8i8_nxv8i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,m1,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 8 x i8> @llvm.riscv.vslideup.nxv8i8(
|
|
<vscale x 8 x i8> %0,
|
|
<vscale x 8 x i8> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 8 x i8> %a
|
|
}
|
|
|
|
declare <vscale x 8 x i8> @llvm.riscv.vslideup.mask.nxv8i8(
|
|
<vscale x 8 x i8>,
|
|
<vscale x 8 x i8>,
|
|
i32,
|
|
<vscale x 8 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 8 x i8> @intrinsic_vslideup_mask_vx_nxv8i8_nxv8i8(<vscale x 8 x i8> %0, <vscale x 8 x i8> %1, i32 %2, <vscale x 8 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv8i8_nxv8i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,m1,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 8 x i8> @llvm.riscv.vslideup.mask.nxv8i8(
|
|
<vscale x 8 x i8> %0,
|
|
<vscale x 8 x i8> %1,
|
|
i32 %2,
|
|
<vscale x 8 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 8 x i8> %a
|
|
}
|
|
|
|
define <vscale x 8 x i8> @intrinsic_vslideup_vi_nxv8i8_nxv8i8(<vscale x 8 x i8> %0, <vscale x 8 x i8> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv8i8_nxv8i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,m1,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 8 x i8> @llvm.riscv.vslideup.nxv8i8(
|
|
<vscale x 8 x i8> %0,
|
|
<vscale x 8 x i8> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 8 x i8> %a
|
|
}
|
|
|
|
define <vscale x 8 x i8> @intrinsic_vslideup_mask_vi_nxv8i8_nxv8i8(<vscale x 8 x i8> %0, <vscale x 8 x i8> %1, <vscale x 8 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv8i8_nxv8i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,m1,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 8 x i8> @llvm.riscv.vslideup.mask.nxv8i8(
|
|
<vscale x 8 x i8> %0,
|
|
<vscale x 8 x i8> %1,
|
|
i32 9,
|
|
<vscale x 8 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 8 x i8> %a
|
|
}
|
|
|
|
declare <vscale x 16 x i8> @llvm.riscv.vslideup.nxv16i8(
|
|
<vscale x 16 x i8>,
|
|
<vscale x 16 x i8>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 16 x i8> @intrinsic_vslideup_vx_nxv16i8_nxv16i8(<vscale x 16 x i8> %0, <vscale x 16 x i8> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv16i8_nxv16i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,m2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 16 x i8> @llvm.riscv.vslideup.nxv16i8(
|
|
<vscale x 16 x i8> %0,
|
|
<vscale x 16 x i8> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 16 x i8> %a
|
|
}
|
|
|
|
declare <vscale x 16 x i8> @llvm.riscv.vslideup.mask.nxv16i8(
|
|
<vscale x 16 x i8>,
|
|
<vscale x 16 x i8>,
|
|
i32,
|
|
<vscale x 16 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 16 x i8> @intrinsic_vslideup_mask_vx_nxv16i8_nxv16i8(<vscale x 16 x i8> %0, <vscale x 16 x i8> %1, i32 %2, <vscale x 16 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv16i8_nxv16i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,m2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 16 x i8> @llvm.riscv.vslideup.mask.nxv16i8(
|
|
<vscale x 16 x i8> %0,
|
|
<vscale x 16 x i8> %1,
|
|
i32 %2,
|
|
<vscale x 16 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 16 x i8> %a
|
|
}
|
|
|
|
define <vscale x 16 x i8> @intrinsic_vslideup_vi_nxv16i8_nxv16i8(<vscale x 16 x i8> %0, <vscale x 16 x i8> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv16i8_nxv16i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,m2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 16 x i8> @llvm.riscv.vslideup.nxv16i8(
|
|
<vscale x 16 x i8> %0,
|
|
<vscale x 16 x i8> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 16 x i8> %a
|
|
}
|
|
|
|
define <vscale x 16 x i8> @intrinsic_vslideup_mask_vi_nxv16i8_nxv16i8(<vscale x 16 x i8> %0, <vscale x 16 x i8> %1, <vscale x 16 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv16i8_nxv16i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,m2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 16 x i8> @llvm.riscv.vslideup.mask.nxv16i8(
|
|
<vscale x 16 x i8> %0,
|
|
<vscale x 16 x i8> %1,
|
|
i32 9,
|
|
<vscale x 16 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 16 x i8> %a
|
|
}
|
|
|
|
declare <vscale x 32 x i8> @llvm.riscv.vslideup.nxv32i8(
|
|
<vscale x 32 x i8>,
|
|
<vscale x 32 x i8>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 32 x i8> @intrinsic_vslideup_vx_nxv32i8_nxv32i8(<vscale x 32 x i8> %0, <vscale x 32 x i8> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv32i8_nxv32i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,m4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 32 x i8> @llvm.riscv.vslideup.nxv32i8(
|
|
<vscale x 32 x i8> %0,
|
|
<vscale x 32 x i8> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 32 x i8> %a
|
|
}
|
|
|
|
declare <vscale x 32 x i8> @llvm.riscv.vslideup.mask.nxv32i8(
|
|
<vscale x 32 x i8>,
|
|
<vscale x 32 x i8>,
|
|
i32,
|
|
<vscale x 32 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 32 x i8> @intrinsic_vslideup_mask_vx_nxv32i8_nxv32i8(<vscale x 32 x i8> %0, <vscale x 32 x i8> %1, i32 %2, <vscale x 32 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv32i8_nxv32i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,m4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 32 x i8> @llvm.riscv.vslideup.mask.nxv32i8(
|
|
<vscale x 32 x i8> %0,
|
|
<vscale x 32 x i8> %1,
|
|
i32 %2,
|
|
<vscale x 32 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 32 x i8> %a
|
|
}
|
|
|
|
define <vscale x 32 x i8> @intrinsic_vslideup_vi_nxv32i8_nxv32i8(<vscale x 32 x i8> %0, <vscale x 32 x i8> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv32i8_nxv32i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,m4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 32 x i8> @llvm.riscv.vslideup.nxv32i8(
|
|
<vscale x 32 x i8> %0,
|
|
<vscale x 32 x i8> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 32 x i8> %a
|
|
}
|
|
|
|
define <vscale x 32 x i8> @intrinsic_vslideup_mask_vi_nxv32i8_nxv32i8(<vscale x 32 x i8> %0, <vscale x 32 x i8> %1, <vscale x 32 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv32i8_nxv32i8
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e8,m4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 32 x i8> @llvm.riscv.vslideup.mask.nxv32i8(
|
|
<vscale x 32 x i8> %0,
|
|
<vscale x 32 x i8> %1,
|
|
i32 9,
|
|
<vscale x 32 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 32 x i8> %a
|
|
}
|
|
|
|
declare <vscale x 1 x i16> @llvm.riscv.vslideup.nxv1i16(
|
|
<vscale x 1 x i16>,
|
|
<vscale x 1 x i16>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 1 x i16> @intrinsic_vslideup_vx_nxv1i16_nxv1i16(<vscale x 1 x i16> %0, <vscale x 1 x i16> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv1i16_nxv1i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 1 x i16> @llvm.riscv.vslideup.nxv1i16(
|
|
<vscale x 1 x i16> %0,
|
|
<vscale x 1 x i16> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 1 x i16> %a
|
|
}
|
|
|
|
declare <vscale x 1 x i16> @llvm.riscv.vslideup.mask.nxv1i16(
|
|
<vscale x 1 x i16>,
|
|
<vscale x 1 x i16>,
|
|
i32,
|
|
<vscale x 1 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 1 x i16> @intrinsic_vslideup_mask_vx_nxv1i16_nxv1i16(<vscale x 1 x i16> %0, <vscale x 1 x i16> %1, i32 %2, <vscale x 1 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv1i16_nxv1i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 1 x i16> @llvm.riscv.vslideup.mask.nxv1i16(
|
|
<vscale x 1 x i16> %0,
|
|
<vscale x 1 x i16> %1,
|
|
i32 %2,
|
|
<vscale x 1 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 1 x i16> %a
|
|
}
|
|
|
|
define <vscale x 1 x i16> @intrinsic_vslideup_vi_nxv1i16_nxv1i16(<vscale x 1 x i16> %0, <vscale x 1 x i16> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv1i16_nxv1i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 1 x i16> @llvm.riscv.vslideup.nxv1i16(
|
|
<vscale x 1 x i16> %0,
|
|
<vscale x 1 x i16> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 1 x i16> %a
|
|
}
|
|
|
|
define <vscale x 1 x i16> @intrinsic_vslideup_mask_vi_nxv1i16_nxv1i16(<vscale x 1 x i16> %0, <vscale x 1 x i16> %1, <vscale x 1 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv1i16_nxv1i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 1 x i16> @llvm.riscv.vslideup.mask.nxv1i16(
|
|
<vscale x 1 x i16> %0,
|
|
<vscale x 1 x i16> %1,
|
|
i32 9,
|
|
<vscale x 1 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 1 x i16> %a
|
|
}
|
|
|
|
declare <vscale x 2 x i16> @llvm.riscv.vslideup.nxv2i16(
|
|
<vscale x 2 x i16>,
|
|
<vscale x 2 x i16>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 2 x i16> @intrinsic_vslideup_vx_nxv2i16_nxv2i16(<vscale x 2 x i16> %0, <vscale x 2 x i16> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv2i16_nxv2i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 2 x i16> @llvm.riscv.vslideup.nxv2i16(
|
|
<vscale x 2 x i16> %0,
|
|
<vscale x 2 x i16> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 2 x i16> %a
|
|
}
|
|
|
|
declare <vscale x 2 x i16> @llvm.riscv.vslideup.mask.nxv2i16(
|
|
<vscale x 2 x i16>,
|
|
<vscale x 2 x i16>,
|
|
i32,
|
|
<vscale x 2 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 2 x i16> @intrinsic_vslideup_mask_vx_nxv2i16_nxv2i16(<vscale x 2 x i16> %0, <vscale x 2 x i16> %1, i32 %2, <vscale x 2 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv2i16_nxv2i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 2 x i16> @llvm.riscv.vslideup.mask.nxv2i16(
|
|
<vscale x 2 x i16> %0,
|
|
<vscale x 2 x i16> %1,
|
|
i32 %2,
|
|
<vscale x 2 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 2 x i16> %a
|
|
}
|
|
|
|
define <vscale x 2 x i16> @intrinsic_vslideup_vi_nxv2i16_nxv2i16(<vscale x 2 x i16> %0, <vscale x 2 x i16> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv2i16_nxv2i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 2 x i16> @llvm.riscv.vslideup.nxv2i16(
|
|
<vscale x 2 x i16> %0,
|
|
<vscale x 2 x i16> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 2 x i16> %a
|
|
}
|
|
|
|
define <vscale x 2 x i16> @intrinsic_vslideup_mask_vi_nxv2i16_nxv2i16(<vscale x 2 x i16> %0, <vscale x 2 x i16> %1, <vscale x 2 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv2i16_nxv2i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 2 x i16> @llvm.riscv.vslideup.mask.nxv2i16(
|
|
<vscale x 2 x i16> %0,
|
|
<vscale x 2 x i16> %1,
|
|
i32 9,
|
|
<vscale x 2 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 2 x i16> %a
|
|
}
|
|
|
|
declare <vscale x 4 x i16> @llvm.riscv.vslideup.nxv4i16(
|
|
<vscale x 4 x i16>,
|
|
<vscale x 4 x i16>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 4 x i16> @intrinsic_vslideup_vx_nxv4i16_nxv4i16(<vscale x 4 x i16> %0, <vscale x 4 x i16> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv4i16_nxv4i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m1,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 4 x i16> @llvm.riscv.vslideup.nxv4i16(
|
|
<vscale x 4 x i16> %0,
|
|
<vscale x 4 x i16> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 4 x i16> %a
|
|
}
|
|
|
|
declare <vscale x 4 x i16> @llvm.riscv.vslideup.mask.nxv4i16(
|
|
<vscale x 4 x i16>,
|
|
<vscale x 4 x i16>,
|
|
i32,
|
|
<vscale x 4 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 4 x i16> @intrinsic_vslideup_mask_vx_nxv4i16_nxv4i16(<vscale x 4 x i16> %0, <vscale x 4 x i16> %1, i32 %2, <vscale x 4 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv4i16_nxv4i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m1,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 4 x i16> @llvm.riscv.vslideup.mask.nxv4i16(
|
|
<vscale x 4 x i16> %0,
|
|
<vscale x 4 x i16> %1,
|
|
i32 %2,
|
|
<vscale x 4 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 4 x i16> %a
|
|
}
|
|
|
|
define <vscale x 4 x i16> @intrinsic_vslideup_vi_nxv4i16_nxv4i16(<vscale x 4 x i16> %0, <vscale x 4 x i16> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv4i16_nxv4i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m1,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 4 x i16> @llvm.riscv.vslideup.nxv4i16(
|
|
<vscale x 4 x i16> %0,
|
|
<vscale x 4 x i16> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 4 x i16> %a
|
|
}
|
|
|
|
define <vscale x 4 x i16> @intrinsic_vslideup_mask_vi_nxv4i16_nxv4i16(<vscale x 4 x i16> %0, <vscale x 4 x i16> %1, <vscale x 4 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv4i16_nxv4i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m1,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 4 x i16> @llvm.riscv.vslideup.mask.nxv4i16(
|
|
<vscale x 4 x i16> %0,
|
|
<vscale x 4 x i16> %1,
|
|
i32 9,
|
|
<vscale x 4 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 4 x i16> %a
|
|
}
|
|
|
|
declare <vscale x 8 x i16> @llvm.riscv.vslideup.nxv8i16(
|
|
<vscale x 8 x i16>,
|
|
<vscale x 8 x i16>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 8 x i16> @intrinsic_vslideup_vx_nxv8i16_nxv8i16(<vscale x 8 x i16> %0, <vscale x 8 x i16> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv8i16_nxv8i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 8 x i16> @llvm.riscv.vslideup.nxv8i16(
|
|
<vscale x 8 x i16> %0,
|
|
<vscale x 8 x i16> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 8 x i16> %a
|
|
}
|
|
|
|
declare <vscale x 8 x i16> @llvm.riscv.vslideup.mask.nxv8i16(
|
|
<vscale x 8 x i16>,
|
|
<vscale x 8 x i16>,
|
|
i32,
|
|
<vscale x 8 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 8 x i16> @intrinsic_vslideup_mask_vx_nxv8i16_nxv8i16(<vscale x 8 x i16> %0, <vscale x 8 x i16> %1, i32 %2, <vscale x 8 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv8i16_nxv8i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 8 x i16> @llvm.riscv.vslideup.mask.nxv8i16(
|
|
<vscale x 8 x i16> %0,
|
|
<vscale x 8 x i16> %1,
|
|
i32 %2,
|
|
<vscale x 8 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 8 x i16> %a
|
|
}
|
|
|
|
define <vscale x 8 x i16> @intrinsic_vslideup_vi_nxv8i16_nxv8i16(<vscale x 8 x i16> %0, <vscale x 8 x i16> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv8i16_nxv8i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 8 x i16> @llvm.riscv.vslideup.nxv8i16(
|
|
<vscale x 8 x i16> %0,
|
|
<vscale x 8 x i16> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 8 x i16> %a
|
|
}
|
|
|
|
define <vscale x 8 x i16> @intrinsic_vslideup_mask_vi_nxv8i16_nxv8i16(<vscale x 8 x i16> %0, <vscale x 8 x i16> %1, <vscale x 8 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv8i16_nxv8i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 8 x i16> @llvm.riscv.vslideup.mask.nxv8i16(
|
|
<vscale x 8 x i16> %0,
|
|
<vscale x 8 x i16> %1,
|
|
i32 9,
|
|
<vscale x 8 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 8 x i16> %a
|
|
}
|
|
|
|
declare <vscale x 16 x i16> @llvm.riscv.vslideup.nxv16i16(
|
|
<vscale x 16 x i16>,
|
|
<vscale x 16 x i16>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 16 x i16> @intrinsic_vslideup_vx_nxv16i16_nxv16i16(<vscale x 16 x i16> %0, <vscale x 16 x i16> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv16i16_nxv16i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 16 x i16> @llvm.riscv.vslideup.nxv16i16(
|
|
<vscale x 16 x i16> %0,
|
|
<vscale x 16 x i16> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 16 x i16> %a
|
|
}
|
|
|
|
declare <vscale x 16 x i16> @llvm.riscv.vslideup.mask.nxv16i16(
|
|
<vscale x 16 x i16>,
|
|
<vscale x 16 x i16>,
|
|
i32,
|
|
<vscale x 16 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 16 x i16> @intrinsic_vslideup_mask_vx_nxv16i16_nxv16i16(<vscale x 16 x i16> %0, <vscale x 16 x i16> %1, i32 %2, <vscale x 16 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv16i16_nxv16i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 16 x i16> @llvm.riscv.vslideup.mask.nxv16i16(
|
|
<vscale x 16 x i16> %0,
|
|
<vscale x 16 x i16> %1,
|
|
i32 %2,
|
|
<vscale x 16 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 16 x i16> %a
|
|
}
|
|
|
|
define <vscale x 16 x i16> @intrinsic_vslideup_vi_nxv16i16_nxv16i16(<vscale x 16 x i16> %0, <vscale x 16 x i16> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv16i16_nxv16i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 16 x i16> @llvm.riscv.vslideup.nxv16i16(
|
|
<vscale x 16 x i16> %0,
|
|
<vscale x 16 x i16> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 16 x i16> %a
|
|
}
|
|
|
|
define <vscale x 16 x i16> @intrinsic_vslideup_mask_vi_nxv16i16_nxv16i16(<vscale x 16 x i16> %0, <vscale x 16 x i16> %1, <vscale x 16 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv16i16_nxv16i16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 16 x i16> @llvm.riscv.vslideup.mask.nxv16i16(
|
|
<vscale x 16 x i16> %0,
|
|
<vscale x 16 x i16> %1,
|
|
i32 9,
|
|
<vscale x 16 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 16 x i16> %a
|
|
}
|
|
|
|
declare <vscale x 1 x i32> @llvm.riscv.vslideup.nxv1i32(
|
|
<vscale x 1 x i32>,
|
|
<vscale x 1 x i32>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 1 x i32> @intrinsic_vslideup_vx_nxv1i32_nxv1i32(<vscale x 1 x i32> %0, <vscale x 1 x i32> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv1i32_nxv1i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,mf2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 1 x i32> @llvm.riscv.vslideup.nxv1i32(
|
|
<vscale x 1 x i32> %0,
|
|
<vscale x 1 x i32> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 1 x i32> %a
|
|
}
|
|
|
|
declare <vscale x 1 x i32> @llvm.riscv.vslideup.mask.nxv1i32(
|
|
<vscale x 1 x i32>,
|
|
<vscale x 1 x i32>,
|
|
i32,
|
|
<vscale x 1 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 1 x i32> @intrinsic_vslideup_mask_vx_nxv1i32_nxv1i32(<vscale x 1 x i32> %0, <vscale x 1 x i32> %1, i32 %2, <vscale x 1 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv1i32_nxv1i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,mf2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 1 x i32> @llvm.riscv.vslideup.mask.nxv1i32(
|
|
<vscale x 1 x i32> %0,
|
|
<vscale x 1 x i32> %1,
|
|
i32 %2,
|
|
<vscale x 1 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 1 x i32> %a
|
|
}
|
|
|
|
define <vscale x 1 x i32> @intrinsic_vslideup_vi_nxv1i32_nxv1i32(<vscale x 1 x i32> %0, <vscale x 1 x i32> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv1i32_nxv1i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,mf2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 1 x i32> @llvm.riscv.vslideup.nxv1i32(
|
|
<vscale x 1 x i32> %0,
|
|
<vscale x 1 x i32> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 1 x i32> %a
|
|
}
|
|
|
|
define <vscale x 1 x i32> @intrinsic_vslideup_mask_vi_nxv1i32_nxv1i32(<vscale x 1 x i32> %0, <vscale x 1 x i32> %1, <vscale x 1 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv1i32_nxv1i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,mf2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 1 x i32> @llvm.riscv.vslideup.mask.nxv1i32(
|
|
<vscale x 1 x i32> %0,
|
|
<vscale x 1 x i32> %1,
|
|
i32 9,
|
|
<vscale x 1 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 1 x i32> %a
|
|
}
|
|
|
|
declare <vscale x 2 x i32> @llvm.riscv.vslideup.nxv2i32(
|
|
<vscale x 2 x i32>,
|
|
<vscale x 2 x i32>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 2 x i32> @intrinsic_vslideup_vx_nxv2i32_nxv2i32(<vscale x 2 x i32> %0, <vscale x 2 x i32> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv2i32_nxv2i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m1,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 2 x i32> @llvm.riscv.vslideup.nxv2i32(
|
|
<vscale x 2 x i32> %0,
|
|
<vscale x 2 x i32> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 2 x i32> %a
|
|
}
|
|
|
|
declare <vscale x 2 x i32> @llvm.riscv.vslideup.mask.nxv2i32(
|
|
<vscale x 2 x i32>,
|
|
<vscale x 2 x i32>,
|
|
i32,
|
|
<vscale x 2 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 2 x i32> @intrinsic_vslideup_mask_vx_nxv2i32_nxv2i32(<vscale x 2 x i32> %0, <vscale x 2 x i32> %1, i32 %2, <vscale x 2 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv2i32_nxv2i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m1,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 2 x i32> @llvm.riscv.vslideup.mask.nxv2i32(
|
|
<vscale x 2 x i32> %0,
|
|
<vscale x 2 x i32> %1,
|
|
i32 %2,
|
|
<vscale x 2 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 2 x i32> %a
|
|
}
|
|
|
|
define <vscale x 2 x i32> @intrinsic_vslideup_vi_nxv2i32_nxv2i32(<vscale x 2 x i32> %0, <vscale x 2 x i32> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv2i32_nxv2i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m1,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 2 x i32> @llvm.riscv.vslideup.nxv2i32(
|
|
<vscale x 2 x i32> %0,
|
|
<vscale x 2 x i32> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 2 x i32> %a
|
|
}
|
|
|
|
define <vscale x 2 x i32> @intrinsic_vslideup_mask_vi_nxv2i32_nxv2i32(<vscale x 2 x i32> %0, <vscale x 2 x i32> %1, <vscale x 2 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv2i32_nxv2i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m1,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 2 x i32> @llvm.riscv.vslideup.mask.nxv2i32(
|
|
<vscale x 2 x i32> %0,
|
|
<vscale x 2 x i32> %1,
|
|
i32 9,
|
|
<vscale x 2 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 2 x i32> %a
|
|
}
|
|
|
|
declare <vscale x 4 x i32> @llvm.riscv.vslideup.nxv4i32(
|
|
<vscale x 4 x i32>,
|
|
<vscale x 4 x i32>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 4 x i32> @intrinsic_vslideup_vx_nxv4i32_nxv4i32(<vscale x 4 x i32> %0, <vscale x 4 x i32> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv4i32_nxv4i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 4 x i32> @llvm.riscv.vslideup.nxv4i32(
|
|
<vscale x 4 x i32> %0,
|
|
<vscale x 4 x i32> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 4 x i32> %a
|
|
}
|
|
|
|
declare <vscale x 4 x i32> @llvm.riscv.vslideup.mask.nxv4i32(
|
|
<vscale x 4 x i32>,
|
|
<vscale x 4 x i32>,
|
|
i32,
|
|
<vscale x 4 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 4 x i32> @intrinsic_vslideup_mask_vx_nxv4i32_nxv4i32(<vscale x 4 x i32> %0, <vscale x 4 x i32> %1, i32 %2, <vscale x 4 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv4i32_nxv4i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 4 x i32> @llvm.riscv.vslideup.mask.nxv4i32(
|
|
<vscale x 4 x i32> %0,
|
|
<vscale x 4 x i32> %1,
|
|
i32 %2,
|
|
<vscale x 4 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 4 x i32> %a
|
|
}
|
|
|
|
define <vscale x 4 x i32> @intrinsic_vslideup_vi_nxv4i32_nxv4i32(<vscale x 4 x i32> %0, <vscale x 4 x i32> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv4i32_nxv4i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 4 x i32> @llvm.riscv.vslideup.nxv4i32(
|
|
<vscale x 4 x i32> %0,
|
|
<vscale x 4 x i32> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 4 x i32> %a
|
|
}
|
|
|
|
define <vscale x 4 x i32> @intrinsic_vslideup_mask_vi_nxv4i32_nxv4i32(<vscale x 4 x i32> %0, <vscale x 4 x i32> %1, <vscale x 4 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv4i32_nxv4i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 4 x i32> @llvm.riscv.vslideup.mask.nxv4i32(
|
|
<vscale x 4 x i32> %0,
|
|
<vscale x 4 x i32> %1,
|
|
i32 9,
|
|
<vscale x 4 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 4 x i32> %a
|
|
}
|
|
|
|
declare <vscale x 8 x i32> @llvm.riscv.vslideup.nxv8i32(
|
|
<vscale x 8 x i32>,
|
|
<vscale x 8 x i32>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 8 x i32> @intrinsic_vslideup_vx_nxv8i32_nxv8i32(<vscale x 8 x i32> %0, <vscale x 8 x i32> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv8i32_nxv8i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 8 x i32> @llvm.riscv.vslideup.nxv8i32(
|
|
<vscale x 8 x i32> %0,
|
|
<vscale x 8 x i32> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 8 x i32> %a
|
|
}
|
|
|
|
declare <vscale x 8 x i32> @llvm.riscv.vslideup.mask.nxv8i32(
|
|
<vscale x 8 x i32>,
|
|
<vscale x 8 x i32>,
|
|
i32,
|
|
<vscale x 8 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 8 x i32> @intrinsic_vslideup_mask_vx_nxv8i32_nxv8i32(<vscale x 8 x i32> %0, <vscale x 8 x i32> %1, i32 %2, <vscale x 8 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv8i32_nxv8i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 8 x i32> @llvm.riscv.vslideup.mask.nxv8i32(
|
|
<vscale x 8 x i32> %0,
|
|
<vscale x 8 x i32> %1,
|
|
i32 %2,
|
|
<vscale x 8 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 8 x i32> %a
|
|
}
|
|
|
|
define <vscale x 8 x i32> @intrinsic_vslideup_vi_nxv8i32_nxv8i32(<vscale x 8 x i32> %0, <vscale x 8 x i32> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv8i32_nxv8i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 8 x i32> @llvm.riscv.vslideup.nxv8i32(
|
|
<vscale x 8 x i32> %0,
|
|
<vscale x 8 x i32> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 8 x i32> %a
|
|
}
|
|
|
|
define <vscale x 8 x i32> @intrinsic_vslideup_mask_vi_nxv8i32_nxv8i32(<vscale x 8 x i32> %0, <vscale x 8 x i32> %1, <vscale x 8 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv8i32_nxv8i32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 8 x i32> @llvm.riscv.vslideup.mask.nxv8i32(
|
|
<vscale x 8 x i32> %0,
|
|
<vscale x 8 x i32> %1,
|
|
i32 9,
|
|
<vscale x 8 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 8 x i32> %a
|
|
}
|
|
|
|
declare <vscale x 1 x half> @llvm.riscv.vslideup.nxv1f16(
|
|
<vscale x 1 x half>,
|
|
<vscale x 1 x half>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 1 x half> @intrinsic_vslideup_vx_nxv1f16_nxv1f16(<vscale x 1 x half> %0, <vscale x 1 x half> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv1f16_nxv1f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 1 x half> @llvm.riscv.vslideup.nxv1f16(
|
|
<vscale x 1 x half> %0,
|
|
<vscale x 1 x half> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 1 x half> %a
|
|
}
|
|
|
|
declare <vscale x 1 x half> @llvm.riscv.vslideup.mask.nxv1f16(
|
|
<vscale x 1 x half>,
|
|
<vscale x 1 x half>,
|
|
i32,
|
|
<vscale x 1 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 1 x half> @intrinsic_vslideup_mask_vx_nxv1f16_nxv1f16(<vscale x 1 x half> %0, <vscale x 1 x half> %1, i32 %2, <vscale x 1 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv1f16_nxv1f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 1 x half> @llvm.riscv.vslideup.mask.nxv1f16(
|
|
<vscale x 1 x half> %0,
|
|
<vscale x 1 x half> %1,
|
|
i32 %2,
|
|
<vscale x 1 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 1 x half> %a
|
|
}
|
|
|
|
define <vscale x 1 x half> @intrinsic_vslideup_vi_nxv1f16_nxv1f16(<vscale x 1 x half> %0, <vscale x 1 x half> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv1f16_nxv1f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 1 x half> @llvm.riscv.vslideup.nxv1f16(
|
|
<vscale x 1 x half> %0,
|
|
<vscale x 1 x half> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 1 x half> %a
|
|
}
|
|
|
|
define <vscale x 1 x half> @intrinsic_vslideup_mask_vi_nxv1f16_nxv1f16(<vscale x 1 x half> %0, <vscale x 1 x half> %1, <vscale x 1 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv1f16_nxv1f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 1 x half> @llvm.riscv.vslideup.mask.nxv1f16(
|
|
<vscale x 1 x half> %0,
|
|
<vscale x 1 x half> %1,
|
|
i32 9,
|
|
<vscale x 1 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 1 x half> %a
|
|
}
|
|
|
|
declare <vscale x 2 x half> @llvm.riscv.vslideup.nxv2f16(
|
|
<vscale x 2 x half>,
|
|
<vscale x 2 x half>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 2 x half> @intrinsic_vslideup_vx_nxv2f16_nxv2f16(<vscale x 2 x half> %0, <vscale x 2 x half> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv2f16_nxv2f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 2 x half> @llvm.riscv.vslideup.nxv2f16(
|
|
<vscale x 2 x half> %0,
|
|
<vscale x 2 x half> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 2 x half> %a
|
|
}
|
|
|
|
declare <vscale x 2 x half> @llvm.riscv.vslideup.mask.nxv2f16(
|
|
<vscale x 2 x half>,
|
|
<vscale x 2 x half>,
|
|
i32,
|
|
<vscale x 2 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 2 x half> @intrinsic_vslideup_mask_vx_nxv2f16_nxv2f16(<vscale x 2 x half> %0, <vscale x 2 x half> %1, i32 %2, <vscale x 2 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv2f16_nxv2f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 2 x half> @llvm.riscv.vslideup.mask.nxv2f16(
|
|
<vscale x 2 x half> %0,
|
|
<vscale x 2 x half> %1,
|
|
i32 %2,
|
|
<vscale x 2 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 2 x half> %a
|
|
}
|
|
|
|
define <vscale x 2 x half> @intrinsic_vslideup_vi_nxv2f16_nxv2f16(<vscale x 2 x half> %0, <vscale x 2 x half> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv2f16_nxv2f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 2 x half> @llvm.riscv.vslideup.nxv2f16(
|
|
<vscale x 2 x half> %0,
|
|
<vscale x 2 x half> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 2 x half> %a
|
|
}
|
|
|
|
define <vscale x 2 x half> @intrinsic_vslideup_mask_vi_nxv2f16_nxv2f16(<vscale x 2 x half> %0, <vscale x 2 x half> %1, <vscale x 2 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv2f16_nxv2f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,mf2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 2 x half> @llvm.riscv.vslideup.mask.nxv2f16(
|
|
<vscale x 2 x half> %0,
|
|
<vscale x 2 x half> %1,
|
|
i32 9,
|
|
<vscale x 2 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 2 x half> %a
|
|
}
|
|
|
|
declare <vscale x 4 x half> @llvm.riscv.vslideup.nxv4f16(
|
|
<vscale x 4 x half>,
|
|
<vscale x 4 x half>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 4 x half> @intrinsic_vslideup_vx_nxv4f16_nxv4f16(<vscale x 4 x half> %0, <vscale x 4 x half> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv4f16_nxv4f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m1,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 4 x half> @llvm.riscv.vslideup.nxv4f16(
|
|
<vscale x 4 x half> %0,
|
|
<vscale x 4 x half> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 4 x half> %a
|
|
}
|
|
|
|
declare <vscale x 4 x half> @llvm.riscv.vslideup.mask.nxv4f16(
|
|
<vscale x 4 x half>,
|
|
<vscale x 4 x half>,
|
|
i32,
|
|
<vscale x 4 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 4 x half> @intrinsic_vslideup_mask_vx_nxv4f16_nxv4f16(<vscale x 4 x half> %0, <vscale x 4 x half> %1, i32 %2, <vscale x 4 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv4f16_nxv4f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m1,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 4 x half> @llvm.riscv.vslideup.mask.nxv4f16(
|
|
<vscale x 4 x half> %0,
|
|
<vscale x 4 x half> %1,
|
|
i32 %2,
|
|
<vscale x 4 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 4 x half> %a
|
|
}
|
|
|
|
define <vscale x 4 x half> @intrinsic_vslideup_vi_nxv4f16_nxv4f16(<vscale x 4 x half> %0, <vscale x 4 x half> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv4f16_nxv4f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m1,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 4 x half> @llvm.riscv.vslideup.nxv4f16(
|
|
<vscale x 4 x half> %0,
|
|
<vscale x 4 x half> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 4 x half> %a
|
|
}
|
|
|
|
define <vscale x 4 x half> @intrinsic_vslideup_mask_vi_nxv4f16_nxv4f16(<vscale x 4 x half> %0, <vscale x 4 x half> %1, <vscale x 4 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv4f16_nxv4f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m1,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 4 x half> @llvm.riscv.vslideup.mask.nxv4f16(
|
|
<vscale x 4 x half> %0,
|
|
<vscale x 4 x half> %1,
|
|
i32 9,
|
|
<vscale x 4 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 4 x half> %a
|
|
}
|
|
|
|
declare <vscale x 8 x half> @llvm.riscv.vslideup.nxv8f16(
|
|
<vscale x 8 x half>,
|
|
<vscale x 8 x half>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 8 x half> @intrinsic_vslideup_vx_nxv8f16_nxv8f16(<vscale x 8 x half> %0, <vscale x 8 x half> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv8f16_nxv8f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 8 x half> @llvm.riscv.vslideup.nxv8f16(
|
|
<vscale x 8 x half> %0,
|
|
<vscale x 8 x half> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 8 x half> %a
|
|
}
|
|
|
|
declare <vscale x 8 x half> @llvm.riscv.vslideup.mask.nxv8f16(
|
|
<vscale x 8 x half>,
|
|
<vscale x 8 x half>,
|
|
i32,
|
|
<vscale x 8 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 8 x half> @intrinsic_vslideup_mask_vx_nxv8f16_nxv8f16(<vscale x 8 x half> %0, <vscale x 8 x half> %1, i32 %2, <vscale x 8 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv8f16_nxv8f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 8 x half> @llvm.riscv.vslideup.mask.nxv8f16(
|
|
<vscale x 8 x half> %0,
|
|
<vscale x 8 x half> %1,
|
|
i32 %2,
|
|
<vscale x 8 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 8 x half> %a
|
|
}
|
|
|
|
define <vscale x 8 x half> @intrinsic_vslideup_vi_nxv8f16_nxv8f16(<vscale x 8 x half> %0, <vscale x 8 x half> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv8f16_nxv8f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 8 x half> @llvm.riscv.vslideup.nxv8f16(
|
|
<vscale x 8 x half> %0,
|
|
<vscale x 8 x half> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 8 x half> %a
|
|
}
|
|
|
|
define <vscale x 8 x half> @intrinsic_vslideup_mask_vi_nxv8f16_nxv8f16(<vscale x 8 x half> %0, <vscale x 8 x half> %1, <vscale x 8 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv8f16_nxv8f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 8 x half> @llvm.riscv.vslideup.mask.nxv8f16(
|
|
<vscale x 8 x half> %0,
|
|
<vscale x 8 x half> %1,
|
|
i32 9,
|
|
<vscale x 8 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 8 x half> %a
|
|
}
|
|
|
|
declare <vscale x 16 x half> @llvm.riscv.vslideup.nxv16f16(
|
|
<vscale x 16 x half>,
|
|
<vscale x 16 x half>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 16 x half> @intrinsic_vslideup_vx_nxv16f16_nxv16f16(<vscale x 16 x half> %0, <vscale x 16 x half> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv16f16_nxv16f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 16 x half> @llvm.riscv.vslideup.nxv16f16(
|
|
<vscale x 16 x half> %0,
|
|
<vscale x 16 x half> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 16 x half> %a
|
|
}
|
|
|
|
declare <vscale x 16 x half> @llvm.riscv.vslideup.mask.nxv16f16(
|
|
<vscale x 16 x half>,
|
|
<vscale x 16 x half>,
|
|
i32,
|
|
<vscale x 16 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 16 x half> @intrinsic_vslideup_mask_vx_nxv16f16_nxv16f16(<vscale x 16 x half> %0, <vscale x 16 x half> %1, i32 %2, <vscale x 16 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv16f16_nxv16f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 16 x half> @llvm.riscv.vslideup.mask.nxv16f16(
|
|
<vscale x 16 x half> %0,
|
|
<vscale x 16 x half> %1,
|
|
i32 %2,
|
|
<vscale x 16 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 16 x half> %a
|
|
}
|
|
|
|
define <vscale x 16 x half> @intrinsic_vslideup_vi_nxv16f16_nxv16f16(<vscale x 16 x half> %0, <vscale x 16 x half> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv16f16_nxv16f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 16 x half> @llvm.riscv.vslideup.nxv16f16(
|
|
<vscale x 16 x half> %0,
|
|
<vscale x 16 x half> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 16 x half> %a
|
|
}
|
|
|
|
define <vscale x 16 x half> @intrinsic_vslideup_mask_vi_nxv16f16_nxv16f16(<vscale x 16 x half> %0, <vscale x 16 x half> %1, <vscale x 16 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv16f16_nxv16f16
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e16,m4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 16 x half> @llvm.riscv.vslideup.mask.nxv16f16(
|
|
<vscale x 16 x half> %0,
|
|
<vscale x 16 x half> %1,
|
|
i32 9,
|
|
<vscale x 16 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 16 x half> %a
|
|
}
|
|
|
|
declare <vscale x 1 x float> @llvm.riscv.vslideup.nxv1f32(
|
|
<vscale x 1 x float>,
|
|
<vscale x 1 x float>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 1 x float> @intrinsic_vslideup_vx_nxv1f32_nxv1f32(<vscale x 1 x float> %0, <vscale x 1 x float> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv1f32_nxv1f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,mf2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 1 x float> @llvm.riscv.vslideup.nxv1f32(
|
|
<vscale x 1 x float> %0,
|
|
<vscale x 1 x float> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 1 x float> %a
|
|
}
|
|
|
|
declare <vscale x 1 x float> @llvm.riscv.vslideup.mask.nxv1f32(
|
|
<vscale x 1 x float>,
|
|
<vscale x 1 x float>,
|
|
i32,
|
|
<vscale x 1 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 1 x float> @intrinsic_vslideup_mask_vx_nxv1f32_nxv1f32(<vscale x 1 x float> %0, <vscale x 1 x float> %1, i32 %2, <vscale x 1 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv1f32_nxv1f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,mf2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 1 x float> @llvm.riscv.vslideup.mask.nxv1f32(
|
|
<vscale x 1 x float> %0,
|
|
<vscale x 1 x float> %1,
|
|
i32 %2,
|
|
<vscale x 1 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 1 x float> %a
|
|
}
|
|
|
|
define <vscale x 1 x float> @intrinsic_vslideup_vi_nxv1f32_nxv1f32(<vscale x 1 x float> %0, <vscale x 1 x float> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv1f32_nxv1f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,mf2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 1 x float> @llvm.riscv.vslideup.nxv1f32(
|
|
<vscale x 1 x float> %0,
|
|
<vscale x 1 x float> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 1 x float> %a
|
|
}
|
|
|
|
define <vscale x 1 x float> @intrinsic_vslideup_mask_vi_nxv1f32_nxv1f32(<vscale x 1 x float> %0, <vscale x 1 x float> %1, <vscale x 1 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv1f32_nxv1f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,mf2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 1 x float> @llvm.riscv.vslideup.mask.nxv1f32(
|
|
<vscale x 1 x float> %0,
|
|
<vscale x 1 x float> %1,
|
|
i32 9,
|
|
<vscale x 1 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 1 x float> %a
|
|
}
|
|
|
|
declare <vscale x 2 x float> @llvm.riscv.vslideup.nxv2f32(
|
|
<vscale x 2 x float>,
|
|
<vscale x 2 x float>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 2 x float> @intrinsic_vslideup_vx_nxv2f32_nxv2f32(<vscale x 2 x float> %0, <vscale x 2 x float> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv2f32_nxv2f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m1,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 2 x float> @llvm.riscv.vslideup.nxv2f32(
|
|
<vscale x 2 x float> %0,
|
|
<vscale x 2 x float> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 2 x float> %a
|
|
}
|
|
|
|
declare <vscale x 2 x float> @llvm.riscv.vslideup.mask.nxv2f32(
|
|
<vscale x 2 x float>,
|
|
<vscale x 2 x float>,
|
|
i32,
|
|
<vscale x 2 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 2 x float> @intrinsic_vslideup_mask_vx_nxv2f32_nxv2f32(<vscale x 2 x float> %0, <vscale x 2 x float> %1, i32 %2, <vscale x 2 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv2f32_nxv2f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m1,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 2 x float> @llvm.riscv.vslideup.mask.nxv2f32(
|
|
<vscale x 2 x float> %0,
|
|
<vscale x 2 x float> %1,
|
|
i32 %2,
|
|
<vscale x 2 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 2 x float> %a
|
|
}
|
|
|
|
define <vscale x 2 x float> @intrinsic_vslideup_vi_nxv2f32_nxv2f32(<vscale x 2 x float> %0, <vscale x 2 x float> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv2f32_nxv2f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m1,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 2 x float> @llvm.riscv.vslideup.nxv2f32(
|
|
<vscale x 2 x float> %0,
|
|
<vscale x 2 x float> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 2 x float> %a
|
|
}
|
|
|
|
define <vscale x 2 x float> @intrinsic_vslideup_mask_vi_nxv2f32_nxv2f32(<vscale x 2 x float> %0, <vscale x 2 x float> %1, <vscale x 2 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv2f32_nxv2f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m1,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 2 x float> @llvm.riscv.vslideup.mask.nxv2f32(
|
|
<vscale x 2 x float> %0,
|
|
<vscale x 2 x float> %1,
|
|
i32 9,
|
|
<vscale x 2 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 2 x float> %a
|
|
}
|
|
|
|
declare <vscale x 4 x float> @llvm.riscv.vslideup.nxv4f32(
|
|
<vscale x 4 x float>,
|
|
<vscale x 4 x float>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 4 x float> @intrinsic_vslideup_vx_nxv4f32_nxv4f32(<vscale x 4 x float> %0, <vscale x 4 x float> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv4f32_nxv4f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 4 x float> @llvm.riscv.vslideup.nxv4f32(
|
|
<vscale x 4 x float> %0,
|
|
<vscale x 4 x float> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 4 x float> %a
|
|
}
|
|
|
|
declare <vscale x 4 x float> @llvm.riscv.vslideup.mask.nxv4f32(
|
|
<vscale x 4 x float>,
|
|
<vscale x 4 x float>,
|
|
i32,
|
|
<vscale x 4 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 4 x float> @intrinsic_vslideup_mask_vx_nxv4f32_nxv4f32(<vscale x 4 x float> %0, <vscale x 4 x float> %1, i32 %2, <vscale x 4 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv4f32_nxv4f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m2,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 4 x float> @llvm.riscv.vslideup.mask.nxv4f32(
|
|
<vscale x 4 x float> %0,
|
|
<vscale x 4 x float> %1,
|
|
i32 %2,
|
|
<vscale x 4 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 4 x float> %a
|
|
}
|
|
|
|
define <vscale x 4 x float> @intrinsic_vslideup_vi_nxv4f32_nxv4f32(<vscale x 4 x float> %0, <vscale x 4 x float> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv4f32_nxv4f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 4 x float> @llvm.riscv.vslideup.nxv4f32(
|
|
<vscale x 4 x float> %0,
|
|
<vscale x 4 x float> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 4 x float> %a
|
|
}
|
|
|
|
define <vscale x 4 x float> @intrinsic_vslideup_mask_vi_nxv4f32_nxv4f32(<vscale x 4 x float> %0, <vscale x 4 x float> %1, <vscale x 4 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv4f32_nxv4f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m2,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 4 x float> @llvm.riscv.vslideup.mask.nxv4f32(
|
|
<vscale x 4 x float> %0,
|
|
<vscale x 4 x float> %1,
|
|
i32 9,
|
|
<vscale x 4 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 4 x float> %a
|
|
}
|
|
|
|
declare <vscale x 8 x float> @llvm.riscv.vslideup.nxv8f32(
|
|
<vscale x 8 x float>,
|
|
<vscale x 8 x float>,
|
|
i32,
|
|
i32);
|
|
|
|
define <vscale x 8 x float> @intrinsic_vslideup_vx_nxv8f32_nxv8f32(<vscale x 8 x float> %0, <vscale x 8 x float> %1, i32 %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vx_nxv8f32_nxv8f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0
|
|
%a = call <vscale x 8 x float> @llvm.riscv.vslideup.nxv8f32(
|
|
<vscale x 8 x float> %0,
|
|
<vscale x 8 x float> %1,
|
|
i32 %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 8 x float> %a
|
|
}
|
|
|
|
declare <vscale x 8 x float> @llvm.riscv.vslideup.mask.nxv8f32(
|
|
<vscale x 8 x float>,
|
|
<vscale x 8 x float>,
|
|
i32,
|
|
<vscale x 8 x i1>,
|
|
i32);
|
|
|
|
define <vscale x 8 x float> @intrinsic_vslideup_mask_vx_nxv8f32_nxv8f32(<vscale x 8 x float> %0, <vscale x 8 x float> %1, i32 %2, <vscale x 8 x i1> %3, i32 %4) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vx_nxv8f32_nxv8f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m4,tu,mu
|
|
; CHECK: vslideup.vx {{v[0-9]+}}, {{v[0-9]+}}, a0, v0.t
|
|
%a = call <vscale x 8 x float> @llvm.riscv.vslideup.mask.nxv8f32(
|
|
<vscale x 8 x float> %0,
|
|
<vscale x 8 x float> %1,
|
|
i32 %2,
|
|
<vscale x 8 x i1> %3,
|
|
i32 %4)
|
|
|
|
ret <vscale x 8 x float> %a
|
|
}
|
|
|
|
define <vscale x 8 x float> @intrinsic_vslideup_vi_nxv8f32_nxv8f32(<vscale x 8 x float> %0, <vscale x 8 x float> %1, i32 %2) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_vi_nxv8f32_nxv8f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9
|
|
%a = call <vscale x 8 x float> @llvm.riscv.vslideup.nxv8f32(
|
|
<vscale x 8 x float> %0,
|
|
<vscale x 8 x float> %1,
|
|
i32 9,
|
|
i32 %2)
|
|
|
|
ret <vscale x 8 x float> %a
|
|
}
|
|
|
|
define <vscale x 8 x float> @intrinsic_vslideup_mask_vi_nxv8f32_nxv8f32(<vscale x 8 x float> %0, <vscale x 8 x float> %1, <vscale x 8 x i1> %2, i32 %3) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: intrinsic_vslideup_mask_vi_nxv8f32_nxv8f32
|
|
; CHECK: vsetvli {{.*}}, {{a[0-9]+}}, e32,m4,tu,mu
|
|
; CHECK: vslideup.vi {{v[0-9]+}}, {{v[0-9]+}}, 9, v0.t
|
|
%a = call <vscale x 8 x float> @llvm.riscv.vslideup.mask.nxv8f32(
|
|
<vscale x 8 x float> %0,
|
|
<vscale x 8 x float> %1,
|
|
i32 9,
|
|
<vscale x 8 x i1> %2,
|
|
i32 %3)
|
|
|
|
ret <vscale x 8 x float> %a
|
|
}
|