2019-09-18 19:47:08 +00:00
|
|
|
// 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 "source/fuzz/transformation_replace_id_with_synonym.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
#include "source/fuzz/data_descriptor.h"
|
|
|
|
#include "source/fuzz/fuzzer_util.h"
|
|
|
|
#include "source/fuzz/id_use_descriptor.h"
|
2019-09-25 15:52:35 +00:00
|
|
|
#include "source/opt/types.h"
|
2019-10-08 13:04:10 +00:00
|
|
|
#include "source/util/make_unique.h"
|
2019-09-18 19:47:08 +00:00
|
|
|
|
|
|
|
namespace spvtools {
|
|
|
|
namespace fuzz {
|
|
|
|
|
|
|
|
TransformationReplaceIdWithSynonym::TransformationReplaceIdWithSynonym(
|
2021-03-23 13:31:44 +00:00
|
|
|
protobufs::TransformationReplaceIdWithSynonym message)
|
|
|
|
: message_(std::move(message)) {}
|
2019-09-18 19:47:08 +00:00
|
|
|
|
|
|
|
TransformationReplaceIdWithSynonym::TransformationReplaceIdWithSynonym(
|
2019-11-07 16:19:06 +00:00
|
|
|
protobufs::IdUseDescriptor id_use_descriptor, uint32_t synonymous_id) {
|
2019-09-18 19:47:08 +00:00
|
|
|
*message_.mutable_id_use_descriptor() = std::move(id_use_descriptor);
|
2019-11-07 16:19:06 +00:00
|
|
|
message_.set_synonymous_id(synonymous_id);
|
2019-09-18 19:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool TransformationReplaceIdWithSynonym::IsApplicable(
|
2020-04-02 14:54:46 +00:00
|
|
|
opt::IRContext* ir_context,
|
|
|
|
const TransformationContext& transformation_context) const {
|
2019-11-07 16:19:06 +00:00
|
|
|
auto id_of_interest = message_.id_use_descriptor().id_of_interest();
|
|
|
|
|
2019-09-18 19:47:08 +00:00
|
|
|
// Does the fact manager know about the synonym?
|
2019-11-07 16:19:06 +00:00
|
|
|
auto data_descriptor_for_synonymous_id =
|
|
|
|
MakeDataDescriptor(message_.synonymous_id(), {});
|
2020-04-02 14:54:46 +00:00
|
|
|
if (!transformation_context.GetFactManager()->IsSynonymous(
|
|
|
|
MakeDataDescriptor(id_of_interest, {}),
|
2020-04-20 18:02:49 +00:00
|
|
|
data_descriptor_for_synonymous_id)) {
|
2019-09-18 19:47:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-10-08 13:04:10 +00:00
|
|
|
// Does the id use descriptor in the transformation identify an instruction?
|
2019-09-18 19:47:08 +00:00
|
|
|
auto use_instruction =
|
2020-04-02 14:54:46 +00:00
|
|
|
FindInstructionContainingUse(message_.id_use_descriptor(), ir_context);
|
2019-09-18 19:47:08 +00:00
|
|
|
if (!use_instruction) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-07-27 12:34:44 +00:00
|
|
|
uint32_t type_id_of_interest =
|
|
|
|
ir_context->get_def_use_mgr()->GetDef(id_of_interest)->type_id();
|
|
|
|
uint32_t type_id_synonym = ir_context->get_def_use_mgr()
|
|
|
|
->GetDef(message_.synonymous_id())
|
|
|
|
->type_id();
|
|
|
|
|
|
|
|
// If the id of interest and the synonym are scalar or vector integer
|
|
|
|
// constants with different signedness, their use can only be swapped if the
|
|
|
|
// instruction is agnostic to the signedness of the operand.
|
2021-09-14 21:09:39 +00:00
|
|
|
if (!fuzzerutil::TypesAreCompatible(
|
|
|
|
ir_context, use_instruction->opcode(),
|
|
|
|
message_.id_use_descriptor().in_operand_index(), type_id_of_interest,
|
|
|
|
type_id_synonym)) {
|
2020-07-27 12:34:44 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-07 16:19:06 +00:00
|
|
|
// Is the use suitable for being replaced in principle?
|
2020-09-01 15:28:04 +00:00
|
|
|
if (!fuzzerutil::IdUseCanBeReplaced(
|
2020-10-23 13:52:22 +00:00
|
|
|
ir_context, transformation_context, use_instruction,
|
2019-11-07 16:19:06 +00:00
|
|
|
message_.id_use_descriptor().in_operand_index())) {
|
2019-09-18 19:47:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-07 16:19:06 +00:00
|
|
|
// The transformation is applicable if the synonymous id is available at the
|
|
|
|
// use point.
|
2020-02-06 16:54:34 +00:00
|
|
|
return fuzzerutil::IdIsAvailableAtUse(
|
2020-04-02 14:54:46 +00:00
|
|
|
ir_context, use_instruction,
|
|
|
|
message_.id_use_descriptor().in_operand_index(),
|
2020-02-06 16:54:34 +00:00
|
|
|
message_.synonymous_id());
|
2019-09-18 19:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TransformationReplaceIdWithSynonym::Apply(
|
2020-04-02 14:54:46 +00:00
|
|
|
spvtools::opt::IRContext* ir_context,
|
|
|
|
TransformationContext* /*unused*/) const {
|
2019-09-18 19:47:08 +00:00
|
|
|
auto instruction_to_change =
|
2020-04-02 14:54:46 +00:00
|
|
|
FindInstructionContainingUse(message_.id_use_descriptor(), ir_context);
|
2019-09-18 19:47:08 +00:00
|
|
|
instruction_to_change->SetInOperand(
|
2019-11-07 16:19:06 +00:00
|
|
|
message_.id_use_descriptor().in_operand_index(),
|
|
|
|
{message_.synonymous_id()});
|
2021-03-14 01:53:21 +00:00
|
|
|
ir_context->get_def_use_mgr()->EraseUseRecordsOfOperandIds(
|
|
|
|
instruction_to_change);
|
|
|
|
ir_context->get_def_use_mgr()->AnalyzeInstUse(instruction_to_change);
|
|
|
|
|
|
|
|
// No analyses need to be invalidated, since the transformation is local to a
|
|
|
|
// block, and the def-use analysis has been updated.
|
2019-09-18 19:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protobufs::Transformation TransformationReplaceIdWithSynonym::ToMessage()
|
|
|
|
const {
|
|
|
|
protobufs::Transformation result;
|
|
|
|
*result.mutable_replace_id_with_synonym() = message_;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-09-29 21:12:49 +00:00
|
|
|
std::unordered_set<uint32_t> TransformationReplaceIdWithSynonym::GetFreshIds()
|
|
|
|
const {
|
|
|
|
return std::unordered_set<uint32_t>();
|
|
|
|
}
|
|
|
|
|
2019-09-18 19:47:08 +00:00
|
|
|
} // namespace fuzz
|
|
|
|
} // namespace spvtools
|