2018-10-16 19:40:10 +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:40:10 +00:00
|
|
|
/**
|
|
|
|
* Interactive yul optimizer
|
|
|
|
*/
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/CommonIO.h>
|
2020-10-31 01:04:53 +00:00
|
|
|
#include <libsolutil/Exceptions.h>
|
2018-11-14 16:11:55 +00:00
|
|
|
#include <liblangutil/ErrorReporter.h>
|
2018-11-23 10:18:57 +00:00
|
|
|
#include <libyul/AsmAnalysis.h>
|
|
|
|
#include <libyul/AsmAnalysisInfo.h>
|
2018-10-16 19:40:10 +00:00
|
|
|
#include <libsolidity/parsing/Parser.h>
|
2020-10-29 14:00:27 +00:00
|
|
|
#include <libyul/AST.h>
|
2018-11-23 10:18:57 +00:00
|
|
|
#include <libyul/AsmParser.h>
|
|
|
|
#include <libyul/AsmPrinter.h>
|
2019-07-09 15:23:14 +00:00
|
|
|
#include <libyul/Object.h>
|
2020-12-01 13:22:15 +00:00
|
|
|
#include <liblangutil/SourceReferenceFormatter.h>
|
2018-10-16 19:40:10 +00:00
|
|
|
|
|
|
|
#include <libyul/optimiser/Disambiguator.h>
|
2019-09-23 14:32:50 +00:00
|
|
|
#include <libyul/optimiser/OptimiserStep.h>
|
2019-02-04 16:30:29 +00:00
|
|
|
#include <libyul/optimiser/StackCompressor.h>
|
2019-01-21 07:13:31 +00:00
|
|
|
#include <libyul/optimiser/VarNameCleaner.h>
|
2020-01-24 22:51:35 +00:00
|
|
|
#include <libyul/optimiser/Suite.h>
|
2020-05-11 17:56:29 +00:00
|
|
|
#include <libyul/optimiser/ReasoningBasedSimplifier.h>
|
2018-10-16 19:40:10 +00:00
|
|
|
|
2018-12-06 23:56:16 +00:00
|
|
|
#include <libyul/backends/evm/EVMDialect.h>
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/JSON.h>
|
2018-10-16 19:40:10 +00:00
|
|
|
|
2021-03-11 11:42:59 +00:00
|
|
|
#include <libsolidity/interface/OptimiserSettings.h>
|
2021-06-29 12:38:59 +00:00
|
|
|
#include <liblangutil/CharStreamProvider.h>
|
2021-03-11 11:42:59 +00:00
|
|
|
|
2021-01-13 12:57:09 +00:00
|
|
|
#include <boost/algorithm/string/predicate.hpp>
|
2021-01-14 16:11:37 +00:00
|
|
|
#include <boost/algorithm/string/join.hpp>
|
2018-10-16 19:40:10 +00:00
|
|
|
#include <boost/program_options.hpp>
|
|
|
|
|
2021-01-14 16:09:04 +00:00
|
|
|
#include <range/v3/action/sort.hpp>
|
|
|
|
#include <range/v3/range/conversion.hpp>
|
2021-01-13 12:57:09 +00:00
|
|
|
#include <range/v3/view/concat.hpp>
|
|
|
|
#include <range/v3/view/drop.hpp>
|
2021-01-14 16:11:37 +00:00
|
|
|
#include <range/v3/view/map.hpp>
|
|
|
|
#include <range/v3/view/set_algorithm.hpp>
|
2021-01-13 12:57:09 +00:00
|
|
|
#include <range/v3/view/stride.hpp>
|
2021-01-14 16:11:37 +00:00
|
|
|
#include <range/v3/view/transform.hpp>
|
2021-01-13 12:57:09 +00:00
|
|
|
|
2021-01-14 16:09:04 +00:00
|
|
|
#include <cctype>
|
2018-10-16 19:40:10 +00:00
|
|
|
#include <string>
|
|
|
|
#include <sstream>
|
|
|
|
#include <iostream>
|
2019-11-19 15:42:49 +00:00
|
|
|
#include <variant>
|
2018-10-16 19:40:10 +00:00
|
|
|
|
|
|
|
using namespace std;
|
2019-12-23 15:50:30 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::util;
|
|
|
|
using namespace solidity::langutil;
|
|
|
|
using namespace solidity::frontend;
|
|
|
|
using namespace solidity::yul;
|
2018-10-16 19:40:10 +00:00
|
|
|
|
|
|
|
namespace po = boost::program_options;
|
|
|
|
|
|
|
|
class YulOpti
|
|
|
|
{
|
|
|
|
public:
|
2018-11-30 13:34:08 +00:00
|
|
|
void printErrors()
|
2018-10-16 19:40:10 +00:00
|
|
|
{
|
2021-06-29 12:38:59 +00:00
|
|
|
SourceReferenceFormatter{
|
|
|
|
cerr,
|
2021-07-14 10:53:39 +00:00
|
|
|
SingletonCharStreamProvider(*m_charStream),
|
2021-06-29 12:38:59 +00:00
|
|
|
true,
|
|
|
|
false
|
|
|
|
}.printErrorInformation(m_errors);
|
2018-10-16 19:40:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool parse(string const& _input)
|
|
|
|
{
|
|
|
|
ErrorReporter errorReporter(m_errors);
|
2021-07-14 10:53:39 +00:00
|
|
|
m_charStream = make_shared<CharStream>(_input, "");
|
2021-08-03 13:36:00 +00:00
|
|
|
m_ast = yul::Parser(errorReporter, m_dialect).parse(*m_charStream);
|
2018-10-16 19:40:10 +00:00
|
|
|
if (!m_ast || !errorReporter.errors().empty())
|
|
|
|
{
|
2020-05-07 15:16:50 +00:00
|
|
|
cerr << "Error parsing source." << endl;
|
2018-11-30 13:34:08 +00:00
|
|
|
printErrors();
|
2018-10-16 19:40:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
2018-11-21 11:42:34 +00:00
|
|
|
m_analysisInfo = make_shared<yul::AsmAnalysisInfo>();
|
2018-10-16 19:40:10 +00:00
|
|
|
AsmAnalyzer analyzer(
|
|
|
|
*m_analysisInfo,
|
|
|
|
errorReporter,
|
2018-12-20 17:55:32 +00:00
|
|
|
m_dialect
|
2018-10-16 19:40:10 +00:00
|
|
|
);
|
|
|
|
if (!analyzer.analyze(*m_ast) || !errorReporter.errors().empty())
|
|
|
|
{
|
2020-05-07 15:16:50 +00:00
|
|
|
cerr << "Error analyzing source." << endl;
|
2018-11-30 13:34:08 +00:00
|
|
|
printErrors();
|
2018-10-16 19:40:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-24 23:46:16 +00:00
|
|
|
void printUsageBanner(
|
|
|
|
map<char, string> const& _optimizationSteps,
|
|
|
|
map<char, string> const& _extraOptions,
|
|
|
|
size_t _columns
|
|
|
|
)
|
|
|
|
{
|
2021-01-13 12:57:09 +00:00
|
|
|
yulAssert(_columns > 0, "");
|
|
|
|
|
|
|
|
auto hasShorterString = [](auto const& a, auto const& b) { return a.second.size() < b.second.size(); };
|
|
|
|
size_t longestDescriptionLength = std::max(
|
2020-01-24 23:46:16 +00:00
|
|
|
max_element(_optimizationSteps.begin(), _optimizationSteps.end(), hasShorterString)->second.size(),
|
|
|
|
max_element(_extraOptions.begin(), _extraOptions.end(), hasShorterString)->second.size()
|
|
|
|
);
|
|
|
|
|
2021-01-14 16:11:37 +00:00
|
|
|
vector<string> overlappingAbbreviations =
|
2021-05-07 13:42:17 +00:00
|
|
|
ranges::views::set_intersection(_extraOptions | ranges::views::keys, _optimizationSteps | ranges::views::keys) |
|
|
|
|
ranges::views::transform([](char _abbreviation){ return string(1, _abbreviation); }) |
|
|
|
|
ranges::to<vector>();
|
2021-01-14 16:11:37 +00:00
|
|
|
|
|
|
|
yulAssert(
|
|
|
|
overlappingAbbreviations.empty(),
|
|
|
|
"ERROR: Conflict between yulopti controls and the following Yul optimizer step abbreviations: " +
|
|
|
|
boost::join(overlappingAbbreviations, ", ") + ".\n"
|
|
|
|
"This is most likely caused by someone adding a new step abbreviation to "
|
|
|
|
"OptimiserSuite::stepNameToAbbreviationMap() and not realizing that it's used by yulopti.\n"
|
|
|
|
"Please update the code to use a different character and recompile yulopti."
|
|
|
|
);
|
2020-01-24 23:46:16 +00:00
|
|
|
|
2021-01-14 16:09:04 +00:00
|
|
|
vector<tuple<char, string>> sortedOptions =
|
2021-05-07 13:42:17 +00:00
|
|
|
ranges::views::concat(_optimizationSteps, _extraOptions) |
|
|
|
|
ranges::to<vector<tuple<char, string>>>() |
|
|
|
|
ranges::actions::sort([](tuple<char, string> const& _a, tuple<char, string> const& _b) {
|
2021-01-14 16:09:04 +00:00
|
|
|
return (
|
|
|
|
!boost::algorithm::iequals(get<1>(_a), get<1>(_b)) ?
|
|
|
|
boost::algorithm::lexicographical_compare(get<1>(_a), get<1>(_b), boost::algorithm::is_iless()) :
|
|
|
|
tolower(get<0>(_a)) < tolower(get<0>(_b))
|
|
|
|
);
|
|
|
|
});
|
2021-01-13 12:57:09 +00:00
|
|
|
|
|
|
|
yulAssert(sortedOptions.size() > 0, "");
|
|
|
|
size_t rows = (sortedOptions.size() - 1) / _columns + 1;
|
|
|
|
for (size_t row = 0; row < rows; ++row)
|
|
|
|
{
|
2021-05-07 13:42:17 +00:00
|
|
|
for (auto const& [key, name]: sortedOptions | ranges::views::drop(row) | ranges::views::stride(rows))
|
2021-01-13 12:57:09 +00:00
|
|
|
cout << key << ": " << setw(static_cast<int>(longestDescriptionLength)) << setiosflags(ios::left) << name << " ";
|
|
|
|
|
|
|
|
cout << endl;
|
|
|
|
}
|
2020-01-24 23:46:16 +00:00
|
|
|
}
|
|
|
|
|
2018-10-16 19:40:10 +00:00
|
|
|
void runInteractive(string source)
|
|
|
|
{
|
|
|
|
bool disambiguated = false;
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
cout << "----------------------" << endl;
|
|
|
|
cout << source << endl;
|
|
|
|
if (!parse(source))
|
|
|
|
return;
|
2019-09-23 14:32:50 +00:00
|
|
|
set<YulString> reservedIdentifiers;
|
2018-10-16 19:40:10 +00:00
|
|
|
if (!disambiguated)
|
|
|
|
{
|
2019-11-19 15:42:49 +00:00
|
|
|
*m_ast = std::get<yul::Block>(Disambiguator(m_dialect, *m_analysisInfo)(*m_ast));
|
2018-10-16 19:40:10 +00:00
|
|
|
m_analysisInfo.reset();
|
2019-09-23 14:32:50 +00:00
|
|
|
m_nameDispenser = make_shared<NameDispenser>(m_dialect, *m_ast, reservedIdentifiers);
|
2018-10-16 19:40:10 +00:00
|
|
|
disambiguated = true;
|
|
|
|
}
|
2020-01-24 23:46:16 +00:00
|
|
|
map<char, string> const& abbreviationMap = OptimiserSuite::stepAbbreviationToNameMap();
|
|
|
|
map<char, string> const& extraOptions = {
|
2021-01-14 16:09:04 +00:00
|
|
|
// QUIT starts with a non-letter character on purpose to get it to show up on top of the list
|
|
|
|
{'#', ">>> QUIT <<<"},
|
2020-05-07 15:27:24 +00:00
|
|
|
{',', "VarNameCleaner"},
|
2020-09-10 14:18:57 +00:00
|
|
|
{';', "StackCompressor"}
|
2020-01-24 23:46:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
printUsageBanner(abbreviationMap, extraOptions, 4);
|
|
|
|
cout << "? ";
|
2018-10-16 19:40:10 +00:00
|
|
|
cout.flush();
|
2019-12-12 23:39:29 +00:00
|
|
|
// TODO: handle EOF properly.
|
|
|
|
char option = static_cast<char>(readStandardInputChar());
|
|
|
|
cout << ' ' << option << endl;
|
2019-09-23 14:32:50 +00:00
|
|
|
|
2021-03-11 11:42:59 +00:00
|
|
|
OptimiserStepContext context{
|
|
|
|
m_dialect,
|
|
|
|
*m_nameDispenser,
|
|
|
|
reservedIdentifiers,
|
|
|
|
solidity::frontend::OptimiserSettings::standard().expectedExecutionsPerDeployment
|
|
|
|
};
|
2020-01-24 22:51:35 +00:00
|
|
|
|
|
|
|
auto abbreviationAndName = abbreviationMap.find(option);
|
|
|
|
if (abbreviationAndName != abbreviationMap.end())
|
|
|
|
{
|
|
|
|
OptimiserStep const& step = *OptimiserSuite::allSteps().at(abbreviationAndName->second);
|
|
|
|
step.run(context, *m_ast);
|
|
|
|
}
|
|
|
|
else switch (option)
|
2018-10-16 19:40:10 +00:00
|
|
|
{
|
2020-05-07 15:27:24 +00:00
|
|
|
case '#':
|
2018-10-16 19:40:10 +00:00
|
|
|
return;
|
2020-05-07 15:27:24 +00:00
|
|
|
case ',':
|
2019-09-23 14:32:50 +00:00
|
|
|
VarNameCleaner::run(context, *m_ast);
|
2020-01-29 17:35:33 +00:00
|
|
|
// VarNameCleaner destroys the unique names guarantee of the disambiguator.
|
|
|
|
disambiguated = false;
|
2019-01-21 07:13:31 +00:00
|
|
|
break;
|
2020-05-07 15:27:24 +00:00
|
|
|
case ';':
|
2019-07-09 15:23:14 +00:00
|
|
|
{
|
|
|
|
Object obj;
|
|
|
|
obj.code = m_ast;
|
|
|
|
StackCompressor::run(m_dialect, obj, true, 16);
|
2019-02-04 16:30:29 +00:00
|
|
|
break;
|
2019-07-09 15:23:14 +00:00
|
|
|
}
|
2018-10-16 19:40:10 +00:00
|
|
|
default:
|
2020-05-07 15:16:50 +00:00
|
|
|
cerr << "Unknown option." << endl;
|
2018-10-16 19:40:10 +00:00
|
|
|
}
|
2020-01-16 11:03:19 +00:00
|
|
|
source = AsmPrinter{m_dialect}(*m_ast);
|
2018-10-16 19:40:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ErrorList m_errors;
|
2021-07-14 10:53:39 +00:00
|
|
|
shared_ptr<CharStream> m_charStream;
|
2018-11-21 11:42:34 +00:00
|
|
|
shared_ptr<yul::Block> m_ast;
|
2019-05-16 08:56:56 +00:00
|
|
|
Dialect const& m_dialect{EVMDialect::strictAssemblyForEVMObjects(EVMVersion{})};
|
2018-10-16 19:40:10 +00:00
|
|
|
shared_ptr<AsmAnalysisInfo> m_analysisInfo;
|
|
|
|
shared_ptr<NameDispenser> m_nameDispenser;
|
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
po::options_description options(
|
|
|
|
R"(yulopti, yul optimizer exploration tool.
|
|
|
|
Usage: yulopti [Options] <file>
|
|
|
|
Reads <file> as yul code and applies optimizer steps to it,
|
|
|
|
interactively read from stdin.
|
|
|
|
|
|
|
|
Allowed options)",
|
|
|
|
po::options_description::m_default_line_length,
|
|
|
|
po::options_description::m_default_line_length - 23);
|
|
|
|
options.add_options()
|
|
|
|
(
|
|
|
|
"input-file",
|
|
|
|
po::value<string>(),
|
|
|
|
"input file"
|
|
|
|
)
|
|
|
|
("help", "Show this help screen.");
|
|
|
|
|
|
|
|
// All positional options should be interpreted as input files
|
|
|
|
po::positional_options_description filesPositions;
|
|
|
|
filesPositions.add("input-file", 1);
|
|
|
|
|
|
|
|
po::variables_map arguments;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
po::command_line_parser cmdLineParser(argc, argv);
|
|
|
|
cmdLineParser.options(options).positional(filesPositions);
|
|
|
|
po::store(cmdLineParser.run(), arguments);
|
|
|
|
}
|
|
|
|
catch (po::error const& _exception)
|
|
|
|
{
|
|
|
|
cerr << _exception.what() << endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
string input;
|
2020-10-31 01:04:53 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
input = readFileAsString(arguments["input-file"].as<string>());
|
|
|
|
}
|
|
|
|
catch (FileNotFound const& _exception)
|
|
|
|
{
|
|
|
|
cerr << "File not found:" << _exception.comment() << endl;
|
|
|
|
return 1;
|
|
|
|
}
|
2021-06-25 12:21:44 +00:00
|
|
|
catch (NotAFile const& _exception)
|
|
|
|
{
|
|
|
|
cerr << "Not a regular file:" << _exception.comment() << endl;
|
|
|
|
return 1;
|
|
|
|
}
|
2020-10-31 01:04:53 +00:00
|
|
|
|
2018-10-16 19:40:10 +00:00
|
|
|
if (arguments.count("input-file"))
|
2020-10-31 01:04:53 +00:00
|
|
|
YulOpti{}.runInteractive(input);
|
2018-10-16 19:40:10 +00:00
|
|
|
else
|
|
|
|
cout << options;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|