1 // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \
\r
2 // RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \
\r
3 // RUN: -emit-llvm -disable-llvm-passes -O3 -o - | FileCheck %s
\r
4 // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \
\r
5 // RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \
\r
6 // RUN: -D__HLSL_ENABLE_16_BIT -o - | FileCheck %s --check-prefix=NO_HALF
\r
8 // CHECK: define noundef half @
\r
9 // CHECK: call half @llvm.sin.f16(
\r
10 // NO_HALF: define noundef float @"?test_sin_half@@YA$halff@$halff@@Z"(
\r
11 // NO_HALF: call float @llvm.sin.f32(
\r
12 half test_sin_half ( half p0 ) {
\r
15 // CHECK: define noundef <2 x half> @
\r
16 // CHECK: call <2 x half> @llvm.sin.v2f16
\r
17 // NO_HALF: define noundef <2 x float> @"?test_sin_float2@@YAT?$__vector@M$01@__clang@@T12@@Z"(
\r
18 // NO_HALF: call <2 x float> @llvm.sin.v2f32(
\r
19 half2 test_sin_half2 ( half2 p0 ) {
\r
22 // CHECK: define noundef <3 x half> @
\r
23 // CHECK: call <3 x half> @llvm.sin.v3f16
\r
24 // NO_HALF: define noundef <3 x float> @"?test_sin_float3@@YAT?$__vector@M$02@__clang@@T12@@Z"(
\r
25 // NO_HALF: call <3 x float> @llvm.sin.v3f32(
\r
26 half3 test_sin_half3 ( half3 p0 ) {
\r
29 // CHECK: define noundef <4 x half> @
\r
30 // CHECK: call <4 x half> @llvm.sin.v4f16
\r
31 // NO_HALF: define noundef <4 x float> @"?test_sin_float4@@YAT?$__vector@M$03@__clang@@T12@@Z"(
\r
32 // NO_HALF: call <4 x float> @llvm.sin.v4f32(
\r
33 half4 test_sin_half4 ( half4 p0 ) {
\r
37 // CHECK: define noundef float @
\r
38 // CHECK: call float @llvm.sin.f32(
\r
39 float test_sin_float ( float p0 ) {
\r
42 // CHECK: define noundef <2 x float> @
\r
43 // CHECK: call <2 x float> @llvm.sin.v2f32
\r
44 float2 test_sin_float2 ( float2 p0 ) {
\r
47 // CHECK: define noundef <3 x float> @
\r
48 // CHECK: call <3 x float> @llvm.sin.v3f32
\r
49 float3 test_sin_float3 ( float3 p0 ) {
\r
52 // CHECK: define noundef <4 x float> @
\r
53 // CHECK: call <4 x float> @llvm.sin.v4f32
\r
54 float4 test_sin_float4 ( float4 p0 ) {
\r