65 lines · plain
1// RUN: %clang_cc1 -finclude-default-header -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 -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 -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 -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]] half @21// NATIVE_HALF: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn half @llvm.[[TARGET]].degrees.f16(22// NATIVE_HALF: ret half %hlsl.degrees23// NO_HALF: define [[FNATTRS]] float @24// NO_HALF: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn float @llvm.[[TARGET]].degrees.f32(25// NO_HALF: ret float %hlsl.degrees26half test_degrees_half(half p0) { return degrees(p0); }27// NATIVE_HALF: define [[FNATTRS]] <2 x half> @28// NATIVE_HALF: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <2 x half> @llvm.[[TARGET]].degrees.v2f1629// NATIVE_HALF: ret <2 x half> %hlsl.degrees30// NO_HALF: define [[FNATTRS]] <2 x float> @31// NO_HALF: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.[[TARGET]].degrees.v2f32(32// NO_HALF: ret <2 x float> %hlsl.degrees33half2 test_degrees_half2(half2 p0) { return degrees(p0); }34// NATIVE_HALF: define [[FNATTRS]] <3 x half> @35// NATIVE_HALF: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <3 x half> @llvm.[[TARGET]].degrees.v3f1636// NATIVE_HALF: ret <3 x half> %hlsl.degrees37// NO_HALF: define [[FNATTRS]] <3 x float> @38// NO_HALF: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.[[TARGET]].degrees.v3f32(39// NO_HALF: ret <3 x float> %hlsl.degrees40half3 test_degrees_half3(half3 p0) { return degrees(p0); }41// NATIVE_HALF: define [[FNATTRS]] <4 x half> @42// NATIVE_HALF: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <4 x half> @llvm.[[TARGET]].degrees.v4f1643// NATIVE_HALF: ret <4 x half> %hlsl.degrees44// NO_HALF: define [[FNATTRS]] <4 x float> @45// NO_HALF: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.[[TARGET]].degrees.v4f32(46// NO_HALF: ret <4 x float> %hlsl.degrees47half4 test_degrees_half4(half4 p0) { return degrees(p0); }48 49// CHECK: define [[FNATTRS]] float @50// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn float @llvm.[[TARGET]].degrees.f32(51// CHECK: ret float %hlsl.degrees52float test_degrees_float(float p0) { return degrees(p0); }53// CHECK: define [[FNATTRS]] <2 x float> @54// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.[[TARGET]].degrees.v2f3255// CHECK: ret <2 x float> %hlsl.degrees56float2 test_degrees_float2(float2 p0) { return degrees(p0); }57// CHECK: define [[FNATTRS]] <3 x float> @58// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.[[TARGET]].degrees.v3f3259// CHECK: ret <3 x float> %hlsl.degrees60float3 test_degrees_float3(float3 p0) { return degrees(p0); }61// CHECK: define [[FNATTRS]] <4 x float> @62// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.[[TARGET]].degrees.v4f3263// CHECK: ret <4 x float> %hlsl.degrees64float4 test_degrees_float4(float4 p0) { return degrees(p0); }65