SPIRV-Tools/test/fuzz/transformation_add_opphi_synonym_test.cpp
Alastair Donaldson fcb22ecf0f
spirv-fuzz: Report fresh ids in transformations (#3856)
Adds a virtual method, GetFreshIds(), to Transformation. Every
transformation uses this to indicate which ids in its protobuf message
are fresh ids. This means that when replaying a sequence of
transformations the replayer can obtain a smallest id that is not in
use by the module already and that will not be used by any
transformation by necessity. Ids greater than or equal to this id
can be used as overflow ids.

Fixes #3851.
2020-09-29 22:12:49 +01:00

422 lines
15 KiB
C++

// Copyright (c) 2020 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 "source/fuzz/transformation_add_opphi_synonym.h"
#include "test/fuzz/fuzz_test_util.h"
namespace spvtools {
namespace fuzz {
namespace {
protobufs::Fact MakeSynonymFact(uint32_t first, uint32_t second) {
protobufs::FactDataSynonym data_synonym_fact;
*data_synonym_fact.mutable_data1() = MakeDataDescriptor(first, {});
*data_synonym_fact.mutable_data2() = MakeDataDescriptor(second, {});
protobufs::Fact result;
*result.mutable_data_synonym_fact() = data_synonym_fact;
return result;
}
// Adds synonym facts to the fact manager.
void SetUpIdSynonyms(FactManager* fact_manager) {
fact_manager->AddFact(MakeSynonymFact(11, 9));
fact_manager->AddFact(MakeSynonymFact(13, 9));
fact_manager->AddFact(MakeSynonymFact(14, 9));
fact_manager->AddFact(MakeSynonymFact(19, 9));
fact_manager->AddFact(MakeSynonymFact(20, 9));
fact_manager->AddFact(MakeSynonymFact(10, 21));
}
TEST(TransformationAddOpPhiSynonymTest, Inapplicable) {
std::string shader = R"(
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %2 "main"
OpExecutionMode %2 OriginUpperLeft
OpSource ESSL 310
OpName %2 "main"
%3 = OpTypeVoid
%4 = OpTypeFunction %3
%5 = OpTypeBool
%6 = OpConstantTrue %5
%7 = OpTypeInt 32 1
%8 = OpTypeInt 32 0
%22 = OpTypePointer Function %7
%9 = OpConstant %7 1
%10 = OpConstant %7 2
%11 = OpConstant %8 1
%2 = OpFunction %3 None %4
%12 = OpLabel
%23 = OpVariable %22 Function
%13 = OpCopyObject %7 %9
%14 = OpCopyObject %8 %11
OpBranch %15
%15 = OpLabel
OpSelectionMerge %16 None
OpBranchConditional %6 %17 %18
%17 = OpLabel
%19 = OpCopyObject %7 %13
%20 = OpCopyObject %8 %14
%21 = OpCopyObject %7 %10
OpBranch %16
%18 = OpLabel
%24 = OpCopyObject %22 %23
OpBranch %16
%16 = OpLabel
OpReturn
OpFunctionEnd
)";
const auto env = SPV_ENV_UNIVERSAL_1_5;
const auto consumer = nullptr;
const auto context = BuildModule(env, consumer, shader, kFuzzAssembleOption);
ASSERT_TRUE(IsValid(env, context.get()));
spvtools::ValidatorOptions validator_options;
TransformationContext transformation_context(
MakeUnique<FactManager>(context.get()), validator_options);
SetUpIdSynonyms(transformation_context.GetFactManager());
transformation_context.GetFactManager()->AddFact(MakeSynonymFact(23, 24));
// %13 is not a block label.
ASSERT_FALSE(TransformationAddOpPhiSynonym(13, {{}}, 100)
.IsApplicable(context.get(), transformation_context));
// Block %12 does not have a predecessor.
ASSERT_FALSE(TransformationAddOpPhiSynonym(12, {{}}, 100)
.IsApplicable(context.get(), transformation_context));
// Not all predecessors of %16 (%17 and %18) are considered in the map.
ASSERT_FALSE(TransformationAddOpPhiSynonym(16, {{{17, 19}}}, 100)
.IsApplicable(context.get(), transformation_context));
// %30 does not exist in the module.
ASSERT_FALSE(TransformationAddOpPhiSynonym(16, {{{30, 19}}}, 100)
.IsApplicable(context.get(), transformation_context));
// %20 is not a block label.
ASSERT_FALSE(TransformationAddOpPhiSynonym(16, {{{20, 19}}}, 100)
.IsApplicable(context.get(), transformation_context));
// %15 is not the id of one of the predecessors of the block.
ASSERT_FALSE(TransformationAddOpPhiSynonym(16, {{{15, 19}}}, 100)
.IsApplicable(context.get(), transformation_context));
// %30 does not exist in the module.
ASSERT_FALSE(TransformationAddOpPhiSynonym(16, {{{17, 30}, {18, 13}}}, 100)
.IsApplicable(context.get(), transformation_context));
// %19 and %10 are not synonymous.
ASSERT_FALSE(TransformationAddOpPhiSynonym(16, {{{17, 19}, {18, 10}}}, 100)
.IsApplicable(context.get(), transformation_context));
// %19 and %14 do not have the same type.
ASSERT_FALSE(TransformationAddOpPhiSynonym(16, {{{17, 19}, {18, 14}}}, 100)
.IsApplicable(context.get(), transformation_context));
// %19 is not available at the end of %18.
ASSERT_FALSE(TransformationAddOpPhiSynonym(16, {{{17, 9}, {18, 19}}}, 100)
.IsApplicable(context.get(), transformation_context));
// %21 is not a fresh id.
ASSERT_FALSE(TransformationAddOpPhiSynonym(16, {{{17, 9}, {18, 9}}}, 21)
.IsApplicable(context.get(), transformation_context));
// %23 and %24 have pointer id.
ASSERT_FALSE(TransformationAddOpPhiSynonym(16, {{{17, 23}, {18, 24}}}, 100)
.IsApplicable(context.get(), transformation_context));
}
TEST(TransformationAddOpPhiSynonymTest, Apply) {
std::string shader = R"(
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %2 "main"
OpExecutionMode %2 OriginUpperLeft
OpSource ESSL 310
OpName %2 "main"
%3 = OpTypeVoid
%4 = OpTypeFunction %3
%5 = OpTypeBool
%6 = OpConstantTrue %5
%7 = OpTypeInt 32 1
%8 = OpTypeInt 32 0
%9 = OpConstant %7 1
%10 = OpConstant %7 2
%11 = OpConstant %8 1
%2 = OpFunction %3 None %4
%12 = OpLabel
%13 = OpCopyObject %7 %9
%14 = OpCopyObject %8 %11
OpBranch %15
%15 = OpLabel
OpSelectionMerge %16 None
OpBranchConditional %6 %17 %18
%17 = OpLabel
%19 = OpCopyObject %7 %13
%20 = OpCopyObject %8 %14
%21 = OpCopyObject %7 %10
OpBranch %16
%18 = OpLabel
OpBranch %16
%16 = OpLabel
OpBranch %22
%22 = OpLabel
OpLoopMerge %23 %24 None
OpBranchConditional %6 %25 %23
%25 = OpLabel
OpSelectionMerge %26 None
OpBranchConditional %6 %27 %26
%27 = OpLabel
%28 = OpCopyObject %7 %13
OpBranch %23
%26 = OpLabel
OpSelectionMerge %29 None
OpBranchConditional %6 %29 %24
%29 = OpLabel
%30 = OpCopyObject %7 %13
OpBranch %23
%24 = OpLabel
OpBranch %22
%23 = OpLabel
OpSelectionMerge %31 None
OpBranchConditional %6 %31 %31
%31 = OpLabel
OpReturn
OpFunctionEnd
)";
const auto env = SPV_ENV_UNIVERSAL_1_5;
const auto consumer = nullptr;
const auto context = BuildModule(env, consumer, shader, kFuzzAssembleOption);
ASSERT_TRUE(IsValid(env, context.get()));
spvtools::ValidatorOptions validator_options;
TransformationContext transformation_context(
MakeUnique<FactManager>(context.get()), validator_options);
SetUpIdSynonyms(transformation_context.GetFactManager());
// Add some further synonym facts.
transformation_context.GetFactManager()->AddFact(MakeSynonymFact(28, 9));
transformation_context.GetFactManager()->AddFact(MakeSynonymFact(30, 9));
auto transformation1 = TransformationAddOpPhiSynonym(17, {{{15, 13}}}, 100);
ASSERT_TRUE(
transformation1.IsApplicable(context.get(), transformation_context));
ApplyAndCheckFreshIds(transformation1, context.get(),
&transformation_context);
ASSERT_TRUE(transformation_context.GetFactManager()->IsSynonymous(
MakeDataDescriptor(100, {}), MakeDataDescriptor(9, {})));
auto transformation2 =
TransformationAddOpPhiSynonym(16, {{{17, 19}, {18, 13}}}, 101);
ASSERT_TRUE(
transformation2.IsApplicable(context.get(), transformation_context));
ApplyAndCheckFreshIds(transformation2, context.get(),
&transformation_context);
ASSERT_TRUE(transformation_context.GetFactManager()->IsSynonymous(
MakeDataDescriptor(101, {}), MakeDataDescriptor(9, {})));
auto transformation3 =
TransformationAddOpPhiSynonym(23, {{{22, 13}, {27, 28}, {29, 30}}}, 102);
ASSERT_TRUE(
transformation3.IsApplicable(context.get(), transformation_context));
ApplyAndCheckFreshIds(transformation3, context.get(),
&transformation_context);
ASSERT_TRUE(transformation_context.GetFactManager()->IsSynonymous(
MakeDataDescriptor(102, {}), MakeDataDescriptor(9, {})));
auto transformation4 = TransformationAddOpPhiSynonym(31, {{{23, 13}}}, 103);
ASSERT_TRUE(
transformation4.IsApplicable(context.get(), transformation_context));
ApplyAndCheckFreshIds(transformation4, context.get(),
&transformation_context);
ASSERT_TRUE(transformation_context.GetFactManager()->IsSynonymous(
MakeDataDescriptor(103, {}), MakeDataDescriptor(9, {})));
ASSERT_TRUE(IsValid(env, context.get()));
std::string after_transformations = R"(
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %2 "main"
OpExecutionMode %2 OriginUpperLeft
OpSource ESSL 310
OpName %2 "main"
%3 = OpTypeVoid
%4 = OpTypeFunction %3
%5 = OpTypeBool
%6 = OpConstantTrue %5
%7 = OpTypeInt 32 1
%8 = OpTypeInt 32 0
%9 = OpConstant %7 1
%10 = OpConstant %7 2
%11 = OpConstant %8 1
%2 = OpFunction %3 None %4
%12 = OpLabel
%13 = OpCopyObject %7 %9
%14 = OpCopyObject %8 %11
OpBranch %15
%15 = OpLabel
OpSelectionMerge %16 None
OpBranchConditional %6 %17 %18
%17 = OpLabel
%100 = OpPhi %7 %13 %15
%19 = OpCopyObject %7 %13
%20 = OpCopyObject %8 %14
%21 = OpCopyObject %7 %10
OpBranch %16
%18 = OpLabel
OpBranch %16
%16 = OpLabel
%101 = OpPhi %7 %19 %17 %13 %18
OpBranch %22
%22 = OpLabel
OpLoopMerge %23 %24 None
OpBranchConditional %6 %25 %23
%25 = OpLabel
OpSelectionMerge %26 None
OpBranchConditional %6 %27 %26
%27 = OpLabel
%28 = OpCopyObject %7 %13
OpBranch %23
%26 = OpLabel
OpSelectionMerge %29 None
OpBranchConditional %6 %29 %24
%29 = OpLabel
%30 = OpCopyObject %7 %13
OpBranch %23
%24 = OpLabel
OpBranch %22
%23 = OpLabel
%102 = OpPhi %7 %13 %22 %28 %27 %30 %29
OpSelectionMerge %31 None
OpBranchConditional %6 %31 %31
%31 = OpLabel
%103 = OpPhi %7 %13 %23
OpReturn
OpFunctionEnd
)";
ASSERT_TRUE(IsEqual(env, after_transformations, context.get()));
}
TEST(TransformationAddOpPhiSynonymTest, VariablePointers) {
std::string shader = R"(
OpCapability Shader
OpCapability VariablePointers
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %2 "main" %3
OpExecutionMode %2 OriginUpperLeft
OpSource ESSL 310
%4 = OpTypeVoid
%5 = OpTypeFunction %4
%6 = OpTypeBool
%7 = OpConstantTrue %6
%8 = OpTypeInt 32 1
%9 = OpTypePointer Function %8
%10 = OpTypePointer Workgroup %8
%3 = OpVariable %10 Workgroup
%2 = OpFunction %4 None %5
%11 = OpLabel
%12 = OpVariable %9 Function
OpSelectionMerge %13 None
OpBranchConditional %7 %14 %13
%14 = OpLabel
%15 = OpCopyObject %10 %3
%16 = OpCopyObject %9 %12
OpBranch %13
%13 = OpLabel
OpReturn
OpFunctionEnd
)";
const auto env = SPV_ENV_UNIVERSAL_1_5;
const auto consumer = nullptr;
const auto context = BuildModule(env, consumer, shader, kFuzzAssembleOption);
ASSERT_TRUE(IsValid(env, context.get()));
spvtools::ValidatorOptions validator_options;
TransformationContext transformation_context(
MakeUnique<FactManager>(context.get()), validator_options);
// Declare synonyms
transformation_context.GetFactManager()->AddFact(MakeSynonymFact(3, 15));
transformation_context.GetFactManager()->AddFact(MakeSynonymFact(12, 16));
// Remove the VariablePointers capability.
context.get()->get_feature_mgr()->RemoveCapability(
SpvCapabilityVariablePointers);
// The VariablePointers capability is required to add an OpPhi instruction of
// pointer type.
ASSERT_FALSE(TransformationAddOpPhiSynonym(13, {{{11, 3}, {14, 15}}}, 100)
.IsApplicable(context.get(), transformation_context));
// Add the VariablePointers capability back.
context.get()->get_feature_mgr()->AddCapability(
SpvCapabilityVariablePointers);
// If the ids have pointer type, the storage class must be Workgroup or
// StorageBuffer, but it is Function in this case.
ASSERT_FALSE(TransformationAddOpPhiSynonym(13, {{{11, 12}, {14, 16}}}, 100)
.IsApplicable(context.get(), transformation_context));
auto transformation =
TransformationAddOpPhiSynonym(13, {{{11, 3}, {14, 15}}}, 100);
ASSERT_TRUE(
transformation.IsApplicable(context.get(), transformation_context));
ApplyAndCheckFreshIds(transformation, context.get(), &transformation_context);
std::string after_transformation = R"(
OpCapability Shader
OpCapability VariablePointers
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %2 "main" %3
OpExecutionMode %2 OriginUpperLeft
OpSource ESSL 310
%4 = OpTypeVoid
%5 = OpTypeFunction %4
%6 = OpTypeBool
%7 = OpConstantTrue %6
%8 = OpTypeInt 32 1
%9 = OpTypePointer Function %8
%10 = OpTypePointer Workgroup %8
%3 = OpVariable %10 Workgroup
%2 = OpFunction %4 None %5
%11 = OpLabel
%12 = OpVariable %9 Function
OpSelectionMerge %13 None
OpBranchConditional %7 %14 %13
%14 = OpLabel
%15 = OpCopyObject %10 %3
%16 = OpCopyObject %9 %12
OpBranch %13
%13 = OpLabel
%100 = OpPhi %10 %3 %11 %15 %14
OpReturn
OpFunctionEnd
)";
ASSERT_TRUE(IsEqual(env, after_transformation, context.get()));
}
} // namespace
} // namespace fuzz
} // namespace spvtools