| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- // Copyright (c) 2017 Pierre Moreau
- //
- // 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 "test/link/linker_fixture.h"
- namespace spvtools {
- namespace {
- using ::testing::HasSubstr;
- using BinaryVersion = spvtest::LinkerTest;
- spvtest::Binary CreateBinary(uint32_t version) {
- return {
- // clang-format off
- // Header
- static_cast<uint32_t>(spv::MagicNumber),
- version,
- SPV_GENERATOR_WORD(SPV_GENERATOR_KHRONOS, 0),
- 1u, // NOTE: Bound
- 0u, // NOTE: Schema; reserved
- // OpCapability Shader
- static_cast<uint32_t>(spv::Op::OpCapability) | 2u << spv::WordCountShift,
- static_cast<uint32_t>(spv::Capability::Shader),
- // OpMemoryModel Logical Simple
- static_cast<uint32_t>(spv::Op::OpMemoryModel) | 3u << spv::WordCountShift,
- static_cast<uint32_t>(spv::AddressingModel::Logical),
- static_cast<uint32_t>(spv::MemoryModel::Simple)
- // clang-format on
- };
- }
- TEST_F(BinaryVersion, Match) {
- // clang-format off
- spvtest::Binaries binaries = {
- CreateBinary(SPV_SPIRV_VERSION_WORD(1, 3)),
- CreateBinary(SPV_SPIRV_VERSION_WORD(1, 3)),
- };
- // clang-format on
- spvtest::Binary linked_binary;
- ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary)) << GetErrorMessage();
- EXPECT_THAT(GetErrorMessage(), std::string());
- EXPECT_EQ(SPV_SPIRV_VERSION_WORD(1, 3), linked_binary[1]);
- }
- TEST_F(BinaryVersion, Mismatch) {
- // clang-format off
- spvtest::Binaries binaries = {
- CreateBinary(SPV_SPIRV_VERSION_WORD(1, 3)),
- CreateBinary(SPV_SPIRV_VERSION_WORD(1, 5)),
- };
- // clang-format on
- spvtest::Binary linked_binary;
- ASSERT_EQ(SPV_ERROR_INTERNAL, Link(binaries, &linked_binary))
- << GetErrorMessage();
- EXPECT_THAT(GetErrorMessage(),
- HasSubstr("Conflicting SPIR-V versions: 1.3 (input modules 1 "
- "through 1) vs 1.5 (input module 2)."));
- }
- TEST_F(BinaryVersion, UseHighest) {
- // clang-format off
- spvtest::Binaries binaries = {
- CreateBinary(SPV_SPIRV_VERSION_WORD(1, 3)),
- CreateBinary(SPV_SPIRV_VERSION_WORD(1, 5)),
- };
- // clang-format on
- LinkerOptions options;
- options.SetUseHighestVersion(true);
- spvtest::Binary linked_binary;
- ASSERT_EQ(SPV_SUCCESS, Link(binaries, &linked_binary, options))
- << GetErrorMessage();
- EXPECT_THAT(GetErrorMessage(), std::string());
- EXPECT_EQ(SPV_SPIRV_VERSION_WORD(1, 5), linked_binary[1]);
- }
- } // namespace
- } // namespace spvtools
|