solidity/libyul/optimiser/Rematerialiser.cpp

118 lines
3.5 KiB
C++
Raw Normal View History

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>
#include <libyul/optimiser/NameCollector.h>
2018-10-15 09:52:35 +00:00
#include <libyul/Exceptions.h>
#include <libyul/AsmData.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)
{
2019-02-04 16:30:29 +00:00
Rematerialiser{_dialect, _ast, std::move(_varsToAlwaysRematerialize)}(_ast);
}
2019-02-04 16:30:29 +00:00
void Rematerialiser::run(
Dialect const& _dialect,
FunctionDefinition& _function,
set<YulString> _varsToAlwaysRematerialize
)
{
2019-02-04 16:30:29 +00:00
Rematerialiser{_dialect, _function, std::move(_varsToAlwaysRematerialize)}(_function);
}
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))
{
}
2019-02-04 16:30:29 +00:00
Rematerialiser::Rematerialiser(
Dialect const& _dialect,
FunctionDefinition& _function,
set<YulString> _varsToAlwaysRematerialize
):
DataFlowAnalyzer(_dialect),
2019-02-04 16:30:29 +00:00
m_referenceCounts(ReferencesCounter::countReferences(_function)),
m_varsToAlwaysRematerialize(std::move(_varsToAlwaysRematerialize))
{
}
2017-12-15 10:55:18 +00:00
void Rematerialiser::visit(Expression& _e)
{
if (holds_alternative<Identifier>(_e))
2017-12-15 10:55:18 +00:00
{
Identifier& identifier = std::get<Identifier>(_e);
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);
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)
)
{
assertThrow(m_referenceCounts[name] > 0, OptimizerException, "");
for (auto const& ref: m_references.forward[name])
assertThrow(inScope(ref), OptimizerException, "");
// update reference counts
m_referenceCounts[name]--;
2019-11-28 13:22:17 +00:00
for (auto const& ref: ReferencesCounter::countReferences(*value.value))
m_referenceCounts[ref.first] += ref.second;
2019-11-28 13:22:17 +00:00
_e = (ASTCopier{}).translate(*value.value);
}
2017-12-15 10:55:18 +00:00
}
}
DataFlowAnalyzer::visit(_e);
2017-12-15 10:55:18 +00:00
}
void LiteralRematerialiser::visit(Expression& _e)
{
if (holds_alternative<Identifier>(_e))
{
Identifier& identifier = std::get<Identifier>(_e);
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;
assertThrow(value, OptimizerException, "");
if (holds_alternative<Literal>(*value))
_e = *value;
}
}
DataFlowAnalyzer::visit(_e);
}