2017-12-15 10:55:18 +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/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Optimisation stage that replaces variables by their most recently assigned expressions.
|
|
|
|
*/
|
|
|
|
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/optimiser/Rematerialiser.h>
|
2017-12-15 10:55:18 +00:00
|
|
|
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/optimiser/Metrics.h>
|
|
|
|
#include <libyul/optimiser/ASTCopier.h>
|
2018-12-05 22:42:55 +00:00
|
|
|
#include <libyul/optimiser/NameCollector.h>
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/Exceptions.h>
|
2020-10-29 14:00:27 +00:00
|
|
|
#include <libyul/AST.h>
|
2017-12-15 10:55:18 +00:00
|
|
|
|
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::yul;
|
2017-12-15 10:55:18 +00:00
|
|
|
|
2019-02-04 16:30:29 +00:00
|
|
|
void Rematerialiser::run(Dialect const& _dialect, Block& _ast, set<YulString> _varsToAlwaysRematerialize)
|
2018-12-05 22:42:55 +00:00
|
|
|
{
|
2019-02-04 16:30:29 +00:00
|
|
|
Rematerialiser{_dialect, _ast, std::move(_varsToAlwaysRematerialize)}(_ast);
|
2018-12-05 22:42:55 +00:00
|
|
|
}
|
|
|
|
|
2019-02-04 16:30:29 +00:00
|
|
|
void Rematerialiser::run(
|
|
|
|
Dialect const& _dialect,
|
|
|
|
FunctionDefinition& _function,
|
|
|
|
set<YulString> _varsToAlwaysRematerialize
|
|
|
|
)
|
2019-02-04 13:01:05 +00:00
|
|
|
{
|
2019-02-04 16:30:29 +00:00
|
|
|
Rematerialiser{_dialect, _function, std::move(_varsToAlwaysRematerialize)}(_function);
|
2019-02-04 13:01:05 +00:00
|
|
|
}
|
|
|
|
|
2019-02-04 16:30:29 +00:00
|
|
|
Rematerialiser::Rematerialiser(
|
|
|
|
Dialect const& _dialect,
|
|
|
|
Block& _ast,
|
|
|
|
set<YulString> _varsToAlwaysRematerialize
|
|
|
|
):
|
2018-12-20 17:55:32 +00:00
|
|
|
DataFlowAnalyzer(_dialect),
|
2019-02-04 16:30:29 +00:00
|
|
|
m_referenceCounts(ReferencesCounter::countReferences(_ast)),
|
|
|
|
m_varsToAlwaysRematerialize(std::move(_varsToAlwaysRematerialize))
|
2018-12-05 22:42:55 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-02-04 16:30:29 +00:00
|
|
|
Rematerialiser::Rematerialiser(
|
|
|
|
Dialect const& _dialect,
|
|
|
|
FunctionDefinition& _function,
|
|
|
|
set<YulString> _varsToAlwaysRematerialize
|
|
|
|
):
|
2019-02-04 13:01:05 +00:00
|
|
|
DataFlowAnalyzer(_dialect),
|
2019-02-04 16:30:29 +00:00
|
|
|
m_referenceCounts(ReferencesCounter::countReferences(_function)),
|
|
|
|
m_varsToAlwaysRematerialize(std::move(_varsToAlwaysRematerialize))
|
2019-02-04 13:01:05 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-12-15 10:55:18 +00:00
|
|
|
void Rematerialiser::visit(Expression& _e)
|
|
|
|
{
|
2019-11-19 15:42:49 +00:00
|
|
|
if (holds_alternative<Identifier>(_e))
|
2017-12-15 10:55:18 +00:00
|
|
|
{
|
2019-11-19 15:42:49 +00:00
|
|
|
Identifier& identifier = std::get<Identifier>(_e);
|
2019-09-11 17:16:33 +00:00
|
|
|
YulString name = identifier.name;
|
|
|
|
if (m_value.count(name))
|
2017-12-15 10:55:18 +00:00
|
|
|
{
|
2019-11-28 13:22:17 +00:00
|
|
|
assertThrow(m_value.at(name).value, OptimizerException, "");
|
|
|
|
AssignedValue const& value = m_value.at(name);
|
2018-12-05 22:42:55 +00:00
|
|
|
size_t refs = m_referenceCounts[name];
|
2019-11-28 13:22:17 +00:00
|
|
|
size_t cost = CodeCost::codeCost(m_dialect, *value.value);
|
2019-11-27 09:44:40 +00:00
|
|
|
if (
|
2019-11-28 13:22:17 +00:00
|
|
|
(refs <= 1 && value.loopDepth == m_loopDepth) ||
|
2019-11-27 09:44:40 +00:00
|
|
|
cost == 0 ||
|
2019-11-29 11:04:29 +00:00
|
|
|
(refs <= 5 && cost <= 1 && m_loopDepth == 0) ||
|
2019-11-27 09:44:40 +00:00
|
|
|
m_varsToAlwaysRematerialize.count(name)
|
|
|
|
)
|
2018-12-05 22:42:55 +00:00
|
|
|
{
|
|
|
|
assertThrow(m_referenceCounts[name] > 0, OptimizerException, "");
|
2020-12-01 23:02:44 +00:00
|
|
|
bool allInScope = true;
|
|
|
|
for (auto const& ref: m_references[name])
|
|
|
|
allInScope = allInScope && inScope(ref);
|
|
|
|
if (allInScope)
|
|
|
|
{
|
|
|
|
// update reference counts
|
|
|
|
m_referenceCounts[name]--;
|
|
|
|
for (auto const& ref: ReferencesCounter::countReferences(*value.value))
|
|
|
|
m_referenceCounts[ref.first] += ref.second;
|
|
|
|
_e = (ASTCopier{}).translate(*value.value);
|
|
|
|
}
|
2018-12-05 22:42:55 +00:00
|
|
|
}
|
2017-12-15 10:55:18 +00:00
|
|
|
}
|
|
|
|
}
|
2018-02-02 14:23:44 +00:00
|
|
|
DataFlowAnalyzer::visit(_e);
|
2017-12-15 10:55:18 +00:00
|
|
|
}
|
2019-09-11 17:16:33 +00:00
|
|
|
|
|
|
|
void LiteralRematerialiser::visit(Expression& _e)
|
|
|
|
{
|
2019-11-19 15:42:49 +00:00
|
|
|
if (holds_alternative<Identifier>(_e))
|
2019-09-11 17:16:33 +00:00
|
|
|
{
|
2019-11-19 15:42:49 +00:00
|
|
|
Identifier& identifier = std::get<Identifier>(_e);
|
2019-09-11 17:16:33 +00:00
|
|
|
YulString name = identifier.name;
|
|
|
|
if (m_value.count(name))
|
|
|
|
{
|
2019-11-28 13:22:17 +00:00
|
|
|
Expression const* value = m_value.at(name).value;
|
2019-09-11 17:16:33 +00:00
|
|
|
assertThrow(value, OptimizerException, "");
|
2019-11-19 15:42:49 +00:00
|
|
|
if (holds_alternative<Literal>(*value))
|
2019-09-11 17:16:33 +00:00
|
|
|
_e = *value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DataFlowAnalyzer::visit(_e);
|
|
|
|
}
|