2018-10-16 19:39:22 +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-10-16 19:39:22 +00:00
|
|
|
/**
|
|
|
|
* Optimiser suite that combines all steps and also provides the settings for the heuristics.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-10-29 14:00:27 +00:00
|
|
|
#include <libyul/ASTForward.h>
|
2018-10-29 14:12:02 +00:00
|
|
|
#include <libyul/YulString.h>
|
2019-09-23 14:32:50 +00:00
|
|
|
#include <libyul/optimiser/OptimiserStep.h>
|
|
|
|
#include <libyul/optimiser/NameDispenser.h>
|
2019-02-21 20:56:30 +00:00
|
|
|
#include <liblangutil/EVMVersion.h>
|
2018-10-16 19:39:22 +00:00
|
|
|
|
|
|
|
#include <set>
|
2019-09-23 14:32:50 +00:00
|
|
|
#include <string>
|
2021-10-06 14:44:29 +00:00
|
|
|
#include <string_view>
|
2019-09-23 14:32:50 +00:00
|
|
|
#include <memory>
|
2018-10-16 19:39:22 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::yul
|
2018-10-16 19:39:22 +00:00
|
|
|
{
|
|
|
|
|
2018-11-21 11:42:34 +00:00
|
|
|
struct AsmAnalysisInfo;
|
2018-12-20 17:55:32 +00:00
|
|
|
struct Dialect;
|
2019-05-15 08:33:35 +00:00
|
|
|
class GasMeter;
|
2019-07-09 15:23:14 +00:00
|
|
|
struct Object;
|
2018-11-21 11:42:34 +00:00
|
|
|
|
2018-10-16 19:39:22 +00:00
|
|
|
/**
|
2019-07-09 15:23:14 +00:00
|
|
|
* Optimiser suite that combines all steps and also provides the settings for the heuristics.
|
|
|
|
* Only optimizes the code of the provided object, does not descend into the sub-objects.
|
2018-10-16 19:39:22 +00:00
|
|
|
*/
|
|
|
|
class OptimiserSuite
|
|
|
|
{
|
|
|
|
public:
|
2020-02-29 23:25:00 +00:00
|
|
|
static constexpr size_t MaxRounds = 12;
|
|
|
|
|
2020-04-24 12:13:34 +00:00
|
|
|
/// Special characters that do not represent optimiser steps but are allowed in abbreviation sequences.
|
|
|
|
/// Some of them (like whitespace) are ignored, others (like brackets) are a part of the syntax.
|
|
|
|
static constexpr char NonStepAbbreviations[] = " \n[]";
|
|
|
|
|
2019-09-23 14:32:50 +00:00
|
|
|
enum class Debug
|
|
|
|
{
|
|
|
|
None,
|
2019-10-07 06:16:28 +00:00
|
|
|
PrintStep,
|
|
|
|
PrintChanges
|
2019-09-23 14:32:50 +00:00
|
|
|
};
|
2021-11-03 11:12:37 +00:00
|
|
|
OptimiserSuite(OptimiserStepContext& _context, Debug _debug = Debug::None): m_context(_context), m_debug(_debug) {}
|
|
|
|
|
2021-03-11 11:42:59 +00:00
|
|
|
/// The value nullopt for `_expectedExecutionsPerDeployment` represents creation code.
|
2018-10-16 19:39:22 +00:00
|
|
|
static void run(
|
2019-05-16 08:56:56 +00:00
|
|
|
Dialect const& _dialect,
|
2019-05-29 21:14:06 +00:00
|
|
|
GasMeter const* _meter,
|
2019-07-09 15:23:14 +00:00
|
|
|
Object& _object,
|
2019-03-13 16:44:16 +00:00
|
|
|
bool _optimizeStackAllocation,
|
2021-10-06 14:44:29 +00:00
|
|
|
std::string_view _optimisationSequence,
|
2021-03-11 11:42:59 +00:00
|
|
|
std::optional<size_t> _expectedExecutionsPerDeployment,
|
2018-10-29 14:12:02 +00:00
|
|
|
std::set<YulString> const& _externallyUsedIdentifiers = {}
|
2018-10-16 19:39:22 +00:00
|
|
|
);
|
2019-09-23 14:32:50 +00:00
|
|
|
|
2020-04-24 12:15:45 +00:00
|
|
|
/// Ensures that specified sequence of step abbreviations is well-formed and can be executed.
|
|
|
|
/// @throw OptimizerException if the sequence is invalid
|
2021-10-06 14:44:29 +00:00
|
|
|
static void validateSequence(std::string_view _stepAbbreviations);
|
2020-04-24 12:15:45 +00:00
|
|
|
|
2019-09-23 14:32:50 +00:00
|
|
|
void runSequence(std::vector<std::string> const& _steps, Block& _ast);
|
2021-10-06 14:00:16 +00:00
|
|
|
void runSequence(std::string_view _stepAbbreviations, Block& _ast, bool _repeatUntilStable = false);
|
2019-09-23 14:32:50 +00:00
|
|
|
|
|
|
|
static std::map<std::string, std::unique_ptr<OptimiserStep>> const& allSteps();
|
2020-01-24 21:03:44 +00:00
|
|
|
static std::map<std::string, char> const& stepNameToAbbreviationMap();
|
|
|
|
static std::map<char, std::string> const& stepAbbreviationToNameMap();
|
2019-09-23 14:32:50 +00:00
|
|
|
|
|
|
|
private:
|
2021-11-03 11:12:37 +00:00
|
|
|
OptimiserStepContext& m_context;
|
2019-09-23 14:32:50 +00:00
|
|
|
Debug m_debug;
|
2018-10-16 19:39:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|