solidity/libyul/optimiser/SimplificationRules.h

143 lines
4.4 KiB
C
Raw Normal View History

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/>.
*/
/**
* Module for applying replacement rules against Expressions.
*/
#pragma once
#include <libevmasm/SimplificationRule.h>
2018-01-18 11:15:22 +00:00
#include <libyul/AsmDataForward.h>
#include <libyul/AsmData.h>
2018-01-18 11:15:22 +00:00
#include <libsolutil/CommonData.h>
2019-11-07 20:29:56 +00:00
#include <liblangutil/EVMVersion.h>
2018-01-18 11:15:22 +00:00
#include <boost/noncopyable.hpp>
#include <functional>
#include <optional>
2018-01-18 11:15:22 +00:00
#include <vector>
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-11-28 13:22:17 +00:00
struct AssignedValue;
2018-01-18 11:15:22 +00:00
class Pattern;
/**
* Container for all simplification rules.
*/
class SimplificationRules: public boost::noncopyable
{
public:
using Rule = evmasm::SimplificationRule<Pattern>;
explicit SimplificationRules(std::optional<langutil::EVMVersion> _evmVersion = std::nullopt);
2018-01-18 11:15:22 +00:00
/// @returns a pointer to the first matching pattern and sets the match
/// groups accordingly.
2018-10-02 16:07:50 +00:00
/// @param _ssaValues values of variables that are assigned exactly once.
static Rule const* findFirstMatch(
2018-10-02 16:07:50 +00:00
Expression const& _expr,
2018-12-20 17:55:32 +00:00
Dialect const& _dialect,
2019-11-28 13:22:17 +00:00
std::map<YulString, AssignedValue> const& _ssaValues
2018-10-02 16:07:50 +00:00
);
2018-01-18 11:15:22 +00:00
/// Checks whether the rulelist is non-empty. This is usually enforced
/// by the constructor, but we had some issues with static initialization.
bool isInitialized() const;
2019-05-16 19:19:50 +00:00
2019-12-11 16:31:36 +00:00
static std::optional<std::pair<evmasm::Instruction, std::vector<Expression> const*>>
2019-05-16 19:19:50 +00:00
instructionAndArguments(Dialect const& _dialect, Expression const& _expr);
2018-01-18 11:15:22 +00:00
private:
void addRules(std::vector<Rule> const& _rules);
void addRule(Rule const& _rule);
2018-01-18 11:15:22 +00:00
void resetMatchGroups() { m_matchGroups.clear(); }
std::map<unsigned, Expression const*> m_matchGroups;
2019-12-11 16:31:36 +00:00
std::vector<evmasm::SimplificationRule<Pattern>> m_rules[256];
2018-01-18 11:15:22 +00:00
};
enum class PatternKind
{
Operation,
Constant,
Any
};
/**
* Pattern to match against an expression.
* Also stores matched expressions to retrieve them later, for constructing new expressions using
* ExpressionTemplate.
*/
class Pattern
{
public:
2019-12-11 16:31:36 +00:00
using Builtins = evmasm::EVMBuiltins<Pattern>;
2019-11-06 21:12:40 +00:00
static constexpr size_t WordSize = 256;
2019-12-11 16:31:36 +00:00
using Word = u256;
2019-11-06 21:12:40 +00:00
2018-01-18 11:15:22 +00:00
/// Matches any expression.
Pattern(PatternKind _kind = PatternKind::Any): m_kind(_kind) {}
// Matches a specific constant value.
2019-12-11 16:31:36 +00:00
Pattern(unsigned _value): Pattern(u256(_value)) {}
Pattern(int _value): Pattern(u256(_value)) {}
Pattern(long unsigned _value): Pattern(u256(_value)) {}
2018-01-18 11:15:22 +00:00
// Matches a specific constant value.
2019-12-11 16:31:36 +00:00
Pattern(u256 const& _value): m_kind(PatternKind::Constant), m_data(std::make_shared<u256>(_value)) {}
2018-01-18 11:15:22 +00:00
// Matches a given instruction with given arguments
2019-12-11 16:31:36 +00:00
Pattern(evmasm::Instruction _instruction, std::initializer_list<Pattern> _arguments = {});
2018-01-18 11:15:22 +00:00
/// Sets this pattern to be part of the match group with the identifier @a _group.
/// Inside one rule, all patterns in the same match group have to match expressions from the
/// same expression equivalence class.
void setMatchGroup(unsigned _group, std::map<unsigned, Expression const*>& _matchGroups);
unsigned matchGroup() const { return m_matchGroup; }
2018-12-20 17:55:32 +00:00
bool matches(
Expression const& _expr,
Dialect const& _dialect,
2019-11-28 13:22:17 +00:00
std::map<YulString, AssignedValue> const& _ssaValues
2018-12-20 17:55:32 +00:00
) const;
2018-01-18 11:15:22 +00:00
std::vector<Pattern> arguments() const { return m_arguments; }
/// @returns the data of the matched expression if this pattern is part of a match group.
2019-12-11 16:31:36 +00:00
u256 d() const;
2018-01-18 11:15:22 +00:00
2019-12-11 16:31:36 +00:00
evmasm::Instruction instruction() const;
2018-01-18 11:15:22 +00:00
/// Turns this pattern into an actual expression. Should only be called
/// for patterns resulting from an action, i.e. with match groups assigned.
Expression toExpression(langutil::SourceLocation const& _location) const;
2018-01-18 11:15:22 +00:00
private:
Expression const& matchGroupValue() const;
PatternKind m_kind = PatternKind::Any;
2019-12-11 16:31:36 +00:00
evmasm::Instruction m_instruction; ///< Only valid if m_kind is Operation
std::shared_ptr<u256> m_data; ///< Only valid if m_kind is Constant
2018-01-18 11:15:22 +00:00
std::vector<Pattern> m_arguments;
unsigned m_matchGroup = 0;
std::map<unsigned, Expression const*>* m_matchGroups = nullptr;
};
}