2018-01-18 11:15:22 +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/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Optimiser component that uses the simplification rules to simplify expressions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-11-21 11:43:41 +00:00
|
|
|
#include <libyul/AsmDataForward.h>
|
2018-01-18 11:15:22 +00:00
|
|
|
|
2019-02-27 11:48:10 +00:00
|
|
|
#include <libyul/optimiser/DataFlowAnalyzer.h>
|
2018-01-18 11:15:22 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::yul
|
2018-01-18 11:15:22 +00:00
|
|
|
{
|
2018-12-20 17:55:32 +00:00
|
|
|
struct Dialect;
|
2019-09-23 14:32:50 +00:00
|
|
|
struct OptimiserStepContext;
|
2018-01-18 11:15:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Applies simplification rules to all expressions.
|
2018-10-02 16:07:50 +00:00
|
|
|
* The component will work best if the code is in SSA form, but
|
|
|
|
* this is not required for correctness.
|
|
|
|
*
|
2019-02-27 11:48:10 +00:00
|
|
|
* It tracks the current values of variables using the DataFlowAnalyzer
|
|
|
|
* and takes them into account for replacements.
|
|
|
|
*
|
2019-04-05 18:38:23 +00:00
|
|
|
* Prerequisite: Disambiguator, ForLoopInitRewriter.
|
2018-01-18 11:15:22 +00:00
|
|
|
*/
|
2019-02-27 11:48:10 +00:00
|
|
|
class ExpressionSimplifier: public DataFlowAnalyzer
|
2018-01-18 11:15:22 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-09-23 14:32:50 +00:00
|
|
|
static constexpr char const* name{"ExpressionSimplifier"};
|
|
|
|
static void run(OptimiserStepContext&, Block& _ast);
|
|
|
|
|
2018-01-18 11:15:22 +00:00
|
|
|
using ASTModifier::operator();
|
|
|
|
virtual void visit(Expression& _expression);
|
|
|
|
|
|
|
|
private:
|
2019-02-27 11:48:10 +00:00
|
|
|
explicit ExpressionSimplifier(Dialect const& _dialect): DataFlowAnalyzer(_dialect) {}
|
2018-01-18 11:15:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|