| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- // Copyright (c) 2021 ZHOU He
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #include "test/opt/assembly_builder.h"
- #include "test/opt/pass_fixture.h"
- #include "test/opt/pass_utils.h"
- namespace spvtools {
- namespace opt {
- namespace {
- using RemoveUnusedInterfaceVariablesTest = PassTest<::testing::Test>;
- static const std::string expected = R"(OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %_Z5func1v "_Z5func1v" %out_var_SV_TARGET
- OpEntryPoint Fragment %_Z5func2v "_Z5func2v" %out_var_SV_TARGET_0
- OpExecutionMode %_Z5func1v OriginUpperLeft
- OpExecutionMode %_Z5func2v OriginUpperLeft
- OpSource HLSL 630
- OpName %type_cba "type.cba"
- OpMemberName %type_cba 0 "color"
- OpName %cba "cba"
- OpName %out_var_SV_TARGET "out.var.SV_TARGET"
- OpName %out_var_SV_TARGET_0 "out.var.SV_TARGET"
- OpName %_Z5func1v "_Z5func1v"
- OpName %_Z5func2v "_Z5func2v"
- OpDecorate %out_var_SV_TARGET Location 0
- OpDecorate %out_var_SV_TARGET_0 Location 0
- OpDecorate %cba DescriptorSet 0
- OpDecorate %cba Binding 0
- OpMemberDecorate %type_cba 0 Offset 0
- OpDecorate %type_cba Block
- %int = OpTypeInt 32 1
- %int_0 = OpConstant %int 0
- %float = OpTypeFloat 32
- %v4float = OpTypeVector %float 4
- %type_cba = OpTypeStruct %v4float
- %_ptr_Uniform_type_cba = OpTypePointer Uniform %type_cba
- %_ptr_Output_v4float = OpTypePointer Output %v4float
- %void = OpTypeVoid
- %14 = OpTypeFunction %void
- %_ptr_Uniform_v4float = OpTypePointer Uniform %v4float
- %cba = OpVariable %_ptr_Uniform_type_cba Uniform
- %out_var_SV_TARGET = OpVariable %_ptr_Output_v4float Output
- %out_var_SV_TARGET_0 = OpVariable %_ptr_Output_v4float Output
- %_Z5func1v = OpFunction %void None %14
- %16 = OpLabel
- %17 = OpAccessChain %_ptr_Uniform_v4float %cba %int_0
- %18 = OpLoad %v4float %17
- OpStore %out_var_SV_TARGET %18
- OpReturn
- OpFunctionEnd
- %_Z5func2v = OpFunction %void None %14
- %19 = OpLabel
- %20 = OpAccessChain %_ptr_Uniform_v4float %cba %int_0
- %21 = OpLoad %v4float %20
- OpStore %out_var_SV_TARGET_0 %21
- OpReturn
- OpFunctionEnd
- )";
- TEST_F(RemoveUnusedInterfaceVariablesTest, RemoveUnusedVariable) {
- const std::string text = R"(OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %_Z5func1v "_Z5func1v" %out_var_SV_TARGET %out_var_SV_TARGET_0
- OpEntryPoint Fragment %_Z5func2v "_Z5func2v" %out_var_SV_TARGET %out_var_SV_TARGET_0
- OpExecutionMode %_Z5func1v OriginUpperLeft
- OpExecutionMode %_Z5func2v OriginUpperLeft
- OpSource HLSL 630
- OpName %type_cba "type.cba"
- OpMemberName %type_cba 0 "color"
- OpName %cba "cba"
- OpName %out_var_SV_TARGET "out.var.SV_TARGET"
- OpName %out_var_SV_TARGET_0 "out.var.SV_TARGET"
- OpName %_Z5func1v "_Z5func1v"
- OpName %_Z5func2v "_Z5func2v"
- OpDecorate %out_var_SV_TARGET Location 0
- OpDecorate %out_var_SV_TARGET_0 Location 0
- OpDecorate %cba DescriptorSet 0
- OpDecorate %cba Binding 0
- OpMemberDecorate %type_cba 0 Offset 0
- OpDecorate %type_cba Block
- %int = OpTypeInt 32 1
- %int_0 = OpConstant %int 0
- %float = OpTypeFloat 32
- %v4float = OpTypeVector %float 4
- %type_cba = OpTypeStruct %v4float
- %_ptr_Uniform_type_cba = OpTypePointer Uniform %type_cba
- %_ptr_Output_v4float = OpTypePointer Output %v4float
- %void = OpTypeVoid
- %14 = OpTypeFunction %void
- %_ptr_Uniform_v4float = OpTypePointer Uniform %v4float
- %cba = OpVariable %_ptr_Uniform_type_cba Uniform
- %out_var_SV_TARGET = OpVariable %_ptr_Output_v4float Output
- %out_var_SV_TARGET_0 = OpVariable %_ptr_Output_v4float Output
- %_Z5func1v = OpFunction %void None %14
- %16 = OpLabel
- %17 = OpAccessChain %_ptr_Uniform_v4float %cba %int_0
- %18 = OpLoad %v4float %17
- OpStore %out_var_SV_TARGET %18
- OpReturn
- OpFunctionEnd
- %_Z5func2v = OpFunction %void None %14
- %19 = OpLabel
- %20 = OpAccessChain %_ptr_Uniform_v4float %cba %int_0
- %21 = OpLoad %v4float %20
- OpStore %out_var_SV_TARGET_0 %21
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndCheck<RemoveUnusedInterfaceVariablesPass>(text, expected,
- true, true);
- }
- TEST_F(RemoveUnusedInterfaceVariablesTest, FixMissingVariable) {
- const std::string text = R"(OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %_Z5func1v "_Z5func1v"
- OpEntryPoint Fragment %_Z5func2v "_Z5func2v"
- OpExecutionMode %_Z5func1v OriginUpperLeft
- OpExecutionMode %_Z5func2v OriginUpperLeft
- OpSource HLSL 630
- OpName %type_cba "type.cba"
- OpMemberName %type_cba 0 "color"
- OpName %cba "cba"
- OpName %out_var_SV_TARGET "out.var.SV_TARGET"
- OpName %out_var_SV_TARGET_0 "out.var.SV_TARGET"
- OpName %_Z5func1v "_Z5func1v"
- OpName %_Z5func2v "_Z5func2v"
- OpDecorate %out_var_SV_TARGET Location 0
- OpDecorate %out_var_SV_TARGET_0 Location 0
- OpDecorate %cba DescriptorSet 0
- OpDecorate %cba Binding 0
- OpMemberDecorate %type_cba 0 Offset 0
- OpDecorate %type_cba Block
- %int = OpTypeInt 32 1
- %int_0 = OpConstant %int 0
- %float = OpTypeFloat 32
- %v4float = OpTypeVector %float 4
- %type_cba = OpTypeStruct %v4float
- %_ptr_Uniform_type_cba = OpTypePointer Uniform %type_cba
- %_ptr_Output_v4float = OpTypePointer Output %v4float
- %void = OpTypeVoid
- %14 = OpTypeFunction %void
- %_ptr_Uniform_v4float = OpTypePointer Uniform %v4float
- %cba = OpVariable %_ptr_Uniform_type_cba Uniform
- %out_var_SV_TARGET = OpVariable %_ptr_Output_v4float Output
- %out_var_SV_TARGET_0 = OpVariable %_ptr_Output_v4float Output
- %_Z5func1v = OpFunction %void None %14
- %16 = OpLabel
- %17 = OpAccessChain %_ptr_Uniform_v4float %cba %int_0
- %18 = OpLoad %v4float %17
- OpStore %out_var_SV_TARGET %18
- OpReturn
- OpFunctionEnd
- %_Z5func2v = OpFunction %void None %14
- %19 = OpLabel
- %20 = OpAccessChain %_ptr_Uniform_v4float %cba %int_0
- %21 = OpLoad %v4float %20
- OpStore %out_var_SV_TARGET_0 %21
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndCheck<RemoveUnusedInterfaceVariablesPass>(text, expected,
- true, true);
- }
- } // namespace
- } // namespace opt
- } // namespace spvtools
|