| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- // Copyright (c) 2019 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 <string>
- #include "gmock/gmock.h"
- #include "gtest/gtest.h"
- #include "source/opt/ir_context.h"
- #include "test/opt/pass_fixture.h"
- #include "test/opt/pass_utils.h"
- namespace spvtools {
- namespace opt {
- namespace {
- using ::testing::ContainerEq;
- using CFGTest = PassTest<::testing::Test>;
- TEST_F(CFGTest, ForEachBlockInPostOrderIf) {
- const std::string test = R"(
- OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Vertex %main "main"
- OpName %main "main"
- %bool = OpTypeBool
- %true = OpConstantTrue %bool
- %void = OpTypeVoid
- %4 = OpTypeFunction %void
- %uint = OpTypeInt 32 0
- %5 = OpConstant %uint 5
- %main = OpFunction %void None %4
- %8 = OpLabel
- OpSelectionMerge %10 None
- OpBranchConditional %true %9 %10
- %9 = OpLabel
- OpBranch %10
- %10 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, test,
- SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- ASSERT_NE(nullptr, context);
- CFG* cfg = context->cfg();
- Module* module = context->module();
- Function* function = &*module->begin();
- std::vector<uint32_t> order;
- cfg->ForEachBlockInPostOrder(&*function->begin(), [&order](BasicBlock* bb) {
- order.push_back(bb->id());
- });
- std::vector<uint32_t> expected_result = {10, 9, 8};
- EXPECT_THAT(order, ContainerEq(expected_result));
- }
- TEST_F(CFGTest, ForEachBlockInPostOrderLoop) {
- const std::string test = R"(
- OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Vertex %main "main"
- OpName %main "main"
- %bool = OpTypeBool
- %true = OpConstantTrue %bool
- %void = OpTypeVoid
- %4 = OpTypeFunction %void
- %uint = OpTypeInt 32 0
- %5 = OpConstant %uint 5
- %main = OpFunction %void None %4
- %8 = OpLabel
- OpBranch %9
- %9 = OpLabel
- OpLoopMerge %11 %10 None
- OpBranchConditional %true %11 %10
- %10 = OpLabel
- OpBranch %9
- %11 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, test,
- SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- ASSERT_NE(nullptr, context);
- CFG* cfg = context->cfg();
- Module* module = context->module();
- Function* function = &*module->begin();
- std::vector<uint32_t> order;
- cfg->ForEachBlockInPostOrder(&*function->begin(), [&order](BasicBlock* bb) {
- order.push_back(bb->id());
- });
- std::vector<uint32_t> expected_result1 = {10, 11, 9, 8};
- std::vector<uint32_t> expected_result2 = {11, 10, 9, 8};
- EXPECT_THAT(order, AnyOf(ContainerEq(expected_result1),
- ContainerEq(expected_result2)));
- }
- TEST_F(CFGTest, ForEachBlockInReversePostOrderIf) {
- const std::string test = R"(
- OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Vertex %main "main"
- OpName %main "main"
- %bool = OpTypeBool
- %true = OpConstantTrue %bool
- %void = OpTypeVoid
- %4 = OpTypeFunction %void
- %uint = OpTypeInt 32 0
- %5 = OpConstant %uint 5
- %main = OpFunction %void None %4
- %8 = OpLabel
- OpSelectionMerge %10 None
- OpBranchConditional %true %9 %10
- %9 = OpLabel
- OpBranch %10
- %10 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, test,
- SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- ASSERT_NE(nullptr, context);
- CFG* cfg = context->cfg();
- Module* module = context->module();
- Function* function = &*module->begin();
- std::vector<uint32_t> order;
- cfg->ForEachBlockInReversePostOrder(
- &*function->begin(),
- [&order](BasicBlock* bb) { order.push_back(bb->id()); });
- std::vector<uint32_t> expected_result = {8, 9, 10};
- EXPECT_THAT(order, ContainerEq(expected_result));
- }
- TEST_F(CFGTest, ForEachBlockInReversePostOrderLoop) {
- const std::string test = R"(
- OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Vertex %main "main"
- OpName %main "main"
- %bool = OpTypeBool
- %true = OpConstantTrue %bool
- %void = OpTypeVoid
- %4 = OpTypeFunction %void
- %uint = OpTypeInt 32 0
- %5 = OpConstant %uint 5
- %main = OpFunction %void None %4
- %8 = OpLabel
- OpBranch %9
- %9 = OpLabel
- OpLoopMerge %11 %10 None
- OpBranchConditional %true %11 %10
- %10 = OpLabel
- OpBranch %9
- %11 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, test,
- SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- ASSERT_NE(nullptr, context);
- CFG* cfg = context->cfg();
- Module* module = context->module();
- Function* function = &*module->begin();
- std::vector<uint32_t> order;
- cfg->ForEachBlockInReversePostOrder(
- &*function->begin(),
- [&order](BasicBlock* bb) { order.push_back(bb->id()); });
- std::vector<uint32_t> expected_result1 = {8, 9, 10, 11};
- std::vector<uint32_t> expected_result2 = {8, 9, 11, 10};
- EXPECT_THAT(order, AnyOf(ContainerEq(expected_result1),
- ContainerEq(expected_result2)));
- }
- TEST_F(CFGTest, SplitLoopHeaderForSingleBlockLoop) {
- const std::string test = R"(
- OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %2 "main"
- OpExecutionMode %2 OriginUpperLeft
- %void = OpTypeVoid
- %uint = OpTypeInt 32 0
- %uint_0 = OpConstant %uint 0
- %6 = OpTypeFunction %void
- %2 = OpFunction %void None %6
- %7 = OpLabel
- OpBranch %8
- %8 = OpLabel
- %9 = OpPhi %uint %uint_0 %7 %9 %8
- OpLoopMerge %10 %8 None
- OpBranch %8
- %10 = OpLabel
- OpUnreachable
- OpFunctionEnd
- )";
- const std::string expected_result = R"(OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %2 "main"
- OpExecutionMode %2 OriginUpperLeft
- %void = OpTypeVoid
- %uint = OpTypeInt 32 0
- %uint_0 = OpConstant %uint 0
- %6 = OpTypeFunction %void
- %2 = OpFunction %void None %6
- %7 = OpLabel
- OpBranch %8
- %8 = OpLabel
- OpBranch %11
- %11 = OpLabel
- %9 = OpPhi %uint %9 %11 %uint_0 %8
- OpLoopMerge %10 %11 None
- OpBranch %11
- %10 = OpLabel
- OpUnreachable
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, test,
- SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- ASSERT_NE(nullptr, context);
- BasicBlock* loop_header = context->get_instr_block(8);
- ASSERT_TRUE(loop_header->GetLoopMergeInst() != nullptr);
- CFG* cfg = context->cfg();
- cfg->SplitLoopHeader(loop_header);
- std::vector<uint32_t> binary;
- bool skip_nop = false;
- context->module()->ToBinary(&binary, skip_nop);
- std::string optimized_asm;
- SpirvTools tools(SPV_ENV_UNIVERSAL_1_1);
- EXPECT_TRUE(tools.Disassemble(binary, &optimized_asm,
- SpirvTools::kDefaultDisassembleOption))
- << "Disassembling failed for shader\n"
- << std::endl;
- EXPECT_EQ(optimized_asm, expected_result);
- }
- TEST_F(CFGTest, ComputeStructedOrderForLoop) {
- const std::string test = R"(
- OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Vertex %main "main"
- OpName %main "main"
- %bool = OpTypeBool
- %true = OpConstantTrue %bool
- %void = OpTypeVoid
- %4 = OpTypeFunction %void
- %uint = OpTypeInt 32 0
- %5 = OpConstant %uint 5
- %main = OpFunction %void None %4
- %8 = OpLabel
- OpBranch %9
- %9 = OpLabel
- OpLoopMerge %11 %10 None
- OpBranchConditional %true %11 %10
- %10 = OpLabel
- OpBranch %9
- %11 = OpLabel
- OpBranch %12
- %12 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, test,
- SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- ASSERT_NE(nullptr, context);
- CFG* cfg = context->cfg();
- Module* module = context->module();
- Function* function = &*module->begin();
- std::list<BasicBlock*> order;
- cfg->ComputeStructuredOrder(function, context->get_instr_block(9),
- context->get_instr_block(11), &order);
- // Order should contain the loop header, the continue target, and the merge
- // node.
- std::list<BasicBlock*> expected_result = {context->get_instr_block(9),
- context->get_instr_block(10),
- context->get_instr_block(11)};
- EXPECT_THAT(order, ContainerEq(expected_result));
- }
- } // namespace
- } // namespace opt
- } // namespace spvtools
|