3c991fd72c
Previously, SPIR-V would generate two separate SpvIds for array types if they differed in SkSL, even if they matched in SPIR-V. For instance, `half[10]` and `float[10]` are the same SPIR-V type, so they should reuse the same SpvId. (The RelaxedPrecision decoration doesn't go on the type.) This is important because OpLoad and OpStore require the same SpvId on a variable; you can't OpLoad from one type SpvId and OpStore to a different type SpvId, even if the underlying type behind the SpvId is the same. (A slightly simpler fix exists at http://review.skia.org/437237, but this triggered a memory pooling bug that I can't properly debug from this machine.) Change-Id: I7669a95a2c946dde1eeff73474a3a0fb9d180512 Bug: skia:12248 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/437683 Reviewed-by: Ethan Nicholas <ethannicholas@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com> Auto-Submit: John Stiles <johnstiles@google.com>
170 lines
5.8 KiB
JavaScript
170 lines
5.8 KiB
JavaScript
OpCapability Shader
|
|
%1 = OpExtInstImport "GLSL.std.450"
|
|
OpMemoryModel Logical GLSL450
|
|
OpEntryPoint Fragment %_entrypoint_v "_entrypoint" %sk_FragColor %sk_Clockwise
|
|
OpExecutionMode %_entrypoint_v OriginUpperLeft
|
|
OpName %sk_FragColor "sk_FragColor"
|
|
OpName %sk_Clockwise "sk_Clockwise"
|
|
OpName %_UniformBuffer "_UniformBuffer"
|
|
OpMemberName %_UniformBuffer 0 "colorGreen"
|
|
OpMemberName %_UniformBuffer 1 "colorRed"
|
|
OpName %_entrypoint_v "_entrypoint_v"
|
|
OpName %main "main"
|
|
OpName %i2 "i2"
|
|
OpName %s2 "s2"
|
|
OpName %f2 "f2"
|
|
OpName %h2 "h2"
|
|
OpName %cf2 "cf2"
|
|
OpDecorate %sk_FragColor RelaxedPrecision
|
|
OpDecorate %sk_FragColor Location 0
|
|
OpDecorate %sk_FragColor Index 0
|
|
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 %10 Binding 0
|
|
OpDecorate %10 DescriptorSet 0
|
|
OpDecorate %_arr_int_int_2 ArrayStride 16
|
|
OpDecorate %s2 RelaxedPrecision
|
|
OpDecorate %35 RelaxedPrecision
|
|
OpDecorate %_arr_float_int_2 ArrayStride 16
|
|
OpDecorate %h2 RelaxedPrecision
|
|
OpDecorate %44 RelaxedPrecision
|
|
OpDecorate %49 RelaxedPrecision
|
|
OpDecorate %60 RelaxedPrecision
|
|
OpDecorate %83 RelaxedPrecision
|
|
OpDecorate %101 RelaxedPrecision
|
|
OpDecorate %103 RelaxedPrecision
|
|
OpDecorate %104 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
|
|
%10 = OpVariable %_ptr_Uniform__UniformBuffer Uniform
|
|
%void = OpTypeVoid
|
|
%15 = OpTypeFunction %void
|
|
%v2float = OpTypeVector %float 2
|
|
%float_0 = OpConstant %float 0
|
|
%19 = OpConstantComposite %v2float %float_0 %float_0
|
|
%_ptr_Function_v2float = OpTypePointer Function %v2float
|
|
%23 = OpTypeFunction %v4float %_ptr_Function_v2float
|
|
%int = OpTypeInt 32 1
|
|
%int_2 = OpConstant %int 2
|
|
%_arr_int_int_2 = OpTypeArray %int %int_2
|
|
%_ptr_Function__arr_int_int_2 = OpTypePointer Function %_arr_int_int_2
|
|
%int_1 = OpConstant %int 1
|
|
%_ptr_Function__arr_int_int_2_0 = OpTypePointer Function %_arr_int_int_2
|
|
%_arr_float_int_2 = OpTypeArray %float %int_2
|
|
%_ptr_Function__arr_float_int_2 = OpTypePointer Function %_arr_float_int_2
|
|
%float_1 = OpConstant %float 1
|
|
%float_2 = OpConstant %float 2
|
|
%_ptr_Function__arr_float_int_2_0 = OpTypePointer Function %_arr_float_int_2
|
|
%false = OpConstantFalse %bool
|
|
%_ptr_Function_v4float = OpTypePointer Function %v4float
|
|
%_ptr_Uniform_v4float = OpTypePointer Uniform %v4float
|
|
%int_0 = OpConstant %int 0
|
|
%_entrypoint_v = OpFunction %void None %15
|
|
%16 = OpLabel
|
|
%20 = OpVariable %_ptr_Function_v2float Function
|
|
OpStore %20 %19
|
|
%22 = OpFunctionCall %v4float %main %20
|
|
OpStore %sk_FragColor %22
|
|
OpReturn
|
|
OpFunctionEnd
|
|
%main = OpFunction %v4float None %23
|
|
%24 = OpFunctionParameter %_ptr_Function_v2float
|
|
%25 = OpLabel
|
|
%i2 = OpVariable %_ptr_Function__arr_int_int_2 Function
|
|
%s2 = OpVariable %_ptr_Function__arr_int_int_2_0 Function
|
|
%f2 = OpVariable %_ptr_Function__arr_float_int_2 Function
|
|
%h2 = OpVariable %_ptr_Function__arr_float_int_2_0 Function
|
|
%cf2 = OpVariable %_ptr_Function__arr_float_int_2 Function
|
|
%93 = OpVariable %_ptr_Function_v4float Function
|
|
%32 = OpCompositeConstruct %_arr_int_int_2 %int_1 %int_2
|
|
OpStore %i2 %32
|
|
%35 = OpCompositeConstruct %_arr_int_int_2 %int_1 %int_2
|
|
OpStore %s2 %35
|
|
%41 = OpCompositeConstruct %_arr_float_int_2 %float_1 %float_2
|
|
OpStore %f2 %41
|
|
%44 = OpCompositeConstruct %_arr_float_int_2 %float_1 %float_2
|
|
OpStore %h2 %44
|
|
%46 = OpCompositeConstruct %_arr_float_int_2 %float_1 %float_2
|
|
OpStore %cf2 %46
|
|
%48 = OpLoad %_arr_int_int_2 %i2
|
|
%49 = OpLoad %_arr_int_int_2 %s2
|
|
%50 = OpCompositeExtract %int %48 0
|
|
%51 = OpCompositeExtract %int %49 0
|
|
%52 = OpIEqual %bool %50 %51
|
|
%53 = OpCompositeExtract %int %48 1
|
|
%54 = OpCompositeExtract %int %49 1
|
|
%55 = OpIEqual %bool %53 %54
|
|
%56 = OpLogicalAnd %bool %55 %52
|
|
OpSelectionMerge %58 None
|
|
OpBranchConditional %56 %57 %58
|
|
%57 = OpLabel
|
|
%59 = OpLoad %_arr_float_int_2 %f2
|
|
%60 = OpLoad %_arr_float_int_2 %h2
|
|
%61 = OpCompositeExtract %float %59 0
|
|
%62 = OpCompositeExtract %float %60 0
|
|
%63 = OpFOrdEqual %bool %61 %62
|
|
%64 = OpCompositeExtract %float %59 1
|
|
%65 = OpCompositeExtract %float %60 1
|
|
%66 = OpFOrdEqual %bool %64 %65
|
|
%67 = OpLogicalAnd %bool %66 %63
|
|
OpBranch %58
|
|
%58 = OpLabel
|
|
%68 = OpPhi %bool %false %25 %67 %57
|
|
OpSelectionMerge %70 None
|
|
OpBranchConditional %68 %69 %70
|
|
%69 = OpLabel
|
|
%71 = OpLoad %_arr_int_int_2 %i2
|
|
%72 = OpCompositeConstruct %_arr_int_int_2 %int_1 %int_2
|
|
%73 = OpCompositeExtract %int %71 0
|
|
%74 = OpCompositeExtract %int %72 0
|
|
%75 = OpIEqual %bool %73 %74
|
|
%76 = OpCompositeExtract %int %71 1
|
|
%77 = OpCompositeExtract %int %72 1
|
|
%78 = OpIEqual %bool %76 %77
|
|
%79 = OpLogicalAnd %bool %78 %75
|
|
OpBranch %70
|
|
%70 = OpLabel
|
|
%80 = OpPhi %bool %false %58 %79 %69
|
|
OpSelectionMerge %82 None
|
|
OpBranchConditional %80 %81 %82
|
|
%81 = OpLabel
|
|
%83 = OpLoad %_arr_float_int_2 %h2
|
|
%84 = OpLoad %_arr_float_int_2 %cf2
|
|
%85 = OpCompositeExtract %float %83 0
|
|
%86 = OpCompositeExtract %float %84 0
|
|
%87 = OpFOrdEqual %bool %85 %86
|
|
%88 = OpCompositeExtract %float %83 1
|
|
%89 = OpCompositeExtract %float %84 1
|
|
%90 = OpFOrdEqual %bool %88 %89
|
|
%91 = OpLogicalAnd %bool %90 %87
|
|
OpBranch %82
|
|
%82 = OpLabel
|
|
%92 = OpPhi %bool %false %70 %91 %81
|
|
OpSelectionMerge %97 None
|
|
OpBranchConditional %92 %95 %96
|
|
%95 = OpLabel
|
|
%98 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
|
%101 = OpLoad %v4float %98
|
|
OpStore %93 %101
|
|
OpBranch %97
|
|
%96 = OpLabel
|
|
%102 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
|
%103 = OpLoad %v4float %102
|
|
OpStore %93 %103
|
|
OpBranch %97
|
|
%97 = OpLabel
|
|
%104 = OpLoad %v4float %93
|
|
OpReturnValue %104
|
|
OpFunctionEnd
|