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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libyul/optimiser/Suite.h>
|
|
|
|
|
|
|
|
#include <libyul/optimiser/Disambiguator.h>
|
2018-12-13 14:26:01 +00:00
|
|
|
#include <libyul/optimiser/VarDeclInitializer.h>
|
2019-01-08 14:19:35 +00:00
|
|
|
#include <libyul/optimiser/BlockFlattener.h>
|
2019-08-13 16:38:11 +00:00
|
|
|
#include <libyul/optimiser/CallGraphGenerator.h>
|
2020-02-07 00:28:24 +00:00
|
|
|
#include <libyul/optimiser/CircularReferencesPruner.h>
|
2019-05-09 19:56:56 +00:00
|
|
|
#include <libyul/optimiser/ControlFlowSimplifier.h>
|
2019-09-11 09:42:59 +00:00
|
|
|
#include <libyul/optimiser/ConditionalSimplifier.h>
|
2019-10-07 08:06:00 +00:00
|
|
|
#include <libyul/optimiser/ConditionalUnsimplifier.h>
|
2019-03-28 13:18:17 +00:00
|
|
|
#include <libyul/optimiser/DeadCodeEliminator.h>
|
2018-10-16 19:39:22 +00:00
|
|
|
#include <libyul/optimiser/FunctionGrouper.h>
|
|
|
|
#include <libyul/optimiser/FunctionHoister.h>
|
2021-11-11 14:54:38 +00:00
|
|
|
#include <libyul/optimiser/EqualStoreEliminator.h>
|
2019-01-10 19:29:30 +00:00
|
|
|
#include <libyul/optimiser/EquivalentFunctionCombiner.h>
|
2018-10-16 19:39:22 +00:00
|
|
|
#include <libyul/optimiser/ExpressionSplitter.h>
|
|
|
|
#include <libyul/optimiser/ExpressionJoiner.h>
|
|
|
|
#include <libyul/optimiser/ExpressionInliner.h>
|
|
|
|
#include <libyul/optimiser/FullInliner.h>
|
2019-09-11 14:30:47 +00:00
|
|
|
#include <libyul/optimiser/ForLoopConditionIntoBody.h>
|
2019-09-11 16:55:31 +00:00
|
|
|
#include <libyul/optimiser/ForLoopConditionOutOfBody.h>
|
2018-11-07 10:18:02 +00:00
|
|
|
#include <libyul/optimiser/ForLoopInitRewriter.h>
|
2019-09-11 09:42:59 +00:00
|
|
|
#include <libyul/optimiser/ForLoopConditionIntoBody.h>
|
2020-11-26 17:51:32 +00:00
|
|
|
#include <libyul/optimiser/FunctionSpecializer.h>
|
2020-09-10 14:18:57 +00:00
|
|
|
#include <libyul/optimiser/ReasoningBasedSimplifier.h>
|
2018-10-16 19:39:22 +00:00
|
|
|
#include <libyul/optimiser/Rematerialiser.h>
|
2020-07-10 16:56:32 +00:00
|
|
|
#include <libyul/optimiser/UnusedFunctionParameterPruner.h>
|
2018-10-16 19:39:22 +00:00
|
|
|
#include <libyul/optimiser/UnusedPruner.h>
|
|
|
|
#include <libyul/optimiser/ExpressionSimplifier.h>
|
|
|
|
#include <libyul/optimiser/CommonSubexpressionEliminator.h>
|
2019-08-13 16:38:11 +00:00
|
|
|
#include <libyul/optimiser/Semantics.h>
|
2019-01-16 10:44:45 +00:00
|
|
|
#include <libyul/optimiser/SSAReverser.h>
|
2018-10-16 19:39:22 +00:00
|
|
|
#include <libyul/optimiser/SSATransform.h>
|
2019-02-04 16:30:29 +00:00
|
|
|
#include <libyul/optimiser/StackCompressor.h>
|
2020-07-02 10:48:20 +00:00
|
|
|
#include <libyul/optimiser/StackLimitEvader.h>
|
2018-12-03 16:19:37 +00:00
|
|
|
#include <libyul/optimiser/StructuralSimplifier.h>
|
2019-10-07 06:16:28 +00:00
|
|
|
#include <libyul/optimiser/SyntacticalEquality.h>
|
2021-11-23 09:37:12 +00:00
|
|
|
#include <libyul/optimiser/UnusedAssignEliminator.h>
|
2021-05-05 16:02:35 +00:00
|
|
|
#include <libyul/optimiser/UnusedStoreEliminator.h>
|
2019-01-21 07:13:31 +00:00
|
|
|
#include <libyul/optimiser/VarNameCleaner.h>
|
2019-08-29 14:43:06 +00:00
|
|
|
#include <libyul/optimiser/LoadResolver.h>
|
2019-09-18 08:47:49 +00:00
|
|
|
#include <libyul/optimiser/LoopInvariantCodeMotion.h>
|
2019-03-04 17:50:55 +00:00
|
|
|
#include <libyul/optimiser/Metrics.h>
|
2020-08-06 19:44:50 +00:00
|
|
|
#include <libyul/optimiser/NameSimplifier.h>
|
2019-05-28 10:57:15 +00:00
|
|
|
#include <libyul/backends/evm/ConstantOptimiser.h>
|
2019-01-21 07:13:31 +00:00
|
|
|
#include <libyul/AsmAnalysis.h>
|
2018-11-23 10:18:57 +00:00
|
|
|
#include <libyul/AsmAnalysisInfo.h>
|
|
|
|
#include <libyul/AsmPrinter.h>
|
2020-10-29 14:00:27 +00:00
|
|
|
#include <libyul/AST.h>
|
2019-07-09 15:23:14 +00:00
|
|
|
#include <libyul/Object.h>
|
2018-10-16 19:39:22 +00:00
|
|
|
|
2019-05-09 15:56:25 +00:00
|
|
|
#include <libyul/backends/wasm/WasmDialect.h>
|
2019-01-21 07:13:31 +00:00
|
|
|
#include <libyul/backends/evm/NoOutputAssembly.h>
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/CommonData.h>
|
2018-10-16 19:39:22 +00:00
|
|
|
|
2020-07-02 10:48:20 +00:00
|
|
|
#include <libyul/CompilabilityChecker.h>
|
2020-02-29 23:28:12 +00:00
|
|
|
|
2021-03-31 18:03:04 +00:00
|
|
|
#include <range/v3/view/map.hpp>
|
2021-04-24 02:40:41 +00:00
|
|
|
#include <range/v3/action/remove.hpp>
|
2021-03-31 18:03:04 +00:00
|
|
|
|
2021-08-21 16:03:35 +00:00
|
|
|
#include <limits>
|
2021-10-06 14:00:16 +00:00
|
|
|
#include <tuple>
|
2021-08-21 16:03:35 +00:00
|
|
|
|
2018-10-16 19:39:22 +00:00
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::yul;
|
2018-10-16 19:39:22 +00:00
|
|
|
|
|
|
|
void OptimiserSuite::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
|
|
|
string_view _optimisationSequence,
|
2021-03-11 11:42:59 +00:00
|
|
|
optional<size_t> _expectedExecutionsPerDeployment,
|
2018-10-29 14:12:02 +00:00
|
|
|
set<YulString> const& _externallyUsedIdentifiers
|
2018-10-16 19:39:22 +00:00
|
|
|
)
|
|
|
|
{
|
2021-08-12 15:17:21 +00:00
|
|
|
EVMDialect const* evmDialect = dynamic_cast<EVMDialect const*>(&_dialect);
|
|
|
|
bool usesOptimizedCodeGenerator =
|
|
|
|
_optimizeStackAllocation &&
|
|
|
|
evmDialect &&
|
|
|
|
evmDialect->evmVersion().canOverchargeGasForCall() &&
|
|
|
|
evmDialect->providesObjectAccess();
|
2018-10-29 14:12:02 +00:00
|
|
|
set<YulString> reservedIdentifiers = _externallyUsedIdentifiers;
|
2019-05-29 21:14:06 +00:00
|
|
|
reservedIdentifiers += _dialect.fixedFunctionNames();
|
2018-10-16 19:39:22 +00:00
|
|
|
|
2019-11-19 15:42:49 +00:00
|
|
|
*_object.code = std::get<Block>(Disambiguator(
|
2019-07-09 15:23:14 +00:00
|
|
|
_dialect,
|
|
|
|
*_object.analysisInfo,
|
|
|
|
reservedIdentifiers
|
|
|
|
)(*_object.code));
|
|
|
|
Block& ast = *_object.code;
|
2018-10-16 19:39:22 +00:00
|
|
|
|
2021-11-03 11:12:37 +00:00
|
|
|
NameDispenser dispenser{_dialect, ast, reservedIdentifiers};
|
|
|
|
OptimiserStepContext context{_dialect, dispenser, reservedIdentifiers, _expectedExecutionsPerDeployment};
|
|
|
|
|
|
|
|
OptimiserSuite suite(context, Debug::None);
|
2019-09-23 14:32:50 +00:00
|
|
|
|
2020-10-06 20:27:20 +00:00
|
|
|
// Some steps depend on properties ensured by FunctionHoister, BlockFlattener, FunctionGrouper and
|
2020-04-24 12:19:36 +00:00
|
|
|
// ForLoopInitRewriter. Run them first to be able to run arbitrary sequences safely.
|
2021-11-09 12:25:00 +00:00
|
|
|
suite.runSequence("hgfo", ast);
|
2020-04-24 12:19:36 +00:00
|
|
|
|
2020-11-30 11:50:02 +00:00
|
|
|
NameSimplifier::run(suite.m_context, ast);
|
2020-04-24 12:19:36 +00:00
|
|
|
// Now the user-supplied part
|
|
|
|
suite.runSequence(_optimisationSequence, ast);
|
2018-10-16 19:39:22 +00:00
|
|
|
|
2019-03-14 17:25:33 +00:00
|
|
|
// This is a tuning parameter, but actually just prevents infinite loops.
|
|
|
|
size_t stackCompressorMaxIterations = 16;
|
2020-03-01 00:02:45 +00:00
|
|
|
suite.runSequence("g", ast);
|
|
|
|
|
2019-03-14 17:25:33 +00:00
|
|
|
// We ignore the return value because we will get a much better error
|
|
|
|
// message once we perform code generation.
|
2021-08-12 15:17:21 +00:00
|
|
|
if (!usesOptimizedCodeGenerator)
|
|
|
|
StackCompressor::run(
|
|
|
|
_dialect,
|
|
|
|
_object,
|
|
|
|
_optimizeStackAllocation,
|
|
|
|
stackCompressorMaxIterations
|
|
|
|
);
|
2020-03-01 00:02:45 +00:00
|
|
|
suite.runSequence("fDnTOc g", ast);
|
2019-05-15 08:33:35 +00:00
|
|
|
|
2021-08-12 15:17:21 +00:00
|
|
|
if (evmDialect)
|
2019-05-29 21:14:06 +00:00
|
|
|
{
|
|
|
|
yulAssert(_meter, "");
|
2021-08-12 15:17:21 +00:00
|
|
|
ConstantOptimiser{*evmDialect, *_meter}(ast);
|
|
|
|
if (usesOptimizedCodeGenerator)
|
|
|
|
{
|
|
|
|
StackCompressor::run(
|
2020-07-02 10:48:20 +00:00
|
|
|
_dialect,
|
|
|
|
_object,
|
2021-08-12 15:17:21 +00:00
|
|
|
_optimizeStackAllocation,
|
|
|
|
stackCompressorMaxIterations
|
|
|
|
);
|
|
|
|
if (evmDialect->providesObjectAccess())
|
|
|
|
StackLimitEvader::run(suite.m_context, _object);
|
|
|
|
}
|
|
|
|
else if (evmDialect->providesObjectAccess() && _optimizeStackAllocation)
|
|
|
|
StackLimitEvader::run(suite.m_context, _object);
|
2019-05-29 21:14:06 +00:00
|
|
|
}
|
2019-05-09 15:56:25 +00:00
|
|
|
else if (dynamic_cast<WasmDialect const*>(&_dialect))
|
|
|
|
{
|
|
|
|
// If the first statement is an empty block, remove it.
|
|
|
|
// We should only have function definitions after that.
|
2019-11-19 15:42:49 +00:00
|
|
|
if (ast.statements.size() > 1 && std::get<Block>(ast.statements.front()).statements.empty())
|
2019-05-09 15:56:25 +00:00
|
|
|
ast.statements.erase(ast.statements.begin());
|
|
|
|
}
|
2020-11-30 11:50:02 +00:00
|
|
|
|
2021-11-03 11:12:37 +00:00
|
|
|
dispenser.reset(ast);
|
2020-11-30 11:50:02 +00:00
|
|
|
NameSimplifier::run(suite.m_context, ast);
|
2020-01-29 17:05:18 +00:00
|
|
|
VarNameCleaner::run(suite.m_context, ast);
|
2019-02-04 16:30:29 +00:00
|
|
|
|
2019-07-09 15:23:14 +00:00
|
|
|
*_object.analysisInfo = AsmAnalyzer::analyzeStrictAssertCorrect(_dialect, _object);
|
2018-10-16 19:39:22 +00:00
|
|
|
}
|
2019-09-23 14:32:50 +00:00
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
template <class... Step>
|
|
|
|
map<string, unique_ptr<OptimiserStep>> optimiserStepCollection()
|
|
|
|
{
|
|
|
|
map<string, unique_ptr<OptimiserStep>> ret;
|
2019-12-11 16:31:36 +00:00
|
|
|
for (unique_ptr<OptimiserStep>& s: util::make_vector<unique_ptr<OptimiserStep>>(
|
2019-09-23 14:32:50 +00:00
|
|
|
(make_unique<OptimiserStepInstance<Step>>())...
|
|
|
|
))
|
|
|
|
{
|
|
|
|
yulAssert(!ret.count(s->name), "");
|
|
|
|
ret[s->name] = std::move(s);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
map<string, unique_ptr<OptimiserStep>> const& OptimiserSuite::allSteps()
|
|
|
|
{
|
|
|
|
static map<string, unique_ptr<OptimiserStep>> instance;
|
|
|
|
if (instance.empty())
|
|
|
|
instance = optimiserStepCollection<
|
|
|
|
BlockFlattener,
|
2020-02-07 00:28:24 +00:00
|
|
|
CircularReferencesPruner,
|
2019-09-23 14:32:50 +00:00
|
|
|
CommonSubexpressionEliminator,
|
2019-09-11 09:42:59 +00:00
|
|
|
ConditionalSimplifier,
|
2019-10-07 08:06:00 +00:00
|
|
|
ConditionalUnsimplifier,
|
2019-09-23 14:32:50 +00:00
|
|
|
ControlFlowSimplifier,
|
|
|
|
DeadCodeEliminator,
|
2021-11-11 14:54:38 +00:00
|
|
|
EqualStoreEliminator,
|
2019-09-23 14:32:50 +00:00
|
|
|
EquivalentFunctionCombiner,
|
|
|
|
ExpressionInliner,
|
|
|
|
ExpressionJoiner,
|
|
|
|
ExpressionSimplifier,
|
|
|
|
ExpressionSplitter,
|
|
|
|
ForLoopConditionIntoBody,
|
|
|
|
ForLoopConditionOutOfBody,
|
|
|
|
ForLoopInitRewriter,
|
|
|
|
FullInliner,
|
|
|
|
FunctionGrouper,
|
|
|
|
FunctionHoister,
|
2020-11-26 17:51:32 +00:00
|
|
|
FunctionSpecializer,
|
2019-09-23 14:32:50 +00:00
|
|
|
LiteralRematerialiser,
|
|
|
|
LoadResolver,
|
2019-09-18 08:47:49 +00:00
|
|
|
LoopInvariantCodeMotion,
|
2021-11-23 09:37:12 +00:00
|
|
|
UnusedAssignEliminator,
|
2021-05-05 16:02:35 +00:00
|
|
|
UnusedStoreEliminator,
|
2020-09-10 14:18:57 +00:00
|
|
|
ReasoningBasedSimplifier,
|
2019-09-23 14:32:50 +00:00
|
|
|
Rematerialiser,
|
|
|
|
SSAReverser,
|
|
|
|
SSATransform,
|
|
|
|
StructuralSimplifier,
|
2020-07-10 16:56:32 +00:00
|
|
|
UnusedFunctionParameterPruner,
|
2019-09-23 14:32:50 +00:00
|
|
|
UnusedPruner,
|
2020-01-29 17:05:18 +00:00
|
|
|
VarDeclInitializer
|
2019-09-23 14:32:50 +00:00
|
|
|
>();
|
2020-01-29 17:05:18 +00:00
|
|
|
// Does not include VarNameCleaner because it destroys the property of unique names.
|
2020-11-30 11:50:02 +00:00
|
|
|
// Does not include NameSimplifier.
|
2019-09-23 14:32:50 +00:00
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
2020-01-24 21:03:44 +00:00
|
|
|
map<string, char> const& OptimiserSuite::stepNameToAbbreviationMap()
|
|
|
|
{
|
|
|
|
static map<string, char> lookupTable{
|
|
|
|
{BlockFlattener::name, 'f'},
|
2020-02-07 00:28:24 +00:00
|
|
|
{CircularReferencesPruner::name, 'l'},
|
2020-01-24 21:03:44 +00:00
|
|
|
{CommonSubexpressionEliminator::name, 'c'},
|
|
|
|
{ConditionalSimplifier::name, 'C'},
|
|
|
|
{ConditionalUnsimplifier::name, 'U'},
|
|
|
|
{ControlFlowSimplifier::name, 'n'},
|
|
|
|
{DeadCodeEliminator::name, 'D'},
|
2021-11-11 14:54:38 +00:00
|
|
|
{EqualStoreEliminator::name, 'E'},
|
2020-01-24 21:03:44 +00:00
|
|
|
{EquivalentFunctionCombiner::name, 'v'},
|
|
|
|
{ExpressionInliner::name, 'e'},
|
|
|
|
{ExpressionJoiner::name, 'j'},
|
|
|
|
{ExpressionSimplifier::name, 's'},
|
|
|
|
{ExpressionSplitter::name, 'x'},
|
|
|
|
{ForLoopConditionIntoBody::name, 'I'},
|
|
|
|
{ForLoopConditionOutOfBody::name, 'O'},
|
|
|
|
{ForLoopInitRewriter::name, 'o'},
|
|
|
|
{FullInliner::name, 'i'},
|
|
|
|
{FunctionGrouper::name, 'g'},
|
|
|
|
{FunctionHoister::name, 'h'},
|
2020-11-26 17:51:32 +00:00
|
|
|
{FunctionSpecializer::name, 'F'},
|
2020-01-24 21:03:44 +00:00
|
|
|
{LiteralRematerialiser::name, 'T'},
|
|
|
|
{LoadResolver::name, 'L'},
|
|
|
|
{LoopInvariantCodeMotion::name, 'M'},
|
2020-09-10 14:18:57 +00:00
|
|
|
{ReasoningBasedSimplifier::name, 'R'},
|
2021-11-23 09:37:12 +00:00
|
|
|
{UnusedAssignEliminator::name, 'r'},
|
2021-05-05 16:02:35 +00:00
|
|
|
{UnusedStoreEliminator::name, 'S'},
|
2020-01-24 21:03:44 +00:00
|
|
|
{Rematerialiser::name, 'm'},
|
|
|
|
{SSAReverser::name, 'V'},
|
|
|
|
{SSATransform::name, 'a'},
|
|
|
|
{StructuralSimplifier::name, 't'},
|
2020-07-10 16:56:32 +00:00
|
|
|
{UnusedFunctionParameterPruner::name, 'p'},
|
2020-01-24 21:03:44 +00:00
|
|
|
{UnusedPruner::name, 'u'},
|
|
|
|
{VarDeclInitializer::name, 'd'},
|
|
|
|
};
|
|
|
|
yulAssert(lookupTable.size() == allSteps().size(), "");
|
2020-04-24 12:13:34 +00:00
|
|
|
yulAssert((
|
|
|
|
util::convertContainer<set<char>>(string(NonStepAbbreviations)) -
|
2021-03-31 18:03:04 +00:00
|
|
|
util::convertContainer<set<char>>(lookupTable | ranges::views::values)
|
2020-04-24 12:13:34 +00:00
|
|
|
).size() == string(NonStepAbbreviations).size(),
|
|
|
|
"Step abbreviation conflicts with a character reserved for another syntactic element"
|
|
|
|
);
|
2020-01-24 21:03:44 +00:00
|
|
|
|
|
|
|
return lookupTable;
|
|
|
|
}
|
|
|
|
|
|
|
|
map<char, string> const& OptimiserSuite::stepAbbreviationToNameMap()
|
|
|
|
{
|
|
|
|
static map<char, string> lookupTable = util::invertMap(stepNameToAbbreviationMap());
|
|
|
|
|
|
|
|
return lookupTable;
|
|
|
|
}
|
|
|
|
|
2021-10-06 14:44:29 +00:00
|
|
|
void OptimiserSuite::validateSequence(string_view _stepAbbreviations)
|
2020-02-29 23:28:12 +00:00
|
|
|
{
|
2021-08-21 16:03:35 +00:00
|
|
|
int8_t nestingLevel = 0;
|
2020-04-24 12:15:45 +00:00
|
|
|
for (char abbreviation: _stepAbbreviations)
|
2020-02-29 23:28:12 +00:00
|
|
|
switch (abbreviation)
|
|
|
|
{
|
2020-04-24 12:15:45 +00:00
|
|
|
case ' ':
|
|
|
|
case '\n':
|
|
|
|
break;
|
2020-04-16 15:13:56 +00:00
|
|
|
case '[':
|
2021-08-21 16:03:35 +00:00
|
|
|
assertThrow(nestingLevel < numeric_limits<int8_t>::max(), OptimizerException, "Brackets nested too deep");
|
|
|
|
nestingLevel++;
|
2020-02-29 23:28:12 +00:00
|
|
|
break;
|
2020-04-16 15:13:56 +00:00
|
|
|
case ']':
|
2021-08-21 16:03:35 +00:00
|
|
|
nestingLevel--;
|
|
|
|
assertThrow(nestingLevel >= 0, OptimizerException, "Unbalanced brackets");
|
2020-02-29 23:28:12 +00:00
|
|
|
break;
|
|
|
|
default:
|
2020-09-11 11:39:11 +00:00
|
|
|
{
|
2020-04-24 12:13:34 +00:00
|
|
|
yulAssert(
|
|
|
|
string(NonStepAbbreviations).find(abbreviation) == string::npos,
|
|
|
|
"Unhandled syntactic element in the abbreviation sequence"
|
|
|
|
);
|
2020-02-29 23:28:12 +00:00
|
|
|
assertThrow(
|
|
|
|
stepAbbreviationToNameMap().find(abbreviation) != stepAbbreviationToNameMap().end(),
|
|
|
|
OptimizerException,
|
2020-04-24 12:15:45 +00:00
|
|
|
"'"s + abbreviation + "' is not a valid step abbreviation"
|
2020-02-29 23:28:12 +00:00
|
|
|
);
|
2020-09-11 11:39:11 +00:00
|
|
|
optional<string> invalid = allSteps().at(stepAbbreviationToNameMap().at(abbreviation))->invalidInCurrentEnvironment();
|
|
|
|
assertThrow(
|
|
|
|
!invalid.has_value(),
|
|
|
|
OptimizerException,
|
|
|
|
"'"s + abbreviation + "' is invalid in the current environment: " + *invalid
|
|
|
|
);
|
|
|
|
}
|
2020-02-29 23:28:12 +00:00
|
|
|
}
|
2021-08-21 16:03:35 +00:00
|
|
|
assertThrow(nestingLevel == 0, OptimizerException, "Unbalanced brackets");
|
2020-04-24 12:15:45 +00:00
|
|
|
}
|
|
|
|
|
2021-10-06 14:00:16 +00:00
|
|
|
void OptimiserSuite::runSequence(string_view _stepAbbreviations, Block& _ast, bool _repeatUntilStable)
|
2020-04-24 12:15:45 +00:00
|
|
|
{
|
|
|
|
validateSequence(_stepAbbreviations);
|
|
|
|
|
2021-10-06 14:00:16 +00:00
|
|
|
// This splits 'aaa[bbb]ccc...' into 'aaa' and '[bbb]ccc...'.
|
|
|
|
auto extractNonNestedPrefix = [](string_view _tail) -> tuple<string_view, string_view>
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < _tail.size(); ++i)
|
|
|
|
{
|
|
|
|
yulAssert(_tail[i] != ']');
|
|
|
|
if (_tail[i] == '[')
|
|
|
|
return {_tail.substr(0, i), _tail.substr(i)};
|
|
|
|
}
|
|
|
|
return {_tail, {}};
|
|
|
|
};
|
|
|
|
|
|
|
|
// This splits '[bbb]ccc...' into 'bbb' and 'ccc...'.
|
|
|
|
auto extractBracketContent = [](string_view _tail) -> tuple<string_view, string_view>
|
|
|
|
{
|
|
|
|
yulAssert(!_tail.empty() && _tail[0] == '[');
|
|
|
|
|
|
|
|
size_t contentLength = 0;
|
|
|
|
int8_t nestingLevel = 1;
|
|
|
|
for (char abbreviation: _tail.substr(1))
|
|
|
|
{
|
|
|
|
if (abbreviation == '[')
|
|
|
|
{
|
|
|
|
yulAssert(nestingLevel < numeric_limits<int8_t>::max());
|
|
|
|
++nestingLevel;
|
|
|
|
}
|
|
|
|
else if (abbreviation == ']')
|
|
|
|
{
|
|
|
|
--nestingLevel;
|
|
|
|
if (nestingLevel == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++contentLength;
|
|
|
|
}
|
|
|
|
yulAssert(nestingLevel == 0);
|
|
|
|
yulAssert(_tail[contentLength + 1] == ']');
|
|
|
|
|
|
|
|
return {_tail.substr(1, contentLength), _tail.substr(contentLength + 2)};
|
|
|
|
};
|
|
|
|
|
2021-10-06 14:44:29 +00:00
|
|
|
auto abbreviationsToSteps = [](string_view _sequence) -> vector<string>
|
2020-02-29 23:28:12 +00:00
|
|
|
{
|
|
|
|
vector<string> steps;
|
|
|
|
for (char abbreviation: _sequence)
|
2021-10-06 14:44:29 +00:00
|
|
|
if (abbreviation != ' ' && abbreviation != '\n')
|
|
|
|
steps.emplace_back(stepAbbreviationToNameMap().at(abbreviation));
|
2020-02-29 23:28:12 +00:00
|
|
|
return steps;
|
|
|
|
};
|
|
|
|
|
2021-10-06 14:00:16 +00:00
|
|
|
vector<tuple<string_view, bool>> subsequences;
|
|
|
|
string_view tail = _stepAbbreviations;
|
|
|
|
while (!tail.empty())
|
|
|
|
{
|
|
|
|
string_view subsequence;
|
|
|
|
tie(subsequence, tail) = extractNonNestedPrefix(tail);
|
|
|
|
if (subsequence.size() > 0)
|
|
|
|
subsequences.push_back({subsequence, false});
|
|
|
|
|
|
|
|
if (tail.empty())
|
|
|
|
break;
|
|
|
|
|
|
|
|
tie(subsequence, tail) = extractBracketContent(tail);
|
|
|
|
if (subsequence.size() > 0)
|
|
|
|
subsequences.push_back({subsequence, true});
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t codeSize = 0;
|
|
|
|
for (size_t round = 0; round < MaxRounds; ++round)
|
2020-02-29 23:28:12 +00:00
|
|
|
{
|
2021-10-06 14:00:16 +00:00
|
|
|
for (auto const& [subsequence, repeat]: subsequences)
|
|
|
|
{
|
|
|
|
if (repeat)
|
|
|
|
runSequence(subsequence, _ast, true);
|
|
|
|
else
|
|
|
|
runSequence(abbreviationsToSteps(subsequence), _ast);
|
|
|
|
}
|
2020-02-29 23:28:12 +00:00
|
|
|
|
2021-10-06 14:00:16 +00:00
|
|
|
if (!_repeatUntilStable)
|
|
|
|
break;
|
2020-02-29 23:28:12 +00:00
|
|
|
|
2021-10-06 14:00:16 +00:00
|
|
|
size_t newSize = CodeSize::codeSizeIncludingFunctions(_ast);
|
|
|
|
if (newSize == codeSize)
|
|
|
|
break;
|
|
|
|
codeSize = newSize;
|
2020-02-29 23:28:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-23 14:32:50 +00:00
|
|
|
void OptimiserSuite::runSequence(std::vector<string> const& _steps, Block& _ast)
|
|
|
|
{
|
2019-10-07 06:16:28 +00:00
|
|
|
unique_ptr<Block> copy;
|
|
|
|
if (m_debug == Debug::PrintChanges)
|
2019-11-19 15:42:49 +00:00
|
|
|
copy = make_unique<Block>(std::get<Block>(ASTCopier{}(_ast)));
|
2019-09-23 14:32:50 +00:00
|
|
|
for (string const& step: _steps)
|
|
|
|
{
|
|
|
|
if (m_debug == Debug::PrintStep)
|
|
|
|
cout << "Running " << step << endl;
|
|
|
|
allSteps().at(step)->run(m_context, _ast);
|
2019-10-07 06:16:28 +00:00
|
|
|
if (m_debug == Debug::PrintChanges)
|
|
|
|
{
|
|
|
|
// TODO should add switch to also compare variable names!
|
|
|
|
if (SyntacticallyEqual{}.statementEqual(_ast, *copy))
|
|
|
|
cout << "== Running " << step << " did not cause changes." << endl;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cout << "== Running " << step << " changed the AST." << endl;
|
|
|
|
cout << AsmPrinter{}(_ast) << endl;
|
2019-11-19 15:42:49 +00:00
|
|
|
copy = make_unique<Block>(std::get<Block>(ASTCopier{}(_ast)));
|
2019-10-07 06:16:28 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-23 14:32:50 +00:00
|
|
|
}
|
|
|
|
}
|