| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707 |
- // Copyright (c) 2018 LunarG 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 <sstream>
- #include <string>
- #include "gmock/gmock.h"
- #include "test/unit_spirv.h"
- #include "test/val/val_fixtures.h"
- namespace spvtools {
- namespace val {
- namespace {
- using ::testing::HasSubstr;
- using ::testing::Not;
- using ValidateAdjacency = spvtest::ValidateBase<bool>;
- TEST_F(ValidateAdjacency, OpPhiBeginsModuleFail) {
- const std::string module = R"(
- %result = OpPhi %bool %true %true_label %false %false_label
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- %void = OpTypeVoid
- %bool = OpTypeBool
- %true = OpConstantTrue %bool
- %false = OpConstantFalse %bool
- %func = OpTypeFunction %void
- %main = OpFunction %void None %func
- %main_entry = OpLabel
- OpBranch %true_label
- %true_label = OpLabel
- OpBranch %false_label
- %false_label = OpLabel
- OpBranch %end_label
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(module);
- EXPECT_EQ(SPV_ERROR_INVALID_ID, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("ID '1[%bool]' has not been defined"));
- }
- TEST_F(ValidateAdjacency, OpLoopMergeEndsModuleFail) {
- const std::string module = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- %void = OpTypeVoid
- %func = OpTypeFunction %void
- %main = OpFunction %void None %func
- %main_entry = OpLabel
- OpBranch %loop
- %loop = OpLabel
- OpLoopMerge %end %loop None
- )";
- CompileSuccessfully(module);
- EXPECT_EQ(SPV_ERROR_INVALID_LAYOUT, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Missing OpFunctionEnd at end of module"));
- }
- TEST_F(ValidateAdjacency, OpSelectionMergeEndsModuleFail) {
- const std::string module = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- %void = OpTypeVoid
- %func = OpTypeFunction %void
- %main = OpFunction %void None %func
- %main_entry = OpLabel
- OpBranch %merge
- %merge = OpLabel
- OpSelectionMerge %merge None
- )";
- CompileSuccessfully(module);
- EXPECT_EQ(SPV_ERROR_INVALID_LAYOUT, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Missing OpFunctionEnd at end of module"));
- }
- std::string GenerateShaderCode(
- const std::string& body,
- const std::string& capabilities_and_extensions = "OpCapability Shader",
- const std::string& execution_model = "Fragment") {
- std::ostringstream ss;
- ss << capabilities_and_extensions << "\n";
- ss << "OpMemoryModel Logical GLSL450\n";
- ss << "OpEntryPoint " << execution_model << " %main \"main\"\n";
- if (execution_model == "Fragment") {
- ss << "OpExecutionMode %main OriginUpperLeft\n";
- }
- ss << R"(
- %string = OpString ""
- %void = OpTypeVoid
- %bool = OpTypeBool
- %int = OpTypeInt 32 0
- %true = OpConstantTrue %bool
- %false = OpConstantFalse %bool
- %zero = OpConstant %int 0
- %int_1 = OpConstant %int 1
- %func = OpTypeFunction %void
- %func_int = OpTypePointer Function %int
- %main = OpFunction %void None %func
- %main_entry = OpLabel
- )";
- ss << body;
- ss << R"(
- OpReturn
- OpFunctionEnd)";
- return ss.str();
- }
- TEST_F(ValidateAdjacency, OpPhiPreceededByOpLabelSuccess) {
- const std::string body = R"(
- OpSelectionMerge %end_label None
- OpBranchConditional %true %true_label %false_label
- %true_label = OpLabel
- OpBranch %end_label
- %false_label = OpLabel
- OpBranch %end_label
- %end_label = OpLabel
- OpLine %string 0 0
- %result = OpPhi %bool %true %true_label %false %false_label
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateAdjacency, OpPhiPreceededByOpPhiSuccess) {
- const std::string body = R"(
- OpSelectionMerge %end_label None
- OpBranchConditional %true %true_label %false_label
- %true_label = OpLabel
- OpBranch %end_label
- %false_label = OpLabel
- OpBranch %end_label
- %end_label = OpLabel
- %1 = OpPhi %bool %true %true_label %false %false_label
- %2 = OpPhi %bool %true %true_label %false %false_label
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateAdjacency, OpPhiPreceededByOpLineSuccess) {
- const std::string body = R"(
- OpSelectionMerge %end_label None
- OpBranchConditional %true %true_label %false_label
- %true_label = OpLabel
- OpBranch %end_label
- %false_label = OpLabel
- OpBranch %end_label
- %end_label = OpLabel
- OpLine %string 0 0
- %result = OpPhi %bool %true %true_label %false %false_label
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateAdjacency, OpPhiPreceededByBadOpFail) {
- const std::string body = R"(
- OpSelectionMerge %end_label None
- OpBranchConditional %true %true_label %false_label
- %true_label = OpLabel
- OpBranch %end_label
- %false_label = OpLabel
- OpBranch %end_label
- %end_label = OpLabel
- OpNop
- %result = OpPhi %bool %true %true_label %false %false_label
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("OpPhi must appear within a non-entry block before all "
- "non-OpPhi instructions"));
- }
- TEST_F(ValidateAdjacency, OpPhiPreceededByOpLineAndBadOpFail) {
- const std::string body = R"(
- OpSelectionMerge %end_label None
- OpBranchConditional %true %true_label %false_label
- %true_label = OpLabel
- OpBranch %end_label
- %false_label = OpLabel
- OpBranch %end_label
- %end_label = OpLabel
- OpNop
- OpLine %string 1 1
- %result = OpPhi %bool %true %true_label %false %false_label
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("OpPhi must appear within a non-entry block before all "
- "non-OpPhi instructions"));
- }
- TEST_F(ValidateAdjacency, OpPhiFollowedByOpLineGood) {
- const std::string body = R"(
- OpSelectionMerge %end_label None
- OpBranchConditional %true %true_label %false_label
- %true_label = OpLabel
- OpBranch %end_label
- %false_label = OpLabel
- OpBranch %end_label
- %end_label = OpLabel
- %result = OpPhi %bool %true %true_label %false %false_label
- OpLine %string 1 1
- OpNop
- OpNop
- OpLine %string 2 1
- OpNop
- OpLine %string 3 1
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateAdjacency, OpPhiMultipleOpLineAndOpPhiFail) {
- const std::string body = R"(
- OpSelectionMerge %end_label None
- OpBranchConditional %true %true_label %false_label
- %true_label = OpLabel
- OpBranch %end_label
- %false_label = OpLabel
- OpBranch %end_label
- %end_label = OpLabel
- OpLine %string 1 1
- %value = OpPhi %int %zero %true_label %int_1 %false_label
- OpNop
- OpLine %string 2 1
- OpNop
- OpLine %string 3 1
- %result = OpPhi %bool %true %true_label %false %false_label
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("OpPhi must appear within a non-entry block before all "
- "non-OpPhi instructions"));
- }
- TEST_F(ValidateAdjacency, OpPhiMultipleOpLineAndOpPhiGood) {
- const std::string body = R"(
- OpSelectionMerge %end_label None
- OpBranchConditional %true %true_label %false_label
- %true_label = OpLabel
- OpBranch %end_label
- %false_label = OpLabel
- OpBranch %end_label
- %end_label = OpLabel
- OpLine %string 1 1
- %value = OpPhi %int %zero %true_label %int_1 %false_label
- OpLine %string 2 1
- %result = OpPhi %bool %true %true_label %false %false_label
- OpLine %string 3 1
- OpNop
- OpNop
- OpLine %string 4 1
- OpNop
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateAdjacency, OpPhiInEntryBlockBad) {
- const std::string body = R"(
- OpLine %string 1 1
- %value = OpPhi %int
- OpLine %string 2 1
- OpNop
- OpLine %string 3 1
- OpNop
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("OpPhi must appear within a non-entry block before all "
- "non-OpPhi instructions"));
- }
- TEST_F(ValidateAdjacency, NonSemanticBeforeOpPhiBad) {
- const std::string body = R"(
- OpSelectionMerge %end_label None
- OpBranchConditional %true %true_label %false_label
- %true_label = OpLabel
- OpBranch %end_label
- %false_label = OpLabel
- OpBranch %end_label
- %end_label = OpLabel
- %placeholder = OpExtInst %void %extinst 123 %int_1
- %result = OpPhi %bool %true %true_label %false %false_label
- )";
- const std::string extra = R"(OpCapability Shader
- OpExtension "SPV_KHR_non_semantic_info"
- %extinst = OpExtInstImport "NonSemantic.Testing.Set"
- )";
- CompileSuccessfully(GenerateShaderCode(body, extra));
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("OpPhi must appear within a non-entry block before all "
- "non-OpPhi instructions"));
- }
- TEST_F(ValidateAdjacency, NonSemanticBetweenOpPhiBad) {
- const std::string body = R"(
- OpSelectionMerge %end_label None
- OpBranchConditional %true %true_label %false_label
- %true_label = OpLabel
- OpBranch %end_label
- %false_label = OpLabel
- OpBranch %end_label
- %end_label = OpLabel
- %result1 = OpPhi %bool %true %true_label %false %false_label
- %placeholder = OpExtInst %void %extinst 123 %int_1
- %result2 = OpPhi %bool %true %true_label %false %false_label
- )";
- const std::string extra = R"(OpCapability Shader
- OpExtension "SPV_KHR_non_semantic_info"
- %extinst = OpExtInstImport "NonSemantic.Testing.Set"
- )";
- CompileSuccessfully(GenerateShaderCode(body, extra));
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("OpPhi must appear within a non-entry block before all "
- "non-OpPhi instructions"));
- }
- TEST_F(ValidateAdjacency, NonSemanticAfterOpPhiGood) {
- const std::string body = R"(
- OpSelectionMerge %end_label None
- OpBranchConditional %true %true_label %false_label
- %true_label = OpLabel
- OpBranch %end_label
- %false_label = OpLabel
- OpBranch %end_label
- %end_label = OpLabel
- OpLine %string 0 0
- %result = OpPhi %bool %true %true_label %false %false_label
- %placeholder = OpExtInst %void %extinst 123 %int_1
- )";
- const std::string extra = R"(OpCapability Shader
- OpExtension "SPV_KHR_non_semantic_info"
- %extinst = OpExtInstImport "NonSemantic.Testing.Set"
- )";
- CompileSuccessfully(GenerateShaderCode(body, extra));
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateAdjacency, NonSemanticBeforeOpFunctionParameterBad) {
- const std::string body = R"(
- OpCapability Shader
- OpExtension "SPV_KHR_non_semantic_info"
- %extinst = OpExtInstImport "NonSemantic.Testing.Set"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- %string = OpString ""
- %void = OpTypeVoid
- %bool = OpTypeBool
- %int = OpTypeInt 32 0
- %true = OpConstantTrue %bool
- %false = OpConstantFalse %bool
- %zero = OpConstant %int 0
- %int_1 = OpConstant %int 1
- %func = OpTypeFunction %void
- %func_int = OpTypePointer Function %int
- %paramfunc_type = OpTypeFunction %void %int %int
- %paramfunc = OpFunction %void None %paramfunc_type
- %placeholder = OpExtInst %void %extinst 123 %int_1
- %a = OpFunctionParameter %int
- %b = OpFunctionParameter %int
- %paramfunc_entry = OpLabel
- OpReturn
- OpFunctionEnd
- %main = OpFunction %void None %func
- %main_entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(body);
- EXPECT_EQ(SPV_ERROR_INVALID_LAYOUT, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Non-semantic OpExtInst within function definition "
- "must appear in a block"));
- }
- TEST_F(ValidateAdjacency, NonSemanticBetweenOpFunctionParameterBad) {
- const std::string body = R"(
- OpCapability Shader
- OpExtension "SPV_KHR_non_semantic_info"
- %extinst = OpExtInstImport "NonSemantic.Testing.Set"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- %string = OpString ""
- %void = OpTypeVoid
- %bool = OpTypeBool
- %int = OpTypeInt 32 0
- %true = OpConstantTrue %bool
- %false = OpConstantFalse %bool
- %zero = OpConstant %int 0
- %int_1 = OpConstant %int 1
- %func = OpTypeFunction %void
- %func_int = OpTypePointer Function %int
- %paramfunc_type = OpTypeFunction %void %int %int
- %paramfunc = OpFunction %void None %paramfunc_type
- %a = OpFunctionParameter %int
- %placeholder = OpExtInst %void %extinst 123 %int_1
- %b = OpFunctionParameter %int
- %paramfunc_entry = OpLabel
- OpReturn
- OpFunctionEnd
- %main = OpFunction %void None %func
- %main_entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(body);
- EXPECT_EQ(SPV_ERROR_INVALID_LAYOUT, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("Non-semantic OpExtInst within function definition "
- "must appear in a block"));
- }
- TEST_F(ValidateAdjacency, NonSemanticAfterOpFunctionParameterGood) {
- const std::string body = R"(
- OpCapability Shader
- OpExtension "SPV_KHR_non_semantic_info"
- %extinst = OpExtInstImport "NonSemantic.Testing.Set"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- %string = OpString ""
- %void = OpTypeVoid
- %bool = OpTypeBool
- %int = OpTypeInt 32 0
- %true = OpConstantTrue %bool
- %false = OpConstantFalse %bool
- %zero = OpConstant %int 0
- %int_1 = OpConstant %int 1
- %func = OpTypeFunction %void
- %func_int = OpTypePointer Function %int
- %paramfunc_type = OpTypeFunction %void %int %int
- %paramfunc = OpFunction %void None %paramfunc_type
- %a = OpFunctionParameter %int
- %b = OpFunctionParameter %int
- %paramfunc_entry = OpLabel
- %placeholder = OpExtInst %void %extinst 123 %int_1
- OpReturn
- OpFunctionEnd
- %main = OpFunction %void None %func
- %main_entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(body);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateAdjacency, NonSemanticBetweenFunctionsGood) {
- const std::string body = R"(
- OpCapability Shader
- OpExtension "SPV_KHR_non_semantic_info"
- %extinst = OpExtInstImport "NonSemantic.Testing.Set"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- %string = OpString ""
- %void = OpTypeVoid
- %bool = OpTypeBool
- %int = OpTypeInt 32 0
- %true = OpConstantTrue %bool
- %false = OpConstantFalse %bool
- %zero = OpConstant %int 0
- %int_1 = OpConstant %int 1
- %func = OpTypeFunction %void
- %func_int = OpTypePointer Function %int
- %paramfunc_type = OpTypeFunction %void %int %int
- %paramfunc = OpFunction %void None %paramfunc_type
- %a = OpFunctionParameter %int
- %b = OpFunctionParameter %int
- %paramfunc_entry = OpLabel
- OpReturn
- OpFunctionEnd
- %placeholder = OpExtInst %void %extinst 123 %int_1
- %main = OpFunction %void None %func
- %main_entry = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- CompileSuccessfully(body);
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateAdjacency, OpVariableInFunctionGood) {
- const std::string body = R"(
- OpLine %string 1 1
- %var = OpVariable %func_int Function
- OpLine %string 2 1
- OpNop
- OpLine %string 3 1
- OpNop
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateAdjacency, OpVariableInFunctionMultipleGood) {
- const std::string body = R"(
- OpLine %string 1 1
- %1 = OpVariable %func_int Function
- OpLine %string 2 1
- %2 = OpVariable %func_int Function
- %3 = OpVariable %func_int Function
- OpNop
- OpLine %string 3 1
- OpNop
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateAdjacency, OpVariableInFunctionBad) {
- const std::string body = R"(
- %1 = OpUndef %int
- %2 = OpVariable %func_int Function
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("All OpVariable instructions in a function must be the "
- "first instructions"));
- }
- TEST_F(ValidateAdjacency, OpVariableInFunctionMultipleBad) {
- const std::string body = R"(
- OpNop
- %1 = OpVariable %func_int Function
- OpLine %string 1 1
- %2 = OpVariable %func_int Function
- OpNop
- OpNop
- OpLine %string 2 1
- %3 = OpVariable %func_int Function
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("All OpVariable instructions in a function must be the "
- "first instructions"));
- }
- TEST_F(ValidateAdjacency, OpLoopMergePreceedsOpBranchSuccess) {
- const std::string body = R"(
- OpBranch %loop
- %loop = OpLabel
- OpLoopMerge %end %loop None
- OpBranch %loop
- %end = OpLabel
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateAdjacency, OpLoopMergePreceedsOpBranchConditionalSuccess) {
- const std::string body = R"(
- OpBranch %loop
- %loop = OpLabel
- OpLoopMerge %end %loop None
- OpBranchConditional %true %loop %end
- %end = OpLabel
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateAdjacency, OpLoopMergePreceedsBadOpFail) {
- const std::string body = R"(
- OpBranch %loop
- %loop = OpLabel
- OpLoopMerge %end %loop None
- OpNop
- OpBranchConditional %true %loop %end
- %end = OpLabel
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("OpLoopMerge must immediately precede either an "
- "OpBranch or OpBranchConditional instruction."));
- }
- TEST_F(ValidateAdjacency, OpSelectionMergePreceedsOpBranchConditionalSuccess) {
- const std::string body = R"(
- OpSelectionMerge %end_label None
- OpBranchConditional %true %true_label %false_label
- %true_label = OpLabel
- OpBranch %end_label
- %false_label = OpLabel
- OpBranch %end_label
- %end_label = OpLabel
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateAdjacency, OpSelectionMergePreceedsOpSwitchSuccess) {
- const std::string body = R"(
- OpSelectionMerge %merge None
- OpSwitch %zero %merge 0 %label
- %label = OpLabel
- OpBranch %merge
- %merge = OpLabel
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_SUCCESS, ValidateInstructions());
- }
- TEST_F(ValidateAdjacency, OpSelectionMergePreceedsBadOpFail) {
- const std::string body = R"(
- OpSelectionMerge %merge None
- OpNop
- OpSwitch %zero %merge 0 %label
- %label = OpLabel
- OpBranch %merge
- %merge = OpLabel
- )";
- CompileSuccessfully(GenerateShaderCode(body));
- EXPECT_EQ(SPV_ERROR_INVALID_DATA, ValidateInstructions());
- EXPECT_THAT(getDiagnosticString(),
- HasSubstr("OpSelectionMerge must immediately precede either an "
- "OpBranchConditional or OpSwitch instruction"));
- }
- } // namespace
- } // namespace val
- } // namespace spvtools
|