diff options
Diffstat (limited to 'test/CodeGen/AArch64/arm64-vclz.ll')
-rw-r--r-- | test/CodeGen/AArch64/arm64-vclz.ll | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/CodeGen/AArch64/arm64-vclz.ll b/test/CodeGen/AArch64/arm64-vclz.ll index cf5670a0354f..10118f0d5638 100644 --- a/test/CodeGen/AArch64/arm64-vclz.ll +++ b/test/CodeGen/AArch64/arm64-vclz.ll @@ -48,6 +48,18 @@ define <2 x i32> @test_vclz_s32(<2 x i32> %a) nounwind readnone ssp { ret <2 x i32> %vclz1.i } +define <1 x i64> @test_vclz_u64(<1 x i64> %a) nounwind readnone ssp { + ; CHECK-LABEL: test_vclz_u64: + %vclz1.i = tail call <1 x i64> @llvm.ctlz.v1i64(<1 x i64> %a, i1 false) nounwind + ret <1 x i64> %vclz1.i +} + +define <1 x i64> @test_vclz_s64(<1 x i64> %a) nounwind readnone ssp { + ; CHECK-LABEL: test_vclz_s64: + %vclz1.i = tail call <1 x i64> @llvm.ctlz.v1i64(<1 x i64> %a, i1 false) nounwind + ret <1 x i64> %vclz1.i +} + define <16 x i8> @test_vclzq_u8(<16 x i8> %a) nounwind readnone ssp { ; CHECK-LABEL: test_vclzq_u8: ; CHECK: clz.16b v0, v0 @@ -96,12 +108,28 @@ define <4 x i32> @test_vclzq_s32(<4 x i32> %a) nounwind readnone ssp { ret <4 x i32> %vclz1.i } +define <2 x i64> @test_vclzq_u64(<2 x i64> %a) nounwind readnone ssp { + ; CHECK-LABEL: test_vclzq_u64: + %vclz1.i = tail call <2 x i64> @llvm.ctlz.v2i64(<2 x i64> %a, i1 false) nounwind + ret <2 x i64> %vclz1.i +} + +define <2 x i64> @test_vclzq_s64(<2 x i64> %a) nounwind readnone ssp { + ; CHECK-LABEL: test_vclzq_s64: + %vclz1.i = tail call <2 x i64> @llvm.ctlz.v2i64(<2 x i64> %a, i1 false) nounwind + ret <2 x i64> %vclz1.i +} + +declare <2 x i64> @llvm.ctlz.v2i64(<2 x i64>, i1) nounwind readnone + declare <4 x i32> @llvm.ctlz.v4i32(<4 x i32>, i1) nounwind readnone declare <8 x i16> @llvm.ctlz.v8i16(<8 x i16>, i1) nounwind readnone declare <16 x i8> @llvm.ctlz.v16i8(<16 x i8>, i1) nounwind readnone +declare <1 x i64> @llvm.ctlz.v1i64(<1 x i64>, i1) nounwind readnone + declare <2 x i32> @llvm.ctlz.v2i32(<2 x i32>, i1) nounwind readnone declare <4 x i16> @llvm.ctlz.v4i16(<4 x i16>, i1) nounwind readnone |