1 // RUN: %clang_cc1 -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 -o - | FileCheck %s \
\r
4 // RUN: --check-prefixes=CHECK,NATIVE_HALF \
\r
5 // RUN: -DFNATTRS=noundef -DTARGET=dx
\r
6 // RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \
\r
7 // RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \
\r
8 // RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF \
\r
9 // RUN: -DFNATTRS=noundef -DTARGET=dx
\r
10 // RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \
\r
11 // RUN: spirv-unknown-vulkan-compute %s -fnative-half-type \
\r
12 // RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \
\r
13 // RUN: --check-prefixes=CHECK,NATIVE_HALF \
\r
14 // RUN: -DFNATTRS="spir_func noundef" -DTARGET=spv
\r
15 // RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \
\r
16 // RUN: spirv-unknown-vulkan-compute %s -emit-llvm -disable-llvm-passes \
\r
17 // RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF \
\r
18 // RUN: -DFNATTRS="spir_func noundef" -DTARGET=spv
\r
20 // NATIVE_HALF: define [[FNATTRS]] <3 x half> @
\r
21 // NATIVE_HALF: call <3 x half> @llvm.[[TARGET]].cross.v3f16(<3 x half>
\r
22 // NATIVE_HALF: ret <3 x half> %hlsl.cross
\r
23 // NO_HALF: define [[FNATTRS]] <3 x float> @
\r
24 // NO_HALF: call <3 x float> @llvm.[[TARGET]].cross.v3f32(<3 x float>
\r
25 // NO_HALF: ret <3 x float> %hlsl.cross
\r
26 half3 test_cross_half3(half3 p0, half3 p1)
\r
28 return cross(p0, p1);
\r
31 // CHECK: define [[FNATTRS]] <3 x float> @
\r
32 // CHECK: %hlsl.cross = call <3 x float> @llvm.[[TARGET]].cross.v3f32(
\r
33 // CHECK: ret <3 x float> %hlsl.cross
\r
34 float3 test_cross_float3(float3 p0, float3 p1)
\r
36 return cross(p0, p1);
\r