=?utf-8?q?João?= Saffran <[email protected]>, =?utf-8?q?João?= Saffran <[email protected]> Message-ID: In-Reply-To: <llvm.org/llvm/llvm-project/pull/[email protected]>
llvmbot wrote: <!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-hlsl Author: None (joaosaffran) <details> <summary>Changes</summary> This patch changes the run lines for frac, tanh, degrees overload test to use -O1 instead of -disable-llvm-passes and rewrite the tests to actually look at the whole function. This work is part of https://github.com/llvm/llvm-project/issues/138016. --- Patch is 31.97 KiB, truncated to 20.00 KiB below, full version: https://github.com/llvm/llvm-project/pull/177657.diff 3 Files Affected: - (modified) clang/test/CodeGenHLSL/builtins/degrees-overloads.hlsl (+82-62) - (modified) clang/test/CodeGenHLSL/builtins/frac-overloads.hlsl (+82-62) - (modified) clang/test/CodeGenHLSL/builtins/tanh-overloads.hlsl (+82-42) ``````````diff diff --git a/clang/test/CodeGenHLSL/builtins/degrees-overloads.hlsl b/clang/test/CodeGenHLSL/builtins/degrees-overloads.hlsl index a1abf435ea10c..a9857dccb6e96 100644 --- a/clang/test/CodeGenHLSL/builtins/degrees-overloads.hlsl +++ b/clang/test/CodeGenHLSL/builtins/degrees-overloads.hlsl @@ -1,93 +1,113 @@ // RUN: %clang_cc1 -std=hlsl202x -finclude-default-header -triple \ -// RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ +// RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm\ // RUN: -o - | FileCheck %s --check-prefixes=CHECK \ // RUN: -DFNATTRS="hidden noundef nofpclass(nan inf)" -DTARGET=dx // RUN: %clang_cc1 -std=hlsl202x -finclude-default-header -triple \ -// RUN: spirv-unknown-vulkan-compute %s -emit-llvm -disable-llvm-passes \ +// RUN: spirv-unknown-vulkan-compute %s -emit-llvm\ // RUN: -o - | FileCheck %s --check-prefixes=CHECK \ // RUN: -DFNATTRS="hidden spir_func noundef nofpclass(nan inf)" -DTARGET=spv -// CHECK: define [[FNATTRS]] float @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn float @llvm.[[TARGET]].degrees.f32( -// CHECK: ret float %hlsl.degrees +// CHECK: define [[FNATTRS]] float @_Z19test_degrees_doubled( +// CHECK: [[CONVI:%.*]] = fptrunc {{.*}} double %{{.*}} to float +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} float @llvm.[[TARGET]].degrees.f32(float [[CONVI]]) +// CHECK: ret float [[HLSLDEGREESI]] float test_degrees_double(double p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <2 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.[[TARGET]].degrees.v2f32 -// CHECK: ret <2 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <2 x float> @_Z20test_degrees_double2Dv2_d( +// CHECK: [[CONVI:%.*]] = fptrunc {{.*}} <2 x double> %{{.*}} to <2 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <2 x float> @llvm.[[TARGET]].degrees.v2f32(<2 x float> [[CONVI]]) +// CHECK: ret <2 x float> [[HLSLDEGREESI]] float2 test_degrees_double2(double2 p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <3 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.[[TARGET]].degrees.v3f32 -// CHECK: ret <3 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <3 x float> @_Z20test_degrees_double3Dv3_d( +// CHECK: [[CONVI:%.*]] = fptrunc {{.*}} <3 x double> %{{.*}} to <3 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <3 x float> @llvm.[[TARGET]].degrees.v3f32(<3 x float> [[CONVI]]) +// CHECK: ret <3 x float> [[HLSLDEGREESI]] float3 test_degrees_double3(double3 p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <4 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.[[TARGET]].degrees.v4f32 -// CHECK: ret <4 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <4 x float> @_Z20test_degrees_double4Dv4_d( +// CHECK: [[CONVI:%.*]] = fptrunc {{.*}} <4 x double> %{{.*}} to <4 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <4 x float> @llvm.[[TARGET]].degrees.v4f32(<4 x float> [[CONVI]]) +// CHECK: ret <4 x float> [[HLSLDEGREESI]] float4 test_degrees_double4(double4 p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] float @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn float @llvm.[[TARGET]].degrees.f32( -// CHECK: ret float %hlsl.degrees +// CHECK: define [[FNATTRS]] float @_Z16test_degrees_inti( +// CHECK: [[CONVI:%.*]] = sitofp i32 %{{.*}} to float +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} float @llvm.[[TARGET]].degrees.f32(float [[CONVI]]) +// CHECK: ret float [[HLSLDEGREESI]] float test_degrees_int(int p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <2 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.[[TARGET]].degrees.v2f32 -// CHECK: ret <2 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <2 x float> @_Z17test_degrees_int2Dv2_i( +// CHECK: [[CONVI:%.*]] = sitofp <2 x i32> %{{.*}} to <2 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <2 x float> @llvm.[[TARGET]].degrees.v2f32(<2 x float> [[CONVI]]) +// CHECK: ret <2 x float> [[HLSLDEGREESI]] float2 test_degrees_int2(int2 p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <3 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.[[TARGET]].degrees.v3f32 -// CHECK: ret <3 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <3 x float> @_Z17test_degrees_int3Dv3_i( +// CHECK: [[CONVI:%.*]] = sitofp <3 x i32> %{{.*}} to <3 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <3 x float> @llvm.[[TARGET]].degrees.v3f32(<3 x float> [[CONVI]]) +// CHECK: ret <3 x float> [[HLSLDEGREESI]] float3 test_degrees_int3(int3 p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <4 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.[[TARGET]].degrees.v4f32 -// CHECK: ret <4 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <4 x float> @_Z17test_degrees_int4Dv4_i( +// CHECK: [[CONVI:%.*]] = sitofp <4 x i32> %{{.*}} to <4 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <4 x float> @llvm.[[TARGET]].degrees.v4f32(<4 x float> [[CONVI]]) +// CHECK: ret <4 x float> [[HLSLDEGREESI]] float4 test_degrees_int4(int4 p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] float @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn float @llvm.[[TARGET]].degrees.f32( -// CHECK: ret float %hlsl.degrees +// CHECK: define [[FNATTRS]] float @_Z17test_degrees_uintj( +// CHECK: [[CONVI:%.*]] = uitofp i32 %{{.*}} to float +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} float @llvm.[[TARGET]].degrees.f32(float [[CONVI]]) +// CHECK: ret float [[HLSLDEGREESI]] float test_degrees_uint(uint p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <2 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.[[TARGET]].degrees.v2f32 -// CHECK: ret <2 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <2 x float> @_Z18test_degrees_uint2Dv2_j( +// CHECK: [[CONVI:%.*]] = uitofp <2 x i32> %{{.*}} to <2 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <2 x float> @llvm.[[TARGET]].degrees.v2f32(<2 x float> [[CONVI]]) +// CHECK: ret <2 x float> [[HLSLDEGREESI]] float2 test_degrees_uint2(uint2 p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <3 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.[[TARGET]].degrees.v3f32 -// CHECK: ret <3 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <3 x float> @_Z18test_degrees_uint3Dv3_j( +// CHECK: [[CONVI:%.*]] = uitofp <3 x i32> %{{.*}} to <3 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <3 x float> @llvm.[[TARGET]].degrees.v3f32(<3 x float> [[CONVI]]) +// CHECK: ret <3 x float> [[HLSLDEGREESI]] float3 test_degrees_uint3(uint3 p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <4 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.[[TARGET]].degrees.v4f32 -// CHECK: ret <4 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <4 x float> @_Z18test_degrees_uint4Dv4_j( +// CHECK: [[CONVI:%.*]] = uitofp <4 x i32> %{{.*}} to <4 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <4 x float> @llvm.[[TARGET]].degrees.v4f32(<4 x float> [[CONVI]]) +// CHECK: ret <4 x float> [[HLSLDEGREESI]] float4 test_degrees_uint4(uint4 p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] float @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn float @llvm.[[TARGET]].degrees.f32( -// CHECK: ret float %hlsl.degrees +// CHECK: define [[FNATTRS]] float @_Z20test_degrees_int64_tl( +// CHECK: [[CONVI:%.*]] = sitofp i64 %{{.*}} to float +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} float @llvm.[[TARGET]].degrees.f32(float [[CONVI]]) +// CHECK: ret float [[HLSLDEGREESI]] float test_degrees_int64_t(int64_t p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <2 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.[[TARGET]].degrees.v2f32 -// CHECK: ret <2 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <2 x float> @_Z21test_degrees_int64_t2Dv2_l( +// CHECK: [[CONVI:%.*]] = sitofp <2 x i64> %{{.*}} to <2 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <2 x float> @llvm.[[TARGET]].degrees.v2f32(<2 x float> [[CONVI]]) +// CHECK: ret <2 x float> [[HLSLDEGREESI]] float2 test_degrees_int64_t2(int64_t2 p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <3 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.[[TARGET]].degrees.v3f32 -// CHECK: ret <3 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <3 x float> @_Z21test_degrees_int64_t3Dv3_l( +// CHECK: [[CONVI:%.*]] = sitofp <3 x i64> %{{.*}} to <3 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <3 x float> @llvm.[[TARGET]].degrees.v3f32(<3 x float> [[CONVI]]) +// CHECK: ret <3 x float> [[HLSLDEGREESI]] float3 test_degrees_int64_t3(int64_t3 p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <4 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.[[TARGET]].degrees.v4f32 -// CHECK: ret <4 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <4 x float> @_Z21test_degrees_int64_t4Dv4_l( +// CHECK: [[CONVI:%.*]] = sitofp <4 x i64> %{{.*}} to <4 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <4 x float> @llvm.[[TARGET]].degrees.v4f32(<4 x float> [[CONVI]]) +// CHECK: ret <4 x float> [[HLSLDEGREESI]] float4 test_degrees_int64_t4(int64_t4 p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] float @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn float @llvm.[[TARGET]].degrees.f32( -// CHECK: ret float %hlsl.degrees +// CHECK: define [[FNATTRS]] float @_Z21test_degrees_uint64_tm( +// CHECK: [[CONVI:%.*]] = uitofp i64 %{{.*}} to float +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} float @llvm.[[TARGET]].degrees.f32(float [[CONVI]]) +// CHECK: ret float [[HLSLDEGREESI]] float test_degrees_uint64_t(uint64_t p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <2 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.[[TARGET]].degrees.v2f32 -// CHECK: ret <2 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <2 x float> @_Z22test_degrees_uint64_t2Dv2_m( +// CHECK: [[CONVI:%.*]] = uitofp <2 x i64> %{{.*}} to <2 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <2 x float> @llvm.[[TARGET]].degrees.v2f32(<2 x float> [[CONVI]]) +// CHECK: ret <2 x float> [[HLSLDEGREESI]] float2 test_degrees_uint64_t2(uint64_t2 p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <3 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.[[TARGET]].degrees.v3f32 -// CHECK: ret <3 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <3 x float> @_Z22test_degrees_uint64_t3Dv3_m( +// CHECK: [[CONVI:%.*]] = uitofp <3 x i64> %{{.*}} to <3 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <3 x float> @llvm.[[TARGET]].degrees.v3f32(<3 x float> [[CONVI]]) +// CHECK: ret <3 x float> [[HLSLDEGREESI]] float3 test_degrees_uint64_t3(uint64_t3 p0) { return degrees(p0); } -// CHECK: define [[FNATTRS]] <4 x float> @ -// CHECK: %hlsl.degrees = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.[[TARGET]].degrees.v4f32 -// CHECK: ret <4 x float> %hlsl.degrees +// CHECK: define [[FNATTRS]] <4 x float> @_Z22test_degrees_uint64_t4Dv4_m( +// CHECK: [[CONVI:%.*]] = uitofp <4 x i64> %{{.*}} to <4 x float> +// CHECK: [[HLSLDEGREESI:%.*]] = call {{.*}} <4 x float> @llvm.[[TARGET]].degrees.v4f32(<4 x float> [[CONVI]]) +// CHECK: ret <4 x float> [[HLSLDEGREESI]] float4 test_degrees_uint64_t4(uint64_t4 p0) { return degrees(p0); } diff --git a/clang/test/CodeGenHLSL/builtins/frac-overloads.hlsl b/clang/test/CodeGenHLSL/builtins/frac-overloads.hlsl index 7a3f7b0069480..c75d0d9e50272 100644 --- a/clang/test/CodeGenHLSL/builtins/frac-overloads.hlsl +++ b/clang/test/CodeGenHLSL/builtins/frac-overloads.hlsl @@ -1,93 +1,113 @@ // RUN: %clang_cc1 -std=hlsl202x -finclude-default-header -x hlsl -triple \ -// RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ +// RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm \ // RUN: -o - | FileCheck %s --check-prefixes=CHECK \ // RUN: -DFNATTRS="hidden noundef nofpclass(nan inf)" -DTARGET=dx // RUN: %clang_cc1 -std=hlsl202x -finclude-default-header -x hlsl -triple \ -// RUN: spirv-unknown-vulkan-compute %s -emit-llvm -disable-llvm-passes \ +// RUN: spirv-unknown-vulkan-compute %s -emit-llvm \ // RUN: -o - | FileCheck %s --check-prefixes=CHECK \ // RUN: -DFNATTRS="hidden spir_func noundef nofpclass(nan inf)" -DTARGET=spv -// CHECK: define [[FNATTRS]] float @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn float @llvm.[[TARGET]].frac.f32( -// CHECK: ret float %hlsl.frac +// CHECK: define [[FNATTRS]] float @_Z16test_frac_doubled( +// CHECK: [[CONVI:%.*]] = fptrunc {{.*}} double %{{.*}} to float +// CHECK: [[HLSLFRACI:%.*]] = call {{.*}} float @llvm.[[TARGET]].frac.f32(float [[CONVI]]) +// CHECK: ret float [[HLSLFRACI]] float test_frac_double(double p0) { return frac(p0); } -// CHECK: define [[FNATTRS]] <2 x float> @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.[[TARGET]].frac.v2f32 -// CHECK: ret <2 x float> %hlsl.frac +// CHECK: define [[FNATTRS]] <2 x float> @_Z17test_frac_double2Dv2_d( +// CHECK: [[CONVI:%.*]] = fptrunc {{.*}} <2 x double> %{{.*}} to <2 x float> +// CHECK: [[HLSLFRACI:%.*]] = call {{.*}} <2 x float> @llvm.[[TARGET]].frac.v2f32(<2 x float> [[CONVI]]) +// CHECK: ret <2 x float> [[HLSLFRACI]] float2 test_frac_double2(double2 p0) { return frac(p0); } -// CHECK: define [[FNATTRS]] <3 x float> @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.[[TARGET]].frac.v3f32 -// CHECK: ret <3 x float> %hlsl.frac +// CHECK: define [[FNATTRS]] <3 x float> @_Z17test_frac_double3Dv3_d( +// CHECK: [[CONVI:%.*]] = fptrunc {{.*}} <3 x double> %{{.*}} to <3 x float> +// CHECK: [[HLSLFRACI:%.*]] = call {{.*}} <3 x float> @llvm.[[TARGET]].frac.v3f32(<3 x float> [[CONVI]]) +// CHECK: ret <3 x float> [[HLSLFRACI]] float3 test_frac_double3(double3 p0) { return frac(p0); } -// CHECK: define [[FNATTRS]] <4 x float> @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.[[TARGET]].frac.v4f32 -// CHECK: ret <4 x float> %hlsl.frac +// CHECK: define [[FNATTRS]] <4 x float> @_Z17test_frac_double4Dv4_d( +// CHECK: [[CONVI:%.*]] = fptrunc {{.*}} <4 x double> %{{.*}} to <4 x float> +// CHECK: [[HLSLFRACI:%.*]] = call {{.*}} <4 x float> @llvm.[[TARGET]].frac.v4f32(<4 x float> [[CONVI]]) +// CHECK: ret <4 x float> [[HLSLFRACI]] float4 test_frac_double4(double4 p0) { return frac(p0); } -// CHECK: define [[FNATTRS]] float @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn float @llvm.[[TARGET]].frac.f32( -// CHECK: ret float %hlsl.frac +// CHECK: define [[FNATTRS]] float @_Z13test_frac_inti( +// CHECK: [[CONVI:%.*]] = sitofp i32 %{{.*}} to float +// CHECK: [[HLSLFRACI:%.*]] = call {{.*}} float @llvm.[[TARGET]].frac.f32(float [[CONVI]]) +// CHECK: ret float [[HLSLFRACI]] float test_frac_int(int p0) { return frac(p0); } -// CHECK: define [[FNATTRS]] <2 x float> @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.[[TARGET]].frac.v2f32 -// CHECK: ret <2 x float> %hlsl.frac +// CHECK: define [[FNATTRS]] <2 x float> @_Z14test_frac_int2Dv2_i( +// CHECK: [[CONVI:%.*]] = sitofp <2 x i32> %{{.*}} to <2 x float> +// CHECK: [[HLSLFRACI:%.*]] = call {{.*}} <2 x float> @llvm.[[TARGET]].frac.v2f32(<2 x float> [[CONVI]]) +// CHECK: ret <2 x float> [[HLSLFRACI]] float2 test_frac_int2(int2 p0) { return frac(p0); } -// CHECK: define [[FNATTRS]] <3 x float> @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.[[TARGET]].frac.v3f32 -// CHECK: ret <3 x float> %hlsl.frac +// CHECK: define [[FNATTRS]] <3 x float> @_Z14test_frac_int3Dv3_i( +// CHECK: [[CONVI:%.*]] = sitofp <3 x i32> %{{.*}} to <3 x float> +// CHECK: [[HLSLFRACI:%.*]] = call {{.*}} <3 x float> @llvm.[[TARGET]].frac.v3f32(<3 x float> [[CONVI]]) +// CHECK: ret <3 x float> [[HLSLFRACI]] float3 test_frac_int3(int3 p0) { return frac(p0); } -// CHECK: define [[FNATTRS]] <4 x float> @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.[[TARGET]].frac.v4f32 -// CHECK: ret <4 x float> %hlsl.frac +// CHECK: define [[FNATTRS]] <4 x float> @_Z14test_frac_int4Dv4_i( +// CHECK: [[CONVI:%.*]] = sitofp <4 x i32> %{{.*}} to <4 x float> +// CHECK: [[HLSLFRACI:%.*]] = call {{.*}} <4 x float> @llvm.[[TARGET]].frac.v4f32(<4 x float> [[CONVI]]) +// CHECK: ret <4 x float> [[HLSLFRACI]] float4 test_frac_int4(int4 p0) { return frac(p0); } -// CHECK: define [[FNATTRS]] float @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn float @llvm.[[TARGET]].frac.f32( -// CHECK: ret float %hlsl.frac +// CHECK: define [[FNATTRS]] float @_Z14test_frac_uintj( +// CHECK: [[CONVI:%.*]] = uitofp i32 %{{.*}} to float +// CHECK: [[HLSLFRACI:%.*]] = call {{.*}} float @llvm.[[TARGET]].frac.f32(float [[CONVI]]) +// CHECK: ret float [[HLSLFRACI]] float test_frac_uint(uint p0) { return frac(p0); } -// CHECK: define [[FNATTRS]] <2 x float> @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.[[TARGET]].frac.v2f32 -// CHECK: ret <2 x float> %hlsl.frac +// CHECK: define [[FNATTRS]] <2 x float> @_Z15test_frac_uint2Dv2_j( +// CHECK: [[CONVI:%.*]] = uitofp <2 x i32> %{{.*}} to <2 x float> +// CHECK: [[HLSLFRACI:%.*]] = call {{.*}} <2 x float> @llvm.[[TARGET]].frac.v2f32(<2 x float> [[CONVI]]) +// CHECK: ret <2 x float> [[HLSLFRACI]] float2 test_frac_uint2(uint2 p0) { return frac(p0); } -// CHECK: define [[FNATTRS]] <3 x float> @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.[[TARGET]].frac.v3f32 -// CHECK: ret <3 x float> %hlsl.frac +// CHECK: define [[FNATTRS]] <3 x float> @_Z15test_frac_uint3Dv3_j( +// CHECK: [[CONVI:%.*]] = uitofp <3 x i32> %{{.*}} to <3 x float> +// CHECK: [[HLSLFRACI:%.*]] = call {{.*}} <3 x float> @llvm.[[TARGET]].frac.v3f32(<3 x float> [[CONVI]]) +// CHECK: ret <3 x float> [[HLSLFRACI]] float3 test_frac_uint3(uint3 p0) { return frac(p0); } -// CHECK: define [[FNATTRS]] <4 x float> @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.[[TARGET]].frac.v4f32 -// CHECK: ret <4 x float> %hlsl.frac +// CHECK: define [[FNATTRS]] <4 x float> @_Z15test_frac_uint4Dv4_j( +// CHECK: [[CONVI:%.*]] = uitofp <4 x i32> %{{.*}} to <4 x float> +// CHECK: [[HLSLFRACI:%.*]] = call {{.*}} <4 x float> @llvm.[[TARGET]].frac.v4f32(<4 x float> [[CONVI]]) +// CHECK: ret <4 x float> [[HLSLFRACI]] float4 test_frac_uint4(uint4 p0) { return frac(p0); } -// CHECK: define [[FNATTRS]] float @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn float @llvm.[[TARGET]].frac.f32( -// CHECK: ret float %hlsl.frac +// CHECK: define [[FNATTRS]] float @_Z17test_frac_int64_tl( +// CHECK: [[CONVI:%.*]] = sitofp i64 %{{.*}} to float +// CHECK: [[HLSLFRACI:%.*]] = call {{.*}} float @llvm.[[TARGET]].frac.f32(float [[CONVI]]) +// CHECK: ret float [[HLSLFRACI]] float test_frac_int64_t(int64_t p0) { return frac(p0); } -// CHECK: define [[FNATTRS]] <2 x float> @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.[[TARGET]].frac.v2f32 -// CHECK: ret <2 x float> %hlsl.frac +// CHECK: define [[FNATTRS]] <2 x float> @_Z18test_frac_int64_t2Dv2_l( +// CHECK: [[CONVI:%.*]] = sitofp <2 x i64> %{{.*}} to <2 x float> +// CHECK: [[HLSLFRACI:%.*]] = call {{.*}} <2 x float> @llvm.[[TARGET]].frac.v2f32(<2 x float> [[CONVI]]) +// CHECK: ret <2 x float> [[HLSLFRACI]] float2 test_frac_int64_t2(int64_t2 p0) { return frac(p0); } -// CHECK: define [[FNATTRS]] <3 x float> @ -// CHECK: %hlsl.frac = call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.[[TARGET]].frac.v3f32 -// CHECK: ret <3 x float> %hlsl.frac +// CHECK: define [[FNATTRS]] <3 x float> @_Z18test_frac_int64_t3Dv3_l( +// CHECK: [[CONVI:%.*]] = sitofp <3 x i64> %{{.*}} to <3 x float> +// CHECK: [[HLSLFRACI:%... [truncated] `````````` </details> https://github.com/llvm/llvm-project/pull/177657 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
