#include "source/fuzz/fuzzer_pass_replace_parameter_with_global.h"
#include <numeric>
#include <vector>
#include "source/fuzz/fuzzer_context.h"
#include "source/fuzz/fuzzer_util.h"
#include "source/fuzz/transformation_replace_parameter_with_global.h"
namespace spvtools {
namespace fuzz {
FuzzerPassReplaceParameterWithGlobal::FuzzerPassReplaceParameterWithGlobal(
opt::IRContext* ir_context, TransformationContext* transformation_context,
FuzzerContext* fuzzer_context,
protobufs::TransformationSequence* transformations,
bool ignore_inapplicable_transformations)
: FuzzerPass(ir_context, transformation_context, fuzzer_context,
transformations, ignore_inapplicable_transformations) {}
void FuzzerPassReplaceParameterWithGlobal::Apply() {
for (const auto& function : *GetIRContext()->module()) {
if (fuzzerutil::FunctionIsEntryPoint(GetIRContext(),
function.result_id())) {
continue;
}
if (!GetFuzzerContext()->ChoosePercentage(
GetFuzzerContext()->GetChanceOfReplacingParametersWithGlobals())) {
continue;
}
auto params =
fuzzerutil::GetParameters(GetIRContext(), function.result_id());
if (std::none_of(params.begin(), params.end(),
[this](const opt::Instruction* param) {
return TransformationReplaceParameterWithGlobal::
IsParameterTypeSupported(GetIRContext(),
param->type_id());
})) {
continue;
}
const opt::Instruction* replaced_param;
uint32_t param_type_id;
do {
replaced_param = GetFuzzerContext()->RemoveAtRandomIndex(¶ms);
param_type_id = replaced_param->type_id();
assert(param_type_id && "Parameter has invalid type");
} while (
!TransformationReplaceParameterWithGlobal::IsParameterTypeSupported(
GetIRContext(), param_type_id));
assert(replaced_param && "Unable to find a parameter to replace");
FindOrCreatePointerType(replaced_param->type_id(),
spv::StorageClass::Private);
FindOrCreateZeroConstant(replaced_param->type_id(), false);
ApplyTransformation(TransformationReplaceParameterWithGlobal(
GetFuzzerContext()->GetFreshId(), replaced_param->result_id(),
GetFuzzerContext()->GetFreshId()));
}
}
}
}