skia2/tests/sksl/intrinsics/Frexp.asm.frag
John Stiles 4a3ec173b3 Add tests to demonstrate SPIR-V error with intrinsics.
When SPIR-V generates function calls to an intrinsic, it assumes that
it can get a pointer to out-parameters referenced by the intrinsic.
This does not account for swizzled out-parameters; these are valid
lvalues, but do not work with getPointer().

The two intrinsics supported by SkSL which have an out-parameter are
frexp and modf, so these tests were fleshed out to trigger the error.
Neither of these are supported in ES2, though, so we cannot test them
via Runtime Effects.

Change-Id: Ib92707a28ba6d1c282d20e29a2a387bddf74ad23
Bug: skia:11052
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/370116
Auto-Submit: John Stiles <johnstiles@google.com>
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
2021-02-16 15:46:01 +00:00

188 lines
6.0 KiB
JavaScript

### Compilation failed:
error: SPIR-V validation error: ID 4294967295[%4294967295] has not been defined
%58 = OpExtInst %v2float %1 Frexp %60 %4294967295
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 "colorGreen"
OpMemberName %_UniformBuffer 1 "colorRed"
OpName %_entrypoint "_entrypoint"
OpName %main "main"
OpName %value "value"
OpName %exp "exp"
OpName %result "result"
OpName %ok "ok"
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 %10 Binding 0
OpDecorate %10 DescriptorSet 0
OpDecorate %26 RelaxedPrecision
OpDecorate %107 RelaxedPrecision
OpDecorate %113 RelaxedPrecision
OpDecorate %115 RelaxedPrecision
OpDecorate %116 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
%18 = OpTypeFunction %v4float
%_ptr_Function_v4float = OpTypePointer Function %v4float
%_ptr_Uniform_v4float = OpTypePointer Uniform %v4float
%int = OpTypeInt 32 1
%int_0 = OpConstant %int 0
%float_6 = OpConstant %float 6
%v4int = OpTypeVector %int 4
%_ptr_Function_v4int = OpTypePointer Function %v4int
%v4bool = OpTypeVector %bool 4
%_ptr_Function_v4bool = OpTypePointer Function %v4bool
%_ptr_Function_int = OpTypePointer Function %int
%_ptr_Function_float = OpTypePointer Function %float
%false = OpConstantFalse %bool
%float_0_75 = OpConstant %float 0.75
%int_3 = OpConstant %int 3
%_ptr_Function_bool = OpTypePointer Function %bool
%v2float = OpTypeVector %float 2
%int_1 = OpConstant %int 1
%v3float = OpTypeVector %float 3
%int_2 = OpConstant %int 2
%_entrypoint = OpFunction %void None %15
%16 = OpLabel
%17 = OpFunctionCall %v4float %main
OpStore %sk_FragColor %17
OpReturn
OpFunctionEnd
%main = OpFunction %v4float None %18
%19 = OpLabel
%value = OpVariable %_ptr_Function_v4float Function
%exp = OpVariable %_ptr_Function_v4int Function
%result = OpVariable %_ptr_Function_v4float Function
%ok = OpVariable %_ptr_Function_v4bool Function
%108 = OpVariable %_ptr_Function_v4float Function
%22 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
%26 = OpLoad %v4float %22
%27 = OpVectorShuffle %v4float %26 %26 1 1 1 1
%29 = OpVectorTimesScalar %v4float %27 %float_6
OpStore %value %29
%38 = OpLoad %v4float %value
%39 = OpCompositeExtract %float %38 0
%40 = OpAccessChain %_ptr_Function_int %exp %int_0
%37 = OpExtInst %float %1 Frexp %39 %40
%42 = OpAccessChain %_ptr_Function_float %result %int_0
OpStore %42 %37
%45 = OpLoad %v4float %result
%46 = OpCompositeExtract %float %45 0
%48 = OpFOrdEqual %bool %46 %float_0_75
OpSelectionMerge %50 None
OpBranchConditional %48 %49 %50
%49 = OpLabel
%51 = OpLoad %v4int %exp
%52 = OpCompositeExtract %int %51 0
%54 = OpIEqual %bool %52 %int_3
OpBranch %50
%50 = OpLabel
%55 = OpPhi %bool %false %19 %54 %49
%56 = OpAccessChain %_ptr_Function_bool %ok %int_0
OpStore %56 %55
%59 = OpLoad %v4float %value
%60 = OpVectorShuffle %v2float %59 %59 0 1
%58 = OpExtInst %v2float %1 Frexp %60 %4294967295
%62 = OpLoad %v4float %result
%63 = OpVectorShuffle %v4float %62 %58 4 5 2 3
OpStore %result %63
%64 = OpLoad %v4float %result
%65 = OpCompositeExtract %float %64 1
%66 = OpFOrdEqual %bool %65 %float_0_75
OpSelectionMerge %68 None
OpBranchConditional %66 %67 %68
%67 = OpLabel
%69 = OpLoad %v4int %exp
%70 = OpCompositeExtract %int %69 1
%71 = OpIEqual %bool %70 %int_3
OpBranch %68
%68 = OpLabel
%72 = OpPhi %bool %false %50 %71 %67
%73 = OpAccessChain %_ptr_Function_bool %ok %int_1
OpStore %73 %72
%76 = OpLoad %v4float %value
%77 = OpVectorShuffle %v3float %76 %76 0 1 2
%75 = OpExtInst %v3float %1 Frexp %77 %4294967295
%79 = OpLoad %v4float %result
%80 = OpVectorShuffle %v4float %79 %75 4 5 6 3
OpStore %result %80
%81 = OpLoad %v4float %result
%82 = OpCompositeExtract %float %81 2
%83 = OpFOrdEqual %bool %82 %float_0_75
OpSelectionMerge %85 None
OpBranchConditional %83 %84 %85
%84 = OpLabel
%86 = OpLoad %v4int %exp
%87 = OpCompositeExtract %int %86 2
%88 = OpIEqual %bool %87 %int_3
OpBranch %85
%85 = OpLabel
%89 = OpPhi %bool %false %68 %88 %84
%90 = OpAccessChain %_ptr_Function_bool %ok %int_2
OpStore %90 %89
%93 = OpLoad %v4float %value
%92 = OpExtInst %v4float %1 Frexp %93 %exp
%94 = OpLoad %v4float %result
%95 = OpVectorShuffle %v4float %94 %92 4 5 6 7
OpStore %result %95
%96 = OpLoad %v4float %result
%97 = OpCompositeExtract %float %96 3
%98 = OpFOrdEqual %bool %97 %float_0_75
OpSelectionMerge %100 None
OpBranchConditional %98 %99 %100
%99 = OpLabel
%101 = OpLoad %v4int %exp
%102 = OpCompositeExtract %int %101 3
%103 = OpIEqual %bool %102 %int_3
OpBranch %100
%100 = OpLabel
%104 = OpPhi %bool %false %85 %103 %99
%105 = OpAccessChain %_ptr_Function_bool %ok %int_3
OpStore %105 %104
%107 = OpLoad %v4bool %ok
%106 = OpAll %bool %107
OpSelectionMerge %111 None
OpBranchConditional %106 %109 %110
%109 = OpLabel
%112 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
%113 = OpLoad %v4float %112
OpStore %108 %113
OpBranch %111
%110 = OpLabel
%114 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
%115 = OpLoad %v4float %114
OpStore %108 %115
OpBranch %111
%111 = OpLabel
%116 = OpLoad %v4float %108
OpReturnValue %116
OpFunctionEnd
1 error