Removes uniformity bit from resource initialization intrinsics `llvm.{dx|spv}.resource.handlefrombinding` and `llvm.{dx|spv}.resource.handlefromimplicitbinding`. The flag currently always set to `false`. It should be derived from resource analysis and not provided by codegen.
Closes #135452
40 lines
2.3 KiB
LLVM
40 lines
2.3 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
|
|
; RUN: llc -verify-machineinstrs -O3 -mtriple=spirv1.6-unknown-vulkan1.3-compute %s -o - | FileCheck %s --match-full-lines
|
|
; RUN: %if spirv-tools %{ llc -O3 -mtriple=spirv1.6-unknown-vulkan1.3-compute %s -o - -filetype=obj | spirv-val %}
|
|
|
|
@.str = private unnamed_addr constant [7 x i8] c"buffer\00", align 1
|
|
|
|
define void @main() "hlsl.shader"="pixel" {
|
|
; CHECK: %24 = OpFunction %2 None %3 ; -- Begin function main
|
|
; CHECK-NEXT: %1 = OpLabel
|
|
; CHECK-NEXT: %25 = OpVariable %13 Function %22
|
|
; CHECK-NEXT: %26 = OpLoad %7 %23
|
|
; CHECK-NEXT: %27 = OpImageRead %5 %26 %15
|
|
; CHECK-NEXT: %28 = OpCompositeExtract %4 %27 0
|
|
; CHECK-NEXT: %29 = OpCompositeExtract %4 %27 1
|
|
; CHECK-NEXT: %30 = OpFAdd %4 %29 %28
|
|
; CHECK-NEXT: %31 = OpCompositeInsert %5 %30 %27 0
|
|
; CHECK-NEXT: %32 = OpLoad %7 %23
|
|
; CHECK-NEXT: OpImageWrite %32 %15 %31
|
|
; CHECK-NEXT: OpReturn
|
|
; CHECK-NEXT: OpFunctionEnd
|
|
entry:
|
|
%0 = tail call target("spirv.Image", float, 5, 2, 0, 0, 2, 0) @llvm.spv.resource.handlefrombinding.tspirv.Image_f32_5_2_0_0_2_0t(i32 0, i32 0, i32 1, i32 0, ptr nonnull @.str)
|
|
%1 = tail call noundef align 16 dereferenceable(16) ptr addrspace(11) @llvm.spv.resource.getpointer.p11.tspirv.Image_f32_5_2_0_0_2_0t(target("spirv.Image", float, 5, 2, 0, 0, 2, 0) %0, i32 0)
|
|
%2 = load <4 x float>, ptr addrspace(11) %1, align 16
|
|
%3 = extractelement <4 x float> %2, i64 0
|
|
%4 = extractelement <4 x float> %2, i64 1
|
|
%add.i = fadd reassoc nnan ninf nsz arcp afn float %4, %3
|
|
%5 = insertelement <4 x float> %2, float %add.i, i64 0
|
|
store <4 x float> %5, ptr addrspace(11) %1, align 16
|
|
ret void
|
|
}
|
|
|
|
; Function Attrs: mustprogress nocallback nofree nosync nounwind willreturn memory(none)
|
|
declare target("spirv.Image", float, 5, 2, 0, 0, 2, 0) @llvm.spv.resource.handlefrombinding.tspirv.Image_f32_5_2_0_0_2_0t(i32, i32, i32, i32, ptr) #0
|
|
|
|
; Function Attrs: mustprogress nocallback nofree nosync nounwind willreturn memory(none)
|
|
declare ptr addrspace(11) @llvm.spv.resource.getpointer.p11.tspirv.Image_f32_5_2_0_0_2_0t(target("spirv.Image", float, 5, 2, 0, 0, 2, 0), i32) #0
|
|
|
|
attributes #0 = { mustprogress nocallback nofree nosync nounwind willreturn memory(none) }
|