1 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve2 -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve2 -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - -x c++ %s | FileCheck %s
3 // RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64-none-linux-gnu -target-feature +sve2 -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - %s | FileCheck %s
4 // RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64-none-linux-gnu -target-feature +sve2 -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - -x c++ %s | FileCheck %s
5 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -fsyntax-only -verify -verify-ignore-unexpected=error %s
6 // RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -fsyntax-only -verify=overload -verify-ignore-unexpected=error %s
7 
8 #include <arm_sve.h>
9 
10 #ifdef SVE_OVERLOADED_FORMS
11 // A simple used,unused... macro, long enough to represent any SVE builtin.
12 #define SVE_ACLE_FUNC(A1,A2_UNUSED,A3,A4_UNUSED) A1##A3
13 #else
14 #define SVE_ACLE_FUNC(A1,A2,A3,A4) A1##A2##A3##A4
15 #endif
16 
test_svmovlt_s16(svint8_t op1)17 svint16_t test_svmovlt_s16(svint8_t op1)
18 {
19   // CHECK-LABEL: test_svmovlt_s16
20   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.sshllt.nxv8i16(<vscale x 16 x i8> %op1, i32 0)
21   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
22   // overload-warning@+2 {{implicit declaration of function 'svmovlt'}}
23   // expected-warning@+1 {{implicit declaration of function 'svmovlt_s16'}}
24   return SVE_ACLE_FUNC(svmovlt,_s16,,)(op1);
25 }
26 
test_svmovlt_s32(svint16_t op1)27 svint32_t test_svmovlt_s32(svint16_t op1)
28 {
29   // CHECK-LABEL: test_svmovlt_s32
30   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.sshllt.nxv4i32(<vscale x 8 x i16> %op1, i32 0)
31   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
32   // overload-warning@+2 {{implicit declaration of function 'svmovlt'}}
33   // expected-warning@+1 {{implicit declaration of function 'svmovlt_s32'}}
34   return SVE_ACLE_FUNC(svmovlt,_s32,,)(op1);
35 }
36 
test_svmovlt_s64(svint32_t op1)37 svint64_t test_svmovlt_s64(svint32_t op1)
38 {
39   // CHECK-LABEL: test_svmovlt_s64
40   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.sshllt.nxv2i64(<vscale x 4 x i32> %op1, i32 0)
41   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
42   // overload-warning@+2 {{implicit declaration of function 'svmovlt'}}
43   // expected-warning@+1 {{implicit declaration of function 'svmovlt_s64'}}
44   return SVE_ACLE_FUNC(svmovlt,_s64,,)(op1);
45 }
46 
test_svmovlt_u16(svuint8_t op1)47 svuint16_t test_svmovlt_u16(svuint8_t op1)
48 {
49   // CHECK-LABEL: test_svmovlt_u16
50   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.ushllt.nxv8i16(<vscale x 16 x i8> %op1, i32 0)
51   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
52   // overload-warning@+2 {{implicit declaration of function 'svmovlt'}}
53   // expected-warning@+1 {{implicit declaration of function 'svmovlt_u16'}}
54   return SVE_ACLE_FUNC(svmovlt,_u16,,)(op1);
55 }
56 
test_svmovlt_u32(svuint16_t op1)57 svuint32_t test_svmovlt_u32(svuint16_t op1)
58 {
59   // CHECK-LABEL: test_svmovlt_u32
60   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.ushllt.nxv4i32(<vscale x 8 x i16> %op1, i32 0)
61   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
62   // overload-warning@+2 {{implicit declaration of function 'svmovlt'}}
63   // expected-warning@+1 {{implicit declaration of function 'svmovlt_u32'}}
64   return SVE_ACLE_FUNC(svmovlt,_u32,,)(op1);
65 }
66 
test_svmovlt_u64(svuint32_t op1)67 svuint64_t test_svmovlt_u64(svuint32_t op1)
68 {
69   // CHECK-LABEL: test_svmovlt_u64
70   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.ushllt.nxv2i64(<vscale x 4 x i32> %op1, i32 0)
71   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
72   // overload-warning@+2 {{implicit declaration of function 'svmovlt'}}
73   // expected-warning@+1 {{implicit declaration of function 'svmovlt_u64'}}
74   return SVE_ACLE_FUNC(svmovlt,_u64,,)(op1);
75 }
76