|
| 1 | +// RUN: %clang_cc1 -std=hlsl2021 -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: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ |
| 6 | +// RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ |
| 7 | +// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF |
| 8 | + |
| 9 | +// NATIVE_HALF: define noundef half @ |
| 10 | +// NATIVE_HALF: call half @llvm.dx.saturate.f16( |
| 11 | +// NO_HALF: define noundef float @"?test_saturate_half |
| 12 | +// NO_HALF: call float @llvm.dx.saturate.f32( |
| 13 | +half test_saturate_half(half p0) { return saturate(p0); } |
| 14 | +// NATIVE_HALF: define noundef <2 x half> @ |
| 15 | +// NATIVE_HALF: call <2 x half> @llvm.dx.saturate.v2f16 |
| 16 | +// NO_HALF: define noundef <2 x float> @"?test_saturate_half2 |
| 17 | +// NO_HALF: call <2 x float> @llvm.dx.saturate.v2f32( |
| 18 | +half2 test_saturate_half2(half2 p0) { return saturate(p0); } |
| 19 | +// NATIVE_HALF: define noundef <3 x half> @ |
| 20 | +// NATIVE_HALF: call <3 x half> @llvm.dx.saturate.v3f16 |
| 21 | +// NO_HALF: define noundef <3 x float> @"?test_saturate_half3 |
| 22 | +// NO_HALF: call <3 x float> @llvm.dx.saturate.v3f32( |
| 23 | +half3 test_saturate_half3(half3 p0) { return saturate(p0); } |
| 24 | +// NATIVE_HALF: define noundef <4 x half> @ |
| 25 | +// NATIVE_HALF: call <4 x half> @llvm.dx.saturate.v4f16 |
| 26 | +// NO_HALF: define noundef <4 x float> @"?test_saturate_half4 |
| 27 | +// NO_HALF: call <4 x float> @llvm.dx.saturate.v4f32( |
| 28 | +half4 test_saturate_half4(half4 p0) { return saturate(p0); } |
| 29 | + |
| 30 | +// CHECK: define noundef float @"?test_saturate_float |
| 31 | +// CHECK: call float @llvm.dx.saturate.f32( |
| 32 | +float test_saturate_float(float p0) { return saturate(p0); } |
| 33 | +// CHECK: define noundef <2 x float> @"?test_saturate_float2 |
| 34 | +// CHECK: call <2 x float> @llvm.dx.saturate.v2f32 |
| 35 | +float2 test_saturate_float2(float2 p0) { return saturate(p0); } |
| 36 | +// CHECK: define noundef <3 x float> @"?test_saturate_float3 |
| 37 | +// CHECK: call <3 x float> @llvm.dx.saturate.v3f32 |
| 38 | +float3 test_saturate_float3(float3 p0) { return saturate(p0); } |
| 39 | +// CHECK: define noundef <4 x float> @"?test_saturate_float4 |
| 40 | +// CHECK: call <4 x float> @llvm.dx.saturate.v4f32 |
| 41 | +float4 test_saturate_float4(float4 p0) { return saturate(p0); } |
| 42 | + |
| 43 | +// CHECK: define noundef double @ |
| 44 | +// CHECK: call double @llvm.dx.saturate.f64( |
| 45 | +double test_saturate_double(double p0) { return saturate(p0); } |
| 46 | +// CHECK: define noundef <2 x double> @ |
| 47 | +// CHECK: call <2 x double> @llvm.dx.saturate.v2f64 |
| 48 | +double2 test_saturate_double2(double2 p0) { return saturate(p0); } |
| 49 | +// CHECK: define noundef <3 x double> @ |
| 50 | +// CHECK: call <3 x double> @llvm.dx.saturate.v3f64 |
| 51 | +double3 test_saturate_double3(double3 p0) { return saturate(p0); } |
| 52 | +// CHECK: define noundef <4 x double> @ |
| 53 | +// CHECK: call <4 x double> @llvm.dx.saturate.v4f64 |
| 54 | +double4 test_saturate_double4(double4 p0) { return saturate(p0); } |
0 commit comments