1 // REQUIRES: aarch64-registered-target
2 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - %s | FileCheck %s
3 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - -x c++ %s | FileCheck %s
4 // RUN: %clang_cc1 -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
5 // RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - -x c++ %s | FileCheck %s
6 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -o - %s >/dev/null
7 #include <arm_sve.h>
8 
9 #ifdef SVE_OVERLOADED_FORMS
10 // A simple used,unused... macro, long enough to represent any SVE builtin.
11 #define SVE_ACLE_FUNC(A1,A2_UNUSED,A3,A4_UNUSED) A1##A3
12 #else
13 #define SVE_ACLE_FUNC(A1,A2,A3,A4) A1##A2##A3##A4
14 #endif
15 
test_svtbl_s8(svint8_t data,svuint8_t indices)16 svint8_t test_svtbl_s8(svint8_t data, svuint8_t indices)
17 {
18   // CHECK-LABEL: test_svtbl_s8
19   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.tbl.nxv16i8(<vscale x 16 x i8> %data, <vscale x 16 x i8> %indices)
20   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
21   return SVE_ACLE_FUNC(svtbl,_s8,,)(data, indices);
22 }
23 
test_svtbl_s16(svint16_t data,svuint16_t indices)24 svint16_t test_svtbl_s16(svint16_t data, svuint16_t indices)
25 {
26   // CHECK-LABEL: test_svtbl_s16
27   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.tbl.nxv8i16(<vscale x 8 x i16> %data, <vscale x 8 x i16> %indices)
28   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
29   return SVE_ACLE_FUNC(svtbl,_s16,,)(data, indices);
30 }
31 
test_svtbl_s32(svint32_t data,svuint32_t indices)32 svint32_t test_svtbl_s32(svint32_t data, svuint32_t indices)
33 {
34   // CHECK-LABEL: test_svtbl_s32
35   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.tbl.nxv4i32(<vscale x 4 x i32> %data, <vscale x 4 x i32> %indices)
36   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
37   return SVE_ACLE_FUNC(svtbl,_s32,,)(data, indices);
38 }
39 
test_svtbl_s64(svint64_t data,svuint64_t indices)40 svint64_t test_svtbl_s64(svint64_t data, svuint64_t indices)
41 {
42   // CHECK-LABEL: test_svtbl_s64
43   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.tbl.nxv2i64(<vscale x 2 x i64> %data, <vscale x 2 x i64> %indices)
44   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
45   return SVE_ACLE_FUNC(svtbl,_s64,,)(data, indices);
46 }
47 
test_svtbl_u8(svuint8_t data,svuint8_t indices)48 svuint8_t test_svtbl_u8(svuint8_t data, svuint8_t indices)
49 {
50   // CHECK-LABEL: test_svtbl_u8
51   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.tbl.nxv16i8(<vscale x 16 x i8> %data, <vscale x 16 x i8> %indices)
52   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
53   return SVE_ACLE_FUNC(svtbl,_u8,,)(data, indices);
54 }
55 
test_svtbl_u16(svuint16_t data,svuint16_t indices)56 svuint16_t test_svtbl_u16(svuint16_t data, svuint16_t indices)
57 {
58   // CHECK-LABEL: test_svtbl_u16
59   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.tbl.nxv8i16(<vscale x 8 x i16> %data, <vscale x 8 x i16> %indices)
60   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
61   return SVE_ACLE_FUNC(svtbl,_u16,,)(data, indices);
62 }
63 
test_svtbl_u32(svuint32_t data,svuint32_t indices)64 svuint32_t test_svtbl_u32(svuint32_t data, svuint32_t indices)
65 {
66   // CHECK-LABEL: test_svtbl_u32
67   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.tbl.nxv4i32(<vscale x 4 x i32> %data, <vscale x 4 x i32> %indices)
68   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
69   return SVE_ACLE_FUNC(svtbl,_u32,,)(data, indices);
70 }
71 
test_svtbl_u64(svuint64_t data,svuint64_t indices)72 svuint64_t test_svtbl_u64(svuint64_t data, svuint64_t indices)
73 {
74   // CHECK-LABEL: test_svtbl_u64
75   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.tbl.nxv2i64(<vscale x 2 x i64> %data, <vscale x 2 x i64> %indices)
76   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
77   return SVE_ACLE_FUNC(svtbl,_u64,,)(data, indices);
78 }
79 
test_svtbl_f16(svfloat16_t data,svuint16_t indices)80 svfloat16_t test_svtbl_f16(svfloat16_t data, svuint16_t indices)
81 {
82   // CHECK-LABEL: test_svtbl_f16
83   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.tbl.nxv8f16(<vscale x 8 x half> %data, <vscale x 8 x i16> %indices)
84   // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]]
85   return SVE_ACLE_FUNC(svtbl,_f16,,)(data, indices);
86 }
87 
test_svtbl_f32(svfloat32_t data,svuint32_t indices)88 svfloat32_t test_svtbl_f32(svfloat32_t data, svuint32_t indices)
89 {
90   // CHECK-LABEL: test_svtbl_f32
91   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.tbl.nxv4f32(<vscale x 4 x float> %data, <vscale x 4 x i32> %indices)
92   // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]]
93   return SVE_ACLE_FUNC(svtbl,_f32,,)(data, indices);
94 }
95 
test_svtbl_f64(svfloat64_t data,svuint64_t indices)96 svfloat64_t test_svtbl_f64(svfloat64_t data, svuint64_t indices)
97 {
98   // CHECK-LABEL: test_svtbl_f64
99   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.tbl.nxv2f64(<vscale x 2 x double> %data, <vscale x 2 x i64> %indices)
100   // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]]
101   return SVE_ACLE_FUNC(svtbl,_f64,,)(data, indices);
102 }
103