2018-09-25 14:29:46 +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-09-25 14:29:46 +00:00
|
|
|
/**
|
|
|
|
* Optimiser component that turns complex expressions into multiple variable
|
|
|
|
* declarations.
|
|
|
|
*/
|
|
|
|
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/optimiser/ExpressionSplitter.h>
|
2018-09-25 14:29:46 +00:00
|
|
|
|
2019-09-23 14:32:50 +00:00
|
|
|
#include <libyul/optimiser/OptimiserStep.h>
|
2020-02-14 14:33:54 +00:00
|
|
|
#include <libyul/optimiser/TypeInfo.h>
|
2018-09-25 14:29:46 +00:00
|
|
|
|
2020-10-29 14:00:27 +00:00
|
|
|
#include <libyul/AST.h>
|
2018-12-20 16:22:17 +00:00
|
|
|
#include <libyul/Dialect.h>
|
2018-09-25 14:29:46 +00:00
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/CommonData.h>
|
2018-09-25 14:29:46 +00:00
|
|
|
|
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::yul;
|
|
|
|
using namespace solidity::util;
|
|
|
|
using namespace solidity::langutil;
|
2018-09-25 14:29:46 +00:00
|
|
|
|
2019-09-23 14:32:50 +00:00
|
|
|
void ExpressionSplitter::run(OptimiserStepContext& _context, Block& _ast)
|
|
|
|
{
|
2020-02-14 14:33:54 +00:00
|
|
|
TypeInfo typeInfo(_context.dialect, _ast);
|
|
|
|
ExpressionSplitter{_context.dialect, _context.dispenser, typeInfo}(_ast);
|
2019-09-23 14:32:50 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 14:23:35 +00:00
|
|
|
void ExpressionSplitter::operator()(FunctionCall& _funCall)
|
2018-09-25 14:29:46 +00:00
|
|
|
{
|
2020-08-04 15:30:16 +00:00
|
|
|
BuiltinFunction const* builtin = m_dialect.builtin(_funCall.functionName.name);
|
2018-12-20 16:22:17 +00:00
|
|
|
|
2020-04-06 12:47:44 +00:00
|
|
|
for (size_t i = _funCall.arguments.size(); i > 0; i--)
|
2020-08-04 15:30:16 +00:00
|
|
|
if (!builtin || !builtin->literalArgument(i - 1))
|
2020-04-06 12:47:44 +00:00
|
|
|
outlineExpression(_funCall.arguments[i - 1]);
|
2018-09-25 14:29:46 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 14:23:35 +00:00
|
|
|
void ExpressionSplitter::operator()(If& _if)
|
2018-09-25 14:29:46 +00:00
|
|
|
{
|
|
|
|
outlineExpression(*_if.condition);
|
|
|
|
(*this)(_if.body);
|
|
|
|
}
|
|
|
|
|
2018-10-10 14:23:35 +00:00
|
|
|
void ExpressionSplitter::operator()(Switch& _switch)
|
2018-09-25 14:29:46 +00:00
|
|
|
{
|
|
|
|
outlineExpression(*_switch.expression);
|
|
|
|
for (auto& _case: _switch.cases)
|
2018-10-15 10:51:50 +00:00
|
|
|
// Do not visit the case expression, nothing to split there.
|
2018-09-25 14:29:46 +00:00
|
|
|
(*this)(_case.body);
|
|
|
|
}
|
|
|
|
|
2018-10-10 14:23:35 +00:00
|
|
|
void ExpressionSplitter::operator()(ForLoop& _loop)
|
2018-09-25 14:29:46 +00:00
|
|
|
{
|
|
|
|
(*this)(_loop.pre);
|
2018-10-15 10:51:50 +00:00
|
|
|
// Do not visit the condition because we cannot split expressions there.
|
2018-09-25 14:29:46 +00:00
|
|
|
(*this)(_loop.post);
|
|
|
|
(*this)(_loop.body);
|
|
|
|
}
|
|
|
|
|
2018-10-10 14:23:35 +00:00
|
|
|
void ExpressionSplitter::operator()(Block& _block)
|
2018-09-25 14:29:46 +00:00
|
|
|
{
|
|
|
|
vector<Statement> saved;
|
|
|
|
swap(saved, m_statementsToPrefix);
|
|
|
|
|
2019-10-28 10:39:30 +00:00
|
|
|
function<std::optional<vector<Statement>>(Statement&)> f =
|
|
|
|
[&](Statement& _statement) -> std::optional<vector<Statement>> {
|
2018-09-25 14:29:46 +00:00
|
|
|
m_statementsToPrefix.clear();
|
|
|
|
visit(_statement);
|
|
|
|
if (m_statementsToPrefix.empty())
|
|
|
|
return {};
|
|
|
|
m_statementsToPrefix.emplace_back(std::move(_statement));
|
|
|
|
return std::move(m_statementsToPrefix);
|
|
|
|
};
|
|
|
|
iterateReplacing(_block.statements, f);
|
|
|
|
|
|
|
|
swap(saved, m_statementsToPrefix);
|
|
|
|
}
|
|
|
|
|
2018-10-10 14:23:35 +00:00
|
|
|
void ExpressionSplitter::outlineExpression(Expression& _expr)
|
2018-09-25 14:29:46 +00:00
|
|
|
{
|
2019-11-19 15:42:49 +00:00
|
|
|
if (holds_alternative<Identifier>(_expr))
|
2018-09-25 14:29:46 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
visit(_expr);
|
|
|
|
|
2021-04-27 14:53:04 +00:00
|
|
|
shared_ptr<DebugData const> debugData = debugDataOf(_expr);
|
2018-10-29 14:12:02 +00:00
|
|
|
YulString var = m_nameDispenser.newName({});
|
2020-02-14 14:33:54 +00:00
|
|
|
YulString type = m_typeInfo.typeOf(_expr);
|
2018-09-25 14:29:46 +00:00
|
|
|
m_statementsToPrefix.emplace_back(VariableDeclaration{
|
2021-04-27 14:53:04 +00:00
|
|
|
debugData,
|
|
|
|
{{TypedName{debugData, var, type}}},
|
2019-01-09 13:05:03 +00:00
|
|
|
make_unique<Expression>(std::move(_expr))
|
2018-09-25 14:29:46 +00:00
|
|
|
});
|
2021-04-27 14:53:04 +00:00
|
|
|
_expr = Identifier{debugData, var};
|
2020-02-14 14:33:54 +00:00
|
|
|
m_typeInfo.setVariableType(var, type);
|
2018-09-25 14:29:46 +00:00
|
|
|
}
|
2020-02-14 14:33:54 +00:00
|
|
|
|