-
Notifications
You must be signed in to change notification settings - Fork 14.2k
[SPIRV] Add reads from image buffer for shaders. #115178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
e7960fc
a967997
97dc974
c558513
cadd46b
3b1e05a
584373c
aad7224
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,66 @@ | ||||||||||||||
; RUN: llc -O0 -verify-machineinstrs -mtriple=spirv-vulkan-library %s -o - | FileCheck %s | ||||||||||||||
; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv-vulkan-library %s -o - -filetype=obj | spirv-val %} | ||||||||||||||
|
||||||||||||||
; CHECK-NOT: OpCapability StorageImageReadWithoutFormat | ||||||||||||||
|
||||||||||||||
; CHECK-DAG: OpDecorate [[IntBufferVar:%[0-9]+]] DescriptorSet 16 | ||||||||||||||
; CHECK-DAG: OpDecorate [[IntBufferVar]] Binding 7 | ||||||||||||||
|
||||||||||||||
; CHECK-DAG: [[int:%[0-9]+]] = OpTypeInt 32 0 | ||||||||||||||
; CHECK-DAG: [[zero:%[0-9]+]] = OpConstant [[int]] 0 | ||||||||||||||
; CHECK-DAG: [[v4_int:%[0-9]+]] = OpTypeVector [[int]] 4 | ||||||||||||||
; CHECK-DAG: [[v2_int:%[0-9]+]] = OpTypeVector [[int]] 2 | ||||||||||||||
; CHECK-DAG: [[RWBufferTypeInt:%[0-9]+]] = OpTypeImage [[int]] Buffer 2 0 0 2 R32i {{$}} | ||||||||||||||
; CHECK-DAG: [[IntBufferPtrType:%[0-9]+]] = OpTypePointer UniformConstant [[RWBufferTypeInt]] | ||||||||||||||
; CHECK-DAG: [[IntBufferVar]] = OpVariable [[IntBufferPtrType]] UniformConstant | ||||||||||||||
|
||||||||||||||
; CHECK: {{%[0-9]+}} = OpFunction {{%[0-9]+}} DontInline {{%[0-9]+}} | ||||||||||||||
; CHECK-NEXT: OpLabel | ||||||||||||||
define void @RWBufferLoad_Vec4_I32() #0 { | ||||||||||||||
; CHECK: [[buffer:%[0-9]+]] = OpLoad [[RWBufferTypeInt]] [[IntBufferVar]] | ||||||||||||||
%buffer0 = call target("spirv.Image", i32, 5, 2, 0, 0, 2, 24) | ||||||||||||||
@llvm.spv.handle.fromBinding.tspirv.Image_i32_5_2_0_0_2_24( | ||||||||||||||
i32 16, i32 7, i32 1, i32 0, i1 false) | ||||||||||||||
|
||||||||||||||
; CHECK: OpImageRead [[v4_int]] [[buffer]] [[zero]] | ||||||||||||||
%data0 = call <4 x i32> @llvm.spv.typedBufferLoad( | ||||||||||||||
target("spirv.Image", i32, 5, 2, 0, 0, 2, 24) %buffer0, i32 0) | ||||||||||||||
|
||||||||||||||
ret void | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
; CHECK: {{%[0-9]+}} = OpFunction {{%[0-9]+}} DontInline {{%[0-9]+}} | ||||||||||||||
; CHECK-NEXT: OpLabel | ||||||||||||||
define void @RWBufferLoad_I32() #0 { | ||||||||||||||
; CHECK: [[buffer:%[0-9]+]] = OpLoad [[RWBufferTypeInt]] [[IntBufferVar]] | ||||||||||||||
%buffer1 = call target("spirv.Image", i32, 5, 2, 0, 0, 2, 24) | ||||||||||||||
@llvm.spv.handle.fromBinding.tspirv.Image_i32_5_2_0_0_2_24( | ||||||||||||||
i32 16, i32 7, i32 1, i32 0, i1 false) | ||||||||||||||
|
||||||||||||||
; CHECK: [[V:%[0-9]+]] = OpImageRead [[v4_int]] [[buffer]] [[zero]] | ||||||||||||||
; CHECK: OpCompositeExtract [[int]] [[V]] 0 | ||||||||||||||
%data1 = call i32 @llvm.spv.typedBufferLoad( | ||||||||||||||
target("spirv.Image", i32, 5, 2, 0, 0, 2, 24) %buffer1, i32 0) | ||||||||||||||
|
||||||||||||||
ret void | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
; CHECK: {{%[0-9]+}} = OpFunction {{%[0-9]+}} DontInline {{%[0-9]+}} | ||||||||||||||
; CHECK-NEXT: OpLabel | ||||||||||||||
define void @RWBufferLoad_Vec2_I32() #0 { | ||||||||||||||
; CHECK: [[buffer:%[0-9]+]] = OpLoad [[RWBufferTypeInt]] [[IntBufferVar]] | ||||||||||||||
%buffer0 = call target("spirv.Image", i32, 5, 2, 0, 0, 2, 24) | ||||||||||||||
@llvm.spv.handle.fromBinding.tspirv.Image_i32_5_2_0_0_2_24( | ||||||||||||||
i32 16, i32 7, i32 1, i32 0, i1 false) | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shall we have a similar test, but descriptor# and binding# are changed between the 2 handles to make sure we generate 2 resources with 2 binding numbers? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That is really a test for
and llvm-project/llvm/test/CodeGen/SPIRV/hlsl-resources/InputAttachmentImageDynIdx.ll Lines 9 to 10 in 60972a8
Is that enough, or do you need more? |
||||||||||||||
|
||||||||||||||
; CHECK: [[V:%[0-9]+]] = OpImageRead [[v4_int]] [[buffer]] [[zero]] | ||||||||||||||
; CHECK: [[e0:%[0-9]+]] = OpCompositeExtract [[int]] [[V]] 0 | ||||||||||||||
; CHECK: [[e1:%[0-9]+]] = OpCompositeExtract [[int]] [[V]] 1 | ||||||||||||||
; CHECK: OpCompositeConstruct [[v2_int]] [[e0]] [[e1]] | ||||||||||||||
%data0 = call <2 x i32> @llvm.spv.typedBufferLoad( | ||||||||||||||
target("spirv.Image", i32, 5, 2, 0, 0, 2, 24) %buffer0, i32 0) | ||||||||||||||
|
||||||||||||||
ret void | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
attributes #0 = { convergent noinline norecurse "frame-pointer"="all" "hlsl.numthreads"="1,1,1" "hlsl.shader"="compute" "no-trapping-math"="true" "stack-protector-buffer-size"="8" } |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
; 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 %} | ||
|
||
; CHECK: OpCapability StorageImageReadWithoutFormat | ||
; CHECK-DAG: OpDecorate [[IntBufferVar:%[0-9]+]] DescriptorSet 16 | ||
; CHECK-DAG: OpDecorate [[IntBufferVar]] Binding 7 | ||
|
||
; CHECK-DAG: [[int:%[0-9]+]] = OpTypeInt 32 0 | ||
; CHECK-DAG: [[zero:%[0-9]+]] = OpConstant [[int]] 0 | ||
; CHECK-DAG: [[v4_int:%[0-9]+]] = OpTypeVector [[int]] 4 | ||
; CHECK-DAG: [[RWBufferTypeInt:%[0-9]+]] = OpTypeImage [[int]] Buffer 2 0 0 2 Unknown {{$}} | ||
; CHECK-DAG: [[IntBufferPtrType:%[0-9]+]] = OpTypePointer UniformConstant [[RWBufferTypeInt]] | ||
; CHECK-DAG: [[IntBufferVar]] = OpVariable [[IntBufferPtrType]] UniformConstant | ||
|
||
; CHECK: {{%[0-9]+}} = OpFunction {{%[0-9]+}} DontInline {{%[0-9]+}} | ||
; CHECK-NEXT: OpLabel | ||
define void @RWBufferLoad_Vec4_I32() #0 { | ||
; CHECK: [[buffer:%[0-9]+]] = OpLoad [[RWBufferTypeInt]] [[IntBufferVar]] | ||
%buffer0 = call target("spirv.Image", i32, 5, 2, 0, 0, 2, 0) | ||
@llvm.spv.handle.fromBinding.tspirv.Image_f32_5_2_0_0_2_0( | ||
i32 16, i32 7, i32 1, i32 0, i1 false) | ||
|
||
; CHECK: OpImageRead [[v4_int]] [[buffer]] [[zero]] | ||
%data0 = call <4 x i32> @llvm.spv.typedBufferLoad( | ||
target("spirv.Image", i32, 5, 2, 0, 0, 2, 0) %buffer0, i32 0) | ||
|
||
ret void | ||
} | ||
|
||
attributes #0 = { convergent noinline norecurse "frame-pointer"="all" "hlsl.numthreads"="1,1,1" "hlsl.shader"="compute" "no-trapping-math"="true" "stack-protector-buffer-size"="8" } |
Uh oh!
There was an error while loading. Please reload this page.