mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-03 10:45:36 +00:00
Zero the workgroup memory for all backends. We can probably disable this for the backends that support workgroup zeroing, but that's an optimization we can perform later. Fixed: tint:280 Change-Id: I9cad919ba3a15b8cedfe6939317d1f6b95425453 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/55244 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: David Neto <dneto@google.com> Reviewed-by: James Price <jrprice@google.com>
55 lines
2.0 KiB
Plaintext
55 lines
2.0 KiB
Plaintext
; SPIR-V
|
|
; Version: 1.3
|
|
; Generator: Google Tint Compiler; 0
|
|
; Bound: 32
|
|
; Schema: 0
|
|
OpCapability Shader
|
|
%13 = OpExtInstImport "GLSL.std.450"
|
|
OpMemoryModel Logical GLSL450
|
|
OpEntryPoint GLCompute %compute_main "compute_main" %tint_symbol
|
|
OpExecutionMode %compute_main LocalSize 1 1 1
|
|
OpName %arg_1 "arg_1"
|
|
OpName %tint_symbol "tint_symbol"
|
|
OpName %frexp_0da285 "frexp_0da285"
|
|
OpName %res "res"
|
|
OpName %compute_main "compute_main"
|
|
OpDecorate %tint_symbol BuiltIn LocalInvocationIndex
|
|
%int = OpTypeInt 32 1
|
|
%_ptr_Workgroup_int = OpTypePointer Workgroup %int
|
|
%arg_1 = OpVariable %_ptr_Workgroup_int Workgroup
|
|
%uint = OpTypeInt 32 0
|
|
%_ptr_Input_uint = OpTypePointer Input %uint
|
|
%tint_symbol = OpVariable %_ptr_Input_uint Input
|
|
%void = OpTypeVoid
|
|
%7 = OpTypeFunction %void
|
|
%float = OpTypeFloat 32
|
|
%float_1 = OpConstant %float 1
|
|
%_ptr_Function_float = OpTypePointer Function %float
|
|
%18 = OpConstantNull %float
|
|
%uint_0 = OpConstant %uint 0
|
|
%bool = OpTypeBool
|
|
%27 = OpConstantNull %int
|
|
%uint_2 = OpConstant %uint 2
|
|
%uint_264 = OpConstant %uint 264
|
|
%frexp_0da285 = OpFunction %void None %7
|
|
%10 = OpLabel
|
|
%res = OpVariable %_ptr_Function_float Function %18
|
|
%11 = OpExtInst %float %13 Frexp %float_1 %arg_1
|
|
OpStore %res %11
|
|
OpReturn
|
|
OpFunctionEnd
|
|
%compute_main = OpFunction %void None %7
|
|
%20 = OpLabel
|
|
%21 = OpLoad %uint %tint_symbol
|
|
%23 = OpIEqual %bool %21 %uint_0
|
|
OpSelectionMerge %25 None
|
|
OpBranchConditional %23 %26 %25
|
|
%26 = OpLabel
|
|
OpStore %arg_1 %27
|
|
OpBranch %25
|
|
%25 = OpLabel
|
|
OpControlBarrier %uint_2 %uint_2 %uint_264
|
|
%31 = OpFunctionCall %void %frexp_0da285
|
|
OpReturn
|
|
OpFunctionEnd
|