71 lines
2.7 KiB
LLVM
71 lines
2.7 KiB
LLVM
; RUN: llvm-as %s -o %t.bc
|
|
; RUN: llvm-spirv %t.bc -spirv-text -o %t
|
|
; RUN: llvm-spirv %t.bc -o %t.spv
|
|
; RUN: spirv-val %t.spv
|
|
; RUN: FileCheck < %t %s
|
|
|
|
; CHECK-DAG: {{[0-9]*}} Capability Addresses
|
|
|
|
; ModuleID = 'capbility-kernel.bc'
|
|
target datalayout = "e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024"
|
|
target triple = "spir64-unknown-unknown"
|
|
|
|
; CHECK-DAG: {{[0-9]*}} Capability Linkage
|
|
; Function Attrs: nounwind
|
|
define spir_func void @func_export(ptr addrspace(1) captures(none) %a) #0 {
|
|
entry:
|
|
; CHECK-DAG: {{[0-9]*}} Capability Int64
|
|
%call = tail call spir_func i64 @_Z13get_global_idj(i32 0) #3
|
|
%cmp = icmp eq i64 %call, 0
|
|
br i1 %cmp, label %if.then, label %if.end
|
|
|
|
if.then: ; preds = %entry
|
|
store i32 1, ptr addrspace(1) %a, align 4, !tbaa !9
|
|
br label %if.end
|
|
|
|
if.end: ; preds = %if.then, %entry
|
|
ret void
|
|
}
|
|
|
|
; Function Attrs: nounwind readnone
|
|
declare spir_func i64 @_Z13get_global_idj(i32) #1
|
|
|
|
; CHECK-DAG: {{[0-9]*}} Capability Kernel
|
|
; CHECK-NOT: {{[0-9]*}} Capability Shader
|
|
; CHECK-NOT: {{[0-9]*}} Capability Float64
|
|
; Function Attrs: nounwind
|
|
define spir_kernel void @func_kernel(ptr addrspace(1) %a) #0 !kernel_arg_addr_space !1 !kernel_arg_access_qual !2 !kernel_arg_type !3 !kernel_arg_base_type !5 !kernel_arg_type_qual !4 {
|
|
entry:
|
|
tail call spir_func void @func_import(ptr addrspace(1) %a) #4
|
|
ret void
|
|
}
|
|
|
|
declare spir_func void @func_import(ptr addrspace(1)) #2
|
|
|
|
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" }
|
|
attributes #1 = { nounwind readnone "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" }
|
|
attributes #2 = { "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" }
|
|
attributes #3 = { nounwind readnone }
|
|
attributes #4 = { nounwind }
|
|
|
|
!opencl.enable.FP_CONTRACT = !{}
|
|
!opencl.spir.version = !{!6}
|
|
!opencl.ocl.version = !{!6}
|
|
!opencl.used.extensions = !{!7}
|
|
!opencl.used.optional.core.features = !{!7}
|
|
!opencl.compiler.options = !{!7}
|
|
!llvm.ident = !{!8}
|
|
|
|
!1 = !{i32 1}
|
|
!2 = !{!"none"}
|
|
!3 = !{!"int*"}
|
|
!4 = !{!""}
|
|
!5 = !{!"int*"}
|
|
!6 = !{i32 2, i32 0}
|
|
!7 = !{}
|
|
!8 = !{!"clang version 3.4 "}
|
|
!9 = !{!10, !10, i64 0}
|
|
!10 = !{!"int", !11, i64 0}
|
|
!11 = !{!"omnipotent char", !12, i64 0}
|
|
!12 = !{!"Simple C/C++ TBAA"}
|