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.
|
|
|
|
|
|
|
|
#include "pass_fixture.h"
|
|
|
|
#include "pass_utils.h"
|
|
|
|
|
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>;
|
|
|
|
|
|
|
|
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-07-11 13:24:49 +00:00
|
|
|
} // namespace
|
|
|
|
} // namespace opt
|
|
|
|
} // namespace spvtools
|