2019-02-06 10:18:44 +00:00
|
|
|
/*
|
|
|
|
This file is part of solidity.
|
|
|
|
|
|
|
|
solidity is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
solidity is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2019-02-06 10:18:44 +00:00
|
|
|
|
2022-03-28 04:27:11 +00:00
|
|
|
#include <libyul/YulStack.h>
|
2021-09-17 18:15:19 +00:00
|
|
|
|
|
|
|
#include <liblangutil/DebugInfoSelection.h>
|
2019-02-06 10:18:44 +00:00
|
|
|
#include <liblangutil/EVMVersion.h>
|
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
using namespace solidity;
|
2021-09-17 18:15:19 +00:00
|
|
|
using namespace solidity::langutil;
|
2019-12-23 15:50:30 +00:00
|
|
|
using namespace solidity::util;
|
|
|
|
using namespace solidity::yul;
|
2019-02-06 10:18:44 +00:00
|
|
|
using namespace std;
|
|
|
|
|
2020-12-08 20:06:10 +00:00
|
|
|
// Prototype as we can't use the FuzzerInterface.h header.
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* _data, size_t _size);
|
|
|
|
|
2019-02-06 10:18:44 +00:00
|
|
|
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* _data, size_t _size)
|
|
|
|
{
|
|
|
|
if (_size > 600)
|
|
|
|
return 0;
|
|
|
|
|
2019-04-24 12:03:09 +00:00
|
|
|
YulStringRepository::reset();
|
|
|
|
|
2019-02-06 10:18:44 +00:00
|
|
|
string input(reinterpret_cast<char const*>(_data), _size);
|
2022-03-28 04:27:11 +00:00
|
|
|
YulStack stack(
|
2019-03-27 11:49:50 +00:00
|
|
|
langutil::EVMVersion(),
|
2022-03-28 04:27:11 +00:00
|
|
|
YulStack::Language::StrictAssembly,
|
2021-09-17 18:15:19 +00:00
|
|
|
solidity::frontend::OptimiserSettings::full(),
|
|
|
|
DebugInfoSelection::All()
|
2019-03-27 11:49:50 +00:00
|
|
|
);
|
2019-02-06 10:18:44 +00:00
|
|
|
|
|
|
|
if (!stack.parseAndAnalyze("source", input))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
stack.optimize();
|
|
|
|
return 0;
|
|
|
|
}
|