2018-01-18 11:15: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-01-18 11:15:22 +00:00
|
|
|
/**
|
|
|
|
* Module for applying replacement rules against Expressions.
|
|
|
|
*/
|
|
|
|
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/optimiser/SimplificationRules.h>
|
2018-01-18 11:15:22 +00:00
|
|
|
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/optimiser/ASTCopier.h>
|
|
|
|
#include <libyul/optimiser/Semantics.h>
|
|
|
|
#include <libyul/optimiser/SyntacticalEquality.h>
|
2019-11-28 13:22:17 +00:00
|
|
|
#include <libyul/optimiser/DataFlowAnalyzer.h>
|
2019-05-16 19:19:50 +00:00
|
|
|
#include <libyul/backends/evm/EVMDialect.h>
|
2020-10-29 14:00:27 +00:00
|
|
|
#include <libyul/AST.h>
|
2019-01-15 12:40:10 +00:00
|
|
|
#include <libyul/Utilities.h>
|
2018-01-18 11:15:22 +00:00
|
|
|
|
|
|
|
#include <libevmasm/RuleList.h>
|
|
|
|
|
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::evmasm;
|
|
|
|
using namespace solidity::langutil;
|
|
|
|
using namespace solidity::yul;
|
2018-01-18 11:15:22 +00:00
|
|
|
|
2020-05-15 23:59:57 +00:00
|
|
|
SimplificationRules::Rule const* SimplificationRules::findFirstMatch(
|
2018-10-02 16:07:50 +00:00
|
|
|
Expression const& _expr,
|
2018-12-20 17:55:32 +00:00
|
|
|
Dialect const& _dialect,
|
2019-11-28 13:22:17 +00:00
|
|
|
map<YulString, AssignedValue> const& _ssaValues
|
2018-10-02 16:07:50 +00:00
|
|
|
)
|
2018-01-18 11:15:22 +00:00
|
|
|
{
|
2019-05-16 19:19:50 +00:00
|
|
|
auto instruction = instructionAndArguments(_dialect, _expr);
|
|
|
|
if (!instruction)
|
2018-01-18 11:15:22 +00:00
|
|
|
return nullptr;
|
|
|
|
|
2020-05-15 23:59:57 +00:00
|
|
|
static std::map<std::optional<EVMVersion>, std::unique_ptr<SimplificationRules>> evmRules;
|
|
|
|
|
|
|
|
std::optional<EVMVersion> version;
|
|
|
|
if (yul::EVMDialect const* evmDialect = dynamic_cast<yul::EVMDialect const*>(&_dialect))
|
|
|
|
version = evmDialect->evmVersion();
|
|
|
|
|
|
|
|
if (!evmRules[version])
|
|
|
|
evmRules[version] = std::make_unique<SimplificationRules>(version);
|
|
|
|
|
|
|
|
SimplificationRules& rules = *evmRules[version];
|
2018-09-14 13:49:55 +00:00
|
|
|
assertThrow(rules.isInitialized(), OptimizerException, "Rule list not properly initialized.");
|
2018-01-18 11:15:22 +00:00
|
|
|
|
2019-05-16 19:19:50 +00:00
|
|
|
for (auto const& rule: rules.m_rules[uint8_t(instruction->first)])
|
2018-01-18 11:15:22 +00:00
|
|
|
{
|
|
|
|
rules.resetMatchGroups();
|
2018-12-20 17:55:32 +00:00
|
|
|
if (rule.pattern.matches(_expr, _dialect, _ssaValues))
|
2019-02-25 11:31:35 +00:00
|
|
|
if (!rule.feasible || rule.feasible())
|
|
|
|
return &rule;
|
2018-01-18 11:15:22 +00:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-09-14 13:49:55 +00:00
|
|
|
bool SimplificationRules::isInitialized() const
|
|
|
|
{
|
2019-12-11 16:31:36 +00:00
|
|
|
return !m_rules[uint8_t(evmasm::Instruction::ADD)].empty();
|
2018-09-14 13:49:55 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
std::optional<std::pair<evmasm::Instruction, vector<Expression> const*>>
|
2019-05-16 19:19:50 +00:00
|
|
|
SimplificationRules::instructionAndArguments(Dialect const& _dialect, Expression const& _expr)
|
|
|
|
{
|
2019-11-20 11:27:40 +00:00
|
|
|
if (holds_alternative<FunctionCall>(_expr))
|
2019-05-16 19:19:50 +00:00
|
|
|
if (auto const* dialect = dynamic_cast<EVMDialect const*>(&_dialect))
|
2019-11-19 15:42:49 +00:00
|
|
|
if (auto const* builtin = dialect->builtin(std::get<FunctionCall>(_expr).functionName.name))
|
2019-05-16 19:19:50 +00:00
|
|
|
if (builtin->instruction)
|
2019-11-19 15:42:49 +00:00
|
|
|
return make_pair(*builtin->instruction, &std::get<FunctionCall>(_expr).arguments);
|
2019-05-16 19:19:50 +00:00
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2020-05-15 23:59:57 +00:00
|
|
|
void SimplificationRules::addRules(std::vector<Rule> const& _rules)
|
2018-01-18 11:15:22 +00:00
|
|
|
{
|
|
|
|
for (auto const& r: _rules)
|
|
|
|
addRule(r);
|
|
|
|
}
|
|
|
|
|
2020-05-15 23:59:57 +00:00
|
|
|
void SimplificationRules::addRule(Rule const& _rule)
|
2018-01-18 11:15:22 +00:00
|
|
|
{
|
2018-11-07 11:04:46 +00:00
|
|
|
m_rules[uint8_t(_rule.pattern.instruction())].push_back(_rule);
|
2018-01-18 11:15:22 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 23:59:57 +00:00
|
|
|
SimplificationRules::SimplificationRules(std::optional<langutil::EVMVersion> _evmVersion)
|
2018-01-18 11:15:22 +00:00
|
|
|
{
|
2018-07-10 07:18:59 +00:00
|
|
|
// Multiple occurrences of one of these inside one rule must match the same equivalence class.
|
2018-01-18 11:15:22 +00:00
|
|
|
// Constants.
|
|
|
|
Pattern A(PatternKind::Constant);
|
|
|
|
Pattern B(PatternKind::Constant);
|
|
|
|
Pattern C(PatternKind::Constant);
|
|
|
|
// Anything.
|
2019-09-09 11:37:25 +00:00
|
|
|
Pattern W;
|
2018-01-18 11:15:22 +00:00
|
|
|
Pattern X;
|
|
|
|
Pattern Y;
|
2019-09-09 11:37:25 +00:00
|
|
|
Pattern Z;
|
2018-01-18 11:15:22 +00:00
|
|
|
A.setMatchGroup(1, m_matchGroups);
|
|
|
|
B.setMatchGroup(2, m_matchGroups);
|
|
|
|
C.setMatchGroup(3, m_matchGroups);
|
2019-09-09 11:37:25 +00:00
|
|
|
W.setMatchGroup(4, m_matchGroups);
|
|
|
|
X.setMatchGroup(5, m_matchGroups);
|
|
|
|
Y.setMatchGroup(6, m_matchGroups);
|
|
|
|
Z.setMatchGroup(7, m_matchGroups);
|
2018-01-18 11:15:22 +00:00
|
|
|
|
2020-05-15 23:59:57 +00:00
|
|
|
addRules(simplificationRuleList(_evmVersion, A, B, C, W, X, Y, Z));
|
2018-09-14 13:49:55 +00:00
|
|
|
assertThrow(isInitialized(), OptimizerException, "Rule list not properly initialized.");
|
2018-01-18 11:15:22 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
yul::Pattern::Pattern(evmasm::Instruction _instruction, initializer_list<Pattern> _arguments):
|
2018-01-18 11:15:22 +00:00
|
|
|
m_kind(PatternKind::Operation),
|
|
|
|
m_instruction(_instruction),
|
|
|
|
m_arguments(_arguments)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void Pattern::setMatchGroup(unsigned _group, map<unsigned, Expression const*>& _matchGroups)
|
|
|
|
{
|
|
|
|
m_matchGroup = _group;
|
|
|
|
m_matchGroups = &_matchGroups;
|
|
|
|
}
|
|
|
|
|
2018-12-20 17:55:32 +00:00
|
|
|
bool Pattern::matches(
|
|
|
|
Expression const& _expr,
|
|
|
|
Dialect const& _dialect,
|
2019-11-28 13:22:17 +00:00
|
|
|
map<YulString, AssignedValue> const& _ssaValues
|
2018-12-20 17:55:32 +00:00
|
|
|
) const
|
2018-01-18 11:15:22 +00:00
|
|
|
{
|
2018-10-02 16:07:50 +00:00
|
|
|
Expression const* expr = &_expr;
|
|
|
|
|
|
|
|
// Resolve the variable if possible.
|
|
|
|
// Do not do it for "Any" because we can check identity better for variables.
|
2019-11-19 15:42:49 +00:00
|
|
|
if (m_kind != PatternKind::Any && holds_alternative<Identifier>(_expr))
|
2018-10-02 16:07:50 +00:00
|
|
|
{
|
2019-11-19 15:42:49 +00:00
|
|
|
YulString varName = std::get<Identifier>(_expr).name;
|
2018-10-02 16:07:50 +00:00
|
|
|
if (_ssaValues.count(varName))
|
2019-11-28 13:22:17 +00:00
|
|
|
if (Expression const* new_expr = _ssaValues.at(varName).value)
|
2018-12-05 10:24:55 +00:00
|
|
|
expr = new_expr;
|
2018-10-02 16:07:50 +00:00
|
|
|
}
|
|
|
|
assertThrow(expr, OptimizerException, "");
|
|
|
|
|
2018-01-18 11:15:22 +00:00
|
|
|
if (m_kind == PatternKind::Constant)
|
|
|
|
{
|
2019-11-19 15:42:49 +00:00
|
|
|
if (!holds_alternative<Literal>(*expr))
|
2018-01-18 11:15:22 +00:00
|
|
|
return false;
|
2019-11-19 15:42:49 +00:00
|
|
|
Literal const& literal = std::get<Literal>(*expr);
|
2018-11-21 11:42:34 +00:00
|
|
|
if (literal.kind != LiteralKind::Number)
|
2018-01-18 11:15:22 +00:00
|
|
|
return false;
|
2018-10-29 14:12:02 +00:00
|
|
|
if (m_data && *m_data != u256(literal.value.str()))
|
2018-01-18 11:15:22 +00:00
|
|
|
return false;
|
|
|
|
assertThrow(m_arguments.empty(), OptimizerException, "");
|
|
|
|
}
|
|
|
|
else if (m_kind == PatternKind::Operation)
|
|
|
|
{
|
2019-05-16 19:19:50 +00:00
|
|
|
auto instrAndArgs = SimplificationRules::instructionAndArguments(_dialect, *expr);
|
|
|
|
if (!instrAndArgs || m_instruction != instrAndArgs->first)
|
2018-01-18 11:15:22 +00:00
|
|
|
return false;
|
2019-05-16 19:19:50 +00:00
|
|
|
assertThrow(m_arguments.size() == instrAndArgs->second->size(), OptimizerException, "");
|
2018-01-18 11:15:22 +00:00
|
|
|
for (size_t i = 0; i < m_arguments.size(); ++i)
|
2020-08-03 20:42:39 +00:00
|
|
|
{
|
|
|
|
Expression const& arg = instrAndArgs->second->at(i);
|
|
|
|
// If this is a direct function call instead of a variable or literal,
|
|
|
|
// we reject the match because side-effects could prevent us from
|
|
|
|
// arbitrarily modifying the code.
|
|
|
|
if (
|
|
|
|
holds_alternative<FunctionCall>(arg) ||
|
|
|
|
!m_arguments[i].matches(arg, _dialect, _ssaValues)
|
|
|
|
)
|
2018-01-18 11:15:22 +00:00
|
|
|
return false;
|
2020-08-03 20:42:39 +00:00
|
|
|
}
|
2018-01-18 11:15:22 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-10-02 16:07:50 +00:00
|
|
|
assertThrow(m_arguments.empty(), OptimizerException, "\"Any\" should not have arguments.");
|
2020-08-03 20:42:39 +00:00
|
|
|
assertThrow(!holds_alternative<FunctionCall>(*expr), OptimizerException, "\"Any\" at top-level.");
|
2018-01-18 11:15:22 +00:00
|
|
|
}
|
2018-10-02 16:07:50 +00:00
|
|
|
|
2018-01-18 11:15:22 +00:00
|
|
|
if (m_matchGroup)
|
|
|
|
{
|
2018-10-02 16:07:50 +00:00
|
|
|
// We support matching multiple expressions that require the same value
|
|
|
|
// based on identical ASTs, which have to be movable.
|
|
|
|
|
|
|
|
// TODO: add tests:
|
|
|
|
// - { let x := mload(0) let y := and(x, x) }
|
|
|
|
// - { let x := 4 let y := and(x, y) }
|
|
|
|
|
|
|
|
// This code uses `_expr` again for "Any", because we want the comparison to be done
|
|
|
|
// on the variables and not their values.
|
|
|
|
// The assumption is that CSE or local value numbering has been done prior to this step.
|
|
|
|
|
2018-01-18 11:15:22 +00:00
|
|
|
if (m_matchGroups->count(m_matchGroup))
|
2018-02-01 17:02:10 +00:00
|
|
|
{
|
2018-10-02 16:07:50 +00:00
|
|
|
assertThrow(m_kind == PatternKind::Any, OptimizerException, "Match group repetition for non-any.");
|
2018-02-01 17:02:10 +00:00
|
|
|
Expression const* firstMatch = (*m_matchGroups)[m_matchGroup];
|
|
|
|
assertThrow(firstMatch, OptimizerException, "Match set but to null.");
|
2020-08-03 20:42:39 +00:00
|
|
|
assertThrow(
|
|
|
|
!holds_alternative<FunctionCall>(_expr) &&
|
|
|
|
!holds_alternative<FunctionCall>(*firstMatch),
|
|
|
|
OptimizerException,
|
|
|
|
"Group matches have to be literals or variables."
|
|
|
|
);
|
|
|
|
|
|
|
|
return SyntacticallyEqual{}(*firstMatch, _expr);
|
2018-02-01 17:02:10 +00:00
|
|
|
}
|
2018-10-02 16:07:50 +00:00
|
|
|
else if (m_kind == PatternKind::Any)
|
2018-02-01 17:02:10 +00:00
|
|
|
(*m_matchGroups)[m_matchGroup] = &_expr;
|
2018-10-02 16:07:50 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
assertThrow(m_kind == PatternKind::Constant, OptimizerException, "Match group set for operation.");
|
|
|
|
// We do not use _expr here, because we want the actual number.
|
|
|
|
(*m_matchGroups)[m_matchGroup] = expr;
|
|
|
|
}
|
2018-01-18 11:15:22 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
evmasm::Instruction Pattern::instruction() const
|
2018-01-18 11:15:22 +00:00
|
|
|
{
|
|
|
|
assertThrow(m_kind == PatternKind::Operation, OptimizerException, "");
|
|
|
|
return m_instruction;
|
|
|
|
}
|
|
|
|
|
|
|
|
Expression Pattern::toExpression(SourceLocation const& _location) const
|
|
|
|
{
|
|
|
|
if (matchGroup())
|
|
|
|
return ASTCopier().translate(matchGroupValue());
|
|
|
|
if (m_kind == PatternKind::Constant)
|
|
|
|
{
|
|
|
|
assertThrow(m_data, OptimizerException, "No match group and no constant value given.");
|
2019-12-11 16:31:36 +00:00
|
|
|
return Literal{_location, LiteralKind::Number, YulString{util::formatNumber(*m_data)}, {}};
|
2018-01-18 11:15:22 +00:00
|
|
|
}
|
|
|
|
else if (m_kind == PatternKind::Operation)
|
|
|
|
{
|
|
|
|
vector<Expression> arguments;
|
|
|
|
for (auto const& arg: m_arguments)
|
|
|
|
arguments.emplace_back(arg.toExpression(_location));
|
2019-11-06 16:25:03 +00:00
|
|
|
|
|
|
|
string name = instructionInfo(m_instruction).name;
|
|
|
|
transform(begin(name), end(name), begin(name), [](auto _c) { return tolower(_c); });
|
|
|
|
|
|
|
|
return FunctionCall{
|
|
|
|
_location,
|
|
|
|
Identifier{_location, YulString{name}},
|
|
|
|
std::move(arguments)
|
|
|
|
};
|
2018-01-18 11:15:22 +00:00
|
|
|
}
|
|
|
|
assertThrow(false, OptimizerException, "Pattern of kind 'any', but no match group.");
|
|
|
|
}
|
|
|
|
|
|
|
|
u256 Pattern::d() const
|
|
|
|
{
|
2019-11-19 15:42:49 +00:00
|
|
|
return valueOfNumberLiteral(std::get<Literal>(matchGroupValue()));
|
2018-01-18 11:15:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Expression const& Pattern::matchGroupValue() const
|
|
|
|
{
|
|
|
|
assertThrow(m_matchGroup > 0, OptimizerException, "");
|
|
|
|
assertThrow(!!m_matchGroups, OptimizerException, "");
|
|
|
|
assertThrow((*m_matchGroups)[m_matchGroup], OptimizerException, "");
|
|
|
|
return *(*m_matchGroups)[m_matchGroup];
|
|
|
|
}
|