mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-24 12:30:13 +00:00
b4c4da3e76
* No longer blindly add global non-semantic info instructions to global types and values * functions now have a list of non-semantic instructions that succeed them in the global scope * global non-semantic instructions go in global types and values if they appear before any function, otherwise they are attached to the immediate function predecessor in the module * changed ADCE to use the function removal utility * Modified EliminateFunction to have special handling for non-semantic instructions in the global scope * non-semantic instructions are moved to an earlier function (or full global set) if the function they are attached to is eliminated * Added IRContext::KillNonSemanticInfo to remove the tree of non-semantic instructions that use an instruction * this is used in function elimination * There is still significant work in the optimizer to handle non-semantic instructions fully in the optimizer
232 lines
6.8 KiB
C++
232 lines
6.8 KiB
C++
// Copyright (c) 2018 Google LLC
|
|
//
|
|
// 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 <string>
|
|
#include "gmock/gmock.h"
|
|
|
|
#include "spirv-tools/optimizer.hpp"
|
|
|
|
#include "test/opt/pass_fixture.h"
|
|
#include "test/opt/pass_utils.h"
|
|
|
|
namespace spvtools {
|
|
namespace opt {
|
|
namespace {
|
|
|
|
using StripLineReflectInfoTest = PassTest<::testing::Test>;
|
|
using StripNonSemanticInfoTest = PassTest<::testing::Test>;
|
|
|
|
// This test acts as an end-to-end code example on how to strip
|
|
// reflection info from a SPIR-V module. Use this code pattern
|
|
// when you have compiled HLSL code with Glslang or DXC using
|
|
// option -fhlsl_functionality1 to insert reflection information,
|
|
// but then want to filter out the extra instructions before sending
|
|
// it to a driver that does not implement VK_GOOGLE_hlsl_functionality1.
|
|
TEST_F(StripLineReflectInfoTest, StripReflectEnd2EndExample) {
|
|
// This is a non-sensical example, but exercises the instructions.
|
|
std::string before = R"(OpCapability Shader
|
|
OpCapability Linkage
|
|
OpExtension "SPV_GOOGLE_decorate_string"
|
|
OpExtension "SPV_GOOGLE_hlsl_functionality1"
|
|
OpMemoryModel Logical Simple
|
|
OpDecorateStringGOOGLE %float HlslSemanticGOOGLE "foobar"
|
|
OpDecorateStringGOOGLE %void HlslSemanticGOOGLE "my goodness"
|
|
%void = OpTypeVoid
|
|
%float = OpTypeFloat 32
|
|
)";
|
|
SpirvTools tools(SPV_ENV_UNIVERSAL_1_1);
|
|
std::vector<uint32_t> binary_in;
|
|
tools.Assemble(before, &binary_in);
|
|
|
|
// Instantiate the optimizer, and run the strip-reflection-info
|
|
// pass over the |binary_in| module, and place the modified module
|
|
// into |binary_out|.
|
|
spvtools::Optimizer optimizer(SPV_ENV_UNIVERSAL_1_1);
|
|
optimizer.RegisterPass(spvtools::CreateStripReflectInfoPass());
|
|
std::vector<uint32_t> binary_out;
|
|
optimizer.Run(binary_in.data(), binary_in.size(), &binary_out);
|
|
|
|
// Check results
|
|
std::string disassembly;
|
|
tools.Disassemble(binary_out.data(), binary_out.size(), &disassembly);
|
|
std::string after = R"(OpCapability Shader
|
|
OpCapability Linkage
|
|
OpMemoryModel Logical Simple
|
|
%void = OpTypeVoid
|
|
%float = OpTypeFloat 32
|
|
)";
|
|
EXPECT_THAT(disassembly, testing::Eq(after));
|
|
}
|
|
|
|
// This test is functionally the same as the end-to-end test above,
|
|
// but uses the test SinglePassRunAndCheck test fixture instead.
|
|
TEST_F(StripLineReflectInfoTest, StripHlslSemantic) {
|
|
// This is a non-sensical example, but exercises the instructions.
|
|
std::string before = R"(OpCapability Shader
|
|
OpCapability Linkage
|
|
OpExtension "SPV_GOOGLE_decorate_string"
|
|
OpExtension "SPV_GOOGLE_hlsl_functionality1"
|
|
OpMemoryModel Logical Simple
|
|
OpDecorateStringGOOGLE %float HlslSemanticGOOGLE "foobar"
|
|
OpDecorateStringGOOGLE %void HlslSemanticGOOGLE "my goodness"
|
|
%void = OpTypeVoid
|
|
%float = OpTypeFloat 32
|
|
)";
|
|
std::string after = R"(OpCapability Shader
|
|
OpCapability Linkage
|
|
OpMemoryModel Logical Simple
|
|
%void = OpTypeVoid
|
|
%float = OpTypeFloat 32
|
|
)";
|
|
|
|
SinglePassRunAndCheck<StripReflectInfoPass>(before, after, false);
|
|
}
|
|
|
|
TEST_F(StripLineReflectInfoTest, StripHlslCounterBuffer) {
|
|
std::string before = R"(OpCapability Shader
|
|
OpCapability Linkage
|
|
OpExtension "SPV_GOOGLE_hlsl_functionality1"
|
|
OpMemoryModel Logical Simple
|
|
OpDecorateId %void HlslCounterBufferGOOGLE %float
|
|
%void = OpTypeVoid
|
|
%float = OpTypeFloat 32
|
|
)";
|
|
std::string after = R"(OpCapability Shader
|
|
OpCapability Linkage
|
|
OpMemoryModel Logical Simple
|
|
%void = OpTypeVoid
|
|
%float = OpTypeFloat 32
|
|
)";
|
|
|
|
SinglePassRunAndCheck<StripReflectInfoPass>(before, after, false);
|
|
}
|
|
|
|
TEST_F(StripLineReflectInfoTest, StripHlslSemanticOnMember) {
|
|
// This is a non-sensical example, but exercises the instructions.
|
|
std::string before = R"(OpCapability Shader
|
|
OpCapability Linkage
|
|
OpExtension "SPV_GOOGLE_decorate_string"
|
|
OpExtension "SPV_GOOGLE_hlsl_functionality1"
|
|
OpMemoryModel Logical Simple
|
|
OpMemberDecorateStringGOOGLE %struct 0 HlslSemanticGOOGLE "foobar"
|
|
%float = OpTypeFloat 32
|
|
%_struct_3 = OpTypeStruct %float
|
|
)";
|
|
std::string after = R"(OpCapability Shader
|
|
OpCapability Linkage
|
|
OpMemoryModel Logical Simple
|
|
%float = OpTypeFloat 32
|
|
%_struct_3 = OpTypeStruct %float
|
|
)";
|
|
|
|
SinglePassRunAndCheck<StripReflectInfoPass>(before, after, false);
|
|
}
|
|
|
|
TEST_F(StripNonSemanticInfoTest, StripNonSemanticImport) {
|
|
std::string text = R"(
|
|
; CHECK-NOT: OpExtension "SPV_KHR_non_semantic_info"
|
|
; CHECK-NOT: OpExtInstImport
|
|
OpCapability Shader
|
|
OpCapability Linkage
|
|
OpExtension "SPV_KHR_non_semantic_info"
|
|
%ext = OpExtInstImport "NonSemantic.Test"
|
|
OpMemoryModel Logical GLSL450
|
|
)";
|
|
|
|
SinglePassRunAndMatch<StripReflectInfoPass>(text, true);
|
|
}
|
|
|
|
TEST_F(StripNonSemanticInfoTest, StripNonSemanticGlobal) {
|
|
std::string text = R"(
|
|
; CHECK-NOT: OpExtInst
|
|
OpCapability Shader
|
|
OpCapability Linkage
|
|
OpExtension "SPV_KHR_non_semantic_info"
|
|
%ext = OpExtInstImport "NonSemantic.Test"
|
|
OpMemoryModel Logical GLSL450
|
|
%void = OpTypeVoid
|
|
%1 = OpExtInst %void %ext 1
|
|
)";
|
|
|
|
SinglePassRunAndMatch<StripReflectInfoPass>(text, true);
|
|
}
|
|
|
|
TEST_F(StripNonSemanticInfoTest, StripNonSemanticInFunction) {
|
|
std::string text = R"(
|
|
; CHECK-NOT: OpExtInst
|
|
OpCapability Shader
|
|
OpCapability Linkage
|
|
OpExtension "SPV_KHR_non_semantic_info"
|
|
%ext = OpExtInstImport "NonSemantic.Test"
|
|
OpMemoryModel Logical GLSL450
|
|
%void = OpTypeVoid
|
|
%void_fn = OpTypeFunction %void
|
|
%foo = OpFunction %void None %void_fn
|
|
%entry = OpLabel
|
|
%1 = OpExtInst %void %ext 1 %foo
|
|
OpReturn
|
|
OpFunctionEnd
|
|
)";
|
|
|
|
SinglePassRunAndMatch<StripReflectInfoPass>(text, true);
|
|
}
|
|
|
|
TEST_F(StripNonSemanticInfoTest, StripNonSemanticAfterFunction) {
|
|
std::string text = R"(
|
|
; CHECK-NOT: OpExtInst
|
|
OpCapability Shader
|
|
OpCapability Linkage
|
|
OpExtension "SPV_KHR_non_semantic_info"
|
|
%ext = OpExtInstImport "NonSemantic.Test"
|
|
OpMemoryModel Logical GLSL450
|
|
%void = OpTypeVoid
|
|
%void_fn = OpTypeFunction %void
|
|
%foo = OpFunction %void None %void_fn
|
|
%entry = OpLabel
|
|
OpReturn
|
|
OpFunctionEnd
|
|
%1 = OpExtInst %void %ext 1 %foo
|
|
)";
|
|
|
|
SinglePassRunAndMatch<StripReflectInfoPass>(text, true);
|
|
}
|
|
|
|
TEST_F(StripNonSemanticInfoTest, StripNonSemanticBetweenFunctions) {
|
|
std::string text = R"(
|
|
; CHECK-NOT: OpExtInst
|
|
OpCapability Shader
|
|
OpCapability Linkage
|
|
OpExtension "SPV_KHR_non_semantic_info"
|
|
%ext = OpExtInstImport "NonSemantic.Test"
|
|
OpMemoryModel Logical GLSL450
|
|
%void = OpTypeVoid
|
|
%void_fn = OpTypeFunction %void
|
|
%foo = OpFunction %void None %void_fn
|
|
%entry = OpLabel
|
|
OpReturn
|
|
OpFunctionEnd
|
|
%1 = OpExtInst %void %ext 1 %foo
|
|
%bar = OpFunction %void None %void_fn
|
|
%bar_entry = OpLabel
|
|
OpReturn
|
|
OpFunctionEnd
|
|
)";
|
|
|
|
SinglePassRunAndMatch<StripReflectInfoPass>(text, true);
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace opt
|
|
} // namespace spvtools
|