| // Copyright 2023 The Tint Authors. |
| // |
| // 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 "gtest/gtest.h" |
| #include "spirv/unified1/spirv.h" |
| #include "src/tint/lang/spirv/writer/spv_dump.h" |
| |
| namespace tint::spirv::writer { |
| namespace { |
| |
| using SpirvWriterModuleTest = testing::Test; |
| |
| TEST_F(SpirvWriterModuleTest, TracksIdBounds) { |
| Module m; |
| |
| for (size_t i = 0; i < 5; i++) { |
| EXPECT_EQ(m.NextId(), i + 1); |
| } |
| |
| EXPECT_EQ(6u, m.IdBound()); |
| } |
| |
| TEST_F(SpirvWriterModuleTest, Capabilities_Dedup) { |
| Module m; |
| |
| m.PushCapability(SpvCapabilityShader); |
| m.PushCapability(SpvCapabilityShader); |
| m.PushCapability(SpvCapabilityShader); |
| |
| EXPECT_EQ(DumpInstructions(m.Capabilities()), "OpCapability Shader\n"); |
| } |
| |
| TEST_F(SpirvWriterModuleTest, DeclareExtension) { |
| Module m; |
| |
| m.PushExtension("SPV_KHR_integer_dot_product"); |
| |
| EXPECT_EQ(DumpInstructions(m.Extensions()), "OpExtension \"SPV_KHR_integer_dot_product\"\n"); |
| } |
| |
| } // namespace |
| } // namespace tint::spirv::writer |