2018-03-09 21:08:57 +00:00
|
|
|
// 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.
|
|
|
|
|
2018-08-03 19:06:09 +00:00
|
|
|
#include <string>
|
2019-11-26 21:20:45 +00:00
|
|
|
#include "gmock/gmock.h"
|
|
|
|
|
|
|
|
#include "spirv-tools/optimizer.hpp"
|
2018-08-03 19:06:09 +00:00
|
|
|
|
|
|
|
#include "test/opt/pass_fixture.h"
|
|
|
|
#include "test/opt/pass_utils.h"
|
2018-03-09 21:08:57 +00:00
|
|
|
|
2018-07-11 13:24:49 +00:00
|
|
|
namespace spvtools {
|
|
|
|
namespace opt {
|
2018-03-09 21:08:57 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
using StripLineReflectInfoTest = PassTest<::testing::Test>;
|
2020-08-13 18:54:14 +00:00
|
|
|
using StripNonSemanticInfoTest = PassTest<::testing::Test>;
|
2018-03-09 21:08:57 +00:00
|
|
|
|
2019-11-26 21:20:45 +00:00
|
|
|
// 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.
|
2018-03-09 21:08:57 +00:00
|
|
|
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
|
|
|
|
)";
|
|
|
|
|
2018-07-11 13:24:49 +00:00
|
|
|
SinglePassRunAndCheck<StripReflectInfoPass>(before, after, false);
|
2018-03-09 21:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
)";
|
|
|
|
|
2018-07-11 13:24:49 +00:00
|
|
|
SinglePassRunAndCheck<StripReflectInfoPass>(before, after, false);
|
2018-03-09 21:08:57 +00:00
|
|
|
}
|
|
|
|
|
2018-10-30 20:17:35 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-08-13 18:54:14 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2018-07-11 13:24:49 +00:00
|
|
|
} // namespace
|
|
|
|
} // namespace opt
|
|
|
|
} // namespace spvtools
|