blob: 64fefbc28529cbb965855ccee5566d8a3e1bbc65 [file] [log] [blame]
Alastair Donaldsonfe9f8702019-05-27 14:34:55 +01001// 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 Donaldsonb8ab8082019-07-07 08:55:30 +010017namespace {
18// The default maximum number of steps for the reducer to run before giving up.
19const uint32_t kDefaultStepLimit = 250;
20} // namespace
21
22spv_fuzzer_options_t::spv_fuzzer_options_t()
23 : has_random_seed(false),
24 random_seed(0),
Alastair Donaldson3e7238c2020-07-15 12:13:23 +010025 replay_range(0),
Alastair Donaldson7275a712019-09-20 10:54:09 +010026 replay_validation_enabled(false),
Alastair Donaldson52e9cc92019-11-27 18:05:56 +000027 shrinker_step_limit(kDefaultStepLimit),
28 fuzzer_pass_validation_enabled(false) {}
Alastair Donaldsonfe9f8702019-05-27 14:34:55 +010029
30SPIRV_TOOLS_EXPORT spv_fuzzer_options spvFuzzerOptionsCreate() {
31 return new spv_fuzzer_options_t();
32}
33
34SPIRV_TOOLS_EXPORT void spvFuzzerOptionsDestroy(spv_fuzzer_options options) {
35 delete options;
36}
37
Alastair Donaldson7275a712019-09-20 10:54:09 +010038SPIRV_TOOLS_EXPORT void spvFuzzerOptionsEnableReplayValidation(
39 spv_fuzzer_options options) {
40 options->replay_validation_enabled = true;
41}
42
Alastair Donaldsonfe9f8702019-05-27 14:34:55 +010043SPIRV_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 Donaldsonb8ab8082019-07-07 08:55:30 +010048
Alastair Donaldson3e7238c2020-07-15 12:13:23 +010049SPIRV_TOOLS_EXPORT void spvFuzzerOptionsSetReplayRange(
50 spv_fuzzer_options options, int32_t replay_range) {
51 options->replay_range = replay_range;
52}
53
Alastair Donaldsonb8ab8082019-07-07 08:55:30 +010054SPIRV_TOOLS_EXPORT void spvFuzzerOptionsSetShrinkerStepLimit(
55 spv_fuzzer_options options, uint32_t shrinker_step_limit) {
56 options->shrinker_step_limit = shrinker_step_limit;
57}
Alastair Donaldson52e9cc92019-11-27 18:05:56 +000058
59SPIRV_TOOLS_EXPORT void spvFuzzerOptionsEnableFuzzerPassValidation(
60 spv_fuzzer_options options) {
61 options->fuzzer_pass_validation_enabled = true;
62}