The SPIR-V backend does not have access to the original name of a
resource in the source, so it tries to create a name. This leads to some
problems with reflection.
That is why start to pass the name of the resource from Clang to the
SPIR-V backend.
Fixes #138533
89 lines
5.4 KiB
LLVM
89 lines
5.4 KiB
LLVM
; RUN: llc -O0 -verify-machineinstrs -mtriple=spirv1.6-vulkan1.3-library %s -o - | FileCheck %s
|
|
; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv1.6-vulkan1.3-library %s -o - -filetype=obj | spirv-val %}
|
|
|
|
target datalayout = "e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-n8:16:32:64-G1"
|
|
|
|
@.str.b = private unnamed_addr constant [2 x i8] c"B\00", align 1
|
|
@.str.rwb = private unnamed_addr constant [4 x i8] c"RWB\00", align 1
|
|
|
|
; CHECK: OpDecorate [[BufferVar:%.+]] DescriptorSet 0
|
|
; CHECK: OpDecorate [[BufferVar]] Binding 0
|
|
; CHECK: OpMemberDecorate [[BufferType:%.+]] 0 Offset 0
|
|
; CHECK: OpDecorate [[BufferType]] Block
|
|
; CHECK: OpMemberDecorate [[BufferType]] 0 NonWritable
|
|
; CHECK: OpDecorate [[RWBufferVar:%.+]] DescriptorSet 0
|
|
; CHECK: OpDecorate [[RWBufferVar]] Binding 1
|
|
; CHECK: OpDecorate [[ArrayType:%.+]] ArrayStride 4
|
|
; CHECK: OpMemberDecorate [[RWBufferType:%.+]] 0 Offset 0
|
|
; CHECK: OpDecorate [[RWBufferType]] Block
|
|
|
|
|
|
; CHECK: [[int:%[0-9]+]] = OpTypeInt 32 0
|
|
; CHECK: [[ArrayType]] = OpTypeRuntimeArray
|
|
; CHECK: [[RWBufferType]] = OpTypeStruct [[ArrayType]]
|
|
; CHECK: [[RWBufferPtrType:%.+]] = OpTypePointer StorageBuffer [[RWBufferType]]
|
|
; CHECK: [[BufferType]] = OpTypeStruct [[ArrayType]]
|
|
; CHECK: [[BufferPtrType:%.+]] = OpTypePointer StorageBuffer [[BufferType]]
|
|
; CHECK-DAG: [[zero:%[0-9]+]] = OpConstant [[int]] 0
|
|
; CHECK-DAG: [[one:%[0-9]+]] = OpConstant [[int]] 1
|
|
; CHECK-DAG: [[two:%[0-9]+]] = OpConstant [[int]] 2
|
|
; CHECK-DAG: [[BufferVar]] = OpVariable [[BufferPtrType]] StorageBuffer
|
|
; CHECK-DAG: [[RWBufferVar]] = OpVariable [[RWBufferPtrType]] StorageBuffer
|
|
|
|
; Function Attrs: mustprogress nofree noinline norecurse nosync nounwind willreturn memory(readwrite, inaccessiblemem: none)
|
|
define void @main() local_unnamed_addr #1 {
|
|
entry:
|
|
|
|
; CHECK-DAG: [[BufferHandle:%.+]] = OpCopyObject [[BufferPtrType]] [[BufferVar]]
|
|
; CHECK-DAG: [[BufferHandle2:%.+]] = OpCopyObject [[BufferPtrType]] [[BufferVar]]
|
|
; CHECK-DAG: [[RWBufferHandle:%.+]] = OpCopyObject [[RWBufferPtrType]] [[RWBufferVar]]
|
|
%BufferHandle = tail call target("spirv.VulkanBuffer", [0 x i32], 12, 0) @llvm.spv.resource.handlefrombinding.tspirv.VulkanBuffer_a0i32_12_0t(i32 0, i32 0, i32 1, i32 0, i1 false, ptr nonnull @.str.b)
|
|
%BufferHandle2 = tail call target("spirv.VulkanBuffer", [0 x i32], 12, 0) @llvm.spv.resource.handlefrombinding.tspirv.VulkanBuffer_a0i32_12_0t(i32 0, i32 0, i32 1, i32 0, i1 false, ptr nonnull @.str.b)
|
|
%RWBufferHandle = tail call target("spirv.VulkanBuffer", [0 x i32], 12, 1) @llvm.spv.resource.handlefrombinding.tspirv.VulkanBuffer_a0i32_12_1t(i32 0, i32 1, i32 1, i32 0, i1 false, ptr nonnull @.str.rwb)
|
|
|
|
; CHECK: [[AC:%.+]] = OpAccessChain {{.*}} [[BufferHandle]] [[zero]] [[one]]
|
|
%0 = tail call noundef nonnull align 4 dereferenceable(4) ptr addrspace(11) @llvm.spv.resource.getpointer.p11.tspirv.VulkanBuffer_a0i32_12_0t(target("spirv.VulkanBuffer", [0 x i32], 12, 0) %BufferHandle, i32 1)
|
|
|
|
; CHECK: [[LD:%.+]] = OpLoad [[int]] [[AC]] Aligned 4
|
|
%1 = load i32, ptr addrspace(11) %0, align 4, !tbaa !3
|
|
|
|
; CHECK: [[AC:%.+]] = OpAccessChain {{.*}} [[RWBufferHandle]] [[zero]] [[zero]]
|
|
%2 = tail call noundef nonnull align 4 dereferenceable(4) ptr addrspace(11) @llvm.spv.resource.getpointer.p11.tspirv.VulkanBuffer_a0i32_12_1t(target("spirv.VulkanBuffer", [0 x i32], 12, 1) %RWBufferHandle, i32 0)
|
|
|
|
; CHECK: OpStore [[AC]] [[LD]]
|
|
store i32 %1, ptr addrspace(11) %2, align 4, !tbaa !3
|
|
|
|
; CHECK: [[AC:%.+]] = OpAccessChain {{.*}} [[BufferHandle2]] [[zero]] [[two]]
|
|
%3 = tail call noundef nonnull align 4 dereferenceable(4) ptr addrspace(11) @llvm.spv.resource.getpointer.p11.tspirv.VulkanBuffer_a0i32_12_0t(target("spirv.VulkanBuffer", [0 x i32], 12, 0) %BufferHandle2, i32 2)
|
|
|
|
; CHECK: [[LD:%.+]] = OpLoad [[int]] [[AC]] Aligned 4
|
|
%4 = load i32, ptr addrspace(11) %3, align 4, !tbaa !3
|
|
|
|
; CHECK: [[AC:%.+]] = OpAccessChain {{.*}} [[RWBufferHandle]] [[zero]] [[zero]]
|
|
%5 = tail call noundef nonnull align 4 dereferenceable(4) ptr addrspace(11) @llvm.spv.resource.getpointer.p11.tspirv.VulkanBuffer_a0i32_12_1t(target("spirv.VulkanBuffer", [0 x i32], 12, 1) %RWBufferHandle, i32 0)
|
|
|
|
; CHECK: OpStore [[AC]] [[LD]]
|
|
store i32 %4, ptr addrspace(11) %5, align 4, !tbaa !3
|
|
ret void
|
|
}
|
|
|
|
; Function Attrs: mustprogress nocallback nofree nosync nounwind willreturn memory(none)
|
|
declare ptr addrspace(11) @llvm.spv.resource.getpointer.p11.tspirv.VulkanBuffer_a0i32_12_1t(target("spirv.VulkanBuffer", [0 x i32], 12, 1), i32) #0
|
|
|
|
; Function Attrs: mustprogress nocallback nofree nosync nounwind willreturn memory(none)
|
|
declare ptr addrspace(11) @llvm.spv.resource.getpointer.p11.tspirv.VulkanBuffer_a0i32_12_0t(target("spirv.VulkanBuffer", [0 x i32], 12, 0), i32) #0
|
|
|
|
attributes #0 = { mustprogress nocallback nofree nosync nounwind willreturn memory(none) }
|
|
attributes #1 = { mustprogress nofree noinline norecurse nosync nounwind willreturn memory(readwrite, inaccessiblemem: none) "approx-func-fp-math"="false" "frame-pointer"="all" "hlsl.numthreads"="1,1,1" "hlsl.shader"="compute" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" }
|
|
|
|
!llvm.module.flags = !{!0, !1}
|
|
!llvm.ident = !{!2}
|
|
|
|
!0 = !{i32 1, !"wchar_size", i32 4}
|
|
!1 = !{i32 7, !"frame-pointer", i32 2}
|
|
!2 = !{!"clang version 21.0.0git (git@github.com:s-perron/llvm-project.git 6e86add06c03e328dbb4b83f99406cc832a22f86)"}
|
|
!3 = !{!4, !4, i64 0}
|
|
!4 = !{!"int", !5, i64 0}
|
|
!5 = !{!"omnipotent char", !6, i64 0}
|
|
!6 = !{!"Simple C++ TBAA"}
|