skia2/tests/sksl/shared/NormalizationGeo.asm.geom

117 lines
4.4 KiB
Plaintext
Raw Normal View History

Revert "Add support for top-level uniforms in SPIR-V." This reverts commit acba30420ce27b3464fd04fac90e822ffd0245d8. 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>
2021-01-29 14:19:39 +00:00
### Compilation failed:
error: SPIR-V validation error: Uniform OpVariable <id> '15[%sk_RTAdjust]' has illegal type.
From Vulkan spec, section 14.5.2:
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
%sk_RTAdjust = OpVariable %_ptr_Uniform_v4float Uniform
OpCapability Geometry
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Geometry %main "main" %3 %8 %sk_InvocationID
OpExecutionMode %main InputPoints
OpExecutionMode %main OutputLineStrip
OpExecutionMode %main OutputVertices 2
OpExecutionMode %main Invocations 2
OpName %sk_PerVertex "sk_PerVertex"
OpMemberName %sk_PerVertex 0 "sk_Position"
OpMemberName %sk_PerVertex 1 "sk_PointSize"
OpName %sk_InvocationID "sk_InvocationID"
Revert "Add support for top-level uniforms in SPIR-V." This reverts commit acba30420ce27b3464fd04fac90e822ffd0245d8. 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>
2021-01-29 14:19:39 +00:00
OpName %sk_RTAdjust "sk_RTAdjust"
OpName %main "main"
OpMemberDecorate %sk_PerVertex 0 BuiltIn Position
OpMemberDecorate %sk_PerVertex 1 BuiltIn PointSize
OpDecorate %_arr_sk_PerVertex_int_1 ArrayStride 32
OpDecorate %sk_InvocationID BuiltIn InvocationId
Revert "Add support for top-level uniforms in SPIR-V." This reverts commit acba30420ce27b3464fd04fac90e822ffd0245d8. 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>
2021-01-29 14:19:39 +00:00
OpDecorate %sk_RTAdjust DescriptorSet 0
%float = OpTypeFloat 32
%v4float = OpTypeVector %float 4
%sk_PerVertex = OpTypeStruct %v4float %float
%_ptr_Output_sk_PerVertex = OpTypePointer Output %sk_PerVertex
%3 = OpVariable %_ptr_Output_sk_PerVertex Output
%int = OpTypeInt 32 1
%int_1 = OpConstant %int 1
%_arr_sk_PerVertex_int_1 = OpTypeArray %sk_PerVertex %int_1
%_ptr_Input__arr_sk_PerVertex_int_1 = OpTypePointer Input %_arr_sk_PerVertex_int_1
%8 = OpVariable %_ptr_Input__arr_sk_PerVertex_int_1 Input
%_ptr_Input_int = OpTypePointer Input %int
%sk_InvocationID = OpVariable %_ptr_Input_int Input
Revert "Add support for top-level uniforms in SPIR-V." This reverts commit acba30420ce27b3464fd04fac90e822ffd0245d8. 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>
2021-01-29 14:19:39 +00:00
%_ptr_Uniform_v4float = OpTypePointer Uniform %v4float
%sk_RTAdjust = OpVariable %_ptr_Uniform_v4float Uniform
%void = OpTypeVoid
Revert "Add support for top-level uniforms in SPIR-V." This reverts commit acba30420ce27b3464fd04fac90e822ffd0245d8. 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>
2021-01-29 14:19:39 +00:00
%18 = OpTypeFunction %void
%int_0 = OpConstant %int 0
%_ptr_Input_v4float = OpTypePointer Input %v4float
%float_n0_5 = OpConstant %float -0.5
%float_0 = OpConstant %float 0
%_ptr_Output_v4float = OpTypePointer Output %v4float
%v2float = OpTypeVector %float 2
%float_0_5 = OpConstant %float 0.5
Revert "Add support for top-level uniforms in SPIR-V." This reverts commit acba30420ce27b3464fd04fac90e822ffd0245d8. 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>
2021-01-29 14:19:39 +00:00
%main = OpFunction %void None %18
%19 = OpLabel
%21 = OpAccessChain %_ptr_Input_v4float %8 %int_0 %int_0
%23 = OpLoad %v4float %21
%26 = OpLoad %int %sk_InvocationID
%27 = OpConvertSToF %float %26
%28 = OpCompositeConstruct %v4float %float_n0_5 %float_0 %float_0 %27
%29 = OpFAdd %v4float %23 %28
%30 = OpAccessChain %_ptr_Output_v4float %3 %int_0
OpStore %30 %29
%32 = OpAccessChain %_ptr_Output_v4float %3 %int_0
%33 = OpLoad %v4float %32
%34 = OpVectorShuffle %v2float %33 %33 0 1
%36 = OpLoad %v4float %sk_RTAdjust
%37 = OpVectorShuffle %v2float %36 %36 0 2
%38 = OpFMul %v2float %34 %37
%39 = OpAccessChain %_ptr_Output_v4float %3 %int_0
%40 = OpLoad %v4float %39
%41 = OpVectorShuffle %v2float %40 %40 3 3
%42 = OpLoad %v4float %sk_RTAdjust
%43 = OpVectorShuffle %v2float %42 %42 1 3
%44 = OpFMul %v2float %41 %43
%45 = OpFAdd %v2float %38 %44
%46 = OpCompositeExtract %float %45 0
%47 = OpCompositeExtract %float %45 1
%48 = OpAccessChain %_ptr_Output_v4float %3 %int_0
%49 = OpLoad %v4float %48
%50 = OpCompositeExtract %float %49 3
%51 = OpCompositeConstruct %v4float %46 %47 %float_0 %50
%52 = OpAccessChain %_ptr_Output_v4float %3 %int_0
Revert "Add support for top-level uniforms in SPIR-V." This reverts commit acba30420ce27b3464fd04fac90e822ffd0245d8. 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>
2021-01-29 14:19:39 +00:00
OpStore %52 %51
OpEmitVertex
Revert "Add support for top-level uniforms in SPIR-V." This reverts commit acba30420ce27b3464fd04fac90e822ffd0245d8. 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>
2021-01-29 14:19:39 +00:00
%54 = OpAccessChain %_ptr_Input_v4float %8 %int_0 %int_0
%55 = OpLoad %v4float %54
%57 = OpLoad %int %sk_InvocationID
%58 = OpConvertSToF %float %57
%59 = OpCompositeConstruct %v4float %float_0_5 %float_0 %float_0 %58
%60 = OpFAdd %v4float %55 %59
%61 = OpAccessChain %_ptr_Output_v4float %3 %int_0
OpStore %61 %60
%62 = OpAccessChain %_ptr_Output_v4float %3 %int_0
%63 = OpLoad %v4float %62
%64 = OpVectorShuffle %v2float %63 %63 0 1
%65 = OpLoad %v4float %sk_RTAdjust
%66 = OpVectorShuffle %v2float %65 %65 0 2
%67 = OpFMul %v2float %64 %66
%68 = OpAccessChain %_ptr_Output_v4float %3 %int_0
%69 = OpLoad %v4float %68
%70 = OpVectorShuffle %v2float %69 %69 3 3
%71 = OpLoad %v4float %sk_RTAdjust
%72 = OpVectorShuffle %v2float %71 %71 1 3
%73 = OpFMul %v2float %70 %72
%74 = OpFAdd %v2float %67 %73
%75 = OpCompositeExtract %float %74 0
%76 = OpCompositeExtract %float %74 1
%77 = OpAccessChain %_ptr_Output_v4float %3 %int_0
%78 = OpLoad %v4float %77
%79 = OpCompositeExtract %float %78 3
%80 = OpCompositeConstruct %v4float %75 %76 %float_0 %79
%81 = OpAccessChain %_ptr_Output_v4float %3 %int_0
OpStore %81 %80
OpEmitVertex
OpEndPrimitive
OpReturn
OpFunctionEnd
Revert "Add support for top-level uniforms in SPIR-V." This reverts commit acba30420ce27b3464fd04fac90e822ffd0245d8. 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>
2021-01-29 14:19:39 +00:00
1 error