2019-03-11 15:09:40 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2019 Google, LLC
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/gpu/GrShaderCaps.h"
|
|
|
|
#include "src/sksl/SkSLCompiler.h"
|
2019-03-11 15:09:40 +00:00
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "fuzz/Fuzz.h"
|
2019-03-11 15:09:40 +00:00
|
|
|
|
|
|
|
bool FuzzSKSL2Metal(sk_sp<SkData> bytes) {
|
2021-11-19 15:59:59 +00:00
|
|
|
std::unique_ptr<SkSL::ShaderCaps> caps = SkSL::ShaderCapsFactory::Default();
|
2020-11-02 17:26:22 +00:00
|
|
|
SkSL::Compiler compiler(caps.get());
|
2019-03-11 15:09:40 +00:00
|
|
|
SkSL::Program::Settings settings;
|
|
|
|
std::unique_ptr<SkSL::Program> program = compiler.convertProgram(
|
2021-02-16 18:29:15 +00:00
|
|
|
SkSL::ProgramKind::kFragment,
|
2022-02-02 21:51:18 +00:00
|
|
|
std::string((const char*) bytes->data(),
|
|
|
|
bytes->size()),
|
2019-03-11 15:09:40 +00:00
|
|
|
settings);
|
2022-02-02 21:51:18 +00:00
|
|
|
std::string output;
|
2019-03-11 15:09:40 +00:00
|
|
|
if (!program || !compiler.toMetal(*program, &output)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-09-14 12:37:35 +00:00
|
|
|
#if defined(SK_BUILD_FOR_LIBFUZZER)
|
2019-03-11 15:09:40 +00:00
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
2020-06-14 19:03:34 +00:00
|
|
|
if (size > 3000) {
|
|
|
|
return 0;
|
|
|
|
}
|
2019-03-11 15:09:40 +00:00
|
|
|
auto bytes = SkData::MakeWithoutCopy(data, size);
|
|
|
|
FuzzSKSL2Metal(bytes);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|