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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2017-12-15 10:55:18 +00:00
|
|
|
/**
|
|
|
|
* Optimisation stage that replaces variables by their most recently assigned expressions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/optimiser/DataFlowAnalyzer.h>
|
2019-09-23 14:32:50 +00:00
|
|
|
#include <libyul/optimiser/OptimiserStep.h>
|
2017-12-15 10:55:18 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::yul
|
2017-12-15 10:55:18 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2019-11-27 09:44:40 +00:00
|
|
|
* Optimisation stage that replaces variable references by those expressions
|
|
|
|
* that are most recently assigned to the referenced variables,
|
2018-12-05 22:42:55 +00:00
|
|
|
* but only if the expression is movable and one of the following holds:
|
2019-11-27 09:44:40 +00:00
|
|
|
* - the variable is referenced exactly once (and definition-to-reference does not cross a loop boundary)
|
2018-12-05 22:42:55 +00:00
|
|
|
* - the value is extremely cheap ("cost" of zero like ``caller()``)
|
|
|
|
* - the variable is referenced at most 5 times and the value is rather cheap
|
2019-11-29 11:04:29 +00:00
|
|
|
* ("cost" of at most 1 like a constant up to 0xff) and we are not in a loop
|
2017-12-15 10:55:18 +00:00
|
|
|
*
|
2019-04-05 18:38:23 +00:00
|
|
|
* Prerequisite: Disambiguator, ForLoopInitRewriter.
|
2017-12-15 10:55:18 +00:00
|
|
|
*/
|
2018-02-02 14:23:44 +00:00
|
|
|
class Rematerialiser: public DataFlowAnalyzer
|
2017-12-15 10:55:18 +00:00
|
|
|
{
|
2018-12-05 22:42:55 +00:00
|
|
|
public:
|
2019-09-23 14:32:50 +00:00
|
|
|
static constexpr char const* name{"Rematerialiser"};
|
|
|
|
static void run(
|
|
|
|
OptimiserStepContext& _context,
|
|
|
|
Block& _ast
|
|
|
|
) { run(_context.dialect, _ast); }
|
|
|
|
|
2019-02-04 16:30:29 +00:00
|
|
|
static void run(
|
|
|
|
Dialect const& _dialect,
|
|
|
|
Block& _ast,
|
2021-09-03 13:29:51 +00:00
|
|
|
std::set<YulString> _varsToAlwaysRematerialize = {},
|
|
|
|
bool _onlySelectedVariables = false
|
2019-02-04 16:30:29 +00:00
|
|
|
);
|
|
|
|
static void run(
|
|
|
|
Dialect const& _dialect,
|
|
|
|
FunctionDefinition& _function,
|
2021-09-03 13:29:51 +00:00
|
|
|
std::set<YulString> _varsToAlwaysRematerialize = {},
|
|
|
|
bool _onlySelectedVariables = false
|
2019-02-04 16:30:29 +00:00
|
|
|
);
|
2018-12-05 22:42:55 +00:00
|
|
|
|
2017-12-15 10:55:18 +00:00
|
|
|
protected:
|
2019-02-04 16:30:29 +00:00
|
|
|
Rematerialiser(
|
|
|
|
Dialect const& _dialect,
|
|
|
|
Block& _ast,
|
2021-09-03 13:29:51 +00:00
|
|
|
std::set<YulString> _varsToAlwaysRematerialize = {},
|
|
|
|
bool _onlySelectedVariables = false
|
2019-02-04 16:30:29 +00:00
|
|
|
);
|
|
|
|
Rematerialiser(
|
|
|
|
Dialect const& _dialect,
|
|
|
|
FunctionDefinition& _function,
|
2021-09-03 13:29:51 +00:00
|
|
|
std::set<YulString> _varsToAlwaysRematerialize = {},
|
|
|
|
bool _onlySelectedVariables = false
|
2019-02-04 16:30:29 +00:00
|
|
|
);
|
2018-12-05 22:42:55 +00:00
|
|
|
|
2019-11-27 09:44:40 +00:00
|
|
|
using DataFlowAnalyzer::operator();
|
|
|
|
|
2018-01-12 15:14:59 +00:00
|
|
|
using ASTModifier::visit;
|
2018-11-16 01:09:04 +00:00
|
|
|
void visit(Expression& _e) override;
|
2017-12-15 10:55:18 +00:00
|
|
|
|
2018-12-05 22:42:55 +00:00
|
|
|
std::map<YulString, size_t> m_referenceCounts;
|
2019-02-04 16:30:29 +00:00
|
|
|
std::set<YulString> m_varsToAlwaysRematerialize;
|
2021-09-03 13:29:51 +00:00
|
|
|
bool m_onlySelectedVariables = false;
|
2017-12-15 10:55:18 +00:00
|
|
|
};
|
|
|
|
|
2019-09-11 17:16:33 +00:00
|
|
|
/**
|
|
|
|
* If a variable is referenced that is known to have a literal
|
|
|
|
* value at that point, replace it by a literal.
|
|
|
|
*
|
|
|
|
* This is mostly used so that other components do not have to rely
|
|
|
|
* on the data flow analyzer.
|
|
|
|
*
|
|
|
|
* Prerequisite: Disambiguator, ForLoopInitRewriter.
|
|
|
|
*/
|
|
|
|
class LiteralRematerialiser: public DataFlowAnalyzer
|
|
|
|
{
|
|
|
|
public:
|
2019-09-23 14:32:50 +00:00
|
|
|
static constexpr char const* name{"LiteralRematerialiser"};
|
|
|
|
static void run(
|
|
|
|
OptimiserStepContext& _context,
|
|
|
|
Block& _ast
|
|
|
|
) { LiteralRematerialiser{_context.dialect}(_ast); }
|
2019-09-11 17:16:33 +00:00
|
|
|
|
|
|
|
using ASTModifier::visit;
|
|
|
|
void visit(Expression& _e) override;
|
2019-09-23 14:32:50 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
LiteralRematerialiser(Dialect const& _dialect):
|
|
|
|
DataFlowAnalyzer(_dialect)
|
|
|
|
{}
|
2019-09-11 17:16:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-15 10:55:18 +00:00
|
|
|
}
|