Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenHLSL / builtins / min.hlsl
blob09066971b3f5d0529a13dc3a95be3376b0243f50
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 -O3 -o - | FileCheck %s
4 // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \
5 // RUN:   dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \
6 // RUN:   -D__HLSL_ENABLE_16_BIT -o - | FileCheck %s --check-prefix=NO_HALF
8 #ifdef __HLSL_ENABLE_16_BIT
9 // CHECK: define noundef i16 @
10 // CHECK: call i16 @llvm.smin.i16(
11 // NO_HALF: define noundef i16 @"?test_min_short@@YAFFF@Z"(
12 // NO_HALF: call i16 @llvm.smin.i16(
13 int16_t test_min_short ( int16_t p0, int16_t p1 ) {
14   return min ( p0, p1 );
16 // CHECK: define noundef <2 x i16> @
17 // CHECK: call <2 x i16> @llvm.smin.v2i16(
18 // NO_HALF: define noundef <2 x i16> @"?test_min_short2@@YAT?$__vector@F$01@__clang@@T12@0@Z"(
19 // NO_HALF: call <2 x i16> @llvm.smin.v2i16(
20 int16_t2 test_min_short2 ( int16_t2 p0, int16_t2 p1 ) {
21   return min ( p0, p1 );
23 // CHECK: define noundef <3 x i16> @
24 // CHECK: call <3 x i16> @llvm.smin.v3i16
25 // NO_HALF: define noundef <3 x i16> @"?test_min_short3@@YAT?$__vector@F$02@__clang@@T12@0@Z"(
26 // NO_HALF: call <3 x i16> @llvm.smin.v3i16(
27 int16_t3 test_min_short3 ( int16_t3 p0, int16_t3 p1 ) {
28   return min ( p0, p1 );
30 // CHECK: define noundef <4 x i16> @
31 // CHECK: call <4 x i16> @llvm.smin.v4i16
32 // NO_HALF: define noundef <4 x i16> @"?test_min_short4@@YAT?$__vector@F$03@__clang@@T12@0@Z"(
33 // NO_HALF: call <4 x i16> @llvm.smin.v4i16(
34 int16_t4 test_min_short4 ( int16_t4 p0, int16_t4 p1 ) {
35   return min ( p0, p1 );
39 // CHECK: define noundef i16 @
40 // CHECK: call i16 @llvm.umin.i16(
41 // NO_HALF: define noundef i16 @"?test_min_ushort@@YAGGG@Z"(
42 // NO_HALF: call i16 @llvm.umin.i16(
43 uint16_t test_min_ushort ( uint16_t p0, uint16_t p1 ) {
44   return min ( p0, p1 );
46 // CHECK: define noundef <2 x i16> @
47 // CHECK: call <2 x i16> @llvm.umin.v2i16
48 // NO_HALF: define noundef <2 x i16> @"?test_min_ushort2@@YAT?$__vector@G$01@__clang@@T12@0@Z"(
49 // NO_HALF: call <2 x i16> @llvm.umin.v2i16(
50 uint16_t2 test_min_ushort2 ( uint16_t2 p0, uint16_t2 p1 ) {
51   return min ( p0, p1 );
53 // CHECK: define noundef <3 x i16> @
54 // CHECK: call <3 x i16> @llvm.umin.v3i16
55 // NO_HALF: define noundef <3 x i16> @"?test_min_ushort3@@YAT?$__vector@G$02@__clang@@T12@0@Z"(
56 // NO_HALF: call <3 x i16> @llvm.umin.v3i16(
57 uint16_t3 test_min_ushort3 ( uint16_t3 p0, uint16_t3 p1 ) {
58   return min ( p0, p1 );
60 // CHECK: define noundef <4 x i16> @
61 // CHECK: call <4 x i16> @llvm.umin.v4i16
62 // NO_HALF: define noundef <4 x i16> @"?test_min_ushort4@@YAT?$__vector@G$03@__clang@@T12@0@Z"(
63 // NO_HALF: call <4 x i16> @llvm.umin.v4i16(
64 uint16_t4 test_min_ushort4 ( uint16_t4 p0, uint16_t4 p1 ) {
65   return min ( p0, p1 );
67 #endif
69 // CHECK: define noundef i32 @
70 // CHECK: call i32 @llvm.smin.i32(
71 int test_min_int ( int p0, int p1 ) {
72   return min ( p0, p1 );
74 // CHECK: define noundef <2 x i32> @
75 // CHECK: call <2 x i32> @llvm.smin.v2i32
76 int2 test_min_int2 ( int2 p0, int2 p1 ) {
77   return min ( p0, p1 );
79 // CHECK: define noundef <3 x i32> @
80 // CHECK: call <3 x i32> @llvm.smin.v3i32
81 int3 test_min_int3 ( int3 p0, int3 p1 ) {
82   return min ( p0, p1 );
84 // CHECK: define noundef <4 x i32> @
85 // CHECK: call <4 x i32> @llvm.smin.v4i32
86 int4 test_min_int4 ( int4 p0, int4 p1) {
87   return min ( p0, p1 );
90 // CHECK: define noundef i32 @
91 // CHECK: call i32 @llvm.umin.i32(
92 int test_min_uint ( uint p0, uint p1 ) {
93   return min ( p0, p1 );
95 // CHECK: define noundef <2 x i32> @
96 // CHECK: call <2 x i32> @llvm.umin.v2i32
97 uint2 test_min_uint2 ( uint2 p0, uint2 p1 ) {
98   return min ( p0, p1 );
100 // CHECK: define noundef <3 x i32> @
101 // CHECK: call <3 x i32> @llvm.umin.v3i32
102 uint3 test_min_uint3 ( uint3 p0, uint3 p1 ) {
103   return min ( p0, p1 );
105 // CHECK: define noundef <4 x i32> @
106 // CHECK: call <4 x i32> @llvm.umin.v4i32
107 uint4 test_min_uint4 ( uint4 p0, uint4 p1) {
108   return min ( p0, p1 );
111 // CHECK: define noundef i64 @
112 // CHECK: call i64 @llvm.smin.i64(
113 int64_t test_min_long ( int64_t p0, int64_t p1 ) {
114   return min ( p0, p1 );
116 // CHECK: define noundef <2 x i64> @
117 // CHECK: call <2 x i64> @llvm.smin.v2i64
118 int64_t2 test_min_long2 ( int64_t2 p0, int64_t2 p1 ) {
119   return min ( p0, p1 );
121 // CHECK: define noundef <3 x i64> @
122 // CHECK: call <3 x i64> @llvm.smin.v3i64
123 int64_t3 test_min_long3 ( int64_t3 p0, int64_t3 p1 ) {
124   return min ( p0, p1 );
126 // CHECK: define noundef <4 x i64> @
127 // CHECK: call <4 x i64> @llvm.smin.v4i64
128 int64_t4 test_min_long4 ( int64_t4 p0, int64_t4 p1) {
129   return min ( p0, p1 );
132 // CHECK: define noundef i64 @
133 // CHECK: call i64 @llvm.umin.i64(
134 uint64_t test_min_long ( uint64_t p0, uint64_t p1 ) {
135   return min ( p0, p1 );
137 // CHECK: define noundef <2 x i64> @
138 // CHECK: call <2 x i64> @llvm.umin.v2i64
139 uint64_t2 test_min_long2 ( uint64_t2 p0, uint64_t2 p1 ) {
140   return min ( p0, p1 );
142 // CHECK: define noundef <3 x i64> @
143 // CHECK: call <3 x i64> @llvm.umin.v3i64
144 uint64_t3 test_min_long3 ( uint64_t3 p0, uint64_t3 p1 ) {
145   return min ( p0, p1 );
147 // CHECK: define noundef <4 x i64> @
148 // CHECK: call <4 x i64> @llvm.umin.v4i64
149 uint64_t4 test_min_long4 ( uint64_t4 p0, uint64_t4 p1) {
150   return min ( p0, p1 );
154 // CHECK: define noundef half @
155 // CHECK: call half @llvm.minnum.f16(
156 // NO_HALF: define noundef float @"?test_min_half@@YA$halff@$halff@0@Z"(
157 // NO_HALF: call float @llvm.minnum.f32(
158 half test_min_half ( half p0, half p1 ) {
159   return min ( p0, p1 );
161 // CHECK: define noundef <2 x half> @
162 // CHECK: call <2 x half> @llvm.minnum.v2f16
163 // NO_HALF: define noundef <2 x float> @"?test_min_float2@@YAT?$__vector@M$01@__clang@@T12@0@Z"(
164 // NO_HALF: call <2 x float> @llvm.minnum.v2f32(
165 half2 test_min_half2 ( half2 p0, half2 p1 ) {
166   return min ( p0, p1 );
168 // CHECK: define noundef <3 x half> @
169 // CHECK: call <3 x half> @llvm.minnum.v3f16
170 // NO_HALF: define noundef <3 x float> @"?test_min_float3@@YAT?$__vector@M$02@__clang@@T12@0@Z"(
171 // NO_HALF: call <3 x float> @llvm.minnum.v3f32(
172 half3 test_min_half3 ( half3 p0, half3 p1 ) {
173   return min ( p0, p1 );
175 // CHECK: define noundef <4 x half> @
176 // CHECK: call <4 x half> @llvm.minnum.v4f16
177 // NO_HALF: define noundef <4 x float> @"?test_min_float4@@YAT?$__vector@M$03@__clang@@T12@0@Z"(
178 // NO_HALF: call <4 x float> @llvm.minnum.v4f32(
179 half4 test_min_half4 ( half4 p0, half4 p1 ) {
180   return min ( p0, p1 );
183 // CHECK: define noundef float @
184 // CHECK: call float @llvm.minnum.f32(
185 float test_min_float ( float p0, float p1 ) {
186   return min ( p0, p1 );
188 // CHECK: define noundef <2 x float> @
189 // CHECK: call <2 x float> @llvm.minnum.v2f32
190 float2 test_min_float2 ( float2 p0, float2 p1 ) {
191   return min ( p0, p1 );
193 // CHECK: define noundef <3 x float> @
194 // CHECK: call <3 x float> @llvm.minnum.v3f32
195 float3 test_min_float3 ( float3 p0, float3 p1 ) {
196   return min ( p0, p1 );
198 // CHECK: define noundef <4 x float> @
199 // CHECK: call <4 x float> @llvm.minnum.v4f32
200 float4 test_min_float4 ( float4 p0, float4 p1) {
201   return min ( p0, p1 );
204 // CHECK: define noundef double @
205 // CHECK: call double @llvm.minnum.f64(
206 double test_min_double ( double p0, double p1 ) {
207   return min ( p0, p1 );
209 // CHECK: define noundef <2 x double> @
210 // CHECK: call <2 x double> @llvm.minnum.v2f64
211 double2 test_min_double2 ( double2 p0, double2 p1 ) {
212   return min ( p0, p1 );
214 // CHECK: define noundef <3 x double> @
215 // CHECK: call <3 x double> @llvm.minnum.v3f64
216 double3 test_min_double3 ( double3 p0, double3 p1 ) {
217   return min ( p0, p1 );
219 // CHECK: define noundef <4 x double> @
220 // CHECK: call <4 x double> @llvm.minnum.v4f64
221 double4 test_min_double4 ( double4 p0, double4 p1) {
222   return min ( p0, p1 );