// REQUIRES: aarch64-registered-target // 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 // 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 // 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 // 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 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -o - %s >/dev/null #include #ifdef SVE_OVERLOADED_FORMS // A simple used,unused... macro, long enough to represent any SVE builtin. #define SVE_ACLE_FUNC(A1,A2_UNUSED,A3,A4_UNUSED) A1##A3 #else #define SVE_ACLE_FUNC(A1,A2,A3,A4) A1##A2##A3##A4 #endif svint8_t test_svtbl_s8(svint8_t data, svuint8_t indices) { // CHECK-LABEL: test_svtbl_s8 // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.tbl.nxv16i8( %data, %indices) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svtbl,_s8,,)(data, indices); } svint16_t test_svtbl_s16(svint16_t data, svuint16_t indices) { // CHECK-LABEL: test_svtbl_s16 // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.tbl.nxv8i16( %data, %indices) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svtbl,_s16,,)(data, indices); } svint32_t test_svtbl_s32(svint32_t data, svuint32_t indices) { // CHECK-LABEL: test_svtbl_s32 // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.tbl.nxv4i32( %data, %indices) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svtbl,_s32,,)(data, indices); } svint64_t test_svtbl_s64(svint64_t data, svuint64_t indices) { // CHECK-LABEL: test_svtbl_s64 // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.tbl.nxv2i64( %data, %indices) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svtbl,_s64,,)(data, indices); } svuint8_t test_svtbl_u8(svuint8_t data, svuint8_t indices) { // CHECK-LABEL: test_svtbl_u8 // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.tbl.nxv16i8( %data, %indices) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svtbl,_u8,,)(data, indices); } svuint16_t test_svtbl_u16(svuint16_t data, svuint16_t indices) { // CHECK-LABEL: test_svtbl_u16 // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.tbl.nxv8i16( %data, %indices) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svtbl,_u16,,)(data, indices); } svuint32_t test_svtbl_u32(svuint32_t data, svuint32_t indices) { // CHECK-LABEL: test_svtbl_u32 // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.tbl.nxv4i32( %data, %indices) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svtbl,_u32,,)(data, indices); } svuint64_t test_svtbl_u64(svuint64_t data, svuint64_t indices) { // CHECK-LABEL: test_svtbl_u64 // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.tbl.nxv2i64( %data, %indices) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svtbl,_u64,,)(data, indices); } svfloat16_t test_svtbl_f16(svfloat16_t data, svuint16_t indices) { // CHECK-LABEL: test_svtbl_f16 // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.tbl.nxv8f16( %data, %indices) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svtbl,_f16,,)(data, indices); } svfloat32_t test_svtbl_f32(svfloat32_t data, svuint32_t indices) { // CHECK-LABEL: test_svtbl_f32 // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.tbl.nxv4f32( %data, %indices) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svtbl,_f32,,)(data, indices); } svfloat64_t test_svtbl_f64(svfloat64_t data, svuint64_t indices) { // CHECK-LABEL: test_svtbl_f64 // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.tbl.nxv2f64( %data, %indices) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svtbl,_f64,,)(data, indices); }