Files
clang-p2996/clang/test/CodeGen/X86/amx_tile.c
Evgenii Kudriashov b43c97c2dd [Headers][X86] amxintrin.h - fix attributes according to Intel SDM (#122204)
`tileloadd`, `tileloaddt1` and `tilestored` are part of `amx-tile`
feature.

The problem is observed if `__tile_loadd` intrinsic is invoked,
`_tile_loadd_internal` requiring `amx-int8` is inlined into
`__tile_loadd` that has only `amx-tile`.
2025-01-10 17:52:09 +01:00

38 lines
1.3 KiB
C

// RUN: %clang_cc1 %s -flax-vector-conversions=none -ffreestanding -triple=x86_64-unknown-unknown -target-feature +amx-tile \
// RUN: -emit-llvm -o - -Werror -pedantic | FileCheck %s --check-prefixes=CHECK
#include <immintrin.h>
char buf[1024];
#define STRIDE 32
void test_tile_loadd(short row, short col) {
//CHECK-LABEL: @test_tile_loadd
//CHECK-DAG: call x86_amx @llvm.x86.tileloadd64.internal
//CHECK-DAG: call <256 x i32> @llvm.x86.cast.tile.to.vector.v256i32(x86_amx {{%.*}})
__tile1024i a = {row, col};
__tile_loadd(&a, buf, STRIDE);
}
void test_tile_stream_loadd(short row, short col) {
//CHECK-LABEL: @test_tile_stream_loadd
//CHECK-DAG: call x86_amx @llvm.x86.tileloaddt164.internal
//CHECK-DAG: call <256 x i32> @llvm.x86.cast.tile.to.vector.v256i32(x86_amx {{%.*}})
__tile1024i a = {row, col};
__tile_stream_loadd(&a, buf, STRIDE);
}
void test_tile_stored(__tile1024i c) {
//CHECK-LABEL: @test_tile_stored
//CHECK-DAG: call x86_amx @llvm.x86.cast.vector.to.tile.v256i32(<256 x i32> {{%.*}})
//CHECK-DAG: call void @llvm.x86.tilestored64.internal
__tile_stored(buf, STRIDE, c);
}
void test_tile_zero(__tile1024i c) {
//CHECK-LABEL: @test_tile_zero
//CHECK-DAG: call x86_amx @llvm.x86.tilezero.internal
//CHECK-DAG: call <256 x i32> @llvm.x86.cast.tile.to.vector.v256i32(x86_amx {{%.*}})
__tile_zero(&c);
}