| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- // Copyright (c) 2017 Google Inc.
- //
- // 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 <algorithm>
- #include <memory>
- #include "gtest/gtest.h"
- #include "source/opt/build_module.h"
- #include "source/opt/ir_context.h"
- namespace spvtools {
- namespace opt {
- namespace {
- using FeatureManagerTest = ::testing::Test;
- TEST_F(FeatureManagerTest, MissingExtension) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- ASSERT_NE(context, nullptr);
- EXPECT_FALSE(context->get_feature_mgr()->HasExtension(
- Extension::kSPV_KHR_variable_pointers));
- }
- TEST_F(FeatureManagerTest, OneExtension) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpExtension "SPV_KHR_variable_pointers"
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- ASSERT_NE(context, nullptr);
- EXPECT_TRUE(context->get_feature_mgr()->HasExtension(
- Extension::kSPV_KHR_variable_pointers));
- }
- TEST_F(FeatureManagerTest, NotADifferentExtension) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpExtension "SPV_KHR_variable_pointers"
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- ASSERT_NE(context, nullptr);
- EXPECT_FALSE(context->get_feature_mgr()->HasExtension(
- Extension::kSPV_KHR_storage_buffer_storage_class));
- }
- TEST_F(FeatureManagerTest, TwoExtensions) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpExtension "SPV_KHR_variable_pointers"
- OpExtension "SPV_KHR_storage_buffer_storage_class"
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- ASSERT_NE(context, nullptr);
- EXPECT_TRUE(context->get_feature_mgr()->HasExtension(
- Extension::kSPV_KHR_variable_pointers));
- EXPECT_TRUE(context->get_feature_mgr()->HasExtension(
- Extension::kSPV_KHR_storage_buffer_storage_class));
- }
- TEST_F(FeatureManagerTest, GetExtensionsReturnsExtensions) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpExtension "SPV_KHR_variable_pointers"
- OpExtension "SPV_KHR_storage_buffer_storage_class"
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- ASSERT_NE(context, nullptr);
- const auto& extensions = context->get_feature_mgr()->GetExtensions();
- EXPECT_EQ(extensions.size(), 2);
- EXPECT_TRUE(extensions.contains(Extension::kSPV_KHR_variable_pointers));
- EXPECT_TRUE(
- extensions.contains(Extension::kSPV_KHR_storage_buffer_storage_class));
- }
- // Test capability checks.
- TEST_F(FeatureManagerTest, ExplicitlyPresent1) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- ASSERT_NE(context, nullptr);
- EXPECT_TRUE(
- context->get_feature_mgr()->HasCapability(spv::Capability::Shader));
- EXPECT_FALSE(
- context->get_feature_mgr()->HasCapability(spv::Capability::Kernel));
- }
- TEST_F(FeatureManagerTest, ExplicitlyPresent2) {
- const std::string text = R"(
- OpCapability Kernel
- OpMemoryModel Logical GLSL450
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- ASSERT_NE(context, nullptr);
- EXPECT_FALSE(
- context->get_feature_mgr()->HasCapability(spv::Capability::Shader));
- EXPECT_TRUE(
- context->get_feature_mgr()->HasCapability(spv::Capability::Kernel));
- }
- TEST_F(FeatureManagerTest, ImplicitlyPresent) {
- const std::string text = R"(
- OpCapability Tessellation
- OpMemoryModel Logical GLSL450
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- ASSERT_NE(context, nullptr);
- // Check multiple levels of indirection. Tessellation implies Shader, which
- // implies Matrix.
- EXPECT_TRUE(
- context->get_feature_mgr()->HasCapability(spv::Capability::Tessellation));
- EXPECT_TRUE(
- context->get_feature_mgr()->HasCapability(spv::Capability::Shader));
- EXPECT_TRUE(
- context->get_feature_mgr()->HasCapability(spv::Capability::Matrix));
- EXPECT_FALSE(
- context->get_feature_mgr()->HasCapability(spv::Capability::Kernel));
- }
- TEST_F(FeatureManagerTest, GetCapabilitiesReturnsImplicitCapabilities) {
- const std::string text = R"(
- OpCapability Tessellation
- OpMemoryModel Logical GLSL450
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- ASSERT_NE(context, nullptr);
- const auto& capabilities = context->get_feature_mgr()->GetCapabilities();
- // Tesselation implies Shader, which implies Matrix.
- EXPECT_EQ(capabilities.size(), 3);
- EXPECT_TRUE(capabilities.contains(spv::Capability::Tessellation));
- EXPECT_TRUE(capabilities.contains(spv::Capability::Shader));
- EXPECT_TRUE(capabilities.contains(spv::Capability::Matrix));
- }
- } // namespace
- } // namespace opt
- } // namespace spvtools
|