// Copyright 2018 The Dawn Authors // // 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 #include #include #include "spirv-cross/spirv_glsl.hpp" #include "spirv-cross/spirv_hlsl.hpp" namespace DawnSPIRVCrossFuzzer { struct CombinedOptions { spirv_cross::CompilerGLSL::Options glsl; spirv_cross::CompilerHLSL::Options hlsl; }; using Task = std::function&)>; template using TaskWithOptions = std::function&, Options)>; // Used to wrap code that may fire a SIGABRT. Do not allocate anything local within |exec|, as // it is not guaranteed to return. void ExecuteWithSignalTrap(std::function exec); // Used to fuzz by mutating the input data, but with fixed options to the compiler int Run(const uint8_t* data, size_t size, Task task); // Used to fuzz by mutating both the input data and options to the compiler template int RunWithOptions(const uint8_t* data, size_t size, TaskWithOptions task); } // namespace DawnSPIRVCrossFuzzer