|
| 1 | +; RUN: llc -verify-machineinstrs -O3 -mtriple=spirv-unknown-vulkan1.3-compute %s -o - | FileCheck %s --match-full-lines |
| 2 | +; RUN: %if spirv-tools %{ llc -O3 -mtriple=spirv-unknown-vulkan1.3-compute %s -o - -filetype=obj | spirv-val %} |
| 3 | + |
| 4 | +; FIXME(134119): enable-this once Offset decoration are added. |
| 5 | +; XFAIL: spirv-tools |
| 6 | + |
| 7 | +%S2 = type { { [10 x { i32, i32 } ] }, i32 } |
| 8 | + |
| 9 | +; CHECK-DAG: %[[#uint:]] = OpTypeInt 32 0 |
| 10 | +; CHECK-DAG: %[[#uint_0:]] = OpConstant %[[#uint]] 0 |
| 11 | +; CHECK-DAG: %[[#uint_1:]] = OpConstant %[[#uint]] 1 |
| 12 | +; CHECK-DAG: %[[#uint_3:]] = OpConstant %[[#uint]] 3 |
| 13 | +; CHECK-DAG: %[[#uint_10:]] = OpConstant %[[#uint]] 10 |
| 14 | +; CHECK-DAG: %[[#uint_11:]] = OpConstant %[[#uint]] 11 |
| 15 | +; CHECK-DAG: %[[#ptr_StorageBuffer_uint:]] = OpTypePointer StorageBuffer %[[#uint]] |
| 16 | + |
| 17 | +; CHECK-DAG: %[[#t_s2_s_a_s:]] = OpTypeStruct %[[#uint]] %[[#uint]] |
| 18 | +; CHECK-DAG: %[[#t_s2_s_a:]] = OpTypeArray %[[#t_s2_s_a_s]] %[[#uint_10]] |
| 19 | +; CHECK-DAG: %[[#t_s2_s:]] = OpTypeStruct %[[#t_s2_s_a]] |
| 20 | +; CHECK-DAG: %[[#t_s2:]] = OpTypeStruct %[[#t_s2_s]] %[[#uint]] |
| 21 | + |
| 22 | +; CHECK-DAG: %[[#ptr_StorageBuffer_struct:]] = OpTypePointer StorageBuffer %[[#t_s2]] |
| 23 | +; CHECK-DAG: %[[#rarr:]] = OpTypeRuntimeArray %[[#t_s2]] |
| 24 | +; CHECK-DAG: %[[#rarr_struct:]] = OpTypeStruct %[[#rarr]] |
| 25 | +; CHECK-DAG: %[[#spirv_VulkanBuffer:]] = OpTypePointer StorageBuffer %[[#rarr_struct]] |
| 26 | + |
| 27 | +declare target("spirv.VulkanBuffer", [0 x %S2], 12, 1) @llvm.spv.resource.handlefrombinding.tspirv.VulkanBuffer_a0s_Ss_12_1t(i32, i32, i32, i32, i1) |
| 28 | + |
| 29 | +define void @main() "hlsl.numthreads"="1,1,1" "hlsl.shader"="compute" { |
| 30 | +entry: |
| 31 | + %handle = tail call target("spirv.VulkanBuffer", [0 x %S2], 12, 1) @llvm.spv.resource.handlefrombinding.tspirv.VulkanBuffer_a0s_Ss_12_1t(i32 0, i32 0, i32 1, i32 0, i1 false) |
| 32 | +; CHECK: %[[#resource:]] = OpVariable %[[#spirv_VulkanBuffer]] StorageBuffer |
| 33 | + |
| 34 | + %ptr = tail call noundef align 4 dereferenceable(4) ptr addrspace(11) @llvm.spv.resource.getpointer.p11.tspirv.VulkanBuffer_a0s_Ss_12_1t(target("spirv.VulkanBuffer", [0 x %S2], 12, 1) %handle, i32 0) |
| 35 | +; CHECK: %[[#a:]] = OpCopyObject %[[#spirv_VulkanBuffer]] %[[#resource]] |
| 36 | +; CHECK: %[[#b:]] = OpAccessChain %[[#ptr_StorageBuffer_struct]] %[[#a:]] %[[#uint_0]] %[[#uint_0]] |
| 37 | + %casted = addrspacecast ptr addrspace(11) %ptr to ptr |
| 38 | + |
| 39 | +; CHECK: %[[#ptr2:]] = OpInBoundsAccessChain %[[#ptr_StorageBuffer_uint]] %[[#b:]] %[[#uint_0]] %[[#uint_0]] %[[#uint_3]] %[[#uint_1]] |
| 40 | + %ptr2 = getelementptr inbounds %S2, ptr %casted, i64 0, i32 0, i32 0, i32 3, i32 1 |
| 41 | + |
| 42 | +; CHECK: OpStore %[[#ptr2]] %[[#uint_10]] Aligned 4 |
| 43 | + store i32 10, ptr %ptr2, align 4 |
| 44 | + |
| 45 | +; Another store, but this time using LLVM's ability to load the first element |
| 46 | +; without an explicit GEP. The backend has to determine the ptr type and |
| 47 | +; generate the appropriate access chain. |
| 48 | +; CHECK: %[[#ptr3:]] = OpInBoundsAccessChain %[[#ptr_StorageBuffer_uint]] %[[#b:]] %[[#uint_0]] %[[#uint_0]] %[[#uint_0]] %[[#uint_0]] |
| 49 | +; CHECK: OpStore %[[#ptr3]] %[[#uint_11]] Aligned 4 |
| 50 | + store i32 11, ptr %casted, align 4 |
| 51 | + ret void |
| 52 | +} |
| 53 | + |
| 54 | +declare ptr addrspace(11) @llvm.spv.resource.getpointer.p11.tspirv.VulkanBuffer_a0s_S2s_12_1t(target("spirv.VulkanBuffer", [0 x %S2], 12, 1), i32) |
0 commit comments