| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- // Copyright (c) 2024 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 "assembly_builder.h"
- #include "pass_fixture.h"
- #include "pass_utils.h"
- namespace {
- using namespace spvtools;
- using ModifyMaximalReconvergenceTest = opt::PassTest<::testing::Test>;
- TEST_F(ModifyMaximalReconvergenceTest, AddNoEntryPoint) {
- const std::string text = R"(
- ; CHECK-NOT: OpExtension
- OpCapability Kernel
- OpCapability Linkage
- OpMemoryModel Logical OpenCL
- )";
- SinglePassRunAndMatch<opt::ModifyMaximalReconvergence>(text, true, true);
- }
- TEST_F(ModifyMaximalReconvergenceTest, AddSingleEntryPoint) {
- const std::string text = R"(
- ; CHECK: OpExtension "SPV_KHR_maximal_reconvergence"
- ; CHECK: OpExecutionMode %main MaximallyReconvergesKHR
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpName %main "main"
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<opt::ModifyMaximalReconvergence>(text, true, true);
- }
- TEST_F(ModifyMaximalReconvergenceTest, AddExtensionExists) {
- const std::string text = R"(
- ; CHECK: OpExtension "SPV_KHR_maximal_reconvergence"
- ; CHECK-NOT: OpExtension "SPV_KHR_maximal_reconvergence"
- ; CHECK: OpExecutionMode %main MaximallyReconvergesKHR
- OpCapability Shader
- OpExtension "SPV_KHR_maximal_reconvergence"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpName %main "main"
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<opt::ModifyMaximalReconvergence>(text, true, true);
- }
- TEST_F(ModifyMaximalReconvergenceTest, AddExecutionModeExists) {
- const std::string text = R"(
- ; CHECK: OpExtension "SPV_KHR_maximal_reconvergence"
- ; CHECK-NOT: OpExtension "SPV_KHR_maximal_reconvergence"
- ; CHECK: OpExecutionMode %main LocalSize 1 1 1
- ; CHECK-NEXT: OpExecutionMode %main MaximallyReconvergesKHR
- ; CHECK-NOT: OpExecutionMode %main MaximallyReconvergesKHR
- OpCapability Shader
- OpExtension "SPV_KHR_maximal_reconvergence"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpExecutionMode %main MaximallyReconvergesKHR
- OpName %main "main"
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<opt::ModifyMaximalReconvergence>(text, true, true);
- }
- TEST_F(ModifyMaximalReconvergenceTest, AddTwoEntryPoints) {
- const std::string text = R"(
- ; CHECK: OpExtension "SPV_KHR_maximal_reconvergence"
- ; CHECK: OpExecutionMode %comp MaximallyReconvergesKHR
- ; CHECK: OpExecutionMode %frag MaximallyReconvergesKHR
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %comp "main"
- OpEntryPoint Fragment %frag "main"
- OpExecutionMode %comp LocalSize 1 1 1
- OpExecutionMode %frag OriginUpperLeft
- OpName %comp "comp"
- OpName %frag "frag"
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %comp = OpFunction %void None %void_fn
- %entry1 = OpLabel
- OpReturn
- OpFunctionEnd
- %frag = OpFunction %void None %void_fn
- %entry2 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<opt::ModifyMaximalReconvergence>(text, true, true);
- }
- TEST_F(ModifyMaximalReconvergenceTest, AddTwoEntryPointsOneFunc) {
- const std::string text = R"(
- ; CHECK: OpExtension "SPV_KHR_maximal_reconvergence"
- ; CHECK: OpExecutionMode %comp MaximallyReconvergesKHR
- ; CHECK-NOT: OpExecutionMode %comp MaximallyReconvergesKHR
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %comp "main1"
- OpEntryPoint GLCompute %comp "main2"
- OpExecutionMode %comp LocalSize 1 1 1
- OpName %comp "comp"
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %comp = OpFunction %void None %void_fn
- %entry1 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<opt::ModifyMaximalReconvergence>(text, true, true);
- }
- TEST_F(ModifyMaximalReconvergenceTest, AddTwoEntryPointsOneExecutionMode) {
- const std::string text = R"(
- ; CHECK: OpExtension "SPV_KHR_maximal_reconvergence"
- ; CHECK: OpExecutionMode %comp MaximallyReconvergesKHR
- ; CHECK-NOT: OpExecutionMode %comp MaximallyReconvergesKHR
- ; CHECK: OpExecutionMode %frag MaximallyReconvergesKHR
- ; CHECK-NOT: OpExecutionMode %comp MaximallyReconvergesKHR
- OpCapability Shader
- OpExtension "SPV_KHR_maximal_reconvergence"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %comp "main"
- OpEntryPoint Fragment %frag "main"
- OpExecutionMode %comp LocalSize 1 1 1
- OpExecutionMode %frag OriginUpperLeft
- OpExecutionMode %comp MaximallyReconvergesKHR
- OpName %comp "comp"
- OpName %frag "frag"
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %comp = OpFunction %void None %void_fn
- %entry1 = OpLabel
- OpReturn
- OpFunctionEnd
- %frag = OpFunction %void None %void_fn
- %entry2 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<opt::ModifyMaximalReconvergence>(text, true, true);
- }
- TEST_F(ModifyMaximalReconvergenceTest, RemoveNoEntryPoint) {
- const std::string text = R"(OpCapability Kernel
- OpCapability Linkage
- OpMemoryModel Logical OpenCL
- )";
- SinglePassRunAndCheck<opt::ModifyMaximalReconvergence>(text, text, false,
- true, false);
- }
- TEST_F(ModifyMaximalReconvergenceTest, RemoveOnlyExtension) {
- const std::string text = R"(
- ; CHECK-NOT: OpExtension "SPV_KHR_maximal_reconvergence"
- ; CHECK: OpExecutionMode %main LocalSize 1 1 1
- OpCapability Shader
- OpExtension "SPV_KHR_maximal_reconvergence"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpName %main "main"
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<opt::ModifyMaximalReconvergence>(text, true, false);
- }
- TEST_F(ModifyMaximalReconvergenceTest, RemoveSingleEntryPoint) {
- const std::string text = R"(
- ; CHECK-NOT: OpExtension "SPV_KHR_maximal_reconvergence"
- ; CHECK: OpExecutionMode %main LocalSize 1 1 1
- ; CHECK-NOT: OpExecutionMode %main MaximallyReconvergesKHR
- OpCapability Shader
- OpExtension "SPV_KHR_maximal_reconvergence"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpExecutionMode %main MaximallyReconvergesKHR
- OpName %main "main"
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<opt::ModifyMaximalReconvergence>(text, true, false);
- }
- TEST_F(ModifyMaximalReconvergenceTest, RemoveTwoEntryPointsOneExecutionMode) {
- const std::string text = R"(
- ; CHECK-NOT: OpExtension "SPV_KHR_maximal_reconvergence"
- ; CHECK: OpExecutionMode %comp LocalSize 1 1 1
- ; CHECK-NEXT: OpExecutionMode %frag OriginUpperLeft
- ; CHECK-NOT: OpExecutionMode %comp MaximallyReconvergesKHR
- OpCapability Shader
- OpExtension "SPV_KHR_maximal_reconvergence"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %comp "main"
- OpEntryPoint Fragment %frag "main"
- OpExecutionMode %comp LocalSize 1 1 1
- OpExecutionMode %comp MaximallyReconvergesKHR
- OpExecutionMode %frag OriginUpperLeft
- OpName %comp "comp"
- OpName %frag "frag"
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %comp = OpFunction %void None %void_fn
- %entry1 = OpLabel
- OpReturn
- OpFunctionEnd
- %frag = OpFunction %void None %void_fn
- %entry2 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<opt::ModifyMaximalReconvergence>(text, true, false);
- }
- TEST_F(ModifyMaximalReconvergenceTest, RemoveTwoEntryPoints) {
- const std::string text = R"(
- ; CHECK-NOT: OpExtension "SPV_KHR_maximal_reconvergence"
- ; CHECK: OpExecutionMode %comp LocalSize 1 1 1
- ; CHECK-NEXT: OpExecutionMode %frag OriginUpperLeft
- ; CHECK-NOT: OpExecutionMode {{%\w}} MaximallyReconvergesKHR
- OpCapability Shader
- OpExtension "SPV_KHR_maximal_reconvergence"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %comp "main"
- OpEntryPoint Fragment %frag "main"
- OpExecutionMode %comp LocalSize 1 1 1
- OpExecutionMode %comp MaximallyReconvergesKHR
- OpExecutionMode %frag OriginUpperLeft
- OpExecutionMode %frag MaximallyReconvergesKHR
- OpName %comp "comp"
- OpName %frag "frag"
- %void = OpTypeVoid
- %void_fn = OpTypeFunction %void
- %comp = OpFunction %void None %void_fn
- %entry1 = OpLabel
- OpReturn
- OpFunctionEnd
- %frag = OpFunction %void None %void_fn
- %entry2 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<opt::ModifyMaximalReconvergence>(text, true, false);
- }
- } // namespace
|