1; RUN: llvm-as %s -o %t.bc 2; RUN: llvm-spirv %t.bc -spirv-text -o %t.txt 3; RUN: FileCheck < %t.txt %s --check-prefix=CHECK-SPIRV 4; RUN: llvm-spirv %t.bc -o %t.spv 5; RUN: llvm-spirv -r %t.spv -o %t.rev.bc 6; RUN: llvm-dis < %t.rev.bc | FileCheck %s --check-prefix=CHECK-LLVM 7 8; CHECK-SPIRV: 4 TypeInt [[IntTypeID:[0-9]+]] 64 9; CHECK-SPIRV: 4 TypeVector [[Int64VectorTypeID:[0-9]+]] [[IntTypeID]] 2 10 11; CHECK-SPIRV: 6 Select [[Int64VectorTypeID]] 12; CHECK-SPIRV: 6 Select [[Int64VectorTypeID]] 13; CHECK-SPIRV: 6 Select [[Int64VectorTypeID]] 14; CHECK-SPIRV: 6 Select [[Int64VectorTypeID]] 15 16; CHECK-LLVM: call spir_func <2 x i64> @_Z5isinfDv2_d(<2 x double> 17; CHECK-LLVM: call spir_func <2 x i64> @_Z5isnanDv2_d(<2 x double> 18; CHECK-LLVM: call spir_func <2 x i64> @_Z8isnormalDv2_d(<2 x double> 19; CHECK-LLVM: call spir_func <2 x i64> @_Z8isfiniteDv2_d(<2 x double> 20 21target datalayout = "e-p:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024" 22target triple = "spir-unknown-unknown" 23 24; Function Attrs: nounwind 25define spir_kernel void @test_vector_double(<2 x i64> addrspace(1)* nocapture %out, <2 x double> %in) #0 { 26 %1 = tail call spir_func <2 x i64> @_Z5isinfDv2_d(<2 x double> %in) #2 27 %2 = tail call spir_func <2 x i64> @_Z5isnanDv2_d(<2 x double> %in) #2 28 %3 = add <2 x i64> %1, %2 29 %4 = tail call spir_func <2 x i64> @_Z8isnormalDv2_d(<2 x double> %in) #2 30 %5 = add <2 x i64> %3, %4 31 %6 = tail call spir_func <2 x i64> @_Z8isfiniteDv2_d(<2 x double> %in) #2 32 %7 = add <2 x i64> %5, %6 33 store <2 x i64> %7, <2 x i64> addrspace(1)* %out, align 16, !tbaa !11 34 ret void 35} 36 37declare spir_func <2 x i64> @_Z5isinfDv2_d(<2 x double>) #1 38 39declare spir_func <2 x i64> @_Z5isnanDv2_d(<2 x double>) #1 40 41declare spir_func <2 x i64> @_Z8isnormalDv2_d(<2 x double>) #1 42 43declare spir_func <2 x i64> @_Z8isfiniteDv2_d(<2 x double>) #1 44 45attributes #0 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-realign-stack" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" } 46attributes #1 = { "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-realign-stack" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" } 47attributes #2 = { nounwind } 48 49!opencl.kernels = !{!0} 50!opencl.enable.FP_CONTRACT = !{} 51!opencl.spir.version = !{!6} 52!opencl.ocl.version = !{!7} 53!opencl.used.extensions = !{!8} 54!opencl.used.optional.core.features = !{!9} 55!opencl.compiler.options = !{!8} 56!llvm.ident = !{!10} 57 58!0 = !{void (<2 x i64> addrspace(1)*, <2 x double>)* @test_vector_double, !1, !2, !3, !4, !5} 59!1 = !{!"kernel_arg_addr_space", i32 1, i32 0} 60!2 = !{!"kernel_arg_access_qual", !"none", !"none"} 61!3 = !{!"kernel_arg_type", !"long2*", !"double2"} 62!4 = !{!"kernel_arg_base_type", !"long2*", !"double2"} 63!5 = !{!"kernel_arg_type_qual", !"", !""} 64!6 = !{i32 1, i32 2} 65!7 = !{i32 2, i32 0} 66!8 = !{} 67!9 = !{!"cl_doubles"} 68!10 = !{!"clang version 3.6.1 "} 69!11 = !{!12, !12, i64 0} 70!12 = !{!"omnipotent char", !13, i64 0} 71!13 = !{!"Simple C/C++ TBAA"} 72