Alastair Donaldson | fe9f870 | 2019-05-27 14:34:55 +0100 | [diff] [blame] | 1 | // Copyright (c) 2019 Google LLC |
| 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/spirv_fuzzer_options.h" |
| 16 | |
Alastair Donaldson | b8ab808 | 2019-07-07 08:55:30 +0100 | [diff] [blame] | 17 | namespace { |
| 18 | // The default maximum number of steps for the reducer to run before giving up. |
| 19 | const uint32_t kDefaultStepLimit = 250; |
| 20 | } // namespace |
| 21 | |
| 22 | spv_fuzzer_options_t::spv_fuzzer_options_t() |
| 23 | : has_random_seed(false), |
| 24 | random_seed(0), |
Alastair Donaldson | 3e7238c | 2020-07-15 12:13:23 +0100 | [diff] [blame^] | 25 | replay_range(0), |
Alastair Donaldson | 7275a71 | 2019-09-20 10:54:09 +0100 | [diff] [blame] | 26 | replay_validation_enabled(false), |
Alastair Donaldson | 52e9cc9 | 2019-11-27 18:05:56 +0000 | [diff] [blame] | 27 | shrinker_step_limit(kDefaultStepLimit), |
| 28 | fuzzer_pass_validation_enabled(false) {} |
Alastair Donaldson | fe9f870 | 2019-05-27 14:34:55 +0100 | [diff] [blame] | 29 | |
| 30 | SPIRV_TOOLS_EXPORT spv_fuzzer_options spvFuzzerOptionsCreate() { |
| 31 | return new spv_fuzzer_options_t(); |
| 32 | } |
| 33 | |
| 34 | SPIRV_TOOLS_EXPORT void spvFuzzerOptionsDestroy(spv_fuzzer_options options) { |
| 35 | delete options; |
| 36 | } |
| 37 | |
Alastair Donaldson | 7275a71 | 2019-09-20 10:54:09 +0100 | [diff] [blame] | 38 | SPIRV_TOOLS_EXPORT void spvFuzzerOptionsEnableReplayValidation( |
| 39 | spv_fuzzer_options options) { |
| 40 | options->replay_validation_enabled = true; |
| 41 | } |
| 42 | |
Alastair Donaldson | fe9f870 | 2019-05-27 14:34:55 +0100 | [diff] [blame] | 43 | SPIRV_TOOLS_EXPORT void spvFuzzerOptionsSetRandomSeed( |
| 44 | spv_fuzzer_options options, uint32_t seed) { |
| 45 | options->has_random_seed = true; |
| 46 | options->random_seed = seed; |
| 47 | } |
Alastair Donaldson | b8ab808 | 2019-07-07 08:55:30 +0100 | [diff] [blame] | 48 | |
Alastair Donaldson | 3e7238c | 2020-07-15 12:13:23 +0100 | [diff] [blame^] | 49 | SPIRV_TOOLS_EXPORT void spvFuzzerOptionsSetReplayRange( |
| 50 | spv_fuzzer_options options, int32_t replay_range) { |
| 51 | options->replay_range = replay_range; |
| 52 | } |
| 53 | |
Alastair Donaldson | b8ab808 | 2019-07-07 08:55:30 +0100 | [diff] [blame] | 54 | SPIRV_TOOLS_EXPORT void spvFuzzerOptionsSetShrinkerStepLimit( |
| 55 | spv_fuzzer_options options, uint32_t shrinker_step_limit) { |
| 56 | options->shrinker_step_limit = shrinker_step_limit; |
| 57 | } |
Alastair Donaldson | 52e9cc9 | 2019-11-27 18:05:56 +0000 | [diff] [blame] | 58 | |
| 59 | SPIRV_TOOLS_EXPORT void spvFuzzerOptionsEnableFuzzerPassValidation( |
| 60 | spv_fuzzer_options options) { |
| 61 | options->fuzzer_pass_validation_enabled = true; |
| 62 | } |