You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
35 lines
1.3 KiB
; RUN: llvm-as < %s | llvm-spirv -spirv-text -o %t |
|
; RUN: FileCheck < %t %s |
|
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" |
|
target triple = "spir-unknown-unknown" |
|
|
|
; Function Attrs: nounwind |
|
; CHECK: "foo" |
|
define spir_kernel void @foo(i32 addrspace(1)* %a) #0 { |
|
entry: |
|
%a.addr = alloca i32 addrspace(1)*, align 4 |
|
store i32 addrspace(1)* %a, i32 addrspace(1)** %a.addr, align 4 |
|
%0 = load i32 addrspace(1)*, i32 addrspace(1)** %a.addr, align 4 |
|
; CHECK: 5 Store {{[0-9]+}} {{[0-9]+}} 2 4 |
|
store i32 0, i32 addrspace(1)* %0, align 4 |
|
ret void |
|
} |
|
|
|
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" } |
|
|
|
!opencl.kernels = !{!0} |
|
!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} |
|
|
|
!0 = !{void (i32 addrspace(1)*)* @foo, !1, !2, !3, !4, !5} |
|
!1 = !{!"kernel_arg_addr_space", i32 1} |
|
!2 = !{!"kernel_arg_access_qual", !"none"} |
|
!3 = !{!"kernel_arg_type", !"int*"} |
|
!4 = !{!"kernel_arg_base_type", !"int*"} |
|
!5 = !{!"kernel_arg_type_qual", !""} |
|
!6 = !{i32 1, i32 2} |
|
!7 = !{}
|
|
|