1 // RUN: %clang_cc1 -target-feature +f64mm -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -target-feature +f64mm -DSVE_OVERLOADED_FORMS -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - %s | FileCheck %s
3
4 #include <arm_sve.h>
5
6 #ifdef SVE_OVERLOADED_FORMS
7 // A simple used,unused... macro, long enough to represent any SVE builtin.
8 #define SVE_ACLE_FUNC(A1, A2_UNUSED, A3, A4_UNUSED) A1##A3
9 #else
10 #define SVE_ACLE_FUNC(A1, A2, A3, A4) A1##A2##A3##A4
11 #endif
12
test_svzip2_s8(svint8_t op1,svint8_t op2)13 svint8_t test_svzip2_s8(svint8_t op1, svint8_t op2) {
14 // CHECK-LABEL: test_svzip2_s8
15 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.zip2q.nxv16i8(<vscale x 16 x i8> %op1, <vscale x 16 x i8> %op2)
16 // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
17 return SVE_ACLE_FUNC(svzip2q, _s8, , )(op1, op2);
18 }
19
test_svzip2_s16(svint16_t op1,svint16_t op2)20 svint16_t test_svzip2_s16(svint16_t op1, svint16_t op2) {
21 // CHECK-LABEL: test_svzip2_s16
22 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.zip2q.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2)
23 // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
24 return SVE_ACLE_FUNC(svzip2q, _s16, , )(op1, op2);
25 }
26
test_svzip2_s32(svint32_t op1,svint32_t op2)27 svint32_t test_svzip2_s32(svint32_t op1, svint32_t op2) {
28 // CHECK-LABEL: test_svzip2_s32
29 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.zip2q.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %op2)
30 // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
31 return SVE_ACLE_FUNC(svzip2q, _s32, , )(op1, op2);
32 }
33
test_svzip2_s64(svint64_t op1,svint64_t op2)34 svint64_t test_svzip2_s64(svint64_t op1, svint64_t op2) {
35 // CHECK-LABEL: test_svzip2_s64
36 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.zip2q.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 2 x i64> %op2)
37 // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
38 return SVE_ACLE_FUNC(svzip2q, _s64, , )(op1, op2);
39 }
40
test_svzip2_u8(svuint8_t op1,svuint8_t op2)41 svuint8_t test_svzip2_u8(svuint8_t op1, svuint8_t op2) {
42 // CHECK-LABEL: test_svzip2_u8
43 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.zip2q.nxv16i8(<vscale x 16 x i8> %op1, <vscale x 16 x i8> %op2)
44 // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
45 return SVE_ACLE_FUNC(svzip2q, _u8, , )(op1, op2);
46 }
47
test_svzip2_u16(svuint16_t op1,svuint16_t op2)48 svuint16_t test_svzip2_u16(svuint16_t op1, svuint16_t op2) {
49 // CHECK-LABEL: test_svzip2_u16
50 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.zip2q.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2)
51 // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
52 return SVE_ACLE_FUNC(svzip2q, _u16, , )(op1, op2);
53 }
54
test_svzip2_u32(svuint32_t op1,svuint32_t op2)55 svuint32_t test_svzip2_u32(svuint32_t op1, svuint32_t op2) {
56 // CHECK-LABEL: test_svzip2_u32
57 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.zip2q.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %op2)
58 // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
59 return SVE_ACLE_FUNC(svzip2q, _u32, , )(op1, op2);
60 }
61
test_svzip2_u64(svuint64_t op1,svuint64_t op2)62 svuint64_t test_svzip2_u64(svuint64_t op1, svuint64_t op2) {
63 // CHECK-LABEL: test_svzip2_u64
64 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.zip2q.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 2 x i64> %op2)
65 // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
66 return SVE_ACLE_FUNC(svzip2q, _u64, , )(op1, op2);
67 }
68
test_svzip2_f16(svfloat16_t op1,svfloat16_t op2)69 svfloat16_t test_svzip2_f16(svfloat16_t op1, svfloat16_t op2) {
70 // CHECK-LABEL: test_svzip2_f16
71 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.zip2q.nxv8f16(<vscale x 8 x half> %op1, <vscale x 8 x half> %op2)
72 // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]]
73 return SVE_ACLE_FUNC(svzip2q, _f16, , )(op1, op2);
74 }
75
test_svzip2_f32(svfloat32_t op1,svfloat32_t op2)76 svfloat32_t test_svzip2_f32(svfloat32_t op1, svfloat32_t op2) {
77 // CHECK-LABEL: test_svzip2_f32
78 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.zip2q.nxv4f32(<vscale x 4 x float> %op1, <vscale x 4 x float> %op2)
79 // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]]
80 return SVE_ACLE_FUNC(svzip2q, _f32, , )(op1, op2);
81 }
82
test_svzip2_f64(svfloat64_t op1,svfloat64_t op2)83 svfloat64_t test_svzip2_f64(svfloat64_t op1, svfloat64_t op2) {
84 // CHECK-LABEL: test_svzip2_f64
85 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.zip2q.nxv2f64(<vscale x 2 x double> %op1, <vscale x 2 x double> %op2)
86 // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]]
87 return SVE_ACLE_FUNC(svzip2q, _f64, , )(op1, op2);
88 }
89