| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469 |
- // Copyright (c) 2018 Google 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 "source/opt/ir_builder.h"
- #include <memory>
- #include <vector>
- #include "effcee/effcee.h"
- #include "gtest/gtest.h"
- #include "source/opt/basic_block.h"
- #include "source/opt/build_module.h"
- #include "source/opt/instruction.h"
- #include "source/opt/type_manager.h"
- #include "spirv-tools/libspirv.hpp"
- namespace spvtools {
- namespace opt {
- namespace {
- using Analysis = IRContext::Analysis;
- using IRBuilderTest = ::testing::Test;
- bool Validate(const std::vector<uint32_t>& bin) {
- spv_target_env target_env = SPV_ENV_UNIVERSAL_1_2;
- spv_context spvContext = spvContextCreate(target_env);
- spv_diagnostic diagnostic = nullptr;
- spv_const_binary_t binary = {bin.data(), bin.size()};
- spv_result_t error = spvValidate(spvContext, &binary, &diagnostic);
- if (error != 0) spvDiagnosticPrint(diagnostic);
- spvDiagnosticDestroy(diagnostic);
- spvContextDestroy(spvContext);
- return error == 0;
- }
- void Match(const std::string& original, IRContext* context,
- bool do_validation = true) {
- std::vector<uint32_t> bin;
- context->module()->ToBinary(&bin, true);
- if (do_validation) {
- EXPECT_TRUE(Validate(bin));
- }
- std::string assembly;
- SpirvTools tools(SPV_ENV_UNIVERSAL_1_2);
- EXPECT_TRUE(
- tools.Disassemble(bin, &assembly, SpirvTools::kDefaultDisassembleOption))
- << "Disassembling failed for shader:\n"
- << assembly << std::endl;
- auto match_result = effcee::Match(assembly, original);
- EXPECT_EQ(effcee::Result::Status::Ok, match_result.status())
- << match_result.message() << "\nChecking result:\n"
- << assembly;
- }
- TEST_F(IRBuilderTest, TestInsnAddition) {
- const std::string text = R"(
- ; CHECK: %18 = OpLabel
- ; CHECK: OpPhi %int %int_0 %14
- ; CHECK: OpPhi %bool %16 %14
- ; CHECK: OpBranch %17
- OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %2 "main" %3
- OpExecutionMode %2 OriginUpperLeft
- OpSource GLSL 330
- OpName %2 "main"
- OpName %4 "i"
- OpName %3 "c"
- OpDecorate %3 Location 0
- %5 = OpTypeVoid
- %6 = OpTypeFunction %5
- %7 = OpTypeInt 32 1
- %8 = OpTypePointer Function %7
- %9 = OpConstant %7 0
- %10 = OpTypeBool
- %11 = OpTypeFloat 32
- %12 = OpTypeVector %11 4
- %13 = OpTypePointer Output %12
- %3 = OpVariable %13 Output
- %2 = OpFunction %5 None %6
- %14 = OpLabel
- %4 = OpVariable %8 Function
- OpStore %4 %9
- %15 = OpLoad %7 %4
- %16 = OpINotEqual %10 %15 %9
- OpSelectionMerge %17 None
- OpBranchConditional %16 %18 %17
- %18 = OpLabel
- OpBranch %17
- %17 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- {
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- BasicBlock* bb = context->cfg()->block(18);
- // Build managers.
- context->get_def_use_mgr();
- context->get_instr_block(nullptr);
- InstructionBuilder builder(context.get(), &*bb->begin());
- Instruction* phi1 = builder.AddPhi(7, {9, 14});
- Instruction* phi2 = builder.AddPhi(10, {16, 14});
- // Make sure the InstructionBuilder did not update the def/use manager.
- EXPECT_EQ(context->get_def_use_mgr()->GetDef(phi1->result_id()), nullptr);
- EXPECT_EQ(context->get_def_use_mgr()->GetDef(phi2->result_id()), nullptr);
- EXPECT_EQ(context->get_instr_block(phi1), nullptr);
- EXPECT_EQ(context->get_instr_block(phi2), nullptr);
- Match(text, context.get());
- }
- {
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- // Build managers.
- context->get_def_use_mgr();
- context->get_instr_block(nullptr);
- BasicBlock* bb = context->cfg()->block(18);
- InstructionBuilder builder(
- context.get(), &*bb->begin(),
- IRContext::kAnalysisDefUse | IRContext::kAnalysisInstrToBlockMapping);
- Instruction* phi1 = builder.AddPhi(7, {9, 14});
- Instruction* phi2 = builder.AddPhi(10, {16, 14});
- // Make sure InstructionBuilder updated the def/use manager
- EXPECT_NE(context->get_def_use_mgr()->GetDef(phi1->result_id()), nullptr);
- EXPECT_NE(context->get_def_use_mgr()->GetDef(phi2->result_id()), nullptr);
- EXPECT_NE(context->get_instr_block(phi1), nullptr);
- EXPECT_NE(context->get_instr_block(phi2), nullptr);
- Match(text, context.get());
- }
- }
- TEST_F(IRBuilderTest, TestCondBranchAddition) {
- const std::string text = R"(
- ; CHECK: %main = OpFunction %void None %6
- ; CHECK-NEXT: %15 = OpLabel
- ; CHECK-NEXT: OpSelectionMerge %13 None
- ; CHECK-NEXT: OpBranchConditional %true %14 %13
- ; CHECK-NEXT: %14 = OpLabel
- ; CHECK-NEXT: OpBranch %13
- ; CHECK-NEXT: %13 = OpLabel
- ; CHECK-NEXT: OpReturn
- OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %2 "main" %3
- OpExecutionMode %2 OriginUpperLeft
- OpSource GLSL 330
- OpName %2 "main"
- OpName %4 "i"
- OpName %3 "c"
- OpDecorate %3 Location 0
- %5 = OpTypeVoid
- %6 = OpTypeFunction %5
- %7 = OpTypeBool
- %8 = OpTypePointer Private %7
- %9 = OpConstantTrue %7
- %10 = OpTypeFloat 32
- %11 = OpTypeVector %10 4
- %12 = OpTypePointer Output %11
- %3 = OpVariable %12 Output
- %4 = OpVariable %8 Private
- %2 = OpFunction %5 None %6
- %13 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- {
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- Function& fn = *context->module()->begin();
- BasicBlock& bb_merge = *fn.begin();
- // TODO(1841): Handle id overflow.
- fn.begin().InsertBefore(std::unique_ptr<BasicBlock>(
- new BasicBlock(std::unique_ptr<Instruction>(new Instruction(
- context.get(), spv::Op::OpLabel, 0, context->TakeNextId(), {})))));
- BasicBlock& bb_true = *fn.begin();
- {
- InstructionBuilder builder(context.get(), &*bb_true.begin());
- builder.AddBranch(bb_merge.id());
- }
- // TODO(1841): Handle id overflow.
- fn.begin().InsertBefore(std::unique_ptr<BasicBlock>(
- new BasicBlock(std::unique_ptr<Instruction>(new Instruction(
- context.get(), spv::Op::OpLabel, 0, context->TakeNextId(), {})))));
- BasicBlock& bb_cond = *fn.begin();
- InstructionBuilder builder(context.get(), &bb_cond);
- // This also test consecutive instruction insertion: merge selection +
- // branch.
- builder.AddConditionalBranch(9, bb_true.id(), bb_merge.id(), bb_merge.id());
- Match(text, context.get());
- }
- }
- TEST_F(IRBuilderTest, AddSelect) {
- const std::string text = R"(
- ; CHECK: [[bool:%\w+]] = OpTypeBool
- ; CHECK: [[uint:%\w+]] = OpTypeInt 32 0
- ; CHECK: [[true:%\w+]] = OpConstantTrue [[bool]]
- ; CHECK: [[u0:%\w+]] = OpConstant [[uint]] 0
- ; CHECK: [[u1:%\w+]] = OpConstant [[uint]] 1
- ; CHECK: OpSelect [[uint]] [[true]] [[u0]] [[u1]]
- OpCapability Kernel
- OpCapability Linkage
- OpMemoryModel Logical OpenCL
- %1 = OpTypeVoid
- %2 = OpTypeBool
- %3 = OpTypeInt 32 0
- %4 = OpConstantTrue %2
- %5 = OpConstant %3 0
- %6 = OpConstant %3 1
- %7 = OpTypeFunction %1
- %8 = OpFunction %1 None %7
- %9 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- EXPECT_NE(nullptr, context);
- InstructionBuilder builder(context.get(),
- &*context->module()->begin()->begin()->begin());
- EXPECT_NE(nullptr, builder.AddSelect(3u, 4u, 5u, 6u));
- Match(text, context.get());
- }
- TEST_F(IRBuilderTest, AddVariable) {
- // Use Private beacuse its' enun is 7 which is higher
- // than the ID limit.
- const std::string text = R"(
- ; CHECK: [[uint:%\w+]] = OpTypeInt 32 0
- ; CHECK: [[ptr:%\w+]] = OpTypePointer Private [[uint]]
- ; CHECK: [[var:%\w+]] = OpVariable [[ptr]] Private
- ; CHECK: OpTypeFloat
- OpCapability Kernel
- OpCapability VectorComputeINTEL
- OpCapability Linkage
- OpExtension "SPV_INTEL_vector_compute"
- OpMemoryModel Logical OpenCL
- %1 = OpTypeInt 32 0
- %2 = OpTypePointer Private %1
- %3 = OpTypeFloat 32
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- EXPECT_NE(nullptr, context) << text;
- auto* float_ty = context->get_def_use_mgr()->GetDef(3);
- InstructionBuilder builder(context.get(), float_ty);
- auto* var = builder.AddVariable(2u, uint32_t(spv::StorageClass::Private));
- EXPECT_NE(nullptr, var);
- context->get_def_use_mgr()->AnalyzeInstDefUse(var); // should not assert
- Match(text, context.get());
- }
- TEST_F(IRBuilderTest, AddCompositeConstruct) {
- const std::string text = R"(
- ; CHECK: [[uint:%\w+]] = OpTypeInt
- ; CHECK: [[u0:%\w+]] = OpConstant [[uint]] 0
- ; CHECK: [[u1:%\w+]] = OpConstant [[uint]] 1
- ; CHECK: [[struct:%\w+]] = OpTypeStruct [[uint]] [[uint]] [[uint]] [[uint]]
- ; CHECK: OpCompositeConstruct [[struct]] [[u0]] [[u1]] [[u1]] [[u0]]
- OpCapability Kernel
- OpCapability Linkage
- OpMemoryModel Logical OpenCL
- %1 = OpTypeVoid
- %2 = OpTypeInt 32 0
- %3 = OpConstant %2 0
- %4 = OpConstant %2 1
- %5 = OpTypeStruct %2 %2 %2 %2
- %6 = OpTypeFunction %1
- %7 = OpFunction %1 None %6
- %8 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- EXPECT_NE(nullptr, context);
- InstructionBuilder builder(context.get(),
- &*context->module()->begin()->begin()->begin());
- std::vector<uint32_t> ids = {3u, 4u, 4u, 3u};
- EXPECT_NE(nullptr, builder.AddCompositeConstruct(5u, ids));
- Match(text, context.get());
- }
- TEST_F(IRBuilderTest, ConstantAdder) {
- const std::string text = R"(
- ; CHECK: [[uint:%\w+]] = OpTypeInt 32 0
- ; CHECK: OpConstant [[uint]] 13
- ; CHECK: [[sint:%\w+]] = OpTypeInt 32 1
- ; CHECK: OpConstant [[sint]] -1
- ; CHECK: OpConstant [[uint]] 1
- ; CHECK: OpConstant [[sint]] 34
- ; CHECK: OpConstant [[uint]] 0
- ; CHECK: OpConstant [[sint]] 0
- OpCapability Shader
- OpCapability Linkage
- OpMemoryModel Logical GLSL450
- %1 = OpTypeVoid
- %2 = OpTypeFunction %1
- %3 = OpFunction %1 None %2
- %4 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- EXPECT_NE(nullptr, context);
- InstructionBuilder builder(context.get(),
- &*context->module()->begin()->begin()->begin());
- EXPECT_NE(nullptr, builder.GetUintConstant(13));
- EXPECT_NE(nullptr, builder.GetSintConstant(-1));
- // Try adding the same constants again to make sure they aren't added.
- EXPECT_NE(nullptr, builder.GetUintConstant(13));
- EXPECT_NE(nullptr, builder.GetSintConstant(-1));
- // Try adding different constants to make sure the type is reused.
- EXPECT_NE(nullptr, builder.GetUintConstant(1));
- EXPECT_NE(nullptr, builder.GetSintConstant(34));
- // Try adding 0 as both signed and unsigned.
- EXPECT_NE(nullptr, builder.GetUintConstant(0));
- EXPECT_NE(nullptr, builder.GetSintConstant(0));
- Match(text, context.get());
- }
- TEST_F(IRBuilderTest, ConstantAdderTypeAlreadyExists) {
- const std::string text = R"(
- ; CHECK: OpConstant %uint 13
- ; CHECK: OpConstant %int -1
- ; CHECK: OpConstant %uint 1
- ; CHECK: OpConstant %int 34
- ; CHECK: OpConstant %uint 0
- ; CHECK: OpConstant %int 0
- OpCapability Shader
- OpCapability Linkage
- OpMemoryModel Logical GLSL450
- %1 = OpTypeVoid
- %uint = OpTypeInt 32 0
- %int = OpTypeInt 32 1
- %4 = OpTypeFunction %1
- %5 = OpFunction %1 None %4
- %6 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- EXPECT_NE(nullptr, context);
- InstructionBuilder builder(context.get(),
- &*context->module()->begin()->begin()->begin());
- Instruction* const_1 = builder.GetUintConstant(13);
- Instruction* const_2 = builder.GetSintConstant(-1);
- EXPECT_NE(nullptr, const_1);
- EXPECT_NE(nullptr, const_2);
- // Try adding the same constants again to make sure they aren't added.
- EXPECT_EQ(const_1, builder.GetUintConstant(13));
- EXPECT_EQ(const_2, builder.GetSintConstant(-1));
- Instruction* const_3 = builder.GetUintConstant(1);
- Instruction* const_4 = builder.GetSintConstant(34);
- // Try adding different constants to make sure the type is reused.
- EXPECT_NE(nullptr, const_3);
- EXPECT_NE(nullptr, const_4);
- Instruction* const_5 = builder.GetUintConstant(0);
- Instruction* const_6 = builder.GetSintConstant(0);
- // Try adding 0 as both signed and unsigned.
- EXPECT_NE(nullptr, const_5);
- EXPECT_NE(nullptr, const_6);
- // They have the same value but different types so should be unique.
- EXPECT_NE(const_5, const_6);
- // Check the types are correct.
- uint32_t type_id_unsigned = const_1->GetSingleWordOperand(0);
- uint32_t type_id_signed = const_2->GetSingleWordOperand(0);
- EXPECT_NE(type_id_unsigned, type_id_signed);
- EXPECT_EQ(const_3->GetSingleWordOperand(0), type_id_unsigned);
- EXPECT_EQ(const_5->GetSingleWordOperand(0), type_id_unsigned);
- EXPECT_EQ(const_4->GetSingleWordOperand(0), type_id_signed);
- EXPECT_EQ(const_6->GetSingleWordOperand(0), type_id_signed);
- Match(text, context.get());
- }
- TEST_F(IRBuilderTest, AccelerationStructureNV) {
- const std::string text = R"(
- ; CHECK: OpTypeAccelerationStructureKHR
- OpCapability Shader
- OpCapability RayTracingNV
- OpExtension "SPV_NV_ray_tracing"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %8 "main"
- OpExecutionMode %8 OriginUpperLeft
- %1 = OpTypeVoid
- %2 = OpTypeBool
- %3 = OpTypeAccelerationStructureNV
- %7 = OpTypeFunction %1
- %8 = OpFunction %1 None %7
- %9 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- std::unique_ptr<IRContext> context =
- BuildModule(SPV_ENV_UNIVERSAL_1_2, nullptr, text);
- EXPECT_NE(nullptr, context);
- InstructionBuilder builder(context.get(),
- &*context->module()->begin()->begin()->begin());
- Match(text, context.get());
- }
- } // namespace
- } // namespace opt
- } // namespace spvtools
|