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