From ad18c77ac9e9783ce5a571b313db367f6bfd87ad Mon Sep 17 00:00:00 2001 From: David Neto Date: Mon, 14 Sep 2015 14:28:33 -0400 Subject: [PATCH] Assembler test for single-valued SelectionControl mask Support for combining masks should come later. --- CMakeLists.txt | 1 + test/TextToBinary.ControlFlow.cpp | 84 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 85 insertions(+) create mode 100644 test/TextToBinary.ControlFlow.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d8d5c3..5e6fa9c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -186,6 +186,7 @@ if (NOT ${SPIRV_SKIP_EXECUTABLES}) ${CMAKE_CURRENT_SOURCE_DIR}/test/TextStartsNewInst.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test/TextToBinary.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test/TextToBinary.Annotation.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/test/TextToBinary.ControlFlow.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test/TextToBinary.Debug.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test/TextToBinary.Miscellaneous.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test/TextToBinary.ModeSetting.cpp diff --git a/test/TextToBinary.ControlFlow.cpp b/test/TextToBinary.ControlFlow.cpp new file mode 100644 index 0000000..e947715 --- /dev/null +++ b/test/TextToBinary.ControlFlow.cpp @@ -0,0 +1,84 @@ +// Copyright (c) 2015 The Khronos Group Inc. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and/or associated documentation files (the +// "Materials"), to deal in the Materials without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Materials, and to +// permit persons to whom the Materials are furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Materials. +// +// MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS +// KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS +// SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT +// https://www.khronos.org/registry/ +// +// THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +// MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. + +// Assembler tests for instructions in the "Control Flow" section of the +// SPIR-V spec. + +#include "UnitSPIRV.h" + +#include "gmock/gmock.h" +#include "TestFixture.h" + +namespace { + +using spvtest::MakeInstruction; +using ::testing::Eq; + +// An example case for an enumerated value. +template +struct EnumCase { + E value; + std::string name; +}; + +// Test OpSelectionMerge + +using OpSelectionMergeTest = test_fixture::TextToBinaryTestBase< + ::testing::TestWithParam>>; + +TEST_P(OpSelectionMergeTest, AnySingleSelectionControlMask) { + std::string input = "OpSelectionMerge %1 " + GetParam().name; + EXPECT_THAT( + CompiledInstructions(input), + Eq(MakeInstruction(spv::OpSelectionMerge, {1, GetParam().value}))); +} + +// clang-format off +#define CASE(VALUE,NAME) { spv::SelectionControl##VALUE, NAME} +INSTANTIATE_TEST_CASE_P(TextToBinarySelectionMerge, OpSelectionMergeTest, + ::testing::ValuesIn(std::vector>{ + CASE(MaskNone, "None"), + CASE(FlattenMask, "Flatten"), + CASE(DontFlattenMask, "DontFlatten"), + })); +#undef CASE +// clang-format on + +// TODO(dneto): Combination of selection control masks. + +// TODO(dneto): OpPhi +// TODO(dneto): OpLoopMerge +// TODO(dneto): OpLabel +// TODO(dneto): OpBranch +// TODO(dneto): OpSwitch +// TODO(dneto): OpKill +// TODO(dneto): OpReturn +// TODO(dneto): OpReturnValue +// TODO(dneto): OpUnreachable +// TODO(dneto): OpLifetimeStart +// TODO(dneto): OpLifetimeStop + +} // anonymous namespace -- 2.7.4