Author: Farzon Lotfi Date: 2024-02-29T10:41:40-08:00 New Revision: c9b1f1c337ce7c12664b670c0ba1022e5d5b8001
URL: https://github.com/llvm/llvm-project/commit/c9b1f1c337ce7c12664b670c0ba1022e5d5b8001 DIFF: https://github.com/llvm/llvm-project/commit/c9b1f1c337ce7c12664b670c0ba1022e5d5b8001.diff LOG: [HLSL] standardize builtin unit tests (#83340) This PR brings best practices mentioned to me on other prs and adds them to the existing builtin tests. Note to reviewers: I put this up in two commits because the clang-format changes is making it hard to tell what actually changed. use the first commit to check for correctness. Added: Modified: clang/test/CodeGenHLSL/builtins/abs.hlsl clang/test/CodeGenHLSL/builtins/ceil.hlsl clang/test/CodeGenHLSL/builtins/cos.hlsl clang/test/CodeGenHLSL/builtins/floor.hlsl clang/test/CodeGenHLSL/builtins/log.hlsl clang/test/CodeGenHLSL/builtins/log10.hlsl clang/test/CodeGenHLSL/builtins/log2.hlsl clang/test/CodeGenHLSL/builtins/max.hlsl clang/test/CodeGenHLSL/builtins/min.hlsl clang/test/CodeGenHLSL/builtins/pow.hlsl clang/test/CodeGenHLSL/builtins/sin.hlsl clang/test/CodeGenHLSL/builtins/trunc.hlsl clang/test/SemaHLSL/VectorOverloadResolution.hlsl Removed: ################################################################################ diff --git a/clang/test/CodeGenHLSL/builtins/abs.hlsl b/clang/test/CodeGenHLSL/builtins/abs.hlsl index 54c9d1a9dded45..ad65cab2721a2b 100644 --- a/clang/test/CodeGenHLSL/builtins/abs.hlsl +++ b/clang/test/CodeGenHLSL/builtins/abs.hlsl @@ -1,141 +1,93 @@ // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ -// RUN: -emit-llvm -disable-llvm-passes -O3 -o - | FileCheck %s +// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ +// RUN: --check-prefixes=CHECK,NATIVE_HALF // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ -// RUN: -o - | FileCheck %s --check-prefix=NO_HALF +// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF using hlsl::abs; #ifdef __HLSL_ENABLE_16_BIT -// CHECK: define noundef i16 @ -// CHECK: call i16 @llvm.abs.i16( -int16_t test_abs_int16_t ( int16_t p0 ) { - return abs ( p0 ); -} -// CHECK: define noundef <2 x i16> @ -// CHECK: call <2 x i16> @llvm.abs.v2i16( -int16_t2 test_abs_int16_t2 ( int16_t2 p0 ) { - return abs ( p0 ); -} -// CHECK: define noundef <3 x i16> @ -// CHECK: call <3 x i16> @llvm.abs.v3i16( -int16_t3 test_abs_int16_t3 ( int16_t3 p0 ) { - return abs ( p0 ); -} -// CHECK: define noundef <4 x i16> @ -// CHECK: call <4 x i16> @llvm.abs.v4i16( -int16_t4 test_abs_int16_t4 ( int16_t4 p0 ) { - return abs ( p0 ); -} +// NATIVE_HALF: define noundef i16 @ +// NATIVE_HALF: call i16 @llvm.abs.i16( +int16_t test_abs_int16_t(int16_t p0) { return abs(p0); } +// NATIVE_HALF: define noundef <2 x i16> @ +// NATIVE_HALF: call <2 x i16> @llvm.abs.v2i16( +int16_t2 test_abs_int16_t2(int16_t2 p0) { return abs(p0); } +// NATIVE_HALF: define noundef <3 x i16> @ +// NATIVE_HALF: call <3 x i16> @llvm.abs.v3i16( +int16_t3 test_abs_int16_t3(int16_t3 p0) { return abs(p0); } +// NATIVE_HALF: define noundef <4 x i16> @ +// NATIVE_HALF: call <4 x i16> @llvm.abs.v4i16( +int16_t4 test_abs_int16_t4(int16_t4 p0) { return abs(p0); } #endif // __HLSL_ENABLE_16_BIT -// CHECK: define noundef half @ -// CHECK: call half @llvm.fabs.f16( +// NATIVE_HALF: define noundef half @ +// NATIVE_HALF: call half @llvm.fabs.f16( // NO_HALF: define noundef float @"?test_abs_half@@YA$halff@$halff@@Z"( // NO_HALF: call float @llvm.fabs.f32(float %0) -half test_abs_half ( half p0 ) { - return abs ( p0 ); -} -// CHECK: define noundef <2 x half> @ -// CHECK: call <2 x half> @llvm.fabs.v2f16( +half test_abs_half(half p0) { return abs(p0); } +// NATIVE_HALF: define noundef <2 x half> @ +// NATIVE_HALF: call <2 x half> @llvm.fabs.v2f16( // NO_HALF: define noundef <2 x float> @"?test_abs_half2@@YAT?$__vector@$halff@$01@__clang@@T12@@Z"( // NO_HALF: call <2 x float> @llvm.fabs.v2f32( -half2 test_abs_half2 ( half2 p0 ) { - return abs ( p0 ); -} -// CHECK: define noundef <3 x half> @ -// CHECK: call <3 x half> @llvm.fabs.v3f16( +half2 test_abs_half2(half2 p0) { return abs(p0); } +// NATIVE_HALF: define noundef <3 x half> @ +// NATIVE_HALF: call <3 x half> @llvm.fabs.v3f16( // NO_HALF: define noundef <3 x float> @"?test_abs_half3@@YAT?$__vector@$halff@$02@__clang@@T12@@Z"( // NO_HALF: call <3 x float> @llvm.fabs.v3f32( -half3 test_abs_half3 ( half3 p0 ) { - return abs ( p0 ); -} -// CHECK: define noundef <4 x half> @ -// CHECK: call <4 x half> @llvm.fabs.v4f16( +half3 test_abs_half3(half3 p0) { return abs(p0); } +// NATIVE_HALF: define noundef <4 x half> @ +// NATIVE_HALF: call <4 x half> @llvm.fabs.v4f16( // NO_HALF: define noundef <4 x float> @"?test_abs_half4@@YAT?$__vector@$halff@$03@__clang@@T12@@Z"( // NO_HALF: call <4 x float> @llvm.fabs.v4f32( -half4 test_abs_half4 ( half4 p0 ) { - return abs ( p0 ); -} +half4 test_abs_half4(half4 p0) { return abs(p0); } // CHECK: define noundef i32 @ // CHECK: call i32 @llvm.abs.i32( -// NO_HALF: define noundef i32 @"?test_abs_int@@YAHH@Z" -int test_abs_int ( int p0 ) { - return abs ( p0 ); -} +int test_abs_int(int p0) { return abs(p0); } // CHECK: define noundef <2 x i32> @ // CHECK: call <2 x i32> @llvm.abs.v2i32( -int2 test_abs_int2 ( int2 p0 ) { - return abs ( p0 ); -} +int2 test_abs_int2(int2 p0) { return abs(p0); } // CHECK: define noundef <3 x i32> @ // CHECK: call <3 x i32> @llvm.abs.v3i32( -int3 test_abs_int3 ( int3 p0 ) { - return abs ( p0 ); -} +int3 test_abs_int3(int3 p0) { return abs(p0); } // CHECK: define noundef <4 x i32> @ // CHECK: call <4 x i32> @llvm.abs.v4i32( -int4 test_abs_int4 ( int4 p0 ) { - return abs ( p0 ); -} +int4 test_abs_int4(int4 p0) { return abs(p0); } // CHECK: define noundef float @ // CHECK: call float @llvm.fabs.f32( -float test_abs_float ( float p0 ) { - return abs ( p0 ); -} +float test_abs_float(float p0) { return abs(p0); } // CHECK: define noundef <2 x float> @ // CHECK: call <2 x float> @llvm.fabs.v2f32( -float2 test_abs_float2 ( float2 p0 ) { - return abs ( p0 ); -} +float2 test_abs_float2(float2 p0) { return abs(p0); } // CHECK: define noundef <3 x float> @ // CHECK: call <3 x float> @llvm.fabs.v3f32( -float3 test_abs_float3 ( float3 p0 ) { - return abs ( p0 ); -} +float3 test_abs_float3(float3 p0) { return abs(p0); } // CHECK: define noundef <4 x float> @ // CHECK: call <4 x float> @llvm.fabs.v4f32( -float4 test_abs_float4 ( float4 p0 ) { - return abs ( p0 ); -} +float4 test_abs_float4(float4 p0) { return abs(p0); } // CHECK: define noundef i64 @ // CHECK: call i64 @llvm.abs.i64( -int64_t test_abs_int64_t ( int64_t p0 ) { - return abs ( p0 ); -} +int64_t test_abs_int64_t(int64_t p0) { return abs(p0); } // CHECK: define noundef <2 x i64> @ // CHECK: call <2 x i64> @llvm.abs.v2i64( -int64_t2 test_abs_int64_t2 ( int64_t2 p0 ) { - return abs ( p0 ); -} +int64_t2 test_abs_int64_t2(int64_t2 p0) { return abs(p0); } // CHECK: define noundef <3 x i64> @ // CHECK: call <3 x i64> @llvm.abs.v3i64( -int64_t3 test_abs_int64_t3 ( int64_t3 p0 ) { - return abs ( p0 ); -} +int64_t3 test_abs_int64_t3(int64_t3 p0) { return abs(p0); } // CHECK: define noundef <4 x i64> @ // CHECK: call <4 x i64> @llvm.abs.v4i64( -int64_t4 test_abs_int64_t4 ( int64_t4 p0 ) { - return abs ( p0 ); -} +int64_t4 test_abs_int64_t4(int64_t4 p0) { return abs(p0); } // CHECK: define noundef double @ // CHECK: call double @llvm.fabs.f64( -double test_abs_double ( double p0 ) { - return abs ( p0 ); -} +double test_abs_double(double p0) { return abs(p0); } // CHECK: define noundef <2 x double> @ // CHECK: call <2 x double> @llvm.fabs.v2f64( -double2 test_abs_double2 ( double2 p0 ) { - return abs ( p0 ); -} +double2 test_abs_double2(double2 p0) { return abs(p0); } // CHECK: define noundef <3 x double> @ // CHECK: call <3 x double> @llvm.fabs.v3f64( -double3 test_abs_double3 ( double3 p0 ) { - return abs ( p0 ); -} +double3 test_abs_double3(double3 p0) { return abs(p0); } // CHECK: define noundef <4 x double> @ // CHECK: call <4 x double> @llvm.fabs.v4f64( -double4 test_abs_double4 ( double4 p0 ) { - return abs ( p0 ); -} +double4 test_abs_double4(double4 p0) { return abs(p0); } diff --git a/clang/test/CodeGenHLSL/builtins/ceil.hlsl b/clang/test/CodeGenHLSL/builtins/ceil.hlsl index f1672816e72bc2..06d0d4c2cf546d 100644 --- a/clang/test/CodeGenHLSL/builtins/ceil.hlsl +++ b/clang/test/CodeGenHLSL/builtins/ceil.hlsl @@ -1,79 +1,56 @@ // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ -// RUN: -emit-llvm -disable-llvm-passes -O3 -o - | FileCheck %s +// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ +// RUN: --check-prefixes=CHECK,NATIVE_HALF // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ -// RUN: -o - | FileCheck %s --check-prefix=NO_HALF +// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF using hlsl::ceil; -// CHECK: define noundef half @ -// CHECK: call half @llvm.ceil.f16( +// NATIVE_HALF: define noundef half @ +// NATIVE_HALF: call half @llvm.ceil.f16( // NO_HALF: define noundef float @"?test_ceil_half@@YA$halff@$halff@@Z"( // NO_HALF: call float @llvm.ceil.f32(float %0) -half test_ceil_half ( half p0 ) { - return ceil ( p0 ); -} -// CHECK: define noundef <2 x half> @ -// CHECK: call <2 x half> @llvm.ceil.v2f16( +half test_ceil_half(half p0) { return ceil(p0); } +// NATIVE_HALF: define noundef <2 x half> @ +// NATIVE_HALF: call <2 x half> @llvm.ceil.v2f16( // NO_HALF: define noundef <2 x float> @"?test_ceil_half2@@YAT?$__vector@$halff@$01@__clang@@T12@@Z"( // NO_HALF: call <2 x float> @llvm.ceil.v2f32( -half2 test_ceil_half2 ( half2 p0 ) { - return ceil ( p0 ); -} -// CHECK: define noundef <3 x half> @ -// CHECK: call <3 x half> @llvm.ceil.v3f16( +half2 test_ceil_half2(half2 p0) { return ceil(p0); } +// NATIVE_HALF: define noundef <3 x half> @ +// NATIVE_HALF: call <3 x half> @llvm.ceil.v3f16( // NO_HALF: define noundef <3 x float> @"?test_ceil_half3@@YAT?$__vector@$halff@$02@__clang@@T12@@Z"( // NO_HALF: call <3 x float> @llvm.ceil.v3f32( -half3 test_ceil_half3 ( half3 p0 ) { - return ceil ( p0 ); -} -// CHECK: define noundef <4 x half> @ -// CHECK: call <4 x half> @llvm.ceil.v4f16( +half3 test_ceil_half3(half3 p0) { return ceil(p0); } +// NATIVE_HALF: define noundef <4 x half> @ +// NATIVE_HALF: call <4 x half> @llvm.ceil.v4f16( // NO_HALF: define noundef <4 x float> @"?test_ceil_half4@@YAT?$__vector@$halff@$03@__clang@@T12@@Z"( // NO_HALF: call <4 x float> @llvm.ceil.v4f32( -half4 test_ceil_half4 ( half4 p0 ) { - return ceil ( p0 ); -} +half4 test_ceil_half4(half4 p0) { return ceil(p0); } // CHECK: define noundef float @ // CHECK: call float @llvm.ceil.f32( -float test_ceil_float ( float p0 ) { - return ceil ( p0 ); -} +float test_ceil_float(float p0) { return ceil(p0); } // CHECK: define noundef <2 x float> @ // CHECK: call <2 x float> @llvm.ceil.v2f32( -float2 test_ceil_float2 ( float2 p0 ) { - return ceil ( p0 ); -} +float2 test_ceil_float2(float2 p0) { return ceil(p0); } // CHECK: define noundef <3 x float> @ // CHECK: call <3 x float> @llvm.ceil.v3f32( -float3 test_ceil_float3 ( float3 p0 ) { - return ceil ( p0 ); -} +float3 test_ceil_float3(float3 p0) { return ceil(p0); } // CHECK: define noundef <4 x float> @ // CHECK: call <4 x float> @llvm.ceil.v4f32( -float4 test_ceil_float4 ( float4 p0 ) { - return ceil ( p0 ); -} +float4 test_ceil_float4(float4 p0) { return ceil(p0); } // CHECK: define noundef double @ // CHECK: call double @llvm.ceil.f64( -double test_ceil_double ( double p0 ) { - return ceil ( p0 ); -} +double test_ceil_double(double p0) { return ceil(p0); } // CHECK: define noundef <2 x double> @ // CHECK: call <2 x double> @llvm.ceil.v2f64( -double2 test_ceil_double2 ( double2 p0 ) { - return ceil ( p0 ); -} +double2 test_ceil_double2(double2 p0) { return ceil(p0); } // CHECK: define noundef <3 x double> @ // CHECK: call <3 x double> @llvm.ceil.v3f64( -double3 test_ceil_double3 ( double3 p0 ) { - return ceil ( p0 ); -} +double3 test_ceil_double3(double3 p0) { return ceil(p0); } // CHECK: define noundef <4 x double> @ // CHECK: call <4 x double> @llvm.ceil.v4f64( -double4 test_ceil_double4 ( double4 p0 ) { - return ceil ( p0 ); -} +double4 test_ceil_double4(double4 p0) { return ceil(p0); } diff --git a/clang/test/CodeGenHLSL/builtins/cos.hlsl b/clang/test/CodeGenHLSL/builtins/cos.hlsl index 2fc1571949b2c5..fb416fcaa49d76 100644 --- a/clang/test/CodeGenHLSL/builtins/cos.hlsl +++ b/clang/test/CodeGenHLSL/builtins/cos.hlsl @@ -1,56 +1,41 @@ // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ -// RUN: -emit-llvm -disable-llvm-passes -O3 -o - | FileCheck %s +// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ +// RUN: --check-prefixes=CHECK,NATIVE_HALF // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ -// RUN: -o - | FileCheck %s --check-prefix=NO_HALF +// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF -// CHECK: define noundef half @ -// CHECK: call half @llvm.cos.f16( -// NO_HALF: define noundef float @"?test_cos_half@@YA$halff@$halff@@Z"( +// NATIVE_HALF: define noundef half @ +// NATIVE_HALF: call half @llvm.cos.f16( +// NO_HALF: define noundef float @"?test_cos_half // NO_HALF: call float @llvm.cos.f32( -half test_cos_half ( half p0 ) { - return cos ( p0 ); -} -// CHECK: define noundef <2 x half> @ -// CHECK: call <2 x half> @llvm.cos.v2f16 -// NO_HALF: define noundef <2 x float> @"?test_cos_float2@@YAT?$__vector@M$01@__clang@@T12@@Z"( +half test_cos_half(half p0) { return cos(p0); } +// NATIVE_HALF: define noundef <2 x half> @ +// NATIVE_HALF: call <2 x half> @llvm.cos.v2f16 +// NO_HALF: define noundef <2 x float> @"?test_cos_half2 // NO_HALF: call <2 x float> @llvm.cos.v2f32( -half2 test_cos_half2 ( half2 p0 ) { - return cos ( p0 ); -} -// CHECK: define noundef <3 x half> @ -// CHECK: call <3 x half> @llvm.cos.v3f16 -// NO_HALF: define noundef <3 x float> @"?test_cos_float3@@YAT?$__vector@M$02@__clang@@T12@@Z"( +half2 test_cos_half2(half2 p0) { return cos(p0); } +// NATIVE_HALF: define noundef <3 x half> @ +// NATIVE_HALF: call <3 x half> @llvm.cos.v3f16 +// NO_HALF: define noundef <3 x float> @"?test_cos_half3 // NO_HALF: call <3 x float> @llvm.cos.v3f32( -half3 test_cos_half3 ( half3 p0 ) { - return cos ( p0 ); -} -// CHECK: define noundef <4 x half> @ -// CHECK: call <4 x half> @llvm.cos.v4f16 -// NO_HALF: define noundef <4 x float> @"?test_cos_float4@@YAT?$__vector@M$03@__clang@@T12@@Z"( +half3 test_cos_half3(half3 p0) { return cos(p0); } +// NATIVE_HALF: define noundef <4 x half> @ +// NATIVE_HALF: call <4 x half> @llvm.cos.v4f16 +// NO_HALF: define noundef <4 x float> @"?test_cos_half4 // NO_HALF: call <4 x float> @llvm.cos.v4f32( -half4 test_cos_half4 ( half4 p0 ) { - return cos ( p0 ); -} +half4 test_cos_half4(half4 p0) { return cos(p0); } -// CHECK: define noundef float @ +// CHECK: define noundef float @"?test_cos_float // CHECK: call float @llvm.cos.f32( -float test_cos_float ( float p0 ) { - return cos ( p0 ); -} -// CHECK: define noundef <2 x float> @ +float test_cos_float(float p0) { return cos(p0); } +// CHECK: define noundef <2 x float> @"?test_cos_float2 // CHECK: call <2 x float> @llvm.cos.v2f32 -float2 test_cos_float2 ( float2 p0 ) { - return cos ( p0 ); -} -// CHECK: define noundef <3 x float> @ +float2 test_cos_float2(float2 p0) { return cos(p0); } +// CHECK: define noundef <3 x float> @"?test_cos_float3 // CHECK: call <3 x float> @llvm.cos.v3f32 -float3 test_cos_float3 ( float3 p0 ) { - return cos ( p0 ); -} -// CHECK: define noundef <4 x float> @ +float3 test_cos_float3(float3 p0) { return cos(p0); } +// CHECK: define noundef <4 x float> @"?test_cos_float4 // CHECK: call <4 x float> @llvm.cos.v4f32 -float4 test_cos_float4 ( float4 p0 ) { - return cos ( p0 ); -} +float4 test_cos_float4(float4 p0) { return cos(p0); } diff --git a/clang/test/CodeGenHLSL/builtins/floor.hlsl b/clang/test/CodeGenHLSL/builtins/floor.hlsl index 357661761b762a..d2a2f6e52f1ec3 100644 --- a/clang/test/CodeGenHLSL/builtins/floor.hlsl +++ b/clang/test/CodeGenHLSL/builtins/floor.hlsl @@ -1,79 +1,56 @@ // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ -// RUN: -emit-llvm -disable-llvm-passes -O3 -o - | FileCheck %s +// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ +// RUN: --check-prefixes=CHECK,NATIVE_HALF // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ -// RUN: -o - | FileCheck %s --check-prefix=NO_HALF +// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF using hlsl::floor; -// CHECK: define noundef half @ -// CHECK: call half @llvm.floor.f16( +// NATIVE_HALF: define noundef half @ +// NATIVE_HALF: call half @llvm.floor.f16( // NO_HALF: define noundef float @"?test_floor_half@@YA$halff@$halff@@Z"( // NO_HALF: call float @llvm.floor.f32(float %0) -half test_floor_half ( half p0 ) { - return floor ( p0 ); -} -// CHECK: define noundef <2 x half> @ -// CHECK: call <2 x half> @llvm.floor.v2f16( +half test_floor_half(half p0) { return floor(p0); } +// NATIVE_HALF: define noundef <2 x half> @ +// NATIVE_HALF: call <2 x half> @llvm.floor.v2f16( // NO_HALF: define noundef <2 x float> @"?test_floor_half2@@YAT?$__vector@$halff@$01@__clang@@T12@@Z"( // NO_HALF: call <2 x float> @llvm.floor.v2f32( -half2 test_floor_half2 ( half2 p0 ) { - return floor ( p0 ); -} -// CHECK: define noundef <3 x half> @ -// CHECK: call <3 x half> @llvm.floor.v3f16( +half2 test_floor_half2(half2 p0) { return floor(p0); } +// NATIVE_HALF: define noundef <3 x half> @ +// NATIVE_HALF: call <3 x half> @llvm.floor.v3f16( // NO_HALF: define noundef <3 x float> @"?test_floor_half3@@YAT?$__vector@$halff@$02@__clang@@T12@@Z"( // NO_HALF: call <3 x float> @llvm.floor.v3f32( -half3 test_floor_half3 ( half3 p0 ) { - return floor ( p0 ); -} -// CHECK: define noundef <4 x half> @ -// CHECK: call <4 x half> @llvm.floor.v4f16( +half3 test_floor_half3(half3 p0) { return floor(p0); } +// NATIVE_HALF: define noundef <4 x half> @ +// NATIVE_HALF: call <4 x half> @llvm.floor.v4f16( // NO_HALF: define noundef <4 x float> @"?test_floor_half4@@YAT?$__vector@$halff@$03@__clang@@T12@@Z"( // NO_HALF: call <4 x float> @llvm.floor.v4f32( -half4 test_floor_half4 ( half4 p0 ) { - return floor ( p0 ); -} +half4 test_floor_half4(half4 p0) { return floor(p0); } // CHECK: define noundef float @ // CHECK: call float @llvm.floor.f32( -float test_floor_float ( float p0 ) { - return floor ( p0 ); -} +float test_floor_float(float p0) { return floor(p0); } // CHECK: define noundef <2 x float> @ // CHECK: call <2 x float> @llvm.floor.v2f32( -float2 test_floor_float2 ( float2 p0 ) { - return floor ( p0 ); -} +float2 test_floor_float2(float2 p0) { return floor(p0); } // CHECK: define noundef <3 x float> @ // CHECK: call <3 x float> @llvm.floor.v3f32( -float3 test_floor_float3 ( float3 p0 ) { - return floor ( p0 ); -} +float3 test_floor_float3(float3 p0) { return floor(p0); } // CHECK: define noundef <4 x float> @ // CHECK: call <4 x float> @llvm.floor.v4f32( -float4 test_floor_float4 ( float4 p0 ) { - return floor ( p0 ); -} +float4 test_floor_float4(float4 p0) { return floor(p0); } // CHECK: define noundef double @ // CHECK: call double @llvm.floor.f64( -double test_floor_double ( double p0 ) { - return floor ( p0 ); -} +double test_floor_double(double p0) { return floor(p0); } // CHECK: define noundef <2 x double> @ // CHECK: call <2 x double> @llvm.floor.v2f64( -double2 test_floor_double2 ( double2 p0 ) { - return floor ( p0 ); -} +double2 test_floor_double2(double2 p0) { return floor(p0); } // CHECK: define noundef <3 x double> @ // CHECK: call <3 x double> @llvm.floor.v3f64( -double3 test_floor_double3 ( double3 p0 ) { - return floor ( p0 ); -} +double3 test_floor_double3(double3 p0) { return floor(p0); } // CHECK: define noundef <4 x double> @ // CHECK: call <4 x double> @llvm.floor.v4f64( -double4 test_floor_double4 ( double4 p0 ) { - return floor ( p0 ); -} +double4 test_floor_double4(double4 p0) { return floor(p0); } diff --git a/clang/test/CodeGenHLSL/builtins/log.hlsl b/clang/test/CodeGenHLSL/builtins/log.hlsl index 6a8e4ac2e5f294..ecbdf1e98ac346 100644 --- a/clang/test/CodeGenHLSL/builtins/log.hlsl +++ b/clang/test/CodeGenHLSL/builtins/log.hlsl @@ -1,56 +1,41 @@ // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ -// RUN: -emit-llvm -disable-llvm-passes -O3 -o - | FileCheck %s +// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ +// RUN: --check-prefixes=CHECK,NATIVE_HALF // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ -// RUN: -o - | FileCheck %s --check-prefix=NO_HALF +// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF -// CHECK: define noundef half @ -// CHECK: call half @llvm.log.f16( +// NATIVE_HALF: define noundef half @ +// NATIVE_HALF: call half @llvm.log.f16( // NO_HALF: define noundef float @"?test_log_half@@YA$halff@$halff@@Z"( // NO_HALF: call float @llvm.log.f32( -half test_log_half ( half p0 ) { - return log ( p0 ); -} -// CHECK: define noundef <2 x half> @ -// CHECK: call <2 x half> @llvm.log.v2f16 -// NO_HALF: define noundef <2 x float> @"?test_log_float2@@YAT?$__vector@M$01@__clang@@T12@@Z"( +half test_log_half(half p0) { return log(p0); } +// NATIVE_HALF: define noundef <2 x half> @ +// NATIVE_HALF: call <2 x half> @llvm.log.v2f16 +// NO_HALF: define noundef <2 x float> @"?test_log_half2 // NO_HALF: call <2 x float> @llvm.log.v2f32( -half2 test_log_half2 ( half2 p0 ) { - return log ( p0 ); -} -// CHECK: define noundef <3 x half> @ -// CHECK: call <3 x half> @llvm.log.v3f16 -// NO_HALF: define noundef <3 x float> @"?test_log_float3@@YAT?$__vector@M$02@__clang@@T12@@Z"( +half2 test_log_half2(half2 p0) { return log(p0); } +// NATIVE_HALF: define noundef <3 x half> @ +// NATIVE_HALF: call <3 x half> @llvm.log.v3f16 +// NO_HALF: define noundef <3 x float> @"?test_log_half3 // NO_HALF: call <3 x float> @llvm.log.v3f32( -half3 test_log_half3 ( half3 p0 ) { - return log ( p0 ); -} -// CHECK: define noundef <4 x half> @ -// CHECK: call <4 x half> @llvm.log.v4f16 -// NO_HALF: define noundef <4 x float> @"?test_log_float4@@YAT?$__vector@M$03@__clang@@T12@@Z"( +half3 test_log_half3(half3 p0) { return log(p0); } +// NATIVE_HALF: define noundef <4 x half> @ +// NATIVE_HALF: call <4 x half> @llvm.log.v4f16 +// NO_HALF: define noundef <4 x float> @"?test_log_half4 // NO_HALF: call <4 x float> @llvm.log.v4f32( -half4 test_log_half4 ( half4 p0 ) { - return log ( p0 ); -} +half4 test_log_half4(half4 p0) { return log(p0); } -// CHECK: define noundef float @ +// CHECK: define noundef float @"?test_log_float // CHECK: call float @llvm.log.f32( -float test_log_float ( float p0 ) { - return log ( p0 ); -} -// CHECK: define noundef <2 x float> @ +float test_log_float(float p0) { return log(p0); } +// CHECK: define noundef <2 x float> @"?test_log_float2 // CHECK: call <2 x float> @llvm.log.v2f32 -float2 test_log_float2 ( float2 p0 ) { - return log ( p0 ); -} -// CHECK: define noundef <3 x float> @ +float2 test_log_float2(float2 p0) { return log(p0); } +// CHECK: define noundef <3 x float> @"?test_log_float3 // CHECK: call <3 x float> @llvm.log.v3f32 -float3 test_log_float3 ( float3 p0 ) { - return log ( p0 ); -} -// CHECK: define noundef <4 x float> @ +float3 test_log_float3(float3 p0) { return log(p0); } +// CHECK: define noundef <4 x float> @"?test_log_float4 // CHECK: call <4 x float> @llvm.log.v4f32 -float4 test_log_float4 ( float4 p0 ) { - return log ( p0 ); -} +float4 test_log_float4(float4 p0) { return log(p0); } diff --git a/clang/test/CodeGenHLSL/builtins/log10.hlsl b/clang/test/CodeGenHLSL/builtins/log10.hlsl index 8ce24fd530dd3c..638b86e8d5eaf7 100644 --- a/clang/test/CodeGenHLSL/builtins/log10.hlsl +++ b/clang/test/CodeGenHLSL/builtins/log10.hlsl @@ -1,56 +1,41 @@ // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ -// RUN: -emit-llvm -disable-llvm-passes -O3 -o - | FileCheck %s +// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ +// RUN: --check-prefixes=CHECK,NATIVE_HALF // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ -// RUN: -o - | FileCheck %s --check-prefix=NO_HALF +// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF -// CHECK: define noundef half @ -// CHECK: call half @llvm.log10.f16( -// NO_HALF: define noundef float @"?test_log10_half@@YA$halff@$halff@@Z"( +// NATIVE_HALF: define noundef half @ +// NATIVE_HALF: call half @llvm.log10.f16( +// NO_HALF: define noundef float @"?test_log10_half // NO_HALF: call float @llvm.log10.f32( -half test_log10_half ( half p0 ) { - return log10 ( p0 ); -} -// CHECK: define noundef <2 x half> @ -// CHECK: call <2 x half> @llvm.log10.v2f16 -// NO_HALF: define noundef <2 x float> @"?test_log10_float2@@YAT?$__vector@M$01@__clang@@T12@@Z"( +half test_log10_half(half p0) { return log10(p0); } +// NATIVE_HALF: define noundef <2 x half> @ +// NATIVE_HALF: call <2 x half> @llvm.log10.v2f16 +// NO_HALF: define noundef <2 x float> @"?test_log10_half2 // NO_HALF: call <2 x float> @llvm.log10.v2f32( -half2 test_log10_half2 ( half2 p0 ) { - return log10 ( p0 ); -} -// CHECK: define noundef <3 x half> @ -// CHECK: call <3 x half> @llvm.log10.v3f16 -// NO_HALF: define noundef <3 x float> @"?test_log10_float3@@YAT?$__vector@M$02@__clang@@T12@@Z"( +half2 test_log10_half2(half2 p0) { return log10(p0); } +// NATIVE_HALF: define noundef <3 x half> @ +// NATIVE_HALF: call <3 x half> @llvm.log10.v3f16 +// NO_HALF: define noundef <3 x float> @"?test_log10_half3 // NO_HALF: call <3 x float> @llvm.log10.v3f32( -half3 test_log10_half3 ( half3 p0 ) { - return log10 ( p0 ); -} -// CHECK: define noundef <4 x half> @ -// CHECK: call <4 x half> @llvm.log10.v4f16 -// NO_HALF: define noundef <4 x float> @"?test_log10_float4@@YAT?$__vector@M$03@__clang@@T12@@Z"( +half3 test_log10_half3(half3 p0) { return log10(p0); } +// NATIVE_HALF: define noundef <4 x half> @ +// NATIVE_HALF: call <4 x half> @llvm.log10.v4f16 +// NO_HALF: define noundef <4 x float> @"?test_log10_half4 // NO_HALF: call <4 x float> @llvm.log10.v4f32( -half4 test_log10_half4 ( half4 p0 ) { - return log10 ( p0 ); -} +half4 test_log10_half4(half4 p0) { return log10(p0); } -// CHECK: define noundef float @ +// CHECK: define noundef float @"?test_log10_float // CHECK: call float @llvm.log10.f32( -float test_log10_float ( float p0 ) { - return log10 ( p0 ); -} -// CHECK: define noundef <2 x float> @ +float test_log10_float(float p0) { return log10(p0); } +// CHECK: define noundef <2 x float> @"?test_log10_float2 // CHECK: call <2 x float> @llvm.log10.v2f32 -float2 test_log10_float2 ( float2 p0 ) { - return log10 ( p0 ); -} -// CHECK: define noundef <3 x float> @ +float2 test_log10_float2(float2 p0) { return log10(p0); } +// CHECK: define noundef <3 x float> @"?test_log10_float3 // CHECK: call <3 x float> @llvm.log10.v3f32 -float3 test_log10_float3 ( float3 p0 ) { - return log10 ( p0 ); -} -// CHECK: define noundef <4 x float> @ +float3 test_log10_float3(float3 p0) { return log10(p0); } +// CHECK: define noundef <4 x float> @"?test_log10_float4 // CHECK: call <4 x float> @llvm.log10.v4f32 -float4 test_log10_float4 ( float4 p0 ) { - return log10 ( p0 ); -} +float4 test_log10_float4(float4 p0) { return log10(p0); } diff --git a/clang/test/CodeGenHLSL/builtins/log2.hlsl b/clang/test/CodeGenHLSL/builtins/log2.hlsl index f0f0a6c7c50e81..9ed8185a06b04f 100644 --- a/clang/test/CodeGenHLSL/builtins/log2.hlsl +++ b/clang/test/CodeGenHLSL/builtins/log2.hlsl @@ -1,56 +1,41 @@ // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ -// RUN: -emit-llvm -disable-llvm-passes -O3 -o - | FileCheck %s +// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ +// RUN: --check-prefixes=CHECK,NATIVE_HALF // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ -// RUN: -o - | FileCheck %s --check-prefix=NO_HALF +// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF -// CHECK: define noundef half @ -// CHECK: call half @llvm.log2.f16( -// NO_HALF: define noundef float @"?test_log2_half@@YA$halff@$halff@@Z"( +// NATIVE_HALF: define noundef half @ +// NATIVE_HALF: call half @llvm.log2.f16( +// NO_HALF: define noundef float @"?test_log2_half // NO_HALF: call float @llvm.log2.f32( -half test_log2_half ( half p0 ) { - return log2 ( p0 ); -} -// CHECK: define noundef <2 x half> @ -// CHECK: call <2 x half> @llvm.log2.v2f16 -// NO_HALF: define noundef <2 x float> @"?test_log2_float2@@YAT?$__vector@M$01@__clang@@T12@@Z"( +half test_log2_half(half p0) { return log2(p0); } +// NATIVE_HALF: define noundef <2 x half> @ +// NATIVE_HALF: call <2 x half> @llvm.log2.v2f16 +// NO_HALF: define noundef <2 x float> @"?test_log2_half2 // NO_HALF: call <2 x float> @llvm.log2.v2f32( -half2 test_log2_half2 ( half2 p0 ) { - return log2 ( p0 ); -} -// CHECK: define noundef <3 x half> @ -// CHECK: call <3 x half> @llvm.log2.v3f16 -// NO_HALF: define noundef <3 x float> @"?test_log2_float3@@YAT?$__vector@M$02@__clang@@T12@@Z"( +half2 test_log2_half2(half2 p0) { return log2(p0); } +// NATIVE_HALF: define noundef <3 x half> @ +// NATIVE_HALF: call <3 x half> @llvm.log2.v3f16 +// NO_HALF: define noundef <3 x float> @"?test_log2_half3 // NO_HALF: call <3 x float> @llvm.log2.v3f32( -half3 test_log2_half3 ( half3 p0 ) { - return log2 ( p0 ); -} -// CHECK: define noundef <4 x half> @ -// CHECK: call <4 x half> @llvm.log2.v4f16 -// NO_HALF: define noundef <4 x float> @"?test_log2_float4@@YAT?$__vector@M$03@__clang@@T12@@Z"( +half3 test_log2_half3(half3 p0) { return log2(p0); } +// NATIVE_HALF: define noundef <4 x half> @ +// NATIVE_HALF: call <4 x half> @llvm.log2.v4f16 +// NO_HALF: define noundef <4 x float> @"?test_log2_half4 // NO_HALF: call <4 x float> @llvm.log2.v4f32( -half4 test_log2_half4 ( half4 p0 ) { - return log2 ( p0 ); -} +half4 test_log2_half4(half4 p0) { return log2(p0); } -// CHECK: define noundef float @ +// CHECK: define noundef float @"?test_log2_float // CHECK: call float @llvm.log2.f32( -float test_log2_float ( float p0 ) { - return log2 ( p0 ); -} -// CHECK: define noundef <2 x float> @ +float test_log2_float(float p0) { return log2(p0); } +// CHECK: define noundef <2 x float> @"?test_log2_float2 // CHECK: call <2 x float> @llvm.log2.v2f32 -float2 test_log2_float2 ( float2 p0 ) { - return log2 ( p0 ); -} -// CHECK: define noundef <3 x float> @ +float2 test_log2_float2(float2 p0) { return log2(p0); } +// CHECK: define noundef <3 x float> @"?test_log2_float3 // CHECK: call <3 x float> @llvm.log2.v3f32 -float3 test_log2_float3 ( float3 p0 ) { - return log2 ( p0 ); -} -// CHECK: define noundef <4 x float> @ +float3 test_log2_float3(float3 p0) { return log2(p0); } +// CHECK: define noundef <4 x float> @"?test_log2_float4 // CHECK: call <4 x float> @llvm.log2.v4f32 -float4 test_log2_float4 ( float4 p0 ) { - return log2 ( p0 ); -} +float4 test_log2_float4(float4 p0) { return log2(p0); } diff --git a/clang/test/CodeGenHLSL/builtins/max.hlsl b/clang/test/CodeGenHLSL/builtins/max.hlsl index d8879c3332fb88..272d1e8a10bd7c 100644 --- a/clang/test/CodeGenHLSL/builtins/max.hlsl +++ b/clang/test/CodeGenHLSL/builtins/max.hlsl @@ -1,206 +1,134 @@ // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ -// RUN: -emit-llvm -disable-llvm-passes -O3 -o - | FileCheck %s +// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ +// RUN: --check-prefixes=CHECK,NATIVE_HALF // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ -// RUN: -o - | FileCheck %s --check-prefix=NO_HALF +// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF #ifdef __HLSL_ENABLE_16_BIT -// CHECK: define noundef i16 @ -// CHECK: call i16 @llvm.smax.i16( -int16_t test_max_short ( int16_t p0, int16_t p1 ) { - return max ( p0, p1 ); -} -// CHECK: define noundef <2 x i16> @ -// CHECK: call <2 x i16> @llvm.smax.v2i16( -int16_t2 test_max_short2 ( int16_t2 p0, int16_t2 p1 ) { - return max ( p0, p1 ); -} -// CHECK: define noundef <3 x i16> @ -// CHECK: call <3 x i16> @llvm.smax.v3i16 -int16_t3 test_max_short3 ( int16_t3 p0, int16_t3 p1 ) { - return max ( p0, p1 ); -} -// CHECK: define noundef <4 x i16> @ -// CHECK: call <4 x i16> @llvm.smax.v4i16 -int16_t4 test_max_short4 ( int16_t4 p0, int16_t4 p1 ) { - return max ( p0, p1 ); -} +// NATIVE_HALF: define noundef i16 @ +// NATIVE_HALF: call i16 @llvm.smax.i16( +int16_t test_max_short(int16_t p0, int16_t p1) { return max(p0, p1); } +// NATIVE_HALF: define noundef <2 x i16> @ +// NATIVE_HALF: call <2 x i16> @llvm.smax.v2i16( +int16_t2 test_max_short2(int16_t2 p0, int16_t2 p1) { return max(p0, p1); } +// NATIVE_HALF: define noundef <3 x i16> @ +// NATIVE_HALF: call <3 x i16> @llvm.smax.v3i16 +int16_t3 test_max_short3(int16_t3 p0, int16_t3 p1) { return max(p0, p1); } +// NATIVE_HALF: define noundef <4 x i16> @ +// NATIVE_HALF: call <4 x i16> @llvm.smax.v4i16 +int16_t4 test_max_short4(int16_t4 p0, int16_t4 p1) { return max(p0, p1); } -// CHECK: define noundef i16 @ -// CHECK: call i16 @llvm.umax.i16( -uint16_t test_max_ushort ( uint16_t p0, uint16_t p1 ) { - return max ( p0, p1 ); -} -// CHECK: define noundef <2 x i16> @ -// CHECK: call <2 x i16> @llvm.umax.v2i16 -uint16_t2 test_max_ushort2 ( uint16_t2 p0, uint16_t2 p1 ) { - return max ( p0, p1 ); -} -// CHECK: define noundef <3 x i16> @ -// CHECK: call <3 x i16> @llvm.umax.v3i16 -uint16_t3 test_max_ushort3 ( uint16_t3 p0, uint16_t3 p1 ) { - return max ( p0, p1 ); -} -// CHECK: define noundef <4 x i16> @ -// CHECK: call <4 x i16> @llvm.umax.v4i16 -uint16_t4 test_max_ushort4 ( uint16_t4 p0, uint16_t4 p1 ) { - return max ( p0, p1 ); -} +// NATIVE_HALF: define noundef i16 @ +// NATIVE_HALF: call i16 @llvm.umax.i16( +uint16_t test_max_ushort(uint16_t p0, uint16_t p1) { return max(p0, p1); } +// NATIVE_HALF: define noundef <2 x i16> @ +// NATIVE_HALF: call <2 x i16> @llvm.umax.v2i16 +uint16_t2 test_max_ushort2(uint16_t2 p0, uint16_t2 p1) { return max(p0, p1); } +// NATIVE_HALF: define noundef <3 x i16> @ +// NATIVE_HALF: call <3 x i16> @llvm.umax.v3i16 +uint16_t3 test_max_ushort3(uint16_t3 p0, uint16_t3 p1) { return max(p0, p1); } +// NATIVE_HALF: define noundef <4 x i16> @ +// NATIVE_HALF: call <4 x i16> @llvm.umax.v4i16 +uint16_t4 test_max_ushort4(uint16_t4 p0, uint16_t4 p1) { return max(p0, p1); } #endif // CHECK: define noundef i32 @ // CHECK: call i32 @llvm.smax.i32( -int test_max_int ( int p0, int p1 ) { - return max ( p0, p1 ); -} +int test_max_int(int p0, int p1) { return max(p0, p1); } // CHECK: define noundef <2 x i32> @ // CHECK: call <2 x i32> @llvm.smax.v2i32 -int2 test_max_int2 ( int2 p0, int2 p1 ) { - return max ( p0, p1 ); -} +int2 test_max_int2(int2 p0, int2 p1) { return max(p0, p1); } // CHECK: define noundef <3 x i32> @ // CHECK: call <3 x i32> @llvm.smax.v3i32 -int3 test_max_int3 ( int3 p0, int3 p1 ) { - return max ( p0, p1 ); -} +int3 test_max_int3(int3 p0, int3 p1) { return max(p0, p1); } // CHECK: define noundef <4 x i32> @ // CHECK: call <4 x i32> @llvm.smax.v4i32 -int4 test_max_int4 ( int4 p0, int4 p1) { - return max ( p0, p1 ); -} +int4 test_max_int4(int4 p0, int4 p1) { return max(p0, p1); } // CHECK: define noundef i32 @ // CHECK: call i32 @llvm.umax.i32( -int test_max_uint ( uint p0, uint p1 ) { - return max ( p0, p1 ); -} +int test_max_uint(uint p0, uint p1) { return max(p0, p1); } // CHECK: define noundef <2 x i32> @ // CHECK: call <2 x i32> @llvm.umax.v2i32 -uint2 test_max_uint2 ( uint2 p0, uint2 p1 ) { - return max ( p0, p1 ); -} +uint2 test_max_uint2(uint2 p0, uint2 p1) { return max(p0, p1); } // CHECK: define noundef <3 x i32> @ // CHECK: call <3 x i32> @llvm.umax.v3i32 -uint3 test_max_uint3 ( uint3 p0, uint3 p1 ) { - return max ( p0, p1 ); -} +uint3 test_max_uint3(uint3 p0, uint3 p1) { return max(p0, p1); } // CHECK: define noundef <4 x i32> @ // CHECK: call <4 x i32> @llvm.umax.v4i32 -uint4 test_max_uint4 ( uint4 p0, uint4 p1) { - return max ( p0, p1 ); -} +uint4 test_max_uint4(uint4 p0, uint4 p1) { return max(p0, p1); } // CHECK: define noundef i64 @ // CHECK: call i64 @llvm.smax.i64( -int64_t test_max_long ( int64_t p0, int64_t p1 ) { - return max ( p0, p1 ); -} +int64_t test_max_long(int64_t p0, int64_t p1) { return max(p0, p1); } // CHECK: define noundef <2 x i64> @ // CHECK: call <2 x i64> @llvm.smax.v2i64 -int64_t2 test_max_long2 ( int64_t2 p0, int64_t2 p1 ) { - return max ( p0, p1 ); -} +int64_t2 test_max_long2(int64_t2 p0, int64_t2 p1) { return max(p0, p1); } // CHECK: define noundef <3 x i64> @ // CHECK: call <3 x i64> @llvm.smax.v3i64 -int64_t3 test_max_long3 ( int64_t3 p0, int64_t3 p1 ) { - return max ( p0, p1 ); -} +int64_t3 test_max_long3(int64_t3 p0, int64_t3 p1) { return max(p0, p1); } // CHECK: define noundef <4 x i64> @ // CHECK: call <4 x i64> @llvm.smax.v4i64 -int64_t4 test_max_long4 ( int64_t4 p0, int64_t4 p1) { - return max ( p0, p1 ); -} +int64_t4 test_max_long4(int64_t4 p0, int64_t4 p1) { return max(p0, p1); } // CHECK: define noundef i64 @ // CHECK: call i64 @llvm.umax.i64( -uint64_t test_max_long ( uint64_t p0, uint64_t p1 ) { - return max ( p0, p1 ); -} +uint64_t test_max_long(uint64_t p0, uint64_t p1) { return max(p0, p1); } // CHECK: define noundef <2 x i64> @ // CHECK: call <2 x i64> @llvm.umax.v2i64 -uint64_t2 test_max_long2 ( uint64_t2 p0, uint64_t2 p1 ) { - return max ( p0, p1 ); -} +uint64_t2 test_max_long2(uint64_t2 p0, uint64_t2 p1) { return max(p0, p1); } // CHECK: define noundef <3 x i64> @ // CHECK: call <3 x i64> @llvm.umax.v3i64 -uint64_t3 test_max_long3 ( uint64_t3 p0, uint64_t3 p1 ) { - return max ( p0, p1 ); -} +uint64_t3 test_max_long3(uint64_t3 p0, uint64_t3 p1) { return max(p0, p1); } // CHECK: define noundef <4 x i64> @ // CHECK: call <4 x i64> @llvm.umax.v4i64 -uint64_t4 test_max_long4 ( uint64_t4 p0, uint64_t4 p1) { - return max ( p0, p1 ); -} +uint64_t4 test_max_long4(uint64_t4 p0, uint64_t4 p1) { return max(p0, p1); } - -// CHECK: define noundef half @ -// CHECK: call half @llvm.maxnum.f16( -// NO_HALF: define noundef float @"?test_max_half@@YA$halff@$halff@0@Z"( +// NATIVE_HALF: define noundef half @ +// NATIVE_HALF: call half @llvm.maxnum.f16( +// NO_HALF: define noundef float @"?test_max_half // NO_HALF: call float @llvm.maxnum.f32( -half test_max_half ( half p0, half p1 ) { - return max ( p0, p1 ); -} -// CHECK: define noundef <2 x half> @ -// CHECK: call <2 x half> @llvm.maxnum.v2f16 -// NO_HALF: define noundef <2 x float> @"?test_max_float2@@YAT?$__vector@M$01@__clang@@T12@0@Z"( +half test_max_half(half p0, half p1) { return max(p0, p1); } +// NATIVE_HALF: define noundef <2 x half> @ +// NATIVE_HALF: call <2 x half> @llvm.maxnum.v2f16 +// NO_HALF: define noundef <2 x float> @"?test_max_half2 // NO_HALF: call <2 x float> @llvm.maxnum.v2f32( -half2 test_max_half2 ( half2 p0, half2 p1 ) { - return max ( p0, p1 ); -} -// CHECK: define noundef <3 x half> @ -// CHECK: call <3 x half> @llvm.maxnum.v3f16 -// NO_HALF: define noundef <3 x float> @"?test_max_float3@@YAT?$__vector@M$02@__clang@@T12@0@Z"( +half2 test_max_half2(half2 p0, half2 p1) { return max(p0, p1); } +// NATIVE_HALF: define noundef <3 x half> @ +// NATIVE_HALF: call <3 x half> @llvm.maxnum.v3f16 +// NO_HALF: define noundef <3 x float> @"?test_max_half3 // NO_HALF: call <3 x float> @llvm.maxnum.v3f32( -half3 test_max_half3 ( half3 p0, half3 p1 ) { - return max ( p0, p1 ); -} -// CHECK: define noundef <4 x half> @ -// CHECK: call <4 x half> @llvm.maxnum.v4f16 -// NO_HALF: define noundef <4 x float> @"?test_max_float4@@YAT?$__vector@M$03@__clang@@T12@0@Z"( +half3 test_max_half3(half3 p0, half3 p1) { return max(p0, p1); } +// NATIVE_HALF: define noundef <4 x half> @ +// NATIVE_HALF: call <4 x half> @llvm.maxnum.v4f16 +// NO_HALF: define noundef <4 x float> @"?test_max_half4 // NO_HALF: call <4 x float> @llvm.maxnum.v4f32( -half4 test_max_half4 ( half4 p0, half4 p1 ) { - return max ( p0, p1 ); -} +half4 test_max_half4(half4 p0, half4 p1) { return max(p0, p1); } -// CHECK: define noundef float @ +// CHECK: define noundef float @"?test_max_float // CHECK: call float @llvm.maxnum.f32( -float test_max_float ( float p0, float p1 ) { - return max ( p0, p1 ); -} -// CHECK: define noundef <2 x float> @ +float test_max_float(float p0, float p1) { return max(p0, p1); } +// CHECK: define noundef <2 x float> @"?test_max_float2 // CHECK: call <2 x float> @llvm.maxnum.v2f32 -float2 test_max_float2 ( float2 p0, float2 p1 ) { - return max ( p0, p1 ); -} -// CHECK: define noundef <3 x float> @ +float2 test_max_float2(float2 p0, float2 p1) { return max(p0, p1); } +// CHECK: define noundef <3 x float> @"?test_max_float3 // CHECK: call <3 x float> @llvm.maxnum.v3f32 -float3 test_max_float3 ( float3 p0, float3 p1 ) { - return max ( p0, p1 ); -} -// CHECK: define noundef <4 x float> @ +float3 test_max_float3(float3 p0, float3 p1) { return max(p0, p1); } +// CHECK: define noundef <4 x float> @"?test_max_float4 // CHECK: call <4 x float> @llvm.maxnum.v4f32 -float4 test_max_float4 ( float4 p0, float4 p1) { - return max ( p0, p1 ); -} +float4 test_max_float4(float4 p0, float4 p1) { return max(p0, p1); } // CHECK: define noundef double @ // CHECK: call double @llvm.maxnum.f64( -double test_max_double ( double p0, double p1 ) { - return max ( p0, p1 ); -} +double test_max_double(double p0, double p1) { return max(p0, p1); } // CHECK: define noundef <2 x double> @ // CHECK: call <2 x double> @llvm.maxnum.v2f64 -double2 test_max_double2 ( double2 p0, double2 p1 ) { - return max ( p0, p1 ); -} +double2 test_max_double2(double2 p0, double2 p1) { return max(p0, p1); } // CHECK: define noundef <3 x double> @ // CHECK: call <3 x double> @llvm.maxnum.v3f64 -double3 test_max_double3 ( double3 p0, double3 p1 ) { - return max ( p0, p1 ); -} +double3 test_max_double3(double3 p0, double3 p1) { return max(p0, p1); } // CHECK: define noundef <4 x double> @ // CHECK: call <4 x double> @llvm.maxnum.v4f64 -double4 test_max_double4 ( double4 p0, double4 p1) { - return max ( p0, p1 ); -} +double4 test_max_double4(double4 p0, double4 p1) { return max(p0, p1); } diff --git a/clang/test/CodeGenHLSL/builtins/min.hlsl b/clang/test/CodeGenHLSL/builtins/min.hlsl index 743053cbdd2620..a0c233dac4d5fc 100644 --- a/clang/test/CodeGenHLSL/builtins/min.hlsl +++ b/clang/test/CodeGenHLSL/builtins/min.hlsl @@ -1,207 +1,134 @@ // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ -// RUN: -emit-llvm -disable-llvm-passes -O3 -o - | FileCheck %s +// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ +// RUN: --check-prefixes=CHECK,NATIVE_HALF // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ -// RUN: -o - | FileCheck %s --check-prefix=NO_HALF +// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF #ifdef __HLSL_ENABLE_16_BIT -// CHECK: define noundef i16 @ -// CHECK: call i16 @llvm.smin.i16( -int16_t test_min_short ( int16_t p0, int16_t p1 ) { - return min ( p0, p1 ); -} -// CHECK: define noundef <2 x i16> @ -// CHECK: call <2 x i16> @llvm.smin.v2i16( -int16_t2 test_min_short2 ( int16_t2 p0, int16_t2 p1 ) { - return min ( p0, p1 ); -} -// CHECK: define noundef <3 x i16> @ -// CHECK: call <3 x i16> @llvm.smin.v3i16 -int16_t3 test_min_short3 ( int16_t3 p0, int16_t3 p1 ) { - return min ( p0, p1 ); -} -// CHECK: define noundef <4 x i16> @ -// CHECK: call <4 x i16> @llvm.smin.v4i16 -int16_t4 test_min_short4 ( int16_t4 p0, int16_t4 p1 ) { - return min ( p0, p1 ); -} +// NATIVE_HALF: define noundef i16 @ +// NATIVE_HALF: call i16 @llvm.smin.i16( +int16_t test_min_short(int16_t p0, int16_t p1) { return min(p0, p1); } +// NATIVE_HALF: define noundef <2 x i16> @ +// NATIVE_HALF: call <2 x i16> @llvm.smin.v2i16( +int16_t2 test_min_short2(int16_t2 p0, int16_t2 p1) { return min(p0, p1); } +// NATIVE_HALF: define noundef <3 x i16> @ +// NATIVE_HALF: call <3 x i16> @llvm.smin.v3i16 +int16_t3 test_min_short3(int16_t3 p0, int16_t3 p1) { return min(p0, p1); } +// NATIVE_HALF: define noundef <4 x i16> @ +// NATIVE_HALF: call <4 x i16> @llvm.smin.v4i16 +int16_t4 test_min_short4(int16_t4 p0, int16_t4 p1) { return min(p0, p1); } - -// CHECK: define noundef i16 @ -// CHECK: call i16 @llvm.umin.i16( -uint16_t test_min_ushort ( uint16_t p0, uint16_t p1 ) { - return min ( p0, p1 ); -} -// CHECK: define noundef <2 x i16> @ -// CHECK: call <2 x i16> @llvm.umin.v2i16 -uint16_t2 test_min_ushort2 ( uint16_t2 p0, uint16_t2 p1 ) { - return min ( p0, p1 ); -} -// CHECK: define noundef <3 x i16> @ -// CHECK: call <3 x i16> @llvm.umin.v3i16 -uint16_t3 test_min_ushort3 ( uint16_t3 p0, uint16_t3 p1 ) { - return min ( p0, p1 ); -} -// CHECK: define noundef <4 x i16> @ -// CHECK: call <4 x i16> @llvm.umin.v4i16 -uint16_t4 test_min_ushort4 ( uint16_t4 p0, uint16_t4 p1 ) { - return min ( p0, p1 ); -} +// NATIVE_HALF: define noundef i16 @ +// NATIVE_HALF: call i16 @llvm.umin.i16( +uint16_t test_min_ushort(uint16_t p0, uint16_t p1) { return min(p0, p1); } +// NATIVE_HALF: define noundef <2 x i16> @ +// NATIVE_HALF: call <2 x i16> @llvm.umin.v2i16 +uint16_t2 test_min_ushort2(uint16_t2 p0, uint16_t2 p1) { return min(p0, p1); } +// NATIVE_HALF: define noundef <3 x i16> @ +// NATIVE_HALF: call <3 x i16> @llvm.umin.v3i16 +uint16_t3 test_min_ushort3(uint16_t3 p0, uint16_t3 p1) { return min(p0, p1); } +// NATIVE_HALF: define noundef <4 x i16> @ +// NATIVE_HALF: call <4 x i16> @llvm.umin.v4i16 +uint16_t4 test_min_ushort4(uint16_t4 p0, uint16_t4 p1) { return min(p0, p1); } #endif // CHECK: define noundef i32 @ // CHECK: call i32 @llvm.smin.i32( -int test_min_int ( int p0, int p1 ) { - return min ( p0, p1 ); -} +int test_min_int(int p0, int p1) { return min(p0, p1); } // CHECK: define noundef <2 x i32> @ // CHECK: call <2 x i32> @llvm.smin.v2i32 -int2 test_min_int2 ( int2 p0, int2 p1 ) { - return min ( p0, p1 ); -} +int2 test_min_int2(int2 p0, int2 p1) { return min(p0, p1); } // CHECK: define noundef <3 x i32> @ // CHECK: call <3 x i32> @llvm.smin.v3i32 -int3 test_min_int3 ( int3 p0, int3 p1 ) { - return min ( p0, p1 ); -} +int3 test_min_int3(int3 p0, int3 p1) { return min(p0, p1); } // CHECK: define noundef <4 x i32> @ // CHECK: call <4 x i32> @llvm.smin.v4i32 -int4 test_min_int4 ( int4 p0, int4 p1) { - return min ( p0, p1 ); -} +int4 test_min_int4(int4 p0, int4 p1) { return min(p0, p1); } // CHECK: define noundef i32 @ // CHECK: call i32 @llvm.umin.i32( -int test_min_uint ( uint p0, uint p1 ) { - return min ( p0, p1 ); -} +int test_min_uint(uint p0, uint p1) { return min(p0, p1); } // CHECK: define noundef <2 x i32> @ // CHECK: call <2 x i32> @llvm.umin.v2i32 -uint2 test_min_uint2 ( uint2 p0, uint2 p1 ) { - return min ( p0, p1 ); -} +uint2 test_min_uint2(uint2 p0, uint2 p1) { return min(p0, p1); } // CHECK: define noundef <3 x i32> @ // CHECK: call <3 x i32> @llvm.umin.v3i32 -uint3 test_min_uint3 ( uint3 p0, uint3 p1 ) { - return min ( p0, p1 ); -} +uint3 test_min_uint3(uint3 p0, uint3 p1) { return min(p0, p1); } // CHECK: define noundef <4 x i32> @ // CHECK: call <4 x i32> @llvm.umin.v4i32 -uint4 test_min_uint4 ( uint4 p0, uint4 p1) { - return min ( p0, p1 ); -} +uint4 test_min_uint4(uint4 p0, uint4 p1) { return min(p0, p1); } // CHECK: define noundef i64 @ // CHECK: call i64 @llvm.smin.i64( -int64_t test_min_long ( int64_t p0, int64_t p1 ) { - return min ( p0, p1 ); -} +int64_t test_min_long(int64_t p0, int64_t p1) { return min(p0, p1); } // CHECK: define noundef <2 x i64> @ // CHECK: call <2 x i64> @llvm.smin.v2i64 -int64_t2 test_min_long2 ( int64_t2 p0, int64_t2 p1 ) { - return min ( p0, p1 ); -} +int64_t2 test_min_long2(int64_t2 p0, int64_t2 p1) { return min(p0, p1); } // CHECK: define noundef <3 x i64> @ // CHECK: call <3 x i64> @llvm.smin.v3i64 -int64_t3 test_min_long3 ( int64_t3 p0, int64_t3 p1 ) { - return min ( p0, p1 ); -} +int64_t3 test_min_long3(int64_t3 p0, int64_t3 p1) { return min(p0, p1); } // CHECK: define noundef <4 x i64> @ // CHECK: call <4 x i64> @llvm.smin.v4i64 -int64_t4 test_min_long4 ( int64_t4 p0, int64_t4 p1) { - return min ( p0, p1 ); -} +int64_t4 test_min_long4(int64_t4 p0, int64_t4 p1) { return min(p0, p1); } // CHECK: define noundef i64 @ // CHECK: call i64 @llvm.umin.i64( -uint64_t test_min_long ( uint64_t p0, uint64_t p1 ) { - return min ( p0, p1 ); -} +uint64_t test_min_long(uint64_t p0, uint64_t p1) { return min(p0, p1); } // CHECK: define noundef <2 x i64> @ // CHECK: call <2 x i64> @llvm.umin.v2i64 -uint64_t2 test_min_long2 ( uint64_t2 p0, uint64_t2 p1 ) { - return min ( p0, p1 ); -} +uint64_t2 test_min_long2(uint64_t2 p0, uint64_t2 p1) { return min(p0, p1); } // CHECK: define noundef <3 x i64> @ // CHECK: call <3 x i64> @llvm.umin.v3i64 -uint64_t3 test_min_long3 ( uint64_t3 p0, uint64_t3 p1 ) { - return min ( p0, p1 ); -} +uint64_t3 test_min_long3(uint64_t3 p0, uint64_t3 p1) { return min(p0, p1); } // CHECK: define noundef <4 x i64> @ // CHECK: call <4 x i64> @llvm.umin.v4i64 -uint64_t4 test_min_long4 ( uint64_t4 p0, uint64_t4 p1) { - return min ( p0, p1 ); -} - +uint64_t4 test_min_long4(uint64_t4 p0, uint64_t4 p1) { return min(p0, p1); } -// CHECK: define noundef half @ -// CHECK: call half @llvm.minnum.f16( -// NO_HALF: define noundef float @"?test_min_half@@YA$halff@$halff@0@Z"( +// NATIVE_HALF: define noundef half @ +// NATIVE_HALF: call half @llvm.minnum.f16( +// NO_HALF: define noundef float @"?test_min_half // NO_HALF: call float @llvm.minnum.f32( -half test_min_half ( half p0, half p1 ) { - return min ( p0, p1 ); -} -// CHECK: define noundef <2 x half> @ -// CHECK: call <2 x half> @llvm.minnum.v2f16 -// NO_HALF: define noundef <2 x float> @"?test_min_float2@@YAT?$__vector@M$01@__clang@@T12@0@Z"( +half test_min_half(half p0, half p1) { return min(p0, p1); } +// NATIVE_HALF: define noundef <2 x half> @ +// NATIVE_HALF: call <2 x half> @llvm.minnum.v2f16 +// NO_HALF: define noundef <2 x float> @"?test_min_half2 // NO_HALF: call <2 x float> @llvm.minnum.v2f32( -half2 test_min_half2 ( half2 p0, half2 p1 ) { - return min ( p0, p1 ); -} -// CHECK: define noundef <3 x half> @ -// CHECK: call <3 x half> @llvm.minnum.v3f16 -// NO_HALF: define noundef <3 x float> @"?test_min_float3@@YAT?$__vector@M$02@__clang@@T12@0@Z"( +half2 test_min_half2(half2 p0, half2 p1) { return min(p0, p1); } +// NATIVE_HALF: define noundef <3 x half> @ +// NATIVE_HALF: call <3 x half> @llvm.minnum.v3f16 +// NO_HALF: define noundef <3 x float> @"?test_min_half3 // NO_HALF: call <3 x float> @llvm.minnum.v3f32( -half3 test_min_half3 ( half3 p0, half3 p1 ) { - return min ( p0, p1 ); -} -// CHECK: define noundef <4 x half> @ -// CHECK: call <4 x half> @llvm.minnum.v4f16 -// NO_HALF: define noundef <4 x float> @"?test_min_float4@@YAT?$__vector@M$03@__clang@@T12@0@Z"( +half3 test_min_half3(half3 p0, half3 p1) { return min(p0, p1); } +// NATIVE_HALF: define noundef <4 x half> @ +// NATIVE_HALF: call <4 x half> @llvm.minnum.v4f16 +// NO_HALF: define noundef <4 x float> @"?test_min_half4 // NO_HALF: call <4 x float> @llvm.minnum.v4f32( -half4 test_min_half4 ( half4 p0, half4 p1 ) { - return min ( p0, p1 ); -} +half4 test_min_half4(half4 p0, half4 p1) { return min(p0, p1); } // CHECK: define noundef float @ // CHECK: call float @llvm.minnum.f32( -float test_min_float ( float p0, float p1 ) { - return min ( p0, p1 ); -} +float test_min_float(float p0, float p1) { return min(p0, p1); } // CHECK: define noundef <2 x float> @ // CHECK: call <2 x float> @llvm.minnum.v2f32 -float2 test_min_float2 ( float2 p0, float2 p1 ) { - return min ( p0, p1 ); -} +float2 test_min_float2(float2 p0, float2 p1) { return min(p0, p1); } // CHECK: define noundef <3 x float> @ // CHECK: call <3 x float> @llvm.minnum.v3f32 -float3 test_min_float3 ( float3 p0, float3 p1 ) { - return min ( p0, p1 ); -} +float3 test_min_float3(float3 p0, float3 p1) { return min(p0, p1); } // CHECK: define noundef <4 x float> @ // CHECK: call <4 x float> @llvm.minnum.v4f32 -float4 test_min_float4 ( float4 p0, float4 p1) { - return min ( p0, p1 ); -} +float4 test_min_float4(float4 p0, float4 p1) { return min(p0, p1); } // CHECK: define noundef double @ // CHECK: call double @llvm.minnum.f64( -double test_min_double ( double p0, double p1 ) { - return min ( p0, p1 ); -} +double test_min_double(double p0, double p1) { return min(p0, p1); } // CHECK: define noundef <2 x double> @ // CHECK: call <2 x double> @llvm.minnum.v2f64 -double2 test_min_double2 ( double2 p0, double2 p1 ) { - return min ( p0, p1 ); -} +double2 test_min_double2(double2 p0, double2 p1) { return min(p0, p1); } // CHECK: define noundef <3 x double> @ // CHECK: call <3 x double> @llvm.minnum.v3f64 -double3 test_min_double3 ( double3 p0, double3 p1 ) { - return min ( p0, p1 ); -} +double3 test_min_double3(double3 p0, double3 p1) { return min(p0, p1); } // CHECK: define noundef <4 x double> @ // CHECK: call <4 x double> @llvm.minnum.v4f64 -double4 test_min_double4 ( double4 p0, double4 p1) { - return min ( p0, p1 ); -} +double4 test_min_double4(double4 p0, double4 p1) { return min(p0, p1); } diff --git a/clang/test/CodeGenHLSL/builtins/pow.hlsl b/clang/test/CodeGenHLSL/builtins/pow.hlsl index 86bfe98058a6eb..e996ca2f336410 100644 --- a/clang/test/CodeGenHLSL/builtins/pow.hlsl +++ b/clang/test/CodeGenHLSL/builtins/pow.hlsl @@ -1,89 +1,54 @@ // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ -// RUN: -emit-llvm -disable-llvm-passes -O3 -o - | FileCheck %s +// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ +// RUN: --check-prefixes=CHECK,NATIVE_HALF // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ -// RUN: -o - | FileCheck %s --check-prefix=NO_HALF +// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF -// CHECK: define noundef half @ -// CHECK: call half @llvm.pow.f16( -// NO_HALF: define noundef float @"?test_pow_half@@YA$halff@$halff@0@Z"( +// NATIVE_HALF: define noundef half @ +// NATIVE_HALF: call half @llvm.pow.f16( +// NO_HALF: define noundef float @"?test_pow_half // NO_HALF: call float @llvm.pow.f32( -half test_pow_half(half p0, half p1) -{ - return pow(p0, p1); -} -// CHECK: define noundef <2 x half> @"?test_pow_half2@@YAT?$__vector@$f16@$01@__clang@@T12@0@Z"( -// CHECK: call <2 x half> @llvm.pow.v2f16 -// NO_HALF: define noundef <2 x float> @"?test_pow_float2@@YAT?$__vector@M$01@__clang@@T12@0@Z"( +half test_pow_half(half p0, half p1) { return pow(p0, p1); } +// NATIVE_HALF: define noundef <2 x half> @"?test_pow_half2 +// NATIVE_HALF: call <2 x half> @llvm.pow.v2f16 +// NO_HALF: define noundef <2 x float> @"?test_pow_half2 // NO_HALF: call <2 x float> @llvm.pow.v2f32( -half2 test_pow_half2(half2 p0, half2 p1) -{ - return pow(p0, p1); -} -// CHECK: define noundef <3 x half> @"?test_pow_half3@@YAT?$__vector@$f16@$02@__clang@@T12@0@Z"( -// CHECK: call <3 x half> @llvm.pow.v3f16 -// NO_HALF: define noundef <3 x float> @"?test_pow_float3@@YAT?$__vector@M$02@__clang@@T12@0@Z"( +half2 test_pow_half2(half2 p0, half2 p1) { return pow(p0, p1); } +// NATIVE_HALF: define noundef <3 x half> @"?test_pow_half3 +// NATIVE_HALF: call <3 x half> @llvm.pow.v3f16 +// NO_HALF: define noundef <3 x float> @"?test_pow_half3 // NO_HALF: call <3 x float> @llvm.pow.v3f32( -half3 test_pow_half3(half3 p0, half3 p1) -{ - return pow(p0, p1); -} -// CHECK: define noundef <4 x half> @"?test_pow_half4@@YAT?$__vector@$f16@$03@__clang@@T12@0@Z"( -// CHECK: call <4 x half> @llvm.pow.v4f16 -// NO_HALF: define noundef <4 x float> @"?test_pow_float4@@YAT?$__vector@M$03@__clang@@T12@0@Z"( +half3 test_pow_half3(half3 p0, half3 p1) { return pow(p0, p1); } +// NATIVE_HALF: define noundef <4 x half> @"?test_pow_half4 +// NATIVE_HALF: call <4 x half> @llvm.pow.v4f16 +// NO_HALF: define noundef <4 x float> @"?test_pow_half4 // NO_HALF: call <4 x float> @llvm.pow.v4f32( -half4 test_pow_half4(half4 p0, half4 p1) -{ - return pow(p0, p1); -} +half4 test_pow_half4(half4 p0, half4 p1) { return pow(p0, p1); } -// CHECK: define noundef float @"?test_pow_float@@YAMMM@Z"( +// CHECK: define noundef float @"?test_pow_float // CHECK: call float @llvm.pow.f32( -float test_pow_float(float p0, float p1) -{ - return pow(p0, p1); -} -// CHECK: define noundef <2 x float> @"?test_pow_float2@@YAT?$__vector@M$01@__clang@@T12@0@Z"( +float test_pow_float(float p0, float p1) { return pow(p0, p1); } +// CHECK: define noundef <2 x float> @"?test_pow_float2 // CHECK: call <2 x float> @llvm.pow.v2f32 -float2 test_pow_float2(float2 p0, float2 p1) -{ - return pow(p0, p1); -} -// CHECK: define noundef <3 x float> @"?test_pow_float3@@YAT?$__vector@M$02@__clang@@T12@0@Z"( +float2 test_pow_float2(float2 p0, float2 p1) { return pow(p0, p1); } +// CHECK: define noundef <3 x float> @"?test_pow_float3 // CHECK: call <3 x float> @llvm.pow.v3f32 -float3 test_pow_float3(float3 p0, float3 p1) -{ - return pow(p0, p1); -} -// CHECK: define noundef <4 x float> @"?test_pow_float4@@YAT?$__vector@M$03@__clang@@T12@0@Z"( +float3 test_pow_float3(float3 p0, float3 p1) { return pow(p0, p1); } +// CHECK: define noundef <4 x float> @"?test_pow_float4 // CHECK: call <4 x float> @llvm.pow.v4f32 -float4 test_pow_float4(float4 p0, float4 p1) -{ - return pow(p0, p1); -} +float4 test_pow_float4(float4 p0, float4 p1) { return pow(p0, p1); } // CHECK: define noundef double @"?test_pow_double@@YANNN@Z"( // CHECK: call double @llvm.pow.f64( -double test_pow_double(double p0, double p1) -{ - return pow(p0, p1); -} +double test_pow_double(double p0, double p1) { return pow(p0, p1); } // CHECK: define noundef <2 x double> @"?test_pow_double2@@YAT?$__vector@N$01@__clang@@T12@0@Z"( // CHECK: call <2 x double> @llvm.pow.v2f64 -double2 test_pow_double2(double2 p0, double2 p1) -{ - return pow(p0, p1); -} +double2 test_pow_double2(double2 p0, double2 p1) { return pow(p0, p1); } // CHECK: define noundef <3 x double> @"?test_pow_double3@@YAT?$__vector@N$02@__clang@@T12@0@Z"( // CHECK: call <3 x double> @llvm.pow.v3f64 -double3 test_pow_double3(double3 p0, double3 p1) -{ - return pow(p0, p1); -} +double3 test_pow_double3(double3 p0, double3 p1) { return pow(p0, p1); } // CHECK: define noundef <4 x double> @"?test_pow_double4@@YAT?$__vector@N$03@__clang@@T12@0@Z"( // CHECK: call <4 x double> @llvm.pow.v4f64 -double4 test_pow_double4(double4 p0, double4 p1) -{ - return pow(p0, p1); -} +double4 test_pow_double4(double4 p0, double4 p1) { return pow(p0, p1); } diff --git a/clang/test/CodeGenHLSL/builtins/sin.hlsl b/clang/test/CodeGenHLSL/builtins/sin.hlsl index 2445e6063a7052..ffb52214913886 100644 --- a/clang/test/CodeGenHLSL/builtins/sin.hlsl +++ b/clang/test/CodeGenHLSL/builtins/sin.hlsl @@ -1,56 +1,41 @@ // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ -// RUN: -emit-llvm -disable-llvm-passes -O3 -o - | FileCheck %s +// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ +// RUN: --check-prefixes=CHECK,NATIVE_HALF // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ -// RUN: -o - | FileCheck %s --check-prefix=NO_HALF +// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF -// CHECK: define noundef half @ -// CHECK: call half @llvm.sin.f16( +// NATIVE_HALF: define noundef half @ +// NATIVE_HALF: call half @llvm.sin.f16( // NO_HALF: define noundef float @"?test_sin_half@@YA$halff@$halff@@Z"( // NO_HALF: call float @llvm.sin.f32( -half test_sin_half ( half p0 ) { - return sin ( p0 ); -} -// CHECK: define noundef <2 x half> @ -// CHECK: call <2 x half> @llvm.sin.v2f16 -// NO_HALF: define noundef <2 x float> @"?test_sin_float2@@YAT?$__vector@M$01@__clang@@T12@@Z"( +half test_sin_half(half p0) { return sin(p0); } +// NATIVE_HALF: define noundef <2 x half> @ +// NATIVE_HALF: call <2 x half> @llvm.sin.v2f16 +// NO_HALF: define noundef <2 x float> @"?test_sin_half2 // NO_HALF: call <2 x float> @llvm.sin.v2f32( -half2 test_sin_half2 ( half2 p0 ) { - return sin ( p0 ); -} -// CHECK: define noundef <3 x half> @ -// CHECK: call <3 x half> @llvm.sin.v3f16 -// NO_HALF: define noundef <3 x float> @"?test_sin_float3@@YAT?$__vector@M$02@__clang@@T12@@Z"( +half2 test_sin_half2(half2 p0) { return sin(p0); } +// NATIVE_HALF: define noundef <3 x half> @ +// NATIVE_HALF: call <3 x half> @llvm.sin.v3f16 +// NO_HALF: define noundef <3 x float> @"?test_sin_half3 // NO_HALF: call <3 x float> @llvm.sin.v3f32( -half3 test_sin_half3 ( half3 p0 ) { - return sin ( p0 ); -} -// CHECK: define noundef <4 x half> @ -// CHECK: call <4 x half> @llvm.sin.v4f16 -// NO_HALF: define noundef <4 x float> @"?test_sin_float4@@YAT?$__vector@M$03@__clang@@T12@@Z"( +half3 test_sin_half3(half3 p0) { return sin(p0); } +// NATIVE_HALF: define noundef <4 x half> @ +// NATIVE_HALF: call <4 x half> @llvm.sin.v4f16 +// NO_HALF: define noundef <4 x float> @"?test_sin_half4 // NO_HALF: call <4 x float> @llvm.sin.v4f32( -half4 test_sin_half4 ( half4 p0 ) { - return sin ( p0 ); -} +half4 test_sin_half4(half4 p0) { return sin(p0); } // CHECK: define noundef float @ // CHECK: call float @llvm.sin.f32( -float test_sin_float ( float p0 ) { - return sin ( p0 ); -} +float test_sin_float(float p0) { return sin(p0); } // CHECK: define noundef <2 x float> @ // CHECK: call <2 x float> @llvm.sin.v2f32 -float2 test_sin_float2 ( float2 p0 ) { - return sin ( p0 ); -} +float2 test_sin_float2(float2 p0) { return sin(p0); } // CHECK: define noundef <3 x float> @ // CHECK: call <3 x float> @llvm.sin.v3f32 -float3 test_sin_float3 ( float3 p0 ) { - return sin ( p0 ); -} +float3 test_sin_float3(float3 p0) { return sin(p0); } // CHECK: define noundef <4 x float> @ // CHECK: call <4 x float> @llvm.sin.v4f32 -float4 test_sin_float4 ( float4 p0 ) { - return sin ( p0 ); -} +float4 test_sin_float4(float4 p0) { return sin(p0); } diff --git a/clang/test/CodeGenHLSL/builtins/trunc.hlsl b/clang/test/CodeGenHLSL/builtins/trunc.hlsl index 4ae3cd20257ec0..6078aae5f873fe 100644 --- a/clang/test/CodeGenHLSL/builtins/trunc.hlsl +++ b/clang/test/CodeGenHLSL/builtins/trunc.hlsl @@ -1,56 +1,47 @@ // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ -// RUN: -emit-llvm -disable-llvm-passes -O3 -o - | FileCheck %s +// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ +// RUN: --check-prefixes=CHECK,NATIVE_HALF // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ // RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ -// RUN: -o - | FileCheck %s --check-prefix=NO_HALF +// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF -// CHECK: define noundef half @ -// CHECK: call half @llvm.trunc.f16( -// NO_HALF: define noundef float @"?test_trunc_half@@YA$halff@$halff@@Z"( +// NATIVE_HALF: define noundef half @"?test_trunc_half +// NATIVE_HALF: call half @llvm.trunc.f16( +// NO_HALF: define noundef float @"?test_trunc_half // NO_HALF: call float @llvm.trunc.f32( -half test_trunc_half ( half p0 ) { - return trunc ( p0 ); -} -// CHECK: define noundef <2 x half> @ -// CHECK: call <2 x half> @llvm.trunc.v2f16 -// NO_HALF: define noundef <2 x float> @"?test_trunc_float2@@YAT?$__vector@M$01@__clang@@T12@@Z"( +half test_trunc_half(half p0) { return trunc(p0); } + +// NATIVE_HALF: define noundef <2 x half> @"?test_trunc_half2 +// NATIVE_HALF: call <2 x half> @llvm.trunc.v2f16 +// NO_HALF: define noundef <2 x float> @"?test_trunc_half2 // NO_HALF: call <2 x float> @llvm.trunc.v2f32( -half2 test_trunc_half2 ( half2 p0 ) { - return trunc ( p0 ); -} -// CHECK: define noundef <3 x half> @ -// CHECK: call <3 x half> @llvm.trunc.v3f16 -// NO_HALF: define noundef <3 x float> @"?test_trunc_float3@@YAT?$__vector@M$02@__clang@@T12@@Z"( +half2 test_trunc_half2(half2 p0) { return trunc(p0); } + +// NATIVE_HALF: define noundef <3 x half> @"?test_trunc_half3 +// NATIVE_HALF: call <3 x half> @llvm.trunc.v3f16 +// NO_HALF: define noundef <3 x float> @"?test_trunc_half3 // NO_HALF: call <3 x float> @llvm.trunc.v3f32( -half3 test_trunc_half3 ( half3 p0 ) { - return trunc ( p0 ); -} -// CHECK: define noundef <4 x half> @ -// CHECK: call <4 x half> @llvm.trunc.v4f16 -// NO_HALF: define noundef <4 x float> @"?test_trunc_float4@@YAT?$__vector@M$03@__clang@@T12@@Z"( +half3 test_trunc_half3(half3 p0) { return trunc(p0); } + +// NATIVE_HALF: define noundef <4 x half> @"?test_trunc_half4 +// NATIVE_HALF: call <4 x half> @llvm.trunc.v4f16 +// NO_HALF: define noundef <4 x float> @"?test_trunc_half4 // NO_HALF: call <4 x float> @llvm.trunc.v4f32( -half4 test_trunc_half4 ( half4 p0 ) { - return trunc ( p0 ); -} +half4 test_trunc_half4(half4 p0) { return trunc(p0); } -// CHECK: define noundef float @ +// CHECK: define noundef float @"?test_trunc_float // CHECK: call float @llvm.trunc.f32( -float test_trunc_float ( float p0 ) { - return trunc ( p0 ); -} -// CHECK: define noundef <2 x float> @ +float test_trunc_float(float p0) { return trunc(p0); } + +// CHECK: define noundef <2 x float> @"?test_trunc_float2 // CHECK: call <2 x float> @llvm.trunc.v2f32 -float2 test_trunc_float2 ( float2 p0 ) { - return trunc ( p0 ); -} -// CHECK: define noundef <3 x float> @ +float2 test_trunc_float2(float2 p0) { return trunc(p0); } + +// CHECK: define noundef <3 x float> @"?test_trunc_float3 // CHECK: call <3 x float> @llvm.trunc.v3f32 -float3 test_trunc_float3 ( float3 p0 ) { - return trunc ( p0 ); -} -// CHECK: define noundef <4 x float> @ +float3 test_trunc_float3(float3 p0) { return trunc(p0); } + +// CHECK: define noundef <4 x float> @"?test_trunc_float4 // CHECK: call <4 x float> @llvm.trunc.v4f32 -float4 test_trunc_float4 ( float4 p0 ) { - return trunc ( p0 ); -} +float4 test_trunc_float4(float4 p0) { return trunc(p0); } diff --git a/clang/test/SemaHLSL/VectorOverloadResolution.hlsl b/clang/test/SemaHLSL/VectorOverloadResolution.hlsl index 81fedc2de31570..2ea7d14e80eebf 100644 --- a/clang/test/SemaHLSL/VectorOverloadResolution.hlsl +++ b/clang/test/SemaHLSL/VectorOverloadResolution.hlsl @@ -40,7 +40,7 @@ void Fn3( int64_t2 p0); // CHECK-NEXT: ImplicitCastExpr {{.*}} 'half2':'half __attribute__((ext_vector_type(2)))' <LValueToRValue> // CHECK-NEXT: DeclRefExpr {{.*}} 'half2':'half __attribute__((ext_vector_type(2)))' lvalue ParmVar {{.*}} 'p0' 'half2':'half __attribute__((ext_vector_type(2)))' // CHECKIR-LABEL: Call3 -// CHECKIR: %conv = fptosi <2 x half> {{.*}} to <2 x i64> +// CHECKIR: {{.*}} = fptosi <2 x half> {{.*}} to <2 x i64> void Call3(half2 p0) { Fn3(p0); } _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits