Skip to content

Commit 4568aab

Browse files
committed
[clang][HLSL] Update DXIL/SPIRV hybird CodeGen tests to use temp var
Update all hybird DXIL/SPIRV codegen tests to use temp variable representing interchange target
1 parent 99b85ca commit 4568aab

20 files changed

+414
-413
lines changed

clang/test/CodeGenHLSL/GlobalConstructorFunction.hlsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ void main(unsigned GI : SV_GroupIndex) {}
2525
//CHECK-NEXT: entry:
2626
//CHECK-NEXT: call void @"?call_me_first@@YAXXZ"()
2727
//CHECK-NEXT: call void @"?then_call_me@@YAXXZ"()
28-
//CHECK-NEXT: %0 = call i32 @llvm.dx.flattened.thread.id.in.group()
28+
//CHECK-NEXT: %0 = call i32 @llvm.[[ICF:dx]].flattened.thread.id.in.group()
2929
//CHECK-NEXT: call void @"?main@@YAXI@Z"(i32 %0)
3030
//CHECK-NEXT: call void @"?call_me_last@@YAXXZ"(
3131
//CHECK-NEXT: ret void

clang/test/CodeGenHLSL/GlobalConstructors.hlsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ void main(unsigned GI : SV_GroupIndex) {}
1111
//CHECK: define void @main()
1212
//CHECK-NEXT: entry:
1313
//CHECK-NEXT: call void @_GLOBAL__sub_I_GlobalConstructors.hlsl()
14-
//CHECK-NEXT: %0 = call i32 @llvm.dx.flattened.thread.id.in.group()
14+
//CHECK-NEXT: %0 = call i32 @llvm.[[ICF:dx]].flattened.thread.id.in.group()
1515
//CHECK-NEXT: call void @"?main@@YAXI@Z"(i32 %0)
1616
//CHECK-NEXT: ret void

