Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / SPIRV / transcoding / ldexp.ll
blobd142590282520055cb6057edaeca6da07a929bbe
1 ;; Check that backend converts scalar arg to vector for ldexp math instructions
3 ; RUN: llc -O0 -mtriple=spirv32-unknown-unknown %s -o - | FileCheck %s --check-prefix=CHECK-SPIRV
5 ;; #pragma OPENCL EXTENSION cl_khr_fp16 : enable
6 ;; #pragma OPENCL EXTENSION cl_khr_fp64 : enable
8 ;; __kernel void test_kernel_half(half3 x, int k, __global half3* ret) {
9 ;;    *ret = ldexp(x, k);
10 ;; }
12 ; CHECK-SPIRV: %{{.*}} ldexp
14 define dso_local spir_kernel void @test_kernel_half(<3 x half> noundef %x, i32 noundef %k, <3 x half> addrspace(1)* nocapture noundef writeonly %ret) local_unnamed_addr {
15 entry:
16   %call = call spir_func <3 x half> @_Z5ldexpDv3_Dhi(<3 x half> noundef %x, i32 noundef %k)
17   %extractVec2 = shufflevector <3 x half> %call, <3 x half> poison, <4 x i32> <i32 0, i32 1, i32 2, i32 undef>
18   %storetmp3 = bitcast <3 x half> addrspace(1)* %ret to <4 x half> addrspace(1)*
19   store <4 x half> %extractVec2, <4 x half> addrspace(1)* %storetmp3, align 8
20   ret void
23 declare spir_func <3 x half> @_Z5ldexpDv3_Dhi(<3 x half> noundef, i32 noundef) local_unnamed_addr
25 ;; __kernel void test_kernel_float(float3 x, int k, __global float3* ret) {
26 ;;    *ret = ldexp(x, k);
27 ;; }
29 ; CHECK-SPIRV: %{{.*}} ldexp
31 define dso_local spir_kernel void @test_kernel_float(<3 x float> noundef %x, i32 noundef %k, <3 x float> addrspace(1)* nocapture noundef writeonly %ret) local_unnamed_addr {
32 entry:
33   %call = call spir_func <3 x float> @_Z5ldexpDv3_fi(<3 x float> noundef %x, i32 noundef %k)
34   %extractVec2 = shufflevector <3 x float> %call, <3 x float> poison, <4 x i32> <i32 0, i32 1, i32 2, i32 undef>
35   %storetmp3 = bitcast <3 x float> addrspace(1)* %ret to <4 x float> addrspace(1)*
36   store <4 x float> %extractVec2, <4 x float> addrspace(1)* %storetmp3, align 16
37   ret void
40 declare spir_func <3 x float> @_Z5ldexpDv3_fi(<3 x float> noundef, i32 noundef) local_unnamed_addr
42 ;; __kernel void test_kernel_double(double3 x, int k, __global double3* ret) {
43 ;;    *ret = ldexp(x, k);
44 ;; }
46 ; CHECK-SPIRV: %{{.*}} ldexp
48 define dso_local spir_kernel void @test_kernel_double(<3 x double> noundef %x, i32 noundef %k, <3 x double> addrspace(1)* nocapture noundef writeonly %ret) local_unnamed_addr {
49 entry:
50   %call = call spir_func <3 x double> @_Z5ldexpDv3_di(<3 x double> noundef %x, i32 noundef %k)
51   %extractVec2 = shufflevector <3 x double> %call, <3 x double> poison, <4 x i32> <i32 0, i32 1, i32 2, i32 undef>
52   %storetmp3 = bitcast <3 x double> addrspace(1)* %ret to <4 x double> addrspace(1)*
53   store <4 x double> %extractVec2, <4 x double> addrspace(1)* %storetmp3, align 32
54   ret void
57 declare spir_func <3 x double> @_Z5ldexpDv3_di(<3 x double> noundef, i32 noundef) local_unnamed_addr