dawn-cmake/test/tint/shader_io/fragment_output_locations_struct_f16.wgsl.expected.spvasm
Zhaoming Jiang 6198bea2ac Dawn&Tint: Implement F16 pipeline IO
This CL implement f16 for pipeline IO, i.e. vertex shader input,
interstage variables between vertex and fragment shader, and fragment
shader output (render target). Unit tests and E2E tests for Tint and
Dawn are also implemented.

Bugs: tint:1473, tint:1502
Change-Id: If0d6b2b3171ec8b7e4efc0efd58cc803c6a3d3a8
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/111160
Commit-Queue: Zhaoming Jiang <zhaoming.jiang@intel.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: Ben Clayton <bclayton@google.com>
2022-12-07 04:33:24 +00:00

103 lines
4.4 KiB
Plaintext

; SPIR-V
; Version: 1.3
; Generator: Google Tint Compiler; 0
; Bound: 53
; Schema: 0
OpCapability Shader
OpCapability Float16
OpCapability UniformAndStorageBuffer16BitAccess
OpCapability StorageBuffer16BitAccess
OpCapability StorageInputOutput16
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %main "main" %loc0_1 %loc1_1 %loc2_1 %loc3_1 %loc4_1 %loc5_1
OpExecutionMode %main OriginUpperLeft
OpName %loc0_1 "loc0_1"
OpName %loc1_1 "loc1_1"
OpName %loc2_1 "loc2_1"
OpName %loc3_1 "loc3_1"
OpName %loc4_1 "loc4_1"
OpName %loc5_1 "loc5_1"
OpName %FragmentOutputs "FragmentOutputs"
OpMemberName %FragmentOutputs 0 "loc0"
OpMemberName %FragmentOutputs 1 "loc1"
OpMemberName %FragmentOutputs 2 "loc2"
OpMemberName %FragmentOutputs 3 "loc3"
OpMemberName %FragmentOutputs 4 "loc4"
OpMemberName %FragmentOutputs 5 "loc5"
OpName %main_inner "main_inner"
OpName %main "main"
OpDecorate %loc0_1 Location 0
OpDecorate %loc1_1 Location 1
OpDecorate %loc2_1 Location 2
OpDecorate %loc3_1 Location 3
OpDecorate %loc4_1 Location 4
OpDecorate %loc5_1 Location 5
OpMemberDecorate %FragmentOutputs 0 Offset 0
OpMemberDecorate %FragmentOutputs 1 Offset 4
OpMemberDecorate %FragmentOutputs 2 Offset 8
OpMemberDecorate %FragmentOutputs 3 Offset 16
OpMemberDecorate %FragmentOutputs 4 Offset 32
OpMemberDecorate %FragmentOutputs 5 Offset 40
%int = OpTypeInt 32 1
%_ptr_Output_int = OpTypePointer Output %int
%4 = OpConstantNull %int
%loc0_1 = OpVariable %_ptr_Output_int Output %4
%uint = OpTypeInt 32 0
%_ptr_Output_uint = OpTypePointer Output %uint
%8 = OpConstantNull %uint
%loc1_1 = OpVariable %_ptr_Output_uint Output %8
%float = OpTypeFloat 32
%_ptr_Output_float = OpTypePointer Output %float
%12 = OpConstantNull %float
%loc2_1 = OpVariable %_ptr_Output_float Output %12
%v4float = OpTypeVector %float 4
%_ptr_Output_v4float = OpTypePointer Output %v4float
%16 = OpConstantNull %v4float
%loc3_1 = OpVariable %_ptr_Output_v4float Output %16
%half = OpTypeFloat 16
%_ptr_Output_half = OpTypePointer Output %half
%20 = OpConstantNull %half
%loc4_1 = OpVariable %_ptr_Output_half Output %20
%v3half = OpTypeVector %half 3
%_ptr_Output_v3half = OpTypePointer Output %v3half
%24 = OpConstantNull %v3half
%loc5_1 = OpVariable %_ptr_Output_v3half Output %24
%FragmentOutputs = OpTypeStruct %int %uint %float %v4float %half %v3half
%25 = OpTypeFunction %FragmentOutputs
%int_1 = OpConstant %int 1
%uint_1 = OpConstant %uint 1
%float_1 = OpConstant %float 1
%float_2 = OpConstant %float 2
%float_3 = OpConstant %float 3
%float_4 = OpConstant %float 4
%35 = OpConstantComposite %v4float %float_1 %float_2 %float_3 %float_4
%half_0x1_2p_1 = OpConstant %half 0x1.2p+1
%half_0x1_8p_1 = OpConstant %half 0x1.8p+1
%half_0x1_4p_2 = OpConstant %half 0x1.4p+2
%half_0x1p_3 = OpConstant %half 0x1p+3
%40 = OpConstantComposite %v3half %half_0x1_8p_1 %half_0x1_4p_2 %half_0x1p_3
%41 = OpConstantComposite %FragmentOutputs %int_1 %uint_1 %float_1 %35 %half_0x1_2p_1 %40
%void = OpTypeVoid
%42 = OpTypeFunction %void
%main_inner = OpFunction %FragmentOutputs None %25
%28 = OpLabel
OpReturnValue %41
OpFunctionEnd
%main = OpFunction %void None %42
%45 = OpLabel
%46 = OpFunctionCall %FragmentOutputs %main_inner
%47 = OpCompositeExtract %int %46 0
OpStore %loc0_1 %47
%48 = OpCompositeExtract %uint %46 1
OpStore %loc1_1 %48
%49 = OpCompositeExtract %float %46 2
OpStore %loc2_1 %49
%50 = OpCompositeExtract %v4float %46 3
OpStore %loc3_1 %50
%51 = OpCompositeExtract %half %46 4
OpStore %loc4_1 %51
%52 = OpCompositeExtract %v3half %46 5
OpStore %loc5_1 %52
OpReturn
OpFunctionEnd