[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / CodeGen / SPIRV / hlsl-resources / UnknownBufferStore.ll
blob4d26f5025681494e73e6d51ba1b9bc19c64ae7b9
1 ; RUN: llc -O0 -verify-machineinstrs -mtriple=spirv1.6-vulkan1.3-library %s -o - | FileCheck %s
2 ; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv1.6-vulkan1.3-library %s -o - -filetype=obj | spirv-val %}
4 ; CHECK: OpCapability StorageImageWriteWithoutFormat
5 ; CHECK-DAG: OpDecorate [[IntBufferVar:%[0-9]+]] DescriptorSet 16
6 ; CHECK-DAG: OpDecorate [[IntBufferVar]] Binding 7
8 ; CHECK-DAG: [[int:%[0-9]+]] = OpTypeInt 32 0
9 ; CHECK-DAG: [[ten:%[0-9]+]] = OpConstant [[int]] 10
10 ; CHECK-DAG: [[v4_int:%[0-9]+]] = OpTypeVector [[int]] 4
11 ; CHECK-DAG: [[RWBufferTypeInt:%[0-9]+]] = OpTypeImage [[int]] Buffer 2 0 0 2 Unknown {{$}}
12 ; CHECK-DAG: [[IntBufferPtrType:%[0-9]+]] = OpTypePointer UniformConstant [[RWBufferTypeInt]]
13 ; CHECK-DAG: [[IntBufferVar]] = OpVariable [[IntBufferPtrType]] UniformConstant
15 ; CHECK: {{%[0-9]+}} = OpFunction {{%[0-9]+}} DontInline {{%[0-9]+}}
16 declare <4 x i32> @get_data() #1
18 ; CHECK: {{%[0-9]+}} = OpFunction {{%[0-9]+}} DontInline {{%[0-9]+}}
19 ; CHECK-NEXT: OpLabel
20 define void @RWBufferLoad_Vec4_I32() #0 {
21 ; CHECK: [[buffer:%[0-9]+]] = OpLoad [[RWBufferTypeInt]] [[IntBufferVar]]
22   %buffer0 = call target("spirv.Image", i32, 5, 2, 0, 0, 2, 0)
23       @llvm.spv.handle.fromBinding.tspirv.Image_f32_5_2_0_0_2_0(
24           i32 16, i32 7, i32 1, i32 0, i1 false)
26 ; CHECK: [[data:%[0-9]+]] = OpFunctionCall
27   %data = call <4 x i32> @get_data()
28 ; CHECK: OpImageWrite [[buffer]] [[ten]] [[data]]
29   call void @llvm.spv.typedBufferStore(
30       target("spirv.Image", i32, 5, 2, 0, 0, 2, 0) %buffer0, i32 10, <4 x i32> %data)
32   ret void
35 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" }
36 attributes #1 = { convergent noinline norecurse "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" }