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/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Interactive yul optimizer
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libdevcore/CommonIO.h>
|
2018-11-14 16:11:55 +00:00
|
|
|
#include <liblangutil/ErrorReporter.h>
|
|
|
|
#include <liblangutil/Scanner.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>
|
2018-11-23 10:18:57 +00:00
|
|
|
#include <libyul/AsmData.h>
|
|
|
|
#include <libyul/AsmParser.h>
|
|
|
|
#include <libyul/AsmPrinter.h>
|
2018-11-24 11:33:36 +00:00
|
|
|
#include <liblangutil/SourceReferenceFormatter.h>
|
2018-10-16 19:40:10 +00:00
|
|
|
|
|
|
|
#include <libyul/optimiser/BlockFlattener.h>
|
|
|
|
#include <libyul/optimiser/Disambiguator.h>
|
|
|
|
#include <libyul/optimiser/CommonSubexpressionEliminator.h>
|
2019-05-09 20:01:18 +00:00
|
|
|
#include <libyul/optimiser/ControlFlowSimplifier.h>
|
2018-10-16 19:40:10 +00:00
|
|
|
#include <libyul/optimiser/NameCollector.h>
|
2019-01-10 19:29:30 +00:00
|
|
|
#include <libyul/optimiser/EquivalentFunctionCombiner.h>
|
2018-10-16 19:40:10 +00:00
|
|
|
#include <libyul/optimiser/ExpressionSplitter.h>
|
|
|
|
#include <libyul/optimiser/FunctionGrouper.h>
|
|
|
|
#include <libyul/optimiser/FunctionHoister.h>
|
|
|
|
#include <libyul/optimiser/ExpressionInliner.h>
|
|
|
|
#include <libyul/optimiser/FullInliner.h>
|
2019-05-18 05:36:29 +00:00
|
|
|
#include <libyul/optimiser/ForLoopConditionIntoBody.h>
|
2018-11-07 10:18:02 +00:00
|
|
|
#include <libyul/optimiser/ForLoopInitRewriter.h>
|
2018-10-16 19:40:10 +00:00
|
|
|
#include <libyul/optimiser/MainFunction.h>
|
|
|
|
#include <libyul/optimiser/Rematerialiser.h>
|
|
|
|
#include <libyul/optimiser/ExpressionSimplifier.h>
|
|
|
|
#include <libyul/optimiser/UnusedPruner.h>
|
2019-03-28 13:18:17 +00:00
|
|
|
#include <libyul/optimiser/DeadCodeEliminator.h>
|
2018-10-16 19:40:10 +00:00
|
|
|
#include <libyul/optimiser/ExpressionJoiner.h>
|
2018-10-24 15:54:35 +00:00
|
|
|
#include <libyul/optimiser/RedundantAssignEliminator.h>
|
2019-01-16 10:44:45 +00:00
|
|
|
#include <libyul/optimiser/SSAReverser.h>
|
2018-10-24 15:54:35 +00:00
|
|
|
#include <libyul/optimiser/SSATransform.h>
|
2019-02-04 16:30:29 +00:00
|
|
|
#include <libyul/optimiser/StackCompressor.h>
|
2018-12-03 16:19:37 +00:00
|
|
|
#include <libyul/optimiser/StructuralSimplifier.h>
|
2018-12-13 14:53:19 +00:00
|
|
|
#include <libyul/optimiser/VarDeclInitializer.h>
|
2019-01-21 07:13:31 +00:00
|
|
|
#include <libyul/optimiser/VarNameCleaner.h>
|
2018-10-16 19:40:10 +00:00
|
|
|
|
2018-12-06 23:56:16 +00:00
|
|
|
#include <libyul/backends/evm/EVMDialect.h>
|
|
|
|
|
2018-10-16 19:40:10 +00:00
|
|
|
#include <libdevcore/JSON.h>
|
|
|
|
|
|
|
|
#include <boost/program_options.hpp>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <sstream>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
2018-11-14 16:11:55 +00:00
|
|
|
using namespace langutil;
|
2018-10-16 19:40:10 +00:00
|
|
|
using namespace dev::solidity;
|
2018-11-21 11:42:34 +00:00
|
|
|
using namespace 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
|
|
|
{
|
2018-11-30 13:34:08 +00:00
|
|
|
SourceReferenceFormatter formatter(cout);
|
2018-10-16 19:40:10 +00:00
|
|
|
|
|
|
|
for (auto const& error: m_errors)
|
2019-04-05 15:49:39 +00:00
|
|
|
formatter.printErrorInformation(*error);
|
2018-10-16 19:40:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool parse(string const& _input)
|
|
|
|
{
|
|
|
|
ErrorReporter errorReporter(m_errors);
|
2018-11-29 00:58:15 +00:00
|
|
|
shared_ptr<Scanner> scanner = make_shared<Scanner>(CharStream(_input, ""));
|
2018-12-20 17:55:32 +00:00
|
|
|
m_ast = yul::Parser(errorReporter, m_dialect).parse(scanner, false);
|
2018-10-16 19:40:10 +00:00
|
|
|
if (!m_ast || !errorReporter.errors().empty())
|
|
|
|
{
|
|
|
|
cout << "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-05 09:25:59 +00:00
|
|
|
langutil::Error::Type::SyntaxError,
|
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())
|
|
|
|
{
|
|
|
|
cout << "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;
|
|
|
|
}
|
|
|
|
|
|
|
|
void runInteractive(string source)
|
|
|
|
{
|
|
|
|
bool disambiguated = false;
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
cout << "----------------------" << endl;
|
|
|
|
cout << source << endl;
|
|
|
|
if (!parse(source))
|
|
|
|
return;
|
|
|
|
if (!disambiguated)
|
|
|
|
{
|
2019-05-16 08:56:56 +00:00
|
|
|
*m_ast = boost::get<yul::Block>(Disambiguator(m_dialect, *m_analysisInfo)(*m_ast));
|
2018-10-16 19:40:10 +00:00
|
|
|
m_analysisInfo.reset();
|
2019-05-16 08:56:56 +00:00
|
|
|
m_nameDispenser = make_shared<NameDispenser>(m_dialect, *m_ast);
|
2018-10-16 19:40:10 +00:00
|
|
|
disambiguated = true;
|
|
|
|
}
|
2018-12-13 14:53:19 +00:00
|
|
|
cout << "(q)quit/(f)flatten/(c)se/initialize var(d)ecls/(x)plit/(j)oin/(g)rouper/(h)oister/" << endl;
|
2019-01-21 07:13:31 +00:00
|
|
|
cout << " (e)xpr inline/(i)nline/(s)implify/varname c(l)eaner/(u)nusedprune/ss(a) transform/" << endl;
|
2019-05-18 05:36:29 +00:00
|
|
|
cout << " (r)edundant assign elim./re(m)aterializer/f(o)r-loop-init-rewriter/f(O)r-loop-condition-into-body/" << endl;
|
2019-02-04 16:30:29 +00:00
|
|
|
cout << " s(t)ructural simplifier/equi(v)alent function combiner/ssa re(V)erser/? " << endl;
|
2019-05-09 20:01:18 +00:00
|
|
|
cout << " co(n)trol flow simplifier/stack com(p)ressor/(D)ead code eliminator/? " << endl;
|
2018-10-16 19:40:10 +00:00
|
|
|
cout.flush();
|
|
|
|
int option = readStandardInputChar();
|
|
|
|
cout << ' ' << char(option) << endl;
|
|
|
|
switch (option)
|
|
|
|
{
|
|
|
|
case 'q':
|
|
|
|
return;
|
|
|
|
case 'f':
|
|
|
|
BlockFlattener{}(*m_ast);
|
|
|
|
break;
|
2018-11-07 10:18:02 +00:00
|
|
|
case 'o':
|
|
|
|
ForLoopInitRewriter{}(*m_ast);
|
|
|
|
break;
|
2019-05-18 05:36:29 +00:00
|
|
|
case 'O':
|
|
|
|
ForLoopConditionIntoBody{}(*m_ast);
|
|
|
|
break;
|
2018-10-16 19:40:10 +00:00
|
|
|
case 'c':
|
2019-05-16 08:56:56 +00:00
|
|
|
(CommonSubexpressionEliminator{m_dialect})(*m_ast);
|
2018-10-16 19:40:10 +00:00
|
|
|
break;
|
2018-11-07 22:19:42 +00:00
|
|
|
case 'd':
|
2018-12-13 14:53:19 +00:00
|
|
|
(VarDeclInitializer{})(*m_ast);
|
2018-11-07 22:19:42 +00:00
|
|
|
break;
|
2019-01-21 07:13:31 +00:00
|
|
|
case 'l':
|
2019-05-16 08:56:56 +00:00
|
|
|
VarNameCleaner{*m_ast, m_dialect}(*m_ast);
|
2019-01-21 07:13:31 +00:00
|
|
|
break;
|
2018-10-16 19:40:10 +00:00
|
|
|
case 'x':
|
2019-05-16 08:56:56 +00:00
|
|
|
ExpressionSplitter{m_dialect, *m_nameDispenser}(*m_ast);
|
2018-10-16 19:40:10 +00:00
|
|
|
break;
|
|
|
|
case 'j':
|
|
|
|
ExpressionJoiner::run(*m_ast);
|
|
|
|
break;
|
|
|
|
case 'g':
|
|
|
|
(FunctionGrouper{})(*m_ast);
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
(FunctionHoister{})(*m_ast);
|
|
|
|
break;
|
|
|
|
case 'e':
|
2019-05-16 08:56:56 +00:00
|
|
|
ExpressionInliner{m_dialect, *m_ast}.run();
|
2018-10-16 19:40:10 +00:00
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
FullInliner(*m_ast, *m_nameDispenser).run();
|
|
|
|
break;
|
|
|
|
case 's':
|
2019-05-16 08:56:56 +00:00
|
|
|
ExpressionSimplifier::run(m_dialect, *m_ast);
|
2018-10-16 19:40:10 +00:00
|
|
|
break;
|
2018-12-03 16:19:37 +00:00
|
|
|
case 't':
|
2019-05-16 08:56:56 +00:00
|
|
|
(StructuralSimplifier{m_dialect})(*m_ast);
|
2018-12-03 16:19:37 +00:00
|
|
|
break;
|
2019-05-09 20:01:18 +00:00
|
|
|
case 'n':
|
2019-05-20 12:30:32 +00:00
|
|
|
(ControlFlowSimplifier{m_dialect})(*m_ast);
|
2019-05-09 20:01:18 +00:00
|
|
|
break;
|
2018-10-16 19:40:10 +00:00
|
|
|
case 'u':
|
2019-05-16 08:56:56 +00:00
|
|
|
UnusedPruner::runUntilStabilised(m_dialect, *m_ast);
|
2018-10-16 19:40:10 +00:00
|
|
|
break;
|
2019-03-28 13:18:17 +00:00
|
|
|
case 'D':
|
2019-05-20 12:30:32 +00:00
|
|
|
DeadCodeEliminator{m_dialect}(*m_ast);
|
2019-03-28 13:18:17 +00:00
|
|
|
break;
|
2018-10-24 15:54:35 +00:00
|
|
|
case 'a':
|
|
|
|
SSATransform::run(*m_ast, *m_nameDispenser);
|
|
|
|
break;
|
|
|
|
case 'r':
|
2019-05-16 08:56:56 +00:00
|
|
|
RedundantAssignEliminator::run(m_dialect, *m_ast);
|
2018-10-24 15:54:35 +00:00
|
|
|
break;
|
2018-10-28 11:59:37 +00:00
|
|
|
case 'm':
|
2019-05-16 08:56:56 +00:00
|
|
|
Rematerialiser::run(m_dialect, *m_ast);
|
2018-10-28 11:59:37 +00:00
|
|
|
break;
|
2019-01-10 19:29:30 +00:00
|
|
|
case 'v':
|
|
|
|
EquivalentFunctionCombiner::run(*m_ast);
|
|
|
|
break;
|
2019-01-16 10:44:45 +00:00
|
|
|
case 'V':
|
2019-01-17 15:11:55 +00:00
|
|
|
SSAReverser::run(*m_ast);
|
2019-01-16 10:44:45 +00:00
|
|
|
break;
|
2019-02-04 16:30:29 +00:00
|
|
|
case 'p':
|
2019-03-14 17:25:33 +00:00
|
|
|
StackCompressor::run(m_dialect, *m_ast, true, 16);
|
2019-02-04 16:30:29 +00:00
|
|
|
break;
|
2018-10-16 19:40:10 +00:00
|
|
|
default:
|
|
|
|
cout << "Unknown option." << endl;
|
|
|
|
}
|
|
|
|
source = AsmPrinter{}(*m_ast);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ErrorList m_errors;
|
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;
|
|
|
|
if (arguments.count("input-file"))
|
|
|
|
YulOpti{}.runInteractive(readFileAsString(arguments["input-file"].as<string>()));
|
|
|
|
else
|
|
|
|
cout << options;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|