e40d166477
This reverts commit0de76f72cd
. Reason for revert: fixes ASAN use-after-scope-end issue Original change's description: > Revert "Add support for top-level uniforms in SPIR-V." > > This reverts commitacba30420c
. > > Reason for revert: ASAN breakage on tree for > Perf-Win2019-Clang-GCE-CPU-AVX2-x86_64-(Debug|Release)-All-ASAN > > Address 0x009af69fda78 is located in stack of thread T0 at offset 1272 in frame > #0 0x7ff75c069ddf in _asan_wrap_RtlReAllocateHeap+0x44014f (c:\b\s\w\ir\build\nanobench.exe+0x1413a9ddf) > This frame has 35 object(s): > [32, 104) 'body' (line 3363) > [144, 152) 'main' (line 3365) > [176, 184) 'ref.tmp' (line 3366) > [208, 240) '__begin1' (line 3366) > [272, 304) '__end1' (line 3366) > [336, 344) 'ref.tmp27' (line 3370) > [368, 384) 'ref.tmp31' (line 3371) > [400, 416) 'interfaceVars' (line 3382) > [432, 440) 'ref.tmp48' (line 3383) > [464, 496) '__begin151' (line 3383) > [528, 560) '__end154' (line 3383) > [592, 596) 'id' (line 3386) > [608, 624) 'tmp' (line 3393) > [640, 648) 'ref.tmp114' (line 3398) > [672, 704) '__begin1117' (line 3398) > [736, 768) '__end1120' (line 3398) > [800, 1008) 'uniformBuffer' (line 3405) > [1072, 1280) 'ref.tmp159' (line 3407) <== Memory access at offset 1272 is inside this variable > [1344, 1360) 'agg.tmp' > [1376, 1576) 'adapter' (line 3411) > [1648, 1848) 'ref.tmp179' (line 3413) > [1920, 1928) 'ref.tmp191' (line 3415) > [1952, 1960) 'ref.tmp210' (line 3421) > [1984, 2016) '__begin1213' (line 3421) > [2048, 2080) '__end1216' (line 3421) > [2112, 2120) '__begin1242' (line 3427) > [2144, 2152) '__end1247' (line 3427) > [2176, 2192) 'entry256' (line 3427) > [2208, 2224) 'tmp298' (line 3433) > [2240, 2256) 'agg.tmp307' > [2272, 2280) '__begin1365' (line 3457) > [2304, 2312) 'ref.tmp415' (line 3469) > [2336, 2368) '__begin1418' (line 3469) > [2400, 2432) '__end1421' (line 3469) > [2464, 2480) 'agg.tmp436' > > Original change's description: > > Add support for top-level uniforms in SPIR-V. > > > > Previously, a uniform not wrapped in an interface block would report a > > SPIR-V error: > > > > "Variables identified with the Uniform storage class are > > used to access transparent buffer backed resources. Such variables must > > be typed as OpTypeStruct, or an array of this type..." > > > > Now, the SPIR-V code generator automatically detects such global > > variables and synthesizes a struct named _UniformBuffer to hold them. > > When these variables are accessed, an OpAccessChain instruction is added > > to grab the variable out of the struct. > > > > Change-Id: I5e852d4de01b866c291506cc8cf6eb547f097d66 > > Bug: skia:11225 > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/360776 > > Commit-Queue: John Stiles <johnstiles@google.com> > > Reviewed-by: Brian Osman <brianosman@google.com> > > Auto-Submit: John Stiles <johnstiles@google.com> > > TBR=brianosman@google.com,ethannicholas@google.com,johnstiles@google.com > > Change-Id: Ib72e33dbd662a245c20bc9d45d1397454c9588a3 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Bug: skia:11225 > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/362057 > Reviewed-by: John Stiles <johnstiles@google.com> > Commit-Queue: John Stiles <johnstiles@google.com> > Auto-Submit: John Stiles <johnstiles@google.com> TBR=brianosman@google.com,ethannicholas@google.com,johnstiles@google.com Bug: skia:11225 Change-Id: I10501c30a701301f6487ea154047ad1c1d0e8c70 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/362076 Commit-Queue: John Stiles <johnstiles@google.com> Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: Brian Osman <brianosman@google.com> Auto-Submit: John Stiles <johnstiles@google.com>
167 lines
5.2 KiB
JavaScript
167 lines
5.2 KiB
JavaScript
OpCapability Shader
|
|
%1 = OpExtInstImport "GLSL.std.450"
|
|
OpMemoryModel Logical GLSL450
|
|
OpEntryPoint Fragment %_entrypoint "_entrypoint" %sk_FragColor %sk_Clockwise
|
|
OpExecutionMode %_entrypoint OriginUpperLeft
|
|
OpName %sk_FragColor "sk_FragColor"
|
|
OpName %sk_Clockwise "sk_Clockwise"
|
|
OpName %_UniformBuffer "_UniformBuffer"
|
|
OpMemberName %_UniformBuffer 0 "colorRed"
|
|
OpMemberName %_UniformBuffer 1 "colorGreen"
|
|
OpName %_entrypoint "_entrypoint"
|
|
OpName %S "S"
|
|
OpMemberName %S 0 "x"
|
|
OpMemberName %S 1 "y"
|
|
OpName %returns_a_struct "returns_a_struct"
|
|
OpName %s "s"
|
|
OpName %accepts_a_struct "accepts_a_struct"
|
|
OpName %modifies_a_struct "modifies_a_struct"
|
|
OpName %main "main"
|
|
OpName %s_0 "s"
|
|
OpName %x "x"
|
|
OpName %valid "valid"
|
|
OpDecorate %sk_FragColor RelaxedPrecision
|
|
OpDecorate %sk_FragColor Location 0
|
|
OpDecorate %sk_FragColor Index 0
|
|
OpDecorate %sk_Clockwise RelaxedPrecision
|
|
OpDecorate %sk_Clockwise BuiltIn FrontFacing
|
|
OpMemberDecorate %_UniformBuffer 0 Offset 0
|
|
OpMemberDecorate %_UniformBuffer 0 RelaxedPrecision
|
|
OpMemberDecorate %_UniformBuffer 1 Offset 16
|
|
OpMemberDecorate %_UniformBuffer 1 RelaxedPrecision
|
|
OpDecorate %_UniformBuffer Block
|
|
OpDecorate %13 Binding 0
|
|
OpDecorate %13 DescriptorSet 0
|
|
OpMemberDecorate %S 0 Offset 0
|
|
OpMemberDecorate %S 1 Offset 4
|
|
OpDecorate %35 RelaxedPrecision
|
|
OpDecorate %59 RelaxedPrecision
|
|
OpDecorate %83 RelaxedPrecision
|
|
OpDecorate %91 RelaxedPrecision
|
|
OpDecorate %93 RelaxedPrecision
|
|
OpDecorate %94 RelaxedPrecision
|
|
%float = OpTypeFloat 32
|
|
%v4float = OpTypeVector %float 4
|
|
%_ptr_Output_v4float = OpTypePointer Output %v4float
|
|
%sk_FragColor = OpVariable %_ptr_Output_v4float Output
|
|
%bool = OpTypeBool
|
|
%_ptr_Input_bool = OpTypePointer Input %bool
|
|
%sk_Clockwise = OpVariable %_ptr_Input_bool Input
|
|
%_UniformBuffer = OpTypeStruct %v4float %v4float
|
|
%_ptr_Uniform__UniformBuffer = OpTypePointer Uniform %_UniformBuffer
|
|
%13 = OpVariable %_ptr_Uniform__UniformBuffer Uniform
|
|
%void = OpTypeVoid
|
|
%18 = OpTypeFunction %void
|
|
%int = OpTypeInt 32 1
|
|
%S = OpTypeStruct %float %int
|
|
%23 = OpTypeFunction %S
|
|
%_ptr_Function_S = OpTypePointer Function %S
|
|
%float_1 = OpConstant %float 1
|
|
%int_0 = OpConstant %int 0
|
|
%_ptr_Function_float = OpTypePointer Function %float
|
|
%int_2 = OpConstant %int 2
|
|
%int_1 = OpConstant %int 1
|
|
%_ptr_Function_int = OpTypePointer Function %int
|
|
%36 = OpTypeFunction %float %_ptr_Function_S
|
|
%45 = OpTypeFunction %void %_ptr_Function_S
|
|
%54 = OpTypeFunction %v4float
|
|
%_ptr_Function_bool = OpTypePointer Function %bool
|
|
%false = OpConstantFalse %bool
|
|
%float_3 = OpConstant %float 3
|
|
%float_2 = OpConstant %float 2
|
|
%int_3 = OpConstant %int 3
|
|
%_ptr_Function_v4float = OpTypePointer Function %v4float
|
|
%_ptr_Uniform_v4float = OpTypePointer Uniform %v4float
|
|
%_entrypoint = OpFunction %void None %18
|
|
%19 = OpLabel
|
|
%20 = OpFunctionCall %v4float %main
|
|
OpStore %sk_FragColor %20
|
|
OpReturn
|
|
OpFunctionEnd
|
|
%returns_a_struct = OpFunction %S None %23
|
|
%24 = OpLabel
|
|
%s = OpVariable %_ptr_Function_S Function
|
|
%29 = OpAccessChain %_ptr_Function_float %s %int_0
|
|
OpStore %29 %float_1
|
|
%33 = OpAccessChain %_ptr_Function_int %s %int_1
|
|
OpStore %33 %int_2
|
|
%35 = OpLoad %S %s
|
|
OpReturnValue %35
|
|
OpFunctionEnd
|
|
%accepts_a_struct = OpFunction %float None %36
|
|
%37 = OpFunctionParameter %_ptr_Function_S
|
|
%38 = OpLabel
|
|
%39 = OpAccessChain %_ptr_Function_float %37 %int_0
|
|
%40 = OpLoad %float %39
|
|
%41 = OpAccessChain %_ptr_Function_int %37 %int_1
|
|
%42 = OpLoad %int %41
|
|
%43 = OpConvertSToF %float %42
|
|
%44 = OpFAdd %float %40 %43
|
|
OpReturnValue %44
|
|
OpFunctionEnd
|
|
%modifies_a_struct = OpFunction %void None %45
|
|
%46 = OpFunctionParameter %_ptr_Function_S
|
|
%47 = OpLabel
|
|
%48 = OpAccessChain %_ptr_Function_float %46 %int_0
|
|
%49 = OpLoad %float %48
|
|
%50 = OpFAdd %float %49 %float_1
|
|
OpStore %48 %50
|
|
%51 = OpAccessChain %_ptr_Function_int %46 %int_1
|
|
%52 = OpLoad %int %51
|
|
%53 = OpIAdd %int %52 %int_1
|
|
OpStore %51 %53
|
|
OpReturn
|
|
OpFunctionEnd
|
|
%main = OpFunction %v4float None %54
|
|
%55 = OpLabel
|
|
%s_0 = OpVariable %_ptr_Function_S Function
|
|
%x = OpVariable %_ptr_Function_float Function
|
|
%60 = OpVariable %_ptr_Function_S Function
|
|
%valid = OpVariable %_ptr_Function_bool Function
|
|
%84 = OpVariable %_ptr_Function_v4float Function
|
|
%57 = OpFunctionCall %S %returns_a_struct
|
|
OpStore %s_0 %57
|
|
%59 = OpLoad %S %s_0
|
|
OpStore %60 %59
|
|
%61 = OpFunctionCall %float %accepts_a_struct %60
|
|
OpStore %x %61
|
|
%62 = OpFunctionCall %void %modifies_a_struct %s_0
|
|
%66 = OpLoad %float %x
|
|
%68 = OpFOrdEqual %bool %66 %float_3
|
|
OpSelectionMerge %70 None
|
|
OpBranchConditional %68 %69 %70
|
|
%69 = OpLabel
|
|
%71 = OpAccessChain %_ptr_Function_float %s_0 %int_0
|
|
%72 = OpLoad %float %71
|
|
%74 = OpFOrdEqual %bool %72 %float_2
|
|
OpBranch %70
|
|
%70 = OpLabel
|
|
%75 = OpPhi %bool %false %55 %74 %69
|
|
OpSelectionMerge %77 None
|
|
OpBranchConditional %75 %76 %77
|
|
%76 = OpLabel
|
|
%78 = OpAccessChain %_ptr_Function_int %s_0 %int_1
|
|
%79 = OpLoad %int %78
|
|
%81 = OpIEqual %bool %79 %int_3
|
|
OpBranch %77
|
|
%77 = OpLabel
|
|
%82 = OpPhi %bool %false %70 %81 %76
|
|
OpStore %valid %82
|
|
%83 = OpLoad %bool %valid
|
|
OpSelectionMerge %88 None
|
|
OpBranchConditional %83 %86 %87
|
|
%86 = OpLabel
|
|
%89 = OpAccessChain %_ptr_Uniform_v4float %13 %int_1
|
|
%91 = OpLoad %v4float %89
|
|
OpStore %84 %91
|
|
OpBranch %88
|
|
%87 = OpLabel
|
|
%92 = OpAccessChain %_ptr_Uniform_v4float %13 %int_0
|
|
%93 = OpLoad %v4float %92
|
|
OpStore %84 %93
|
|
OpBranch %88
|
|
%88 = OpLabel
|
|
%94 = OpLoad %v4float %84
|
|
OpReturnValue %94
|
|
OpFunctionEnd
|