Home | History | Annotate | Download | only in transcoding
      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-LLVM: fmul
      9 
     10 ; CHECK-SPIRV: 5 FMul
     11 ; CHECK-SPIRV-NOT: Dot
     12 
     13 target 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"
     14 target triple = "spir-unknown-unknown"
     15 
     16 ; Function Attrs: nounwind
     17 define spir_kernel void @test(float %f) #0 {
     18 entry:
     19   %call = tail call spir_func float @_Z3dotff(float %f, float %f) #2
     20   ret void
     21 }
     22 
     23 declare spir_func float @_Z3dotff(float, float) #1
     24 
     25 attributes #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" }
     26 attributes #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" }
     27 attributes #2 = { nounwind }
     28 
     29 !opencl.kernels = !{!0}
     30 !opencl.enable.FP_CONTRACT = !{}
     31 !opencl.spir.version = !{!6}
     32 !opencl.ocl.version = !{!7}
     33 !opencl.used.extensions = !{!8}
     34 !opencl.used.optional.core.features = !{!8}
     35 !opencl.compiler.options = !{!8}
     36 
     37 !0 = !{void (float)* @test, !1, !2, !3, !4, !5}
     38 !1 = !{!"kernel_arg_addr_space", i32 0}
     39 !2 = !{!"kernel_arg_access_qual", !"none"}
     40 !3 = !{!"kernel_arg_type", !"float"}
     41 !4 = !{!"kernel_arg_base_type", !"float"}
     42 !5 = !{!"kernel_arg_type_qual", !""}
     43 !6 = !{i32 1, i32 2}
     44 !7 = !{i32 2, i32 0}
     45 !8 = !{}
     46