• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2020 Vasyl Teliman
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #include "source/fuzz/fuzzer_pass_permute_function_parameters.h"
16 
17 #include <numeric>
18 #include <vector>
19 
20 #include "source/fuzz/fuzzer_context.h"
21 #include "source/fuzz/fuzzer_util.h"
22 #include "source/fuzz/instruction_descriptor.h"
23 #include "source/fuzz/transformation_permute_function_parameters.h"
24 
25 namespace spvtools {
26 namespace fuzz {
27 
FuzzerPassPermuteFunctionParameters(opt::IRContext * ir_context,TransformationContext * transformation_context,FuzzerContext * fuzzer_context,protobufs::TransformationSequence * transformations)28 FuzzerPassPermuteFunctionParameters::FuzzerPassPermuteFunctionParameters(
29     opt::IRContext* ir_context, TransformationContext* transformation_context,
30     FuzzerContext* fuzzer_context,
31     protobufs::TransformationSequence* transformations)
32     : FuzzerPass(ir_context, transformation_context, fuzzer_context,
33                  transformations) {}
34 
Apply()35 void FuzzerPassPermuteFunctionParameters::Apply() {
36   for (const auto& function : *GetIRContext()->module()) {
37     uint32_t function_id = function.result_id();
38 
39     // Skip the function if it is an entry point
40     if (fuzzerutil::FunctionIsEntryPoint(GetIRContext(), function_id)) {
41       continue;
42     }
43 
44     if (!GetFuzzerContext()->ChoosePercentage(
45             GetFuzzerContext()->GetChanceOfPermutingParameters())) {
46       continue;
47     }
48 
49     // Compute permutation for parameters
50     auto* function_type =
51         fuzzerutil::GetFunctionType(GetIRContext(), &function);
52     assert(function_type && "Function type is null");
53 
54     // Don't take return type into account
55     uint32_t arg_size = function_type->NumInOperands() - 1;
56 
57     // Create a vector, fill it with [0, n-1] values and shuffle it
58     std::vector<uint32_t> permutation(arg_size);
59     std::iota(permutation.begin(), permutation.end(), 0);
60     GetFuzzerContext()->Shuffle(&permutation);
61 
62     // Apply our transformation
63     ApplyTransformation(TransformationPermuteFunctionParameters(
64         function_id, GetFuzzerContext()->GetFreshId(), permutation));
65   }
66 }
67 
68 }  // namespace fuzz
69 }  // namespace spvtools
70