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: call spir_func i32 @_Z14work_group_alli(
      9 ; CHECK-LLVM: call spir_func i32 @_Z14work_group_anyi(
     10 
     11 ; CHECK-SPIRV: 2 Capability Groups
     12 ; CHECK-SPIRV: 2 TypeBool [[BoolTypeID:[0-9]+]]
     13 ; CHECK-SPIRV: 3 ConstantTrue [[BoolTypeID]] [[ConstID:[0-9]+]]
     14 ; CHECK-SPIRV: 5 GroupAll [[BoolTypeID]] {{[0-9]+}} {{[0-9]+}} [[ConstID]]
     15 ; CHECK-SPIRV: 5 GroupAny [[BoolTypeID]] {{[0-9]+}} {{[0-9]+}} [[ConstID]]
     16 
     17 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"
     18 target triple = "spir-unknown-unknown"
     19 
     20 ; Function Attrs: nounwind
     21 define spir_kernel void @test(i32 addrspace(1)* nocapture readnone %i) #0 {
     22 entry:
     23   %call = tail call spir_func i32 @_Z14work_group_alli(i32 5) #2
     24   %call1 = tail call spir_func i32 @_Z14work_group_anyi(i32 5) #2
     25   ret void
     26 }
     27 
     28 declare spir_func i32 @_Z14work_group_alli(i32) #1
     29 
     30 declare spir_func i32 @_Z14work_group_anyi(i32) #1
     31 
     32 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" }
     33 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" }
     34 attributes #2 = { nounwind }
     35 
     36 !opencl.kernels = !{!0}
     37 !opencl.enable.FP_CONTRACT = !{}
     38 !opencl.spir.version = !{!6}
     39 !opencl.ocl.version = !{!7}
     40 !opencl.used.extensions = !{!8}
     41 !opencl.used.optional.core.features = !{!8}
     42 !opencl.compiler.options = !{!8}
     43 
     44 !0 = !{void (i32 addrspace(1)*)* @test, !1, !2, !3, !4, !5}
     45 !1 = !{!"kernel_arg_addr_space", i32 1}
     46 !2 = !{!"kernel_arg_access_qual", !"none"}
     47 !3 = !{!"kernel_arg_type", !"int*"}
     48 !4 = !{!"kernel_arg_base_type", !"int*"}
     49 !5 = !{!"kernel_arg_type_qual", !""}
     50 !6 = !{i32 1, i32 2}
     51 !7 = !{i32 2, i32 0}
     52 !8 = !{}
     53