| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358 |
- // Copyright (c) 2018 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 <memory>
- #include <vector>
- #include "function_utils.h"
- #include "gmock/gmock.h"
- #include "gtest/gtest.h"
- #include "source/opt/build_module.h"
- #include "source/opt/ir_context.h"
- namespace spvtools {
- namespace opt {
- namespace {
- using ::testing::Eq;
- TEST(FunctionTest, HasEarlyReturn) {
- std::string shader = R"(
- OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Vertex %6 "main"
- ; Types
- %2 = OpTypeBool
- %3 = OpTypeVoid
- %4 = OpTypeFunction %3
- ; Constants
- %5 = OpConstantTrue %2
- ; main function without early return
- %6 = OpFunction %3 None %4
- %7 = OpLabel
- OpBranch %8
- %8 = OpLabel
- OpBranch %9
- %9 = OpLabel
- OpBranch %10
- %10 = OpLabel
- OpReturn
- OpFunctionEnd
- ; function with early return
- %11 = OpFunction %3 None %4
- %12 = OpLabel
- OpSelectionMerge %15 None
- OpBranchConditional %5 %13 %14
- %13 = OpLabel
- OpReturn
- %14 = OpLabel
- OpBranch %15
- %15 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- const auto context =
- BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, shader,
- SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- // Tests |function| without early return.
- auto* function = spvtest::GetFunction(context->module(), 6);
- ASSERT_FALSE(function->HasEarlyReturn());
- // Tests |function| with early return.
- function = spvtest::GetFunction(context->module(), 11);
- ASSERT_TRUE(function->HasEarlyReturn());
- }
- TEST(FunctionTest, IsNotRecursive) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- OpDecorate %2 DescriptorSet 439418829
- %void = OpTypeVoid
- %4 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %_struct_6 = OpTypeStruct %float %float
- %7 = OpTypeFunction %_struct_6
- %1 = OpFunction %void Pure|Const %4
- %8 = OpLabel
- %2 = OpFunctionCall %_struct_6 %9
- OpKill
- OpFunctionEnd
- %9 = OpFunction %_struct_6 None %7
- %10 = OpLabel
- %11 = OpFunctionCall %_struct_6 %12
- OpUnreachable
- OpFunctionEnd
- %12 = OpFunction %_struct_6 None %7
- %13 = OpLabel
- OpUnreachable
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> ctx =
- spvtools::BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, text,
- SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- auto* func = spvtest::GetFunction(ctx->module(), 9);
- EXPECT_FALSE(func->IsRecursive());
- func = spvtest::GetFunction(ctx->module(), 12);
- EXPECT_FALSE(func->IsRecursive());
- }
- TEST(FunctionTest, IsDirectlyRecursive) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- OpDecorate %2 DescriptorSet 439418829
- %void = OpTypeVoid
- %4 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %_struct_6 = OpTypeStruct %float %float
- %7 = OpTypeFunction %_struct_6
- %1 = OpFunction %void Pure|Const %4
- %8 = OpLabel
- %2 = OpFunctionCall %_struct_6 %9
- OpKill
- OpFunctionEnd
- %9 = OpFunction %_struct_6 None %7
- %10 = OpLabel
- %11 = OpFunctionCall %_struct_6 %9
- OpUnreachable
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> ctx =
- spvtools::BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, text,
- SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- auto* func = spvtest::GetFunction(ctx->module(), 9);
- EXPECT_TRUE(func->IsRecursive());
- }
- TEST(FunctionTest, IsIndirectlyRecursive) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- OpDecorate %2 DescriptorSet 439418829
- %void = OpTypeVoid
- %4 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %_struct_6 = OpTypeStruct %float %float
- %7 = OpTypeFunction %_struct_6
- %1 = OpFunction %void Pure|Const %4
- %8 = OpLabel
- %2 = OpFunctionCall %_struct_6 %9
- OpKill
- OpFunctionEnd
- %9 = OpFunction %_struct_6 None %7
- %10 = OpLabel
- %11 = OpFunctionCall %_struct_6 %12
- OpUnreachable
- OpFunctionEnd
- %12 = OpFunction %_struct_6 None %7
- %13 = OpLabel
- %14 = OpFunctionCall %_struct_6 %9
- OpUnreachable
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> ctx =
- spvtools::BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, text,
- SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- auto* func = spvtest::GetFunction(ctx->module(), 9);
- EXPECT_TRUE(func->IsRecursive());
- func = spvtest::GetFunction(ctx->module(), 12);
- EXPECT_TRUE(func->IsRecursive());
- }
- TEST(FunctionTest, IsNotRecuriseCallingRecursive) {
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %1 "main"
- OpExecutionMode %1 OriginUpperLeft
- OpDecorate %2 DescriptorSet 439418829
- %void = OpTypeVoid
- %4 = OpTypeFunction %void
- %float = OpTypeFloat 32
- %_struct_6 = OpTypeStruct %float %float
- %7 = OpTypeFunction %_struct_6
- %1 = OpFunction %void Pure|Const %4
- %8 = OpLabel
- %2 = OpFunctionCall %_struct_6 %9
- OpKill
- OpFunctionEnd
- %9 = OpFunction %_struct_6 None %7
- %10 = OpLabel
- %11 = OpFunctionCall %_struct_6 %9
- OpUnreachable
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> ctx =
- spvtools::BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, text,
- SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- auto* func = spvtest::GetFunction(ctx->module(), 1);
- EXPECT_FALSE(func->IsRecursive());
- }
- TEST(FunctionTest, NonSemanticInfoSkipIteration) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability Linkage
- OpExtension "SPV_KHR_non_semantic_info"
- %1 = OpExtInstImport "NonSemantic.Test"
- OpMemoryModel Logical GLSL450
- %2 = OpTypeVoid
- %3 = OpTypeFunction %2
- %4 = OpFunction %2 None %3
- %5 = OpLabel
- %6 = OpExtInst %2 %1 1
- OpReturn
- OpFunctionEnd
- %7 = OpExtInst %2 %1 2
- %8 = OpExtInst %2 %1 3
- )";
- std::unique_ptr<IRContext> ctx =
- spvtools::BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, text,
- SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- auto* func = spvtest::GetFunction(ctx->module(), 4);
- ASSERT_TRUE(func != nullptr);
- std::unordered_set<uint32_t> non_semantic_ids;
- func->ForEachInst(
- [&non_semantic_ids](const Instruction* inst) {
- if (inst->opcode() == spv::Op::OpExtInst) {
- non_semantic_ids.insert(inst->result_id());
- }
- },
- true, false);
- EXPECT_EQ(1, non_semantic_ids.count(6));
- EXPECT_EQ(0, non_semantic_ids.count(7));
- EXPECT_EQ(0, non_semantic_ids.count(8));
- }
- TEST(FunctionTest, NonSemanticInfoIncludeIteration) {
- const std::string text = R"(
- OpCapability Shader
- OpCapability Linkage
- OpExtension "SPV_KHR_non_semantic_info"
- %1 = OpExtInstImport "NonSemantic.Test"
- OpMemoryModel Logical GLSL450
- %2 = OpTypeVoid
- %3 = OpTypeFunction %2
- %4 = OpFunction %2 None %3
- %5 = OpLabel
- %6 = OpExtInst %2 %1 1
- OpReturn
- OpFunctionEnd
- %7 = OpExtInst %2 %1 2
- %8 = OpExtInst %2 %1 3
- )";
- std::unique_ptr<IRContext> ctx =
- spvtools::BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, text,
- SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- auto* func = spvtest::GetFunction(ctx->module(), 4);
- ASSERT_TRUE(func != nullptr);
- std::unordered_set<uint32_t> non_semantic_ids;
- func->ForEachInst(
- [&non_semantic_ids](const Instruction* inst) {
- if (inst->opcode() == spv::Op::OpExtInst) {
- non_semantic_ids.insert(inst->result_id());
- }
- },
- true, true);
- EXPECT_EQ(1, non_semantic_ids.count(6));
- EXPECT_EQ(1, non_semantic_ids.count(7));
- EXPECT_EQ(1, non_semantic_ids.count(8));
- }
- TEST(FunctionTest, ReorderBlocksinStructuredOrder) {
- // The spir-v has the basic block in a random order. We want to reorder them
- // in structured order.
- const std::string text = R"(
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %100 "PSMain"
- OpExecutionMode %PSMain OriginUpperLeft
- OpSource HLSL 600
- %int = OpTypeInt 32 1
- %void = OpTypeVoid
- %19 = OpTypeFunction %void
- %bool = OpTypeBool
- %undef_bool = OpUndef %bool
- %undef_int = OpUndef %int
- %100 = OpFunction %void None %19
- %11 = OpLabel
- OpSelectionMerge %10 None
- OpSwitch %undef_int %3 0 %2 10 %1
- %2 = OpLabel
- OpReturn
- %7 = OpLabel
- OpBranch %8
- %3 = OpLabel
- OpBranch %4
- %10 = OpLabel
- OpReturn
- %9 = OpLabel
- OpBranch %10
- %8 = OpLabel
- OpBranch %4
- %4 = OpLabel
- OpLoopMerge %9 %8 None
- OpBranchConditional %undef_bool %5 %9
- %1 = OpLabel
- OpReturn
- %6 = OpLabel
- OpBranch %7
- %5 = OpLabel
- OpSelectionMerge %7 None
- OpBranchConditional %undef_bool %6 %7
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> ctx =
- spvtools::BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, text,
- SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS);
- ASSERT_TRUE(ctx);
- auto* func = spvtest::GetFunction(ctx->module(), 100);
- ASSERT_TRUE(func);
- func->ReorderBasicBlocksInStructuredOrder();
- auto first_block = func->begin();
- auto bb = first_block;
- for (++bb; bb != func->end(); ++bb) {
- EXPECT_EQ(bb->id(), (bb - first_block));
- }
- }
- } // namespace
- } // namespace opt
- } // namespace spvtools
|