2018-02-06 09:57:16 +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
|
2018-02-06 09:57:16 +00:00
|
|
|
#include <test/tools/yulInterpreter/Interpreter.h>
|
2019-04-30 13:02:52 +00:00
|
|
|
#include <libyul/backends/evm/EVMDialect.h>
|
2018-02-06 09:57:16 +00:00
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
namespace solidity::yul::test::yul_fuzzer
|
2018-02-06 09:57:16 +00:00
|
|
|
{
|
2019-12-23 15:50:30 +00:00
|
|
|
|
2018-02-06 09:57:16 +00:00
|
|
|
struct yulFuzzerUtil
|
|
|
|
{
|
2019-11-01 10:36:29 +00:00
|
|
|
enum class TerminationReason
|
|
|
|
{
|
|
|
|
ExplicitlyTerminated,
|
|
|
|
StepLimitReached,
|
|
|
|
TraceLimitReached,
|
2020-07-23 09:58:10 +00:00
|
|
|
ExpresionNestingLimitReached,
|
2019-11-01 10:36:29 +00:00
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
static TerminationReason interpret(
|
2019-04-05 12:06:19 +00:00
|
|
|
std::ostream& _os,
|
|
|
|
std::shared_ptr<yul::Block> _ast,
|
2019-04-30 13:02:52 +00:00
|
|
|
Dialect const& _dialect,
|
2021-04-12 07:34:58 +00:00
|
|
|
bool _outputStorageOnly = false,
|
2019-04-05 12:06:19 +00:00
|
|
|
size_t _maxSteps = maxSteps,
|
2020-07-23 09:58:10 +00:00
|
|
|
size_t _maxTraceSize = maxTraceSize,
|
|
|
|
size_t _maxExprNesting = maxExprNesting
|
2019-04-05 12:06:19 +00:00
|
|
|
);
|
2021-03-26 12:21:33 +00:00
|
|
|
|
|
|
|
/// @returns true if @param _reason for Yul interpreter terminating is
|
|
|
|
/// resource exhaustion of some form e.g., exceeded maximum time-out
|
|
|
|
/// threshold, number of nested expressions etc.
|
|
|
|
static bool resourceLimitsExceeded(TerminationReason _reason);
|
2019-04-05 12:06:19 +00:00
|
|
|
static size_t constexpr maxSteps = 100;
|
|
|
|
static size_t constexpr maxTraceSize = 75;
|
2020-07-23 09:58:10 +00:00
|
|
|
static size_t constexpr maxExprNesting = 64;
|
2018-02-06 09:57:16 +00:00
|
|
|
};
|
2019-12-23 15:50:30 +00:00
|
|
|
|
2018-02-06 09:57:16 +00:00
|
|
|
}
|