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>
|
2018-11-23 10:18:57 +00:00
|
|
|
#include <libyul/AsmData.h>
|
2017-12-15 10:55:18 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
2018-11-21 11:42:34 +00:00
|
|
|
using namespace 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)
|
|
|
|
{
|
|
|
|
if (_e.type() == typeid(Identifier))
|
|
|
|
{
|
|
|
|
Identifier& identifier = boost::get<Identifier>(_e);
|
2018-02-02 14:23:44 +00:00
|
|
|
if (m_value.count(identifier.name))
|
2017-12-15 10:55:18 +00:00
|
|
|
{
|
2018-10-29 14:12:02 +00:00
|
|
|
YulString name = identifier.name;
|
2018-05-09 09:43:14 +00:00
|
|
|
assertThrow(m_value.at(name), OptimizerException, "");
|
2018-02-02 14:23:44 +00:00
|
|
|
auto const& value = *m_value.at(name);
|
2018-12-05 22:42:55 +00:00
|
|
|
size_t refs = m_referenceCounts[name];
|
|
|
|
size_t cost = CodeCost::codeCost(value);
|
2019-02-04 16:30:29 +00:00
|
|
|
if (refs <= 1 || cost == 0 || (refs <= 5 && cost <= 1) || m_varsToAlwaysRematerialize.count(name))
|
2018-12-05 22:42:55 +00:00
|
|
|
{
|
|
|
|
assertThrow(m_referenceCounts[name] > 0, OptimizerException, "");
|
|
|
|
for (auto const& ref: m_references[name])
|
|
|
|
assertThrow(inScope(ref), OptimizerException, "");
|
|
|
|
// update reference counts
|
|
|
|
m_referenceCounts[name]--;
|
|
|
|
for (auto const& ref: ReferencesCounter::countReferences(value))
|
|
|
|
m_referenceCounts[ref.first] += ref.second;
|
2018-02-02 14:23:44 +00:00
|
|
|
_e = (ASTCopier{}).translate(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
|
|
|
}
|