38 lines · c
1// Check memory attribute for FP8 function2 3// REQUIRES: aarch64-registered-target4 5// RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +neon -target-feature +fp8 -target-feature +sve -target-feature +sme -target-feature +sme2 -target-feature +sme-f8f16 -target-feature +sme-f8f32 -target-feature +ssve-fp8fma -disable-O0-optnone -Werror -Wall -emit-llvm -o - %s | FileCheck %s6 7#include <arm_neon.h>8#include <arm_sme.h>9 10 11// SIMD12mfloat8x16_t test_vcvtq_mf8_f16_fpm(float16x8_t vn, float16x8_t vm, fpm_t fpm) {13 return vcvtq_mf8_f16_fpm(vn, vm, fpm);14}15 16// SVE17svfloat16_t test_svcvtlt2_f16_mf8(svmfloat8_t zn, fpm_t fpm) __arm_streaming {18 return svcvtlt2_f16_mf8_fpm(zn, fpm);19}20 21// CHECK: declare void @llvm.aarch64.set.fpmr(i64) [[ATTR3:#.*]]22// CHECK: declare <vscale x 8 x half> @llvm.aarch64.sve.fp8.cvtlt2.nxv8f16(<vscale x 16 x i8>) [[ATTR4:#.*]]23 24 25// SME26svfloat32_t test_svmlalltt_lane_f32_mf8(svfloat32_t zda, svmfloat8_t zn, svmfloat8_t zm, fpm_t fpm) __arm_streaming {27 return svmlalltt_lane_f32_mf8_fpm(zda, zn, zm, 7, fpm);28}29 30// CHECK: declare <vscale x 4 x float> @llvm.aarch64.sve.fp8.fmlalltt.lane.nxv4f32(<vscale x 4 x float>, <vscale x 16 x i8>, <vscale x 16 x i8>, i32 immarg) [[ATTR4]]31 32// CHECK: declare <16 x i8> @llvm.aarch64.neon.fp8.fcvtn.v16i8.v8f16(<8 x half>, <8 x half>) [[ATTR4]]33 34// CHECK: attributes [[ATTR1:#.*]] = {{{.*}}} 35// CHECK: attributes [[ATTR2:#.*]] = {{{.*}}}36// CHECK: attributes [[ATTR3]] = { nocallback nofree nosync nounwind willreturn memory(inaccessiblemem: write) }37// CHECK: attributes [[ATTR4]] = { nocallback nofree nosync nounwind willreturn memory(inaccessiblemem: read) }38