clang/test/CodeGenHLSL/GlobalDestructors.hlsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ void main(unsigned GI : SV_GroupIndex) {
5252
//CHECK: define void @main()
5353
//CHECK-NEXT: entry:
5454
//CHECK-NEXT: call void @_GLOBAL__sub_I_GlobalDestructors.hlsl()
55-
//CHECK-NEXT: %0 = call i32 @llvm.dx.flattened.thread.id.in.group()
55+
//CHECK-NEXT: %0 = call i32 @llvm.[[ICF:dx]].flattened.thread.id.in.group()
5656
//CHECK-NEXT: call void @"?main@@YAXI@Z"(i32 %0)
5757
//CHECK-NEXT: call void @_GLOBAL__D_a()
5858
//CHECK-NEXT: ret void

clang/test/CodeGenHLSL/builtins/RWBuffer-constructor.hlsl

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
// RUN: %clang_cc1 -triple spirv-vulkan-library -x hlsl -emit-llvm -disable-llvm-passes -o - %s | FileCheck %s --check-prefix=CHECK-SPIRV
1+
// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.3-library -x hlsl -emit-llvm -disable-llvm-passes -o - %s | FileCheck %s --check-prefixes=DXCHECK
2+
3+
// RUN: %clang_cc1 -triple spirv-vulkan-library -x hlsl -emit-llvm -disable-llvm-passes -o - %s | FileCheck %s --check-prefixes=SPVCHECK
24

35
RWBuffer<float> Buf;
46

57
// CHECK: define linkonce_odr noundef ptr @"??0?$RWBuffer@M@hlsl@@QAA@XZ"
68
// CHECK-NEXT: entry:
79

8-
// CHECK: %[[HandleRes:[0-9]+]] = call ptr @llvm.dx.create.handle(i8 1)
10+
// DXCHECK: %[[HandleRes:[0-9]+]] = call ptr @llvm.[[ICF:dx]].create.handle(i8 1)
11+
// SPVCHECK: %[[HandleRes:[0-9]+]] = call ptr @llvm.[[ICF:spv]].create.handle(i8 1)
912
// CHECK: store ptr %[[HandleRes]], ptr %h, align 4
1013

11-
// CHECK-SPIRV: %[[HandleRes:[0-9]+]] = call ptr @llvm.spv.create.handle(i8 1)
12-
// CHECK-SPIRV: store ptr %[[HandleRes]], ptr %h, align 8

clang/test/CodeGenHLSL/builtins/all.hlsl

Lines changed: 88 additions & 88 deletions
Large diffs are not rendered by default.

clang/test/CodeGenHLSL/builtins/any.hlsl

Lines changed: 88 additions & 88 deletions
Large diffs are not rendered by default.

clang/test/CodeGenHLSL/builtins/clamp-builtin.hlsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple dxil-pc-shadermodel6.3-library %s -fnative-half-type -emit-llvm -disable-llvm-passes -o - | FileCheck %s
22

33
// CHECK-LABEL: builtin_test_clamp_int4
4-
// CHECK: %dx.clamp = call <4 x i32> @llvm.dx.clamp.v4i32(<4 x i32> %0, <4 x i32> %1, <4 x i32> %2)
4+
// CHECK: %dx.clamp = call <4 x i32> @llvm.[[ICF:dx]].clamp.v4i32(<4 x i32> %0, <4 x i32> %1, <4 x i32> %2)
55
// CHECK: ret <4 x i32> %dx.clamp
66
int4 builtin_test_clamp_int4(int4 p0, int4 p1, int4 p2) {
77
return __builtin_hlsl_elementwise_clamp(p0, p1, p2);

clang/test/CodeGenHLSL/builtins/clamp.hlsl

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -8,127 +8,127 @@
88

99
#ifdef __HLSL_ENABLE_16_BIT
1010
// NATIVE_HALF: define noundef i16 @
11-
// NATIVE_HALF: call i16 @llvm.dx.clamp.i16(
11+
// NATIVE_HALF: call i16 @llvm.[[ICF:dx]].clamp.i16(
1212
int16_t test_clamp_short(int16_t p0, int16_t p1) { return clamp(p0, p1,p1); }
1313
// NATIVE_HALF: define noundef <2 x i16> @
14-
// NATIVE_HALF: call <2 x i16> @llvm.dx.clamp.v2i16(
14+
// NATIVE_HALF: call <2 x i16> @llvm.[[ICF:dx]].clamp.v2i16(
1515
int16_t2 test_clamp_short2(int16_t2 p0, int16_t2 p1) { return clamp(p0, p1,p1); }
1616
// NATIVE_HALF: define noundef <3 x i16> @
17-
// NATIVE_HALF: call <3 x i16> @llvm.dx.clamp.v3i16
17+
// NATIVE_HALF: call <3 x i16> @llvm.[[ICF:dx]].clamp.v3i16
1818
int16_t3 test_clamp_short3(int16_t3 p0, int16_t3 p1) { return clamp(p0, p1,p1); }
1919
// NATIVE_HALF: define noundef <4 x i16> @
20-
// NATIVE_HALF: call <4 x i16> @llvm.dx.clamp.v4i16
20+
// NATIVE_HALF: call <4 x i16> @llvm.[[ICF:dx]].clamp.v4i16
2121
int16_t4 test_clamp_short4(int16_t4 p0, int16_t4 p1) { return clamp(p0, p1,p1); }
2222

2323
// NATIVE_HALF: define noundef i16 @
24-
// NATIVE_HALF: call i16 @llvm.dx.uclamp.i16(
24+
// NATIVE_HALF: call i16 @llvm.[[ICF:dx]].uclamp.i16(
2525
uint16_t test_clamp_ushort(uint16_t p0, uint16_t p1) { return clamp(p0, p1,p1); }
2626
// NATIVE_HALF: define noundef <2 x i16> @
27-
// NATIVE_HALF: call <2 x i16> @llvm.dx.uclamp.v2i16
27+
// NATIVE_HALF: call <2 x i16> @llvm.[[ICF:dx]].uclamp.v2i16
2828
uint16_t2 test_clamp_ushort2(uint16_t2 p0, uint16_t2 p1) { return clamp(p0, p1,p1); }
2929
// NATIVE_HALF: define noundef <3 x i16> @
30-
// NATIVE_HALF: call <3 x i16> @llvm.dx.uclamp.v3i16
30+
// NATIVE_HALF: call <3 x i16> @llvm.[[ICF:dx]].uclamp.v3i16
3131
uint16_t3 test_clamp_ushort3(uint16_t3 p0, uint16_t3 p1) { return clamp(p0, p1,p1); }
3232
// NATIVE_HALF: define noundef <4 x i16> @
33-
// NATIVE_HALF: call <4 x i16> @llvm.dx.uclamp.v4i16
33+
// NATIVE_HALF: call <4 x i16> @llvm.[[ICF:dx]].uclamp.v4i16
3434
uint16_t4 test_clamp_ushort4(uint16_t4 p0, uint16_t4 p1) { return clamp(p0, p1,p1); }
3535
#endif
3636

3737
// CHECK: define noundef i32 @
38-
// CHECK: call i32 @llvm.dx.clamp.i32(
38+
// CHECK: call i32 @llvm.[[ICF:dx]].clamp.i32(
3939
int test_clamp_int(int p0, int p1) { return clamp(p0, p1,p1); }
4040
// CHECK: define noundef <2 x i32> @
41-
// CHECK: call <2 x i32> @llvm.dx.clamp.v2i32
41+
// CHECK: call <2 x i32> @llvm.[[ICF:dx]].clamp.v2i32
4242
int2 test_clamp_int2(int2 p0, int2 p1) { return clamp(p0, p1,p1); }
4343
// CHECK: define noundef <3 x i32> @
44-
// CHECK: call <3 x i32> @llvm.dx.clamp.v3i32
44+
// CHECK: call <3 x i32> @llvm.[[ICF:dx]].clamp.v3i32
4545
int3 test_clamp_int3(int3 p0, int3 p1) { return clamp(p0, p1,p1); }
4646
// CHECK: define noundef <4 x i32> @
47-
// CHECK: call <4 x i32> @llvm.dx.clamp.v4i32
47+
// CHECK: call <4 x i32> @llvm.[[ICF:dx]].clamp.v4i32
4848
int4 test_clamp_int4(int4 p0, int4 p1) { return clamp(p0, p1,p1); }
4949

5050
// CHECK: define noundef i32 @
51-
// CHECK: call i32 @llvm.dx.uclamp.i32(
51+
// CHECK: call i32 @llvm.[[ICF:dx]].uclamp.i32(
5252
int test_clamp_uint(uint p0, uint p1) { return clamp(p0, p1,p1); }
5353
// CHECK: define noundef <2 x i32> @
54-
// CHECK: call <2 x i32> @llvm.dx.uclamp.v2i32
54+
// CHECK: call <2 x i32> @llvm.[[ICF:dx]].uclamp.v2i32
5555
uint2 test_clamp_uint2(uint2 p0, uint2 p1) { return clamp(p0, p1,p1); }
5656
// CHECK: define noundef <3 x i32> @
57-
// CHECK: call <3 x i32> @llvm.dx.uclamp.v3i32
57+
// CHECK: call <3 x i32> @llvm.[[ICF:dx]].uclamp.v3i32
5858
uint3 test_clamp_uint3(uint3 p0, uint3 p1) { return clamp(p0, p1,p1); }
5959
// CHECK: define noundef <4 x i32> @
60-
// CHECK: call <4 x i32> @llvm.dx.uclamp.v4i32
60+
// CHECK: call <4 x i32> @llvm.[[ICF:dx]].uclamp.v4i32
6161
uint4 test_clamp_uint4(uint4 p0, uint4 p1) { return clamp(p0, p1,p1); }
6262

6363
// CHECK: define noundef i64 @
64-
// CHECK: call i64 @llvm.dx.clamp.i64(
64+
// CHECK: call i64 @llvm.[[ICF:dx]].clamp.i64(
6565
int64_t test_clamp_long(int64_t p0, int64_t p1) { return clamp(p0, p1,p1); }
6666
// CHECK: define noundef <2 x i64> @
67-
// CHECK: call <2 x i64> @llvm.dx.clamp.v2i64
67+
// CHECK: call <2 x i64> @llvm.[[ICF:dx]].clamp.v2i64
6868
int64_t2 test_clamp_long2(int64_t2 p0, int64_t2 p1) { return clamp(p0, p1,p1); }
6969
// CHECK: define noundef <3 x i64> @
70-
// CHECK: call <3 x i64> @llvm.dx.clamp.v3i64
70+
// CHECK: call <3 x i64> @llvm.[[ICF:dx]].clamp.v3i64
7171
int64_t3 test_clamp_long3(int64_t3 p0, int64_t3 p1) { return clamp(p0, p1,p1); }
7272
// CHECK: define noundef <4 x i64> @
73-
// CHECK: call <4 x i64> @llvm.dx.clamp.v4i64
73+
// CHECK: call <4 x i64> @llvm.[[ICF:dx]].clamp.v4i64
7474
int64_t4 test_clamp_long4(int64_t4 p0, int64_t4 p1) { return clamp(p0, p1,p1); }
7575

7676
// CHECK: define noundef i64 @
77-
// CHECK: call i64 @llvm.dx.uclamp.i64(
77+
// CHECK: call i64 @llvm.[[ICF:dx]].uclamp.i64(
7878
uint64_t test_clamp_long(uint64_t p0, uint64_t p1) { return clamp(p0, p1,p1); }
7979
// CHECK: define noundef <2 x i64> @
80-
// CHECK: call <2 x i64> @llvm.dx.uclamp.v2i64
80+
// CHECK: call <2 x i64> @llvm.[[ICF:dx]].uclamp.v2i64
8181
uint64_t2 test_clamp_long2(uint64_t2 p0, uint64_t2 p1) { return clamp(p0, p1,p1); }
8282
// CHECK: define noundef <3 x i64> @
83-
// CHECK: call <3 x i64> @llvm.dx.uclamp.v3i64
83+
// CHECK: call <3 x i64> @llvm.[[ICF:dx]].uclamp.v3i64
8484
uint64_t3 test_clamp_long3(uint64_t3 p0, uint64_t3 p1) { return clamp(p0, p1,p1); }
8585
// CHECK: define noundef <4 x i64> @
86-
// CHECK: call <4 x i64> @llvm.dx.uclamp.v4i64
86+
// CHECK: call <4 x i64> @llvm.[[ICF:dx]].uclamp.v4i64
8787
uint64_t4 test_clamp_long4(uint64_t4 p0, uint64_t4 p1) { return clamp(p0, p1,p1); }
8888

8989
// NATIVE_HALF: define noundef half @
90-
// NATIVE_HALF: call half @llvm.dx.clamp.f16(
90+
// NATIVE_HALF: call half @llvm.[[ICF:dx]].clamp.f16(
9191
// NO_HALF: define noundef float @"?test_clamp_half
92-
// NO_HALF: call float @llvm.dx.clamp.f32(
92+
// NO_HALF: call float @llvm.[[ICF:dx]].clamp.f32(
9393
half test_clamp_half(half p0, half p1) { return clamp(p0, p1,p1); }
9494
// NATIVE_HALF: define noundef <2 x half> @
95-
// NATIVE_HALF: call <2 x half> @llvm.dx.clamp.v2f16
95+
// NATIVE_HALF: call <2 x half> @llvm.[[ICF:dx]].clamp.v2f16
9696
// NO_HALF: define noundef <2 x float> @"?test_clamp_half2
97-
// NO_HALF: call <2 x float> @llvm.dx.clamp.v2f32(
97+
// NO_HALF: call <2 x float> @llvm.[[ICF:dx]].clamp.v2f32(
9898
half2 test_clamp_half2(half2 p0, half2 p1) { return clamp(p0, p1,p1); }
9999
// NATIVE_HALF: define noundef <3 x half> @
100-
// NATIVE_HALF: call <3 x half> @llvm.dx.clamp.v3f16
100+
// NATIVE_HALF: call <3 x half> @llvm.[[ICF:dx]].clamp.v3f16
101101
// NO_HALF: define noundef <3 x float> @"?test_clamp_half3
102-
// NO_HALF: call <3 x float> @llvm.dx.clamp.v3f32(
102+
// NO_HALF: call <3 x float> @llvm.[[ICF:dx]].clamp.v3f32(
103103
half3 test_clamp_half3(half3 p0, half3 p1) { return clamp(p0, p1,p1); }
104104
// NATIVE_HALF: define noundef <4 x half> @
105-
// NATIVE_HALF: call <4 x half> @llvm.dx.clamp.v4f16
105+
// NATIVE_HALF: call <4 x half> @llvm.[[ICF:dx]].clamp.v4f16
106106
// NO_HALF: define noundef <4 x float> @"?test_clamp_half4
107-
// NO_HALF: call <4 x float> @llvm.dx.clamp.v4f32(
107+
// NO_HALF: call <4 x float> @llvm.[[ICF:dx]].clamp.v4f32(
108108
half4 test_clamp_half4(half4 p0, half4 p1) { return clamp(p0, p1,p1); }
109109

110110
// CHECK: define noundef float @"?test_clamp_float
111-
// CHECK: call float @llvm.dx.clamp.f32(
111+
// CHECK: call float @llvm.[[ICF:dx]].clamp.f32(
112112
float test_clamp_float(float p0, float p1) { return clamp(p0, p1,p1); }
113113
// CHECK: define noundef <2 x float> @"?test_clamp_float2
114-
// CHECK: call <2 x float> @llvm.dx.clamp.v2f32
114+
// CHECK: call <2 x float> @llvm.[[ICF:dx]].clamp.v2f32
115115
float2 test_clamp_float2(float2 p0, float2 p1) { return clamp(p0, p1,p1); }
116116
// CHECK: define noundef <3 x float> @"?test_clamp_float3
117-
// CHECK: call <3 x float> @llvm.dx.clamp.v3f32
117+
// CHECK: call <3 x float> @llvm.[[ICF:dx]].clamp.v3f32
118118
float3 test_clamp_float3(float3 p0, float3 p1) { return clamp(p0, p1,p1); }
119119
// CHECK: define noundef <4 x float> @"?test_clamp_float4
120-
// CHECK: call <4 x float> @llvm.dx.clamp.v4f32
120+
// CHECK: call <4 x float> @llvm.[[ICF:dx]].clamp.v4f32
121121
float4 test_clamp_float4(float4 p0, float4 p1) { return clamp(p0, p1,p1); }
122122

123123
// CHECK: define noundef double @
124-
// CHECK: call double @llvm.dx.clamp.f64(
124+
// CHECK: call double @llvm.[[ICF:dx]].clamp.f64(
125125
double test_clamp_double(double p0, double p1) { return clamp(p0, p1,p1); }
126126
// CHECK: define noundef <2 x double> @
127-
// CHECK: call <2 x double> @llvm.dx.clamp.v2f64
127+
// CHECK: call <2 x double> @llvm.[[ICF:dx]].clamp.v2f64
128128
double2 test_clamp_double2(double2 p0, double2 p1) { return clamp(p0, p1,p1); }
129129
// CHECK: define noundef <3 x double> @
130-
// CHECK: call <3 x double> @llvm.dx.clamp.v3f64
130+
// CHECK: call <3 x double> @llvm.[[ICF:dx]].clamp.v3f64
131131
double3 test_clamp_double3(double3 p0, double3 p1) { return clamp(p0, p1,p1); }
132132
// CHECK: define noundef <4 x double> @
133-
// CHECK: call <4 x double> @llvm.dx.clamp.v4f64
133+
// CHECK: call <4 x double> @llvm.[[ICF:dx]].clamp.v4f64
134134
double4 test_clamp_double4(double4 p0, double4 p1) { return clamp(p0, p1,p1); }

clang/test/CodeGenHLSL/builtins/create_handle.hlsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ void fn() {
44
(void)__builtin_hlsl_create_handle(0);
55
}
66

7-
// CHECK: call ptr @llvm.dx.create.handle(i8 0)
7+
// CHECK: call ptr @llvm.[[ICF:dx]].create.handle(i8 0)

clang/test/CodeGenHLSL/builtins/frac.hlsl

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -15,70 +15,70 @@
1515

1616
// DXIL_NATIVE_HALF: define noundef half @
1717
// SPIR_NATIVE_HALF: define spir_func noundef half @
18-
// DXIL_NATIVE_HALF: %hlsl.frac = call half @llvm.dx.frac.f16(
19-
// SPIR_NATIVE_HALF: %hlsl.frac = call half @llvm.spv.frac.f16(
18+
// DXIL_NATIVE_HALF: %hlsl.frac = call half @llvm.[[ICF:dx]].frac.f16(
19+
// SPIR_NATIVE_HALF: %hlsl.frac = call half @llvm.[[ICF:spv]].frac.f16(
2020
// NATIVE_HALF: ret half %hlsl.frac
2121
// DXIL_NO_HALF: define noundef float @
2222
// SPIR_NO_HALF: define spir_func noundef float @
23-
// DXIL_NO_HALF: %hlsl.frac = call float @llvm.dx.frac.f32(
24-
// SPIR_NO_HALF: %hlsl.frac = call float @llvm.spv.frac.f32(
23+
// DXIL_NO_HALF: %hlsl.frac = call float @llvm.[[ICF:dx]].frac.f32(
24+
// SPIR_NO_HALF: %hlsl.frac = call float @llvm.[[ICF:spv]].frac.f32(
2525
// NO_HALF: ret float %hlsl.frac
2626
half test_frac_half(half p0) { return frac(p0); }
2727
// DXIL_NATIVE_HALF: define noundef <2 x half> @
2828
// SPIR_NATIVE_HALF: define spir_func noundef <2 x half> @
29-
// DXIL_NATIVE_HALF: %hlsl.frac = call <2 x half> @llvm.dx.frac.v2f16
30-
// SPIR_NATIVE_HALF: %hlsl.frac = call <2 x half> @llvm.spv.frac.v2f16
29+
// DXIL_NATIVE_HALF: %hlsl.frac = call <2 x half> @llvm.[[ICF:dx]].frac.v2f16
30+
// SPIR_NATIVE_HALF: %hlsl.frac = call <2 x half> @llvm.[[ICF:spv]].frac.v2f16
3131
// NATIVE_HALF: ret <2 x half> %hlsl.frac
3232
// DXIL_NO_HALF: define noundef <2 x float> @
3333
// SPIR_NO_HALF: define spir_func noundef <2 x float> @
34-
// DXIL_NO_HALF: %hlsl.frac = call <2 x float> @llvm.dx.frac.v2f32(
35-
// SPIR_NO_HALF: %hlsl.frac = call <2 x float> @llvm.spv.frac.v2f32(
34+
// DXIL_NO_HALF: %hlsl.frac = call <2 x float> @llvm.[[ICF:dx]].frac.v2f32(
35+
// SPIR_NO_HALF: %hlsl.frac = call <2 x float> @llvm.[[ICF:spv]].frac.v2f32(
3636
// NO_HALF: ret <2 x float> %hlsl.frac
3737
half2 test_frac_half2(half2 p0) { return frac(p0); }
3838
// DXIL_NATIVE_HALF: define noundef <3 x half> @
3939
// SPIR_NATIVE_HALF: define spir_func noundef <3 x half> @
40-
// DXIL_NATIVE_HALF: %hlsl.frac = call <3 x half> @llvm.dx.frac.v3f16
41-
// SPIR_NATIVE_HALF: %hlsl.frac = call <3 x half> @llvm.spv.frac.v3f16
40+
// DXIL_NATIVE_HALF: %hlsl.frac = call <3 x half> @llvm.[[ICF:dx]].frac.v3f16
41+
// SPIR_NATIVE_HALF: %hlsl.frac = call <3 x half> @llvm.[[ICF:spv]].frac.v3f16
4242
// NATIVE_HALF: ret <3 x half> %hlsl.frac
4343
// DXIL_NO_HALF: define noundef <3 x float> @
4444
// SPIR_NO_HALF: define spir_func noundef <3 x float> @
45-
// DXIL_NO_HALF: %hlsl.frac = call <3 x float> @llvm.dx.frac.v3f32(
46-
// SPIR_NO_HALF: %hlsl.frac = call <3 x float> @llvm.spv.frac.v3f32(
45+
// DXIL_NO_HALF: %hlsl.frac = call <3 x float> @llvm.[[ICF:dx]].frac.v3f32(
46+
// SPIR_NO_HALF: %hlsl.frac = call <3 x float> @llvm.[[ICF:spv]].frac.v3f32(
4747
// NO_HALF: ret <3 x float> %hlsl.frac
4848
half3 test_frac_half3(half3 p0) { return frac(p0); }
4949
// DXIL_NATIVE_HALF: define noundef <4 x half> @
5050
// SPIR_NATIVE_HALF: define spir_func noundef <4 x half> @
51-
// DXIL_NATIVE_HALF: %hlsl.frac = call <4 x half> @llvm.dx.frac.v4f16
52-
// SPIR_NATIVE_HALF: %hlsl.frac = call <4 x half> @llvm.spv.frac.v4f16
51+
// DXIL_NATIVE_HALF: %hlsl.frac = call <4 x half> @llvm.[[ICF:dx]].frac.v4f16
52+
// SPIR_NATIVE_HALF: %hlsl.frac = call <4 x half> @llvm.[[ICF:spv]].frac.v4f16
5353
// NATIVE_HALF: ret <4 x half> %hlsl.frac
5454
// DXIL_NO_HALF: define noundef <4 x float> @
5555
// SPIR_NO_HALF: define spir_func noundef <4 x float> @
56-
// DXIL_NO_HALF: %hlsl.frac = call <4 x float> @llvm.dx.frac.v4f32(
57-
// SPIR_NO_HALF: %hlsl.frac = call <4 x float> @llvm.spv.frac.v4f32(
56+
// DXIL_NO_HALF: %hlsl.frac = call <4 x float> @llvm.[[ICF:dx]].frac.v4f32(
57+
// SPIR_NO_HALF: %hlsl.frac = call <4 x float> @llvm.[[ICF:spv]].frac.v4f32(
5858
// NO_HALF: ret <4 x float> %hlsl.frac
5959
half4 test_frac_half4(half4 p0) { return frac(p0); }
6060

6161
// DXIL_CHECK: define noundef float @
6262
// SPIR_CHECK: define spir_func noundef float @
63-
// DXIL_CHECK: %hlsl.frac = call float @llvm.dx.frac.f32(
64-
// SPIR_CHECK: %hlsl.frac = call float @llvm.spv.frac.f32(
63+
// DXIL_CHECK: %hlsl.frac = call float @llvm.[[ICF:dx]].frac.f32(
64+
// SPIR_CHECK: %hlsl.frac = call float @llvm.[[ICF:spv]].frac.f32(
6565
// CHECK: ret float %hlsl.frac
6666
float test_frac_float(float p0) { return frac(p0); }
6767
// DXIL_CHECK: define noundef <2 x float> @
6868
// SPIR_CHECK: define spir_func noundef <2 x float> @
69-
// DXIL_CHECK: %hlsl.frac = call <2 x float> @llvm.dx.frac.v2f32
70-
// SPIR_CHECK: %hlsl.frac = call <2 x float> @llvm.spv.frac.v2f32
69+
// DXIL_CHECK: %hlsl.frac = call <2 x float> @llvm.[[ICF:dx]].frac.v2f32
70+
// SPIR_CHECK: %hlsl.frac = call <2 x float> @llvm.[[ICF:spv]].frac.v2f32
7171
// CHECK: ret <2 x float> %hlsl.frac
7272
float2 test_frac_float2(float2 p0) { return frac(p0); }
7373
// DXIL_CHECK: define noundef <3 x float> @
7474
// SPIR_CHECK: define spir_func noundef <3 x float> @
75-
// DXIL_CHECK: %hlsl.frac = call <3 x float> @llvm.dx.frac.v3f32
76-
// SPIR_CHECK: %hlsl.frac = call <3 x float> @llvm.spv.frac.v3f32
75+
// DXIL_CHECK: %hlsl.frac = call <3 x float> @llvm.[[ICF:dx]].frac.v3f32
76+
// SPIR_CHECK: %hlsl.frac = call <3 x float> @llvm.[[ICF:spv]].frac.v3f32
7777
// CHECK: ret <3 x float> %hlsl.frac
7878
float3 test_frac_float3(float3 p0) { return frac(p0); }
7979
// DXIL_CHECK: define noundef <4 x float> @
8080
// SPIR_CHECK: define spir_func noundef <4 x float> @
81-
// DXIL_CHECK: %hlsl.frac = call <4 x float> @llvm.dx.frac.v4f32
82-
// SPIR_CHECK: %hlsl.frac = call <4 x float> @llvm.spv.frac.v4f32
81+
// DXIL_CHECK: %hlsl.frac = call <4 x float> @llvm.[[ICF:dx]].frac.v4f32
82+
// SPIR_CHECK: %hlsl.frac = call <4 x float> @llvm.[[ICF:spv]].frac.v4f32
8383
// CHECK: ret <4 x float> %hlsl.frac
8484
float4 test_frac_float4(float4 p0) { return frac(p0); }

clang/test/CodeGenHLSL/builtins/isinf.hlsl

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,39 +7,39 @@
77
// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF
88

99
// CHECK: define noundef i1 @
10-
// NATIVE_HALF: %dx.isinf = call i1 @llvm.dx.isinf.f16(
11-
// NO_HALF: %dx.isinf = call i1 @llvm.dx.isinf.f32(
10+
// NATIVE_HALF: %dx.isinf = call i1 @llvm.[[ICF:dx]].isinf.f16(
11+
// NO_HALF: %dx.isinf = call i1 @llvm.[[ICF:dx]].isinf.f32(
1212
// CHECK: ret i1 %dx.isinf
1313
bool test_isinf_half(half p0) { return isinf(p0); }
1414
// CHECK: define noundef <2 x i1> @
15-
// NATIVE_HALF: %dx.isinf = call <2 x i1> @llvm.dx.isinf.v2f16
16-
// NO_HALF: %dx.isinf = call <2 x i1> @llvm.dx.isinf.v2f32(
15+
// NATIVE_HALF: %dx.isinf = call <2 x i1> @llvm.[[ICF:dx]].isinf.v2f16
16+
// NO_HALF: %dx.isinf = call <2 x i1> @llvm.[[ICF:dx]].isinf.v2f32(
1717
// CHECK: ret <2 x i1> %dx.isinf
1818
bool2 test_isinf_half2(half2 p0) { return isinf(p0); }
1919
// NATIVE_HALF: define noundef <3 x i1> @
20-
// NATIVE_HALF: %dx.isinf = call <3 x i1> @llvm.dx.isinf.v3f16
21-
// NO_HALF: %dx.isinf = call <3 x i1> @llvm.dx.isinf.v3f32(
20+
// NATIVE_HALF: %dx.isinf = call <3 x i1> @llvm.[[ICF:dx]].isinf.v3f16
21+
// NO_HALF: %dx.isinf = call <3 x i1> @llvm.[[ICF:dx]].isinf.v3f32(
2222
// CHECK: ret <3 x i1> %dx.isinf
2323
bool3 test_isinf_half3(half3 p0) { return isinf(p0); }
2424
// NATIVE_HALF: define noundef <4 x i1> @
25-
// NATIVE_HALF: %dx.isinf = call <4 x i1> @llvm.dx.isinf.v4f16
26-
// NO_HALF: %dx.isinf = call <4 x i1> @llvm.dx.isinf.v4f32(
25+
// NATIVE_HALF: %dx.isinf = call <4 x i1> @llvm.[[ICF:dx]].isinf.v4f16
26+
// NO_HALF: %dx.isinf = call <4 x i1> @llvm.[[ICF:dx]].isinf.v4f32(
2727
// CHECK: ret <4 x i1> %dx.isinf
2828
bool4 test_isinf_half4(half4 p0) { return isinf(p0); }
2929

3030
// CHECK: define noundef i1 @
31-
// CHECK: %dx.isinf = call i1 @llvm.dx.isinf.f32(
31+
// CHECK: %dx.isinf = call i1 @llvm.[[ICF:dx]].isinf.f32(
3232
// CHECK: ret i1 %dx.isinf
3333
bool test_isinf_float(float p0) { return isinf(p0); }
3434
// CHECK: define noundef <2 x i1> @
35-
// CHECK: %dx.isinf = call <2 x i1> @llvm.dx.isinf.v2f32
35+
// CHECK: %dx.isinf = call <2 x i1> @llvm.[[ICF:dx]].isinf.v2f32
3636
// CHECK: ret <2 x i1> %dx.isinf
3737
bool2 test_isinf_float2(float2 p0) { return isinf(p0); }
3838
// CHECK: define noundef <3 x i1> @
39-
// CHECK: %dx.isinf = call <3 x i1> @llvm.dx.isinf.v3f32
39+
// CHECK: %dx.isinf = call <3 x i1> @llvm.[[ICF:dx]].isinf.v3f32
4040
// CHECK: ret <3 x i1> %dx.isinf
4141
bool3 test_isinf_float3(float3 p0) { return isinf(p0); }
4242
// CHECK: define noundef <4 x i1> @
43-
// CHECK: %dx.isinf = call <4 x i1> @llvm.dx.isinf.v4f32
43+
// CHECK: %dx.isinf = call <4 x i1> @llvm.[[ICF:dx]].isinf.v4f32
4444
// CHECK: ret <4 x i1> %dx.isinf
4545
bool4 test_isinf_float4(float4 p0) { return isinf(p0); }

0 commit comments

Comments
 (0)