brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.9 KiB · e53b34b Raw
38 lines · plain
1// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \2// RUN:   dxil-pc-shadermodel6.3-library %s -fnative-half-type -fnative-int16-type \3// RUN:   -emit-llvm -disable-llvm-passes -o - | FileCheck %s \4// RUN:   --check-prefixes=CHECK,NATIVE_HALF \5// RUN:   -DFNATTRS="hidden noundef nofpclass(nan inf)" -DTARGET=dx6// 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="hidden noundef nofpclass(nan inf)" -DTARGET=dx10// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \11// RUN:   spirv-unknown-vulkan-compute %s -fnative-half-type -fnative-int16-type \12// RUN:   -emit-llvm -disable-llvm-passes -o - | FileCheck %s \13// RUN:   --check-prefixes=CHECK,NATIVE_HALF \14// RUN:   -DFNATTRS="hidden spir_func noundef nofpclass(nan inf)" -DTARGET=spv15// 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="hidden spir_func noundef nofpclass(nan inf)" -DTARGET=spv19 20// NATIVE_HALF: define [[FNATTRS]] <3 x half> @21// NATIVE_HALF: call reassoc nnan ninf nsz arcp afn <3 x half> @llvm.[[TARGET]].cross.v3f16(<3 x half>22// NATIVE_HALF: ret <3 x half> %hlsl.cross23// NO_HALF: define [[FNATTRS]] <3 x float> @24// NO_HALF: call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.[[TARGET]].cross.v3f32(<3 x float>25// NO_HALF: ret <3 x float> %hlsl.cross26half3 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 reassoc nnan ninf nsz arcp afn <3 x float> @llvm.[[TARGET]].cross.v3f32(33// CHECK: ret <3 x float> %hlsl.cross34float3 test_cross_float3(float3 p0, float3 p1)35{36    return cross(p0, p1);37}